Searched refs:lastInsn (Results 1 – 10 of 10) sorted by relevance
86 Insn lastInsn = insns.get(sz - 1); in BasicBlock() local87 if (lastInsn.getOpcode().getBranchingness() == Rop.BRANCH_NONE) { in BasicBlock()235 Insn lastInsn = insns.getLast(); in hasExceptionHandlers() local236 return lastInsn.getCatches().size() != 0; in hasExceptionHandlers()250 Insn lastInsn = insns.getLast(); in getExceptionHandlerTypes() local251 return lastInsn.getCatches(); in getExceptionHandlerTypes()
121 SsaInsn lastInsn = insns.get(insnSz - 1); in processBlock() local123 = lastInsn.getOriginalRopInsn().getCatches().size() !=0 ; in processBlock()125 && (lastInsn.getResult() != null); in processBlock()
268 SsaInsn lastInsn = insns.get(insns.size() - 1); in needsNewSuccessor() local270 return ((lastInsn.getResult() != null) in needsNewSuccessor()271 || (lastInsn.getSources().size() > 0)) in needsNewSuccessor()
585 NormalSsaInsn lastInsn; in addMoveToEnd() local586 lastInsn = (NormalSsaInsn)insns.get(insns.size()-1); in addMoveToEnd()588 if (lastInsn.getResult() != null || lastInsn.getSources().size() > 0) { in addMoveToEnd()
838 SsaInsn lastInsn = (insnsSz == 0) ? null : insns.get(insnsSz - 1); in deleteInsns() local841 || lastInsn.getOriginalRopInsn() == null in deleteInsns()842 || lastInsn.getOriginalRopInsn().getOpcode() in deleteInsns()
281 SsaInsn lastInsn = insns.get(insns.size() - 1); in verifyValidExitPredecessor() local282 Rop opcode = lastInsn.getOpcode(); in verifyValidExitPredecessor()
270 Insn lastInsn = block.getLastInsn(); in outputBlock() local282 Rop lastRop = lastInsn.getOpcode(); in outputBlock()299 new TargetInsn(Dops.GOTO, lastInsn.getPosition(), in outputBlock()
264 Insn lastInsn = block.getLastInsn(); in outputBlock() local276 Rop lastRop = lastInsn.getOpcode(); in outputBlock()293 new TargetInsn(Dops.GOTO, lastInsn.getPosition(), in outputBlock()
1018 Insn lastInsn = (insnSz == 0) ? null : insns.get(insnSz - 1); in processBlock() local1028 if ((lastInsn == null) || in processBlock()1029 (lastInsn.getOpcode().getBranchingness() == Rop.BRANCH_NONE)) { in processBlock()1030 SourcePosition pos = (lastInsn == null) ? SourcePosition.NO_INFO : in processBlock()1031 lastInsn.getPosition(); in processBlock()