/external/llvm/unittests/Bitcode/ |
D | BitReaderTest.cpp | 34 new UnreachableInst(Mod->getContext(), Entry); in makeLLVMModule() 37 new UnreachableInst(Mod->getContext(), BB); in makeLLVMModule()
|
/external/llvm/lib/Transforms/Utils/ |
D | UnifyFunctionExitNodes.cpp | 57 else if (isa<UnreachableInst>(I->getTerminator())) in runOnFunction() 68 new UnreachableInst(F.getContext(), UnreachableBlock); in runOnFunction()
|
D | LowerInvoke.cpp | 393 UnreachableInst* UnreachablePlaceholder = 0; in insertExpensiveEHSupport() 474 UnreachablePlaceholder = new UnreachableInst(F.getContext(), UnwindBB); in insertExpensiveEHSupport() 547 new UnreachableInst(F.getContext(), UnwindBlock); in insertExpensiveEHSupport() 550 new UnreachableInst(F.getContext(), TermBlock); in insertExpensiveEHSupport()
|
D | SimplifyCFG.cpp | 72 bool SimplifyUnreachable(UnreachableInst *UI); 1982 new UnreachableInst(OldTerm->getContext(), OldTerm); in SimplifyTerminatorOnSelect() 2353 bool SimplifyCFGOpt::SimplifyUnreachable(UnreachableInst *UI) { in SimplifyUnreachable() 2409 new UnreachableInst(TI->getContext(), TI); in SimplifyUnreachable() 2722 new UnreachableInst(IBI->getContext(), IBI); in SimplifyIndirectBr() 2969 } else if (UnreachableInst *UI = in run() 2970 dyn_cast<UnreachableInst>(BB->getTerminator())) { in run()
|
D | LoopSimplify.cpp | 176 new UnreachableInst((*I)->getContext(), *I); in ProcessLoop()
|
D | Local.cpp | 210 new UnreachableInst(BB->getContext(), BB); in ConstantFoldTerminator()
|
/external/llvm/include/llvm/ |
D | LinkAllVMCore.h | 47 (void)new llvm::UnreachableInst(llvm::getGlobalContext()); in ForceVMCoreLinking()
|
D | Instruction.def | 103 HANDLE_TERM_INST ( 7, Unreachable, UnreachableInst)
|
D | Instructions.h | 3124 class UnreachableInst : public TerminatorInst { 3127 virtual UnreachableInst *clone_impl() const; 3134 explicit UnreachableInst(LLVMContext &C, Instruction *InsertBefore = 0); 3135 explicit UnreachableInst(LLVMContext &C, BasicBlock *InsertAtEnd); 3140 static inline bool classof(const UnreachableInst *) { return true; }
|
/external/llvm/lib/CodeGen/ |
D | DwarfEHPrepare.cpp | 149 new UnreachableInst(Ctx, UnwindBB); in InsertUnwindResumeCalls() 176 new UnreachableInst(Ctx, UnwindBB); in InsertUnwindResumeCalls()
|
D | StackProtector.cpp | 253 new UnreachableInst(F->getContext(), FailBB); in CreateFailBB()
|
D | Analysis.cpp | 229 !isa<UnreachableInst>(Term))) return false; in isInTailCallPosition()
|
/external/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 209 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) { in SimplifyFunction() 218 new UnreachableInst(BB->getContext(), BB); in SimplifyFunction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SimplifyCFGPass.cpp | 79 new UnreachableInst(I->getContext(), I); in ChangeToUnreachable() 131 if (!isa<UnreachableInst>(BBI)) { in MarkAliveBlocks()
|
D | LoopUnswitch.cpp | 976 new UnreachableInst(BB->getContext(), Pred); in RemoveBlockIfDead() 1174 new UnreachableInst(Context, Abort); in RewriteLoopBodyWithConditionConstant()
|
/external/llvm/include/llvm/Support/ |
D | InstVisitor.h | 166 RetTy visitUnreachableInst(UnreachableInst &I) { DELEGATE(TerminatorInst);} in visitUnreachableInst()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 74 class UnreachableInst; variable 432 void visitUnreachable(const UnreachableInst &I) { /* noop */ } in visitUnreachable()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 174 void visitUnreachableInst(UnreachableInst &I);
|
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 671 UnreachableInst::UnreachableInst(LLVMContext &Context, in UnreachableInst() function in UnreachableInst 676 UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd) in UnreachableInst() function in UnreachableInst 681 unsigned UnreachableInst::getNumSuccessorsV() const { in getNumSuccessorsV() 685 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { in setSuccessorV() 689 BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const { in getSuccessorV() 3504 UnreachableInst *UnreachableInst::clone_impl() const { in clone_impl() 3506 return new UnreachableInst(Context); in clone_impl()
|
/external/llvm/lib/Analysis/ |
D | Lint.cpp | 96 void visitUnreachableInst(UnreachableInst &I); 541 void Lint::visitUnreachableInst(UnreachableInst &I) { in visitUnreachableInst()
|
D | PathNumbering.cpp | 389 if(isa<ReturnInst>(terminator) || isa<UnreachableInst>(terminator) || in buildNode()
|
D | InlineCost.cpp | 841 if (isa<UnreachableInst>(II->getNormalDest()->begin())) in analyzeCall() 843 } else if (isa<UnreachableInst>(++BasicBlock::iterator(CS.getInstruction()))) in analyzeCall()
|
D | BranchProbabilityInfo.cpp | 100 if (isa<UnreachableInst>(TI)) in calcUnreachableHeuristics()
|
/external/llvm/tools/bugpoint/ |
D | CrashDebugger.cpp | 307 new UnreachableInst(BB->getContext(), BB); in TestBlocks()
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 348 } else if (isa<UnreachableInst>(L)) { in diff()
|