HomeSort by relevance Sort by last modified time
    Searched refs:UnreachableInst (Results 1 - 25 of 37) 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 390 UnreachableInst* UnreachablePlaceholder = 0;
472 UnreachablePlaceholder = new UnreachableInst(F.getContext(), UnwindBB);
545 new UnreachableInst(F.getContext(), UnwindBlock);
548 new UnreachableInst(F.getContext(), TermBlock);
FlattenCFG.cpp 298 new UnreachableInst(CB->getContext(), CB);
SimplifyCFG.cpp 104 bool SimplifyUnreachable(UnreachableInst *UI);
    [all...]
LoopSimplify.cpp 179 new UnreachableInst((*I)->getContext(), *I);
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 145 new UnreachableInst(Ctx, UnwindBB);
172 new UnreachableInst(Ctx, UnwindBB);
StackProtector.cpp 413 new UnreachableInst(Context, FailBB);
Analysis.cpp 493 !isa<UnreachableInst>(Term)))
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 211 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) {
220 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 86 new UnreachableInst(I->getContext(), I);
135 if (!isa<UnreachableInst>(BBI)) {
LoopUnswitch.cpp     [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 320 new UnreachableInst(Context, BB);
418 new UnreachableInst(FStub->getContext(), BB);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 174 void visitUnreachableInst(UnreachableInst &I);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 74 class UnreachableInst;
423 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/
PathNumbering.cpp 388 if(isa<ReturnInst>(terminator) || isa<UnreachableInst>(terminator) ||
Lint.cpp 96 void visitUnreachableInst(UnreachableInst &I);
575 void Lint::visitUnreachableInst(UnreachableInst &I) {
BranchProbabilityInfo.cpp 127 if (isa<UnreachableInst>(TI))
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 305 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 346 } else if (isa<UnreachableInst>(L)) {

Completed in 438 milliseconds

1 2