1 package org.simantics.scl.compiler.elaboration.expressions;
4 import org.simantics.scl.compiler.common.exceptions.InternalCompilerError;
5 import org.simantics.scl.compiler.common.names.Names;
6 import org.simantics.scl.compiler.constants.DoubleConstant;
7 import org.simantics.scl.compiler.constants.FloatConstant;
8 import org.simantics.scl.compiler.elaboration.contexts.ReplaceContext;
9 import org.simantics.scl.compiler.elaboration.contexts.SimplificationContext;
10 import org.simantics.scl.compiler.elaboration.contexts.TranslationContext;
11 import org.simantics.scl.compiler.elaboration.contexts.TypingContext;
12 import org.simantics.scl.compiler.errors.ErrorLog;
13 import org.simantics.scl.compiler.errors.Locations;
14 import org.simantics.scl.compiler.types.Type;
15 import org.simantics.scl.compiler.types.Types;
16 import org.simantics.scl.compiler.types.exceptions.MatchException;
18 import gnu.trove.map.hash.TObjectIntHashMap;
19 import gnu.trove.set.hash.TIntHashSet;
21 public class ERealLiteral extends SimplifiableExpression {
23 public EVariable constraint;
25 public ERealLiteral(String value) {
30 public void collectVars(TObjectIntHashMap<Variable> allVars,
34 private Expression tryToConvertToPrimitive(ErrorLog errorLog, Type requiredType) {
35 if(requiredType.equals(Types.DOUBLE))
36 return new ELiteral(new DoubleConstant(Double.parseDouble(value)));
37 else if(requiredType.equals(Types.FLOAT))
38 return new ELiteral(new FloatConstant(Float.parseFloat(value)));
39 else if(requiredType.equals(Types.INTEGER)) {
40 errorLog.log(location, "Cannot convert real literal to Integer.");
43 else if(requiredType.equals(Types.LONG)) {
44 errorLog.log(location, "Cannot convert real literal to Long.");
52 public Expression checkBasicType(TypingContext context, Type requiredType) {
53 requiredType = Types.canonical(requiredType);
54 Expression primitive = tryToConvertToPrimitive(context.getErrorLog(), requiredType);
58 setType(requiredType);
59 constraint = new EVariable(location, null);
60 constraint.setType(Types.pred(Types.REAL, requiredType));
61 context.addConstraintDemand(constraint);
67 protected void updateType() throws MatchException {
68 throw new InternalCompilerError("TODO");
72 public Expression simplify(SimplificationContext context) {
73 Expression primitive = tryToConvertToPrimitive(context.getErrorLog(), getType());
77 context.getConstant(Names.Prelude_fromDouble, getType()),
78 constraint.simplify(context),
79 context.literal(new DoubleConstant(Double.parseDouble(value)))
84 public Expression resolve(TranslationContext context) {
89 public Expression resolveAsPattern(TranslationContext context) {
90 return new ELiteral(new DoubleConstant(Double.parseDouble(value)));
94 public Expression replace(ReplaceContext context) {
95 ERealLiteral copy = new ERealLiteral(value);
96 copy.setType(getType().replace(context.tvarMap));
101 public void setLocationDeep(long loc) {
102 if(location == Locations.NO_LOCATION) {
104 if(constraint != null)
105 constraint.setLocationDeep(loc);
110 public void accept(ExpressionVisitor visitor) {
114 public String getValue() {
119 public Expression accept(ExpressionTransformer transformer) {
120 return transformer.transform(this);