Compare commits
1 Commits
until
...
or-skip-ri
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73e1113764 |
@@ -1,10 +1,12 @@
|
|||||||
var i = 0
|
fun putstr(s)
|
||||||
|
|
||||||
fun main() =
|
fun f1() =
|
||||||
until i >= 10 do
|
putstr("funkcija 1\n\00"),
|
||||||
putint(i),
|
|
||||||
i = i + 1
|
|
||||||
end,
|
|
||||||
0
|
0
|
||||||
|
|
||||||
fun putint(n)
|
fun f2() =
|
||||||
|
putstr("funkcija 2\n\00"),
|
||||||
|
0
|
||||||
|
|
||||||
|
fun main() =
|
||||||
|
f1() || f2()
|
||||||
@@ -57,10 +57,6 @@ public record Token(Report.Location location, Symbol symbol, String lexeme) impl
|
|||||||
* Kljucna beseda {@code while}.
|
* Kljucna beseda {@code while}.
|
||||||
*/
|
*/
|
||||||
WHILE,
|
WHILE,
|
||||||
/**
|
|
||||||
* Kljucna beseda {@code until}.
|
|
||||||
*/
|
|
||||||
UNTIL,
|
|
||||||
/**
|
/**
|
||||||
* Kljucna beseda {@code do}.
|
* Kljucna beseda {@code do}.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -227,13 +227,10 @@ public class CodeGen {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<PDM.CodeInstr> visit(AST.BinExpr binExpr, Mem.Frame frame) {
|
public List<PDM.CodeInstr> visit(AST.BinExpr binExpr, Mem.Frame frame) {
|
||||||
Report.Locatable loc = attrAST.attrLoc.get(binExpr);
|
Report.Location loc = attrAST.attrLoc.get(binExpr).location();
|
||||||
|
|
||||||
List<PDM.CodeInstr> code = new ArrayList<>();
|
List<PDM.CodeInstr> code = new ArrayList<>();
|
||||||
|
|
||||||
code.addAll(binExpr.fstExpr.accept(this, frame));
|
|
||||||
code.addAll(binExpr.sndExpr.accept(this, frame));
|
|
||||||
|
|
||||||
PDM.OPER.Oper oper = switch (binExpr.oper) {
|
PDM.OPER.Oper oper = switch (binExpr.oper) {
|
||||||
case OR -> PDM.OPER.Oper.OR;
|
case OR -> PDM.OPER.Oper.OR;
|
||||||
case AND -> PDM.OPER.Oper.AND;
|
case AND -> PDM.OPER.Oper.AND;
|
||||||
@@ -250,8 +247,35 @@ public class CodeGen {
|
|||||||
case MOD -> PDM.OPER.Oper.MOD;
|
case MOD -> PDM.OPER.Oper.MOD;
|
||||||
};
|
};
|
||||||
|
|
||||||
code.add(new PDM.OPER(oper, loc));
|
if (oper == PDM.OPER.Oper.OR) {
|
||||||
|
String locStr = loc.begLine() + ":" + loc.begColumn();
|
||||||
|
String rightLabel = "$or:right" + locStr;
|
||||||
|
String skipLabel = "$or:skip@" + locStr;
|
||||||
|
String endLabel = "$or:end@" + locStr;
|
||||||
|
|
||||||
|
code.addAll(binExpr.fstExpr.accept(this, frame));
|
||||||
|
code.add(new PDM.NAME(skipLabel, loc));
|
||||||
|
code.add(new PDM.NAME(rightLabel, loc));
|
||||||
|
code.add(new PDM.CJMP(loc));
|
||||||
|
|
||||||
|
code.add(new PDM.LABEL(rightLabel, loc));
|
||||||
|
code.add(new PDM.PUSH(0, loc));
|
||||||
|
code.addAll(binExpr.sndExpr.accept(this, frame));
|
||||||
|
code.add(new PDM.OPER(oper, loc));
|
||||||
|
code.add(new PDM.NAME(endLabel, loc));
|
||||||
|
code.add(new PDM.UJMP(loc));
|
||||||
|
|
||||||
|
code.add(new PDM.LABEL(skipLabel, loc));
|
||||||
|
code.add(new PDM.PUSH(1, loc));
|
||||||
|
|
||||||
|
code.add(new PDM.LABEL(endLabel, loc));
|
||||||
|
} else {
|
||||||
|
code.addAll(binExpr.fstExpr.accept(this, frame));
|
||||||
|
code.addAll(binExpr.sndExpr.accept(this, frame));
|
||||||
|
|
||||||
|
code.add(new PDM.OPER(oper, loc));
|
||||||
|
}
|
||||||
|
|
||||||
attrAST.attrCode.put(binExpr, code);
|
attrAST.attrCode.put(binExpr, code);
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -315,7 +315,6 @@ public class LexAn implements AutoCloseable {
|
|||||||
case "then" -> Token.Symbol.THEN;
|
case "then" -> Token.Symbol.THEN;
|
||||||
case "else" -> Token.Symbol.ELSE;
|
case "else" -> Token.Symbol.ELSE;
|
||||||
case "while" -> Token.Symbol.WHILE;
|
case "while" -> Token.Symbol.WHILE;
|
||||||
case "until" -> Token.Symbol.UNTIL;
|
|
||||||
case "do" -> Token.Symbol.DO;
|
case "do" -> Token.Symbol.DO;
|
||||||
case "let" -> Token.Symbol.LET;
|
case "let" -> Token.Symbol.LET;
|
||||||
case "in" -> Token.Symbol.IN;
|
case "in" -> Token.Symbol.IN;
|
||||||
|
|||||||
@@ -227,21 +227,6 @@ public class SynAn implements AutoCloseable {
|
|||||||
return whileStmt;
|
return whileStmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
case UNTIL: {
|
|
||||||
// statement -> until expression do statements end
|
|
||||||
Token untilT = check(Token.Symbol.UNTIL);
|
|
||||||
AST.Expr cond = parseExpression();
|
|
||||||
check(Token.Symbol.DO);
|
|
||||||
List<AST.Stmt> stmts = parseStatements();
|
|
||||||
Token end = check(Token.Symbol.END);
|
|
||||||
|
|
||||||
AST.Expr negCond = new AST.UnExpr(AST.UnExpr.Oper.NOT, cond);
|
|
||||||
|
|
||||||
AST.WhileStmt whileStmt = new AST.WhileStmt(negCond, stmts);
|
|
||||||
attrLoc.put(whileStmt, new Report.Location(untilT, end));
|
|
||||||
return whileStmt;
|
|
||||||
}
|
|
||||||
|
|
||||||
case LET: {
|
case LET: {
|
||||||
// statement -> let definition reststmtdefs in statements end
|
// statement -> let definition reststmtdefs in statements end
|
||||||
Token let = check(Token.Symbol.LET);
|
Token let = check(Token.Symbol.LET);
|
||||||
|
|||||||
Reference in New Issue
Block a user