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

1 2

  /external/llvm/include/llvm/
LinkAllIR.h 47 (void)new llvm::UnreachableInst(llvm::getGlobalContext());
InstVisitor.h 171 RetTy visitUnreachableInst(UnreachableInst &I) { DELEGATE(TerminatorInst);}
  /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 99 bool SimplifyUnreachable(UnreachableInst *UI);
    [all...]
BasicBlockUtils.cpp 707 /// UnreachableInst, otherwise it branches to Tail.
720 CheckTerm = new UnreachableInst(C, ThenBlock);
LoopSimplify.cpp 178 new UnreachableInst((*I)->getContext(), *I);
Local.cpp 251 new UnreachableInst(BB->getContext(), BB);
    [all...]
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 149 new UnreachableInst(Ctx, UnwindBB);
176 new UnreachableInst(Ctx, UnwindBB);
StackProtector.cpp 368 new UnreachableInst(F->getContext(), FailBB);
Analysis.cpp 283 !isa<UnreachableInst>(Term)))
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 213 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) {
222 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 87 new UnreachableInst(I->getContext(), I);
136 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/lib/IR/
Instructions.cpp 696 // UnreachableInst Implementation
699 UnreachableInst::UnreachableInst(LLVMContext &Context,
704 UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
709 unsigned UnreachableInst::getNumSuccessorsV() const {
713 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
714 llvm_unreachable("UnreachableInst has no successors!");
717 BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
718 llvm_unreachable("UnreachableInst has no successors!")
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 113 if (isa<UnreachableInst>(TI))
PathNumbering.cpp 388 if(isa<ReturnInst>(terminator) || isa<UnreachableInst>(terminator) ||
Lint.cpp 96 void visitUnreachableInst(UnreachableInst &I);
575 void Lint::visitUnreachableInst(UnreachableInst &I) {
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 307 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 346 } else if (isa<UnreachableInst>(L)) {

Completed in 151 milliseconds

1 2