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()236 Insn lastInsn = insns.getLast(); in hasExceptionHandlers() local237 return lastInsn.getCatches().size() != 0; in hasExceptionHandlers()251 Insn lastInsn = insns.getLast(); in getExceptionHandlerTypes() local252 return lastInsn.getCatches(); in getExceptionHandlerTypes()
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()
271 SsaInsn lastInsn = insns.get(insns.size() - 1); in needsNewSuccessor() local283 return ((lastInsn.getResult() != null) in needsNewSuccessor()284 || (lastInsn.getSources().size() > 0)) in needsNewSuccessor()
586 NormalSsaInsn lastInsn; in addMoveToEnd() local587 lastInsn = (NormalSsaInsn)insns.get(insns.size()-1); in addMoveToEnd()589 if (lastInsn.getResult() != null || lastInsn.getSources().size() > 0) { in addMoveToEnd()
823 SsaInsn lastInsn = (insnsSz == 0) ? null : insns.get(insnsSz - 1); in deleteInsns() local826 || lastInsn.getOriginalRopInsn() == null in deleteInsns()827 || lastInsn.getOriginalRopInsn().getOpcode() in deleteInsns()
285 SsaInsn lastInsn = insns.get(insns.size() - 1); in verifyValidExitPredecessor() local286 Rop opcode = lastInsn.getOpcode(); in verifyValidExitPredecessor()
264 Insn lastInsn = block.getLastInsn(); in outputBlock() local276 Rop lastRop = lastInsn.getOpcode(); in outputBlock()293 new TargetInsn(Dops.GOTO, lastInsn.getPosition(), in outputBlock()
271 Insn lastInsn = block.getLastInsn(); in outputBlock() local283 Rop lastRop = lastInsn.getOpcode(); in outputBlock()300 new TargetInsn(Dops.GOTO, lastInsn.getPosition(), in outputBlock()
1020 Insn lastInsn = (insnSz == 0) ? null : insns.get(insnSz - 1); in processBlock() local1030 if ((lastInsn == null) || in processBlock()1031 (lastInsn.getOpcode().getBranchingness() == Rop.BRANCH_NONE)) { in processBlock()1032 SourcePosition pos = (lastInsn == null) ? SourcePosition.NO_INFO : in processBlock()1033 lastInsn.getPosition(); in processBlock()