HomeSort by relevance Sort by last modified time
    Searched refs:UnreachableInst (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/include/llvm/
LinkAllVMCore.h 47 (void)new llvm::UnreachableInst(llvm::getGlobalContext());
Instructions.h     [all...]
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 34 new UnreachableInst(Mod->getContext(), Entry);
37 new UnreachableInst(Mod->getContext(), BB);
  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 57 else if (isa<UnreachableInst>(I->getTerminator()))
68 new UnreachableInst(F.getContext(), UnreachableBlock);
LowerInvoke.cpp 393 UnreachableInst* UnreachablePlaceholder = 0;
474 UnreachablePlaceholder = new UnreachableInst(F.getContext(), UnwindBB);
547 new UnreachableInst(F.getContext(), UnwindBlock);
550 new UnreachableInst(F.getContext(), TermBlock);
SimplifyCFG.cpp 89 bool SimplifyUnreachable(UnreachableInst *UI);
    [all...]
LoopSimplify.cpp 176 new UnreachableInst((*I)->getContext(), *I);
Local.cpp 216 new UnreachableInst(BB->getContext(), BB);
    [all...]
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 149 new UnreachableInst(Ctx, UnwindBB);
176 new UnreachableInst(Ctx, UnwindBB);
StackProtector.cpp 281 new UnreachableInst(F->getContext(), FailBB);
Analysis.cpp 286 !isa<UnreachableInst>(Term)))
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 209 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) {
218 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 79 new UnreachableInst(I->getContext(), I);
130 if (!isa<UnreachableInst>(BBI)) {
LoopUnswitch.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 174 void visitUnreachableInst(UnreachableInst &I);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 74 class UnreachableInst;
425 void visitUnreachable(const UnreachableInst &I) { /* noop */ }
  /external/llvm/include/llvm/Support/
InstVisitor.h 171 RetTy visitUnreachableInst(UnreachableInst &I) { DELEGATE(TerminatorInst);}
  /external/llvm/lib/VMCore/
Instructions.cpp 674 // UnreachableInst Implementation
677 UnreachableInst::UnreachableInst(LLVMContext &Context,
682 UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
687 unsigned UnreachableInst::getNumSuccessorsV() const {
691 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
692 llvm_unreachable("UnreachableInst has no successors!");
695 BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
696 llvm_unreachable("UnreachableInst has no successors!")
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 113 if (isa<UnreachableInst>(TI))
PathNumbering.cpp 389 if(isa<ReturnInst>(terminator) || isa<UnreachableInst>(terminator) ||
InlineCost.cpp 837 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
839 } else if (isa<UnreachableInst>(++BasicBlock::iterator(CS.getInstruction())))
    [all...]
Lint.cpp 96 void visitUnreachableInst(UnreachableInst &I);
541 void Lint::visitUnreachableInst(UnreachableInst &I) {
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 307 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 348 } else if (isa<UnreachableInst>(L)) {
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 267 // If Unreachable, ThenBlock is terminated with UnreachableInst, otherwise
278 CheckTerm = new UnreachableInst(C, ThenBlock);
448 // UnreachableInst at the end.
498 CrashTerm = new UnreachableInst(*C, CrashBlock);
    [all...]

Completed in 743 milliseconds

1 2