Stack: ..., value -> ...
294295296297298299300301
return tozero ? (BranchInstruction) new IFLT(null) : (BranchInstruction) new IF_ICMPLT(null); } public BranchInstruction LE(boolean tozero) { return tozero ? (BranchInstruction) new IFLE(null) : (BranchInstruction) new IF_ICMPLE(null); }
217218219220221222223224
213214215216217218219220
290291292293294295296297
1445144614471448144914501451
} private static final class IfLessThanEq0Converter implements InstConverter<IfLessThanEq0> { public void convertInst(final IfLessThanEq0 t, InstructionListContext ilc) { TypeCode type = t.type ; createCMP0(ilc,type,new IFLE(null),t.mark) ; }
1487148814891490149114921493
} private static final class IfLessthanEqConverter implements InstConverter<IfLessThanEq> { public void convertInst(final IfLessThanEq t, InstructionListContext ilc) { TypeCode type = t.type ; createIfTest(ilc,type,new IF_ICMPLE(null),new IFLE(null),t.mark) ; }
215216217218219220221222
292293294295296297298299