X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Finternal%2Felaboration%2Fmatching%2FPatternMatchingCompiler.java;h=64bf7053b14d0526310fc0fcb4eae4fe149f2b7a;hb=refs%2Fchanges%2F34%2F1534%2F3;hp=7f200a11c40167e48875f48ddc97d614ffeb33af;hpb=9a175feb652b2b7bba7afa540831b9076be3c10e;p=simantics%2Fplatform.git 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 index 7f200a11c..64bf7053b 100644 --- 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 @@ -1,9 +1,11 @@ package org.simantics.scl.compiler.internal.elaboration.matching; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import org.simantics.scl.compiler.common.exceptions.InternalCompilerError; +import org.simantics.scl.compiler.compilation.CompilationContext; import org.simantics.scl.compiler.constants.Constant; import org.simantics.scl.compiler.elaboration.expressions.EApply; import org.simantics.scl.compiler.elaboration.expressions.EApplyType; @@ -12,11 +14,12 @@ 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.EViewPattern; import org.simantics.scl.compiler.elaboration.expressions.Expression; import org.simantics.scl.compiler.elaboration.expressions.GuardedExpressionGroup; +import org.simantics.scl.compiler.elaboration.java.DynamicConstructor; 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; @@ -52,7 +55,7 @@ public class PatternMatchingCompiler { return newVals; } - private static void split(CodeWriter w, final Environment env, IVal[] scrutinee, final ICont success, ICont failure, List rows, int columnId) { + private static void splitByConstructors(long location, CodeWriter w, final CompilationContext context, IVal[] scrutinee, final ICont success, ICont failure, List rows, int columnId) { THashMap matrixMap = new THashMap(); ArrayList branches = new ArrayList(); ArrayList matrices = new ArrayList(); @@ -87,19 +90,34 @@ public class PatternMatchingCompiler { 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); + // TODO How type parameters are handled??? + if(constructor_ instanceof EConstant) { + SCLValue constructor = ((EConstant)constructor_).getValue(); + + ExpressionMatrix matrix = constructor.getValue() == DynamicConstructor.INSTANCE ? null : 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(constructor_ instanceof ELiteral) { + Constant constructor = ((ELiteral)constructor_).getValue(); + + ExpressionMatrix matrix = matrixMap.get(constructor); + if(matrix == null) { + CodeWriter newW = w.createBlock(Types.getTypes(parameters)); + 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, parameters)); } - matrix.rows.add(row.replace(columnId, parameters)); } else if(pattern instanceof EConstant) { EConstant applyConstructor = (EConstant)pattern; @@ -150,7 +168,7 @@ public class PatternMatchingCompiler { 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())); + split(location, newW, context, scrutinee, success, failure, rows.subList(i, rows.size())); failure = cont; } else { @@ -160,7 +178,7 @@ public class PatternMatchingCompiler { } catch (MatchException e) { throw new InternalCompilerError(); } - TypeConstructor cons = env.getTypeConstructor(con); + TypeConstructor cons = (TypeConstructor)context.environment.getTypeDescriptor(con); int maxBranchCount = cons.isOpen ? Integer.MAX_VALUE : cons.constructors.length; if(branches.size() < maxBranchCount) @@ -168,40 +186,95 @@ public class PatternMatchingCompiler { } for(ExpressionMatrix mx : matrices) - split(mx.w, env, mx.scrutinee, success, failure, mx.rows); - w.switch_(scrutinee[columnId], branches.toArray(new Branch[branches.size()])); + split(location, mx.w, context, mx.scrutinee, success, failure, mx.rows); + w.switch_(location, scrutinee[columnId], branches.toArray(new Branch[branches.size()])); } - public static void split(CodeWriter w, Environment env, IVal[] scrutinee, ICont success, ICont failure, List rows) { + private static void splitByViewPattern(long location, CodeWriter w, CompilationContext context, IVal[] scrutinee, ICont success, + ICont failure, List rows, int viewPatternColumn) { + Row firstRow = rows.get(0); + EViewPattern firstViewPattern = (EViewPattern)firstRow.patterns[viewPatternColumn]; + firstRow.patterns[viewPatternColumn] = firstViewPattern.pattern; + int i; + for(i=1;i rows) { Row firstRow = rows.get(0); Expression[] patterns = firstRow.patterns; if(scrutinee.length != patterns.length) - throw new InternalCompilerError(); + throw new InternalCompilerError("Scrutinee and patterns have a different length"); // Find a non-variable pattern and split by it + int viewPatternColumn = -1; for(int i=0;i= 0) { + splitByViewPattern(location, w, context, scrutinee, success, failure, rows, viewPatternColumn); + return; + } - // No matching needed + // The first row has only variable patterns: no matching needed for(int i=0;i