1 package org.simantics.scl.compiler.elaboration.expressions;
3 import java.util.ArrayList;
4 import java.util.Collections;
5 import java.util.Comparator;
7 import org.simantics.scl.compiler.elaboration.contexts.TranslationContext;
8 import org.simantics.scl.compiler.elaboration.contexts.TypingContext;
9 import org.simantics.scl.compiler.elaboration.query.Query;
10 import org.simantics.scl.compiler.elaboration.rules.TransformationRule;
11 import org.simantics.scl.compiler.errors.Locations;
12 import org.simantics.scl.compiler.internal.elaboration.transformations.TransformationBuilder;
13 import org.simantics.scl.compiler.top.SCLCompilerConfiguration;
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.THashSet;
20 import gnu.trove.set.hash.TIntHashSet;
22 public class ETransformation extends SimplifiableExpression {
23 public static final Object TRANSFORMATION_RULES_TYPECHECKED = new Object();
25 public final String name;
28 public ETransformation(String name, Query seed) {
34 public void collectRefs(TObjectIntHashMap<Object> allRefs,
37 int ref = allRefs.get(TRANSFORMATION_RULES_TYPECHECKED);
41 seed.collectRefs(allRefs, refs);
45 public void collectVars(TObjectIntHashMap<Variable> allVars,
47 seed.collectVars(allVars, vars);
51 protected void updateType() throws MatchException {
56 public void collectFreeVariables(THashSet<Variable> vars) {
57 seed.collectFreeVariables(vars);
61 public Expression inferType(TypingContext context) {
62 context.declareEffect(location, Types.PROC);
63 seed.checkType(context);
64 return compile(context);
67 private Expression compile(TypingContext context) {
68 ArrayList<TransformationRule> rules = new ArrayList<TransformationRule>();
69 context.getEnvironment().collectRules(rules);
70 Collections.sort(rules, new Comparator<TransformationRule>() {
72 public int compare(TransformationRule o1, TransformationRule o2) {
73 return Integer.compare(Locations.beginOf(o1.location), Locations.beginOf(o2.location));
78 TransformationBuilder tb = new TransformationBuilder(context.getErrorLog(), context);
80 for(TransformationRule rule : rules)
83 Expression expression = tb.compileRules();
85 if(SCLCompilerConfiguration.SHOW_COMPILED_RULES)
86 System.out.println(expression);
91 public Expression resolve(TranslationContext context) {
92 seed = seed.resolve(context);
97 public void setLocationDeep(long loc) {
98 if(location == Locations.NO_LOCATION) {
100 seed.setLocationDeep(loc);
105 public void collectEffects(THashSet<Type> effects) {
106 effects.add(Types.PROC);
107 //seed.collectEffects(Query.RW, effects); // FIXME
111 public void accept(ExpressionVisitor visitor) {
116 public void forVariables(VariableProcedure procedure) {
117 seed.forVariables(procedure);
121 public Expression accept(ExpressionTransformer transformer) {
122 return transformer.transform(this);