X-Git-Url: http://svarog.pmf.uns.ac.rs/gitweb/?p=mjc2wsl.git;a=blobdiff_plain;f=src%2Fmjc2wsl.java;h=521be052fffd8f23a56a4537793fc4a85227245d;hp=4a30186c26ffc1c0526f291014591f44b40118d7;hb=dd4a6268bba13afdda7ccd40d82a5955ef56eb7d;hpb=187580f7c0a25b0fc9c5110cdc25c6f71f4785eb diff --git a/src/mjc2wsl.java b/src/mjc2wsl.java index 4a30186..521be05 100644 --- a/src/mjc2wsl.java +++ b/src/mjc2wsl.java @@ -185,8 +185,20 @@ public class mjc2wsl{ private String getTop() { return cmdFromEStack("tempa"); } + + private String getRelationFor(int opcode) throws Exception { + switch (opcode) { + case jeq: return "="; + case jne: return "#"; + case jlt: return "<"; + case jle: return "<="; + case jgt: return ">"; + case jge: return ">="; + } + throw new Exception("Wrong opcode for a relation"); + } - public void convertStream(InputStream ins){ + public void convertStream(InputStream ins) throws Exception{ mainIn = ins; //skip start TODO make better for (int i = 0; i < 14; i++) @@ -249,7 +261,8 @@ public class mjc2wsl{ case jgt: case jge: { prl(getTopTwo()); - prl("IF tempb >= tempa THEN CALL a" + (counter + get2()) + prl("IF tempb "+ getRelationFor(op) + +" tempa THEN CALL a" + (counter + get2()) + " FI;"); break; }