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 collectVars(TObjectIntHashMap<Variable> allVars,
36 seed.collectVars(allVars, vars);
40 protected void updateType() throws MatchException {
45 public void collectFreeVariables(THashSet<Variable> vars) {
46 seed.collectFreeVariables(vars);
50 public Expression inferType(TypingContext context) {
51 context.declareEffect(location, Types.PROC);
52 seed.checkType(context);
53 return compile(context);
56 private Expression compile(TypingContext context) {
57 ArrayList<TransformationRule> rules = new ArrayList<TransformationRule>();
58 context.getEnvironment().collectRules(rules);
59 Collections.sort(rules, new Comparator<TransformationRule>() {
61 public int compare(TransformationRule o1, TransformationRule o2) {
62 return Integer.compare(Locations.beginOf(o1.location), Locations.beginOf(o2.location));
67 TransformationBuilder tb = new TransformationBuilder(context.getErrorLog(), context);
69 for(TransformationRule rule : rules)
72 Expression expression = tb.compileRules();
74 if(SCLCompilerConfiguration.SHOW_COMPILED_RULES)
75 System.out.println(expression);
80 public Expression resolve(TranslationContext context) {
81 seed = seed.resolve(context);
86 public void setLocationDeep(long loc) {
87 if(location == Locations.NO_LOCATION) {
89 seed.setLocationDeep(loc);
94 public void collectEffects(THashSet<Type> effects) {
95 effects.add(Types.PROC);
96 //seed.collectEffects(Query.RW, effects); // FIXME
100 public void accept(ExpressionVisitor visitor) {
105 public Expression accept(ExpressionTransformer transformer) {
106 return transformer.transform(this);