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());
  /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);
FlattenCFG.cpp 299 new UnreachableInst(CB->getContext(), CB);
Local.cpp 252 new UnreachableInst(BB->getContext(), BB);
    [all...]
LowerSwitch.cpp 345 Default->size() == 1 && isa<UnreachableInst>(Default->getTerminator());
SimplifyCFG.cpp 107 bool SimplifyUnreachable(UnreachableInst *UI);
    [all...]
BasicBlockUtils.cpp 670 /// UnreachableInst, otherwise it branches to Tail.
684 CheckTerm = new UnreachableInst(C, ThenBlock);
    [all...]
LoopSimplify.cpp 512 new UnreachableInst((*I)->getContext(), *I);
    [all...]
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 146 new UnreachableInst(Ctx, UnwindBB);
173 new UnreachableInst(Ctx, UnwindBB);
Analysis.cpp 494 !isa<UnreachableInst>(Term)))
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 212 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) {
221 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 328 new UnreachableInst(Context, BB);
476 new UnreachableInst(FStub->getContext(), BB);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 174 void visitUnreachableInst(UnreachableInst &I);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 75 class UnreachableInst;
645 void visitUnreachable(const UnreachableInst &I);
  /external/llvm/include/llvm/IR/
InstVisitor.h 171 RetTy visitUnreachableInst(UnreachableInst &I) { DELEGATE(TerminatorInst);}
Instructions.h     [all...]
IRBuilder.h 603 UnreachableInst *CreateUnreachable() {
604 return Insert(new UnreachableInst(Context));
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 140 bool visitUnreachableInst(UnreachableInst &I);
855 bool CallAnalyzer::visitUnreachableInst(UnreachableInst &I) {
    [all...]
  /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/
Lint.cpp 95 void visitUnreachableInst(UnreachableInst &I);
603 void Lint::visitUnreachableInst(UnreachableInst &I) {
BranchProbabilityInfo.cpp 129 if (isa<UnreachableInst>(TI))
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 305 new UnreachableInst(BB->getContext(), BB);
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 344 } else if (isa<UnreachableInst>(L)) {
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp     [all...]

Completed in 500 milliseconds

1 2