]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/elaboration/matching/PatternMatchingCompiler.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / internal / elaboration / matching / PatternMatchingCompiler.java
diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/elaboration/matching/PatternMatchingCompiler.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/internal/elaboration/matching/PatternMatchingCompiler.java
new file mode 100644 (file)
index 0000000..1ca1e7c
--- /dev/null
@@ -0,0 +1,207 @@
+package org.simantics.scl.compiler.internal.elaboration.matching;
+
+import gnu.trove.map.hash.THashMap;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.simantics.scl.compiler.common.exceptions.InternalCompilerError;
+import org.simantics.scl.compiler.constants.Constant;
+import org.simantics.scl.compiler.elaboration.expressions.EApply;
+import org.simantics.scl.compiler.elaboration.expressions.EApplyType;
+import org.simantics.scl.compiler.elaboration.expressions.EAsPattern;
+import org.simantics.scl.compiler.elaboration.expressions.EConstant;
+import org.simantics.scl.compiler.elaboration.expressions.EExternalConstant;
+import org.simantics.scl.compiler.elaboration.expressions.ELiteral;
+import org.simantics.scl.compiler.elaboration.expressions.EVariable;
+import org.simantics.scl.compiler.elaboration.expressions.Expression;
+import org.simantics.scl.compiler.elaboration.expressions.GuardedExpressionGroup;
+import org.simantics.scl.compiler.elaboration.modules.SCLValue;
+import org.simantics.scl.compiler.elaboration.modules.TypeConstructor;
+import org.simantics.scl.compiler.environment.Environment;
+import org.simantics.scl.compiler.internal.codegen.continuations.Branch;
+import org.simantics.scl.compiler.internal.codegen.continuations.ICont;
+import org.simantics.scl.compiler.internal.codegen.references.IVal;
+import org.simantics.scl.compiler.internal.codegen.writer.CodeWriter;
+import org.simantics.scl.compiler.types.TCon;
+import org.simantics.scl.compiler.types.Types;
+import org.simantics.scl.compiler.types.exceptions.MatchException;
+
+public class PatternMatchingCompiler {
+
+    private static class ExpressionMatrix {
+        final CodeWriter w;
+        final IVal[] scrutinee;
+        final List<Row> rows = new ArrayList<Row>();
+
+        public ExpressionMatrix(CodeWriter w, IVal[] scrutinee) {
+            this.w = w;
+            this.scrutinee = scrutinee;
+        }
+    }
+
+    public static IVal[] replace(IVal[] vals, int columnToReplace, IVal ... substitution) {
+        IVal[] newVals = new IVal[vals.length-1+substitution.length];
+        int j=0;
+        for(int i=0;i<columnToReplace;++i)
+            newVals[j++] = vals[i];
+        for(int i=0;i<substitution.length;++i)
+            newVals[j++] = substitution[i];
+        for(int i=columnToReplace+1;i<vals.length;++i)
+            newVals[j++] = vals[i];
+        return newVals;
+    }
+
+    private static void split(CodeWriter w, final Environment env, IVal[] scrutinee, final ICont success, ICont failure, List<Row> rows, int columnId) {
+        THashMap<Object, ExpressionMatrix> matrixMap = new THashMap<Object, ExpressionMatrix>();
+        ArrayList<Branch> branches = new ArrayList<Branch>();
+        ArrayList<ExpressionMatrix> matrices = new ArrayList<ExpressionMatrix>();
+        
+        /*System.out.println("---");
+        for(Row row : rows) {
+            for(Expression e : row.patterns)
+                System.out.print(e + " ");
+            System.out.println();
+        }*/
+
+        int i;
+        for(i=0;i<rows.size();++i) {
+            Row row = rows.get(i);
+            Expression pattern = row.patterns[columnId];
+            while(true) {
+                if(pattern instanceof EApplyType)
+                    pattern = ((EApplyType)pattern).getExpression();
+                else if(pattern instanceof EAsPattern) {
+                    EAsPattern asPattern = (EAsPattern)pattern;
+                    pattern = asPattern.getPattern();
+                    asPattern.getVariable().setVal(scrutinee[columnId]);
+                }
+                else
+                    break;
+                row.patterns[columnId] = pattern;
+            }
+            if(pattern instanceof EVariable)
+                break;
+            else if(pattern instanceof EApply) {
+                EApply applyConstructor = (EApply)pattern;
+                Expression constructor_ = applyConstructor.getFunction();
+                while(constructor_ instanceof EApplyType)
+                    constructor_ = ((EApplyType)constructor_).getExpression();
+                SCLValue constructor = ((EConstant)constructor_).getValue();
+                // TODO How type parameters are handled???
+                Expression[] parameters = applyConstructor.getParameters();
+
+                ExpressionMatrix matrix = matrixMap.get(constructor.getName());
+                if(matrix == null) {
+                    CodeWriter newW = w.createBlock(Types.getTypes(parameters));
+                    branches.add(new Branch((Constant)constructor.getValue(), newW.getContinuation()));
+                    matrix = new ExpressionMatrix(newW, replace(scrutinee, columnId, newW.getParameters()));
+                    matrices.add(matrix);
+                    matrixMap.put(constructor.getName(), matrix);
+                }
+                matrix.rows.add(row.replace(columnId, parameters));
+            }
+            else if(pattern instanceof EConstant) {
+                EConstant applyConstructor = (EConstant)pattern;
+                SCLValue constructor = applyConstructor.getValue();
+
+                ExpressionMatrix matrix = matrixMap.get(constructor.getName());
+                if(matrix == null) {
+                    CodeWriter newW = w.createBlock();
+                    branches.add(new Branch((Constant)constructor.getValue(), newW.getContinuation()));
+                    matrix = new ExpressionMatrix(newW, replace(scrutinee, columnId, newW.getParameters()));
+                    matrices.add(matrix);
+                    matrixMap.put(constructor.getName(), matrix);
+                }
+                matrix.rows.add(row.replace(columnId, Expression.EMPTY_ARRAY));
+            }
+            else if(pattern instanceof ELiteral) {
+                ELiteral literal = (ELiteral)pattern;
+                Constant constructor = literal.getValue();
+
+                ExpressionMatrix matrix = matrixMap.get(constructor);
+                if(matrix == null) {
+                    CodeWriter newW = w.createBlock();
+                    branches.add(new Branch(constructor, newW.getContinuation()));
+                    matrix = new ExpressionMatrix(newW, replace(scrutinee, columnId, newW.getParameters()));
+                    matrices.add(matrix);
+                    matrixMap.put(constructor, matrix);
+                }
+                matrix.rows.add(row.replace(columnId, Expression.EMPTY_ARRAY));
+            }
+            else if(pattern instanceof EExternalConstant) {
+                EExternalConstant constant = (EExternalConstant)pattern;
+                Constant constructor = w.getModuleWriter().getExternalConstant(constant.getValue(), constant.getType());
+
+                ExpressionMatrix matrix = matrixMap.get(constructor);
+                if(matrix == null) {
+                    CodeWriter newW = w.createBlock();
+                    branches.add(new Branch(constructor, newW.getContinuation()));
+                    matrix = new ExpressionMatrix(newW, replace(scrutinee, columnId, newW.getParameters()));
+                    matrices.add(matrix);
+                    matrixMap.put(constructor, matrix);
+                }
+                matrix.rows.add(row.replace(columnId, Expression.EMPTY_ARRAY));
+            }
+            else
+                throw new InternalCompilerError("Cannot handle an instance of " + pattern.getClass().getSimpleName() + " in a pattern.");
+        }
+        if(i < rows.size()) {
+            CodeWriter newW = w.createBlock();
+            ICont cont = newW.getContinuation();
+            branches.add(new Branch(null, cont));
+            split(newW, env, scrutinee, success, failure, rows.subList(i, rows.size()));
+            failure = cont;
+        }
+        else {
+            TCon con;
+            try {
+                con = Types.getConstructor(scrutinee[columnId].getType());
+            } catch (MatchException e) {
+                throw new InternalCompilerError();
+            }
+            TypeConstructor cons = env.getTypeConstructor(con);
+            int maxBranchCount = cons.isOpen ? Integer.MAX_VALUE 
+                    : cons.constructors.length;
+            if(branches.size() < maxBranchCount)
+                branches.add(new Branch(null, failure));
+        }
+
+        for(ExpressionMatrix mx : matrices)
+            split(mx.w, env, mx.scrutinee, success, failure, mx.rows);
+        w.switch_(scrutinee[columnId], branches.toArray(new Branch[branches.size()]));
+    }
+
+    public static void split(CodeWriter w, Environment env, IVal[] scrutinee, ICont success, ICont failure, List<Row> rows) {
+        Row firstRow = rows.get(0);
+        Expression[] patterns = firstRow.patterns;
+        if(scrutinee.length != patterns.length)
+            throw new InternalCompilerError();
+        
+        // Find a non-variable pattern and split by it
+        for(int i=0;i<patterns.length;++i) {
+            if(!(patterns[i] instanceof EVariable)) {
+                split(w, env, scrutinee, success, failure, rows, i);
+                return;
+            }
+        }
+
+        // No matching needed
+        for(int i=0;i<patterns.length;++i)
+            ((EVariable)patterns[i]).getVariable().setVal(scrutinee[i]);
+        if(firstRow.value instanceof GuardedExpressionGroup) {
+            GuardedExpressionGroup group = (GuardedExpressionGroup)firstRow.value;
+            if(rows.size() == 1) {
+                group.compile(env, w, success, failure);
+            }
+            else {
+                CodeWriter newW = w.createBlock();            
+                ICont cont = newW.getContinuation();
+                group.compile(env, w, success, cont);
+                split(newW, env, scrutinee, success, failure, rows.subList(1, rows.size()));
+            }
+        }
+        else
+            w.jump(success, firstRow.value.toVal(env, w));
+    }
+}