HomeSort by: relevance | last modified time | path
    Searched refs:NormalDest (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Dominators.cpp 185 BasicBlock *NormalDest = II->getNormalDest();
186 BasicBlockEdge E(DefBB, NormalDest);
192 BasicBlock *NormalDest = CBI->getDefaultDest();
193 BasicBlockEdge E(DefBB, NormalDest);
226 // . NormalDest
229 // Given the definition of dominance, NormalDest is dominated by X iff X
230 // dominates all of NormalDest's predecessors (X, B, C in the example). X
232 // other predecessors. Since the only way out of X is via NormalDest, X can
233 // only properly dominate a node if NormalDest dominates that node too.
302 BasicBlock *NormalDest = II->getNormalDest()
    [all...]
IRBuilder.cpp 700 Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest,
718 return Builder->CreateInvoke(FnStatepoint, NormalDest, UnwindDest, Args,
726 BasicBlock *NormalDest, BasicBlock *UnwindDest,
730 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest,
737 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
741 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags,
747 BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs,
750 this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest,
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRBuilder.h 815 Value *ActualInvokee, BasicBlock *NormalDest,
824 BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags,
834 Value *ActualInvokee, BasicBlock *NormalDest,
1012 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1017 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args, OpBundles);
1023 BasicBlock *NormalDest, BasicBlock *UnwindDest,
1027 InvokeInst::Create(Ty, Callee, NormalDest, UnwindDest, Args);
1033 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
1038 NormalDest, UnwindDest, Args, OpBundles, Name);
1041 InvokeInst *CreateInvoke(FunctionCallee Callee, BasicBlock *NormalDest,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp 1764 BasicBlock *NormalDest = II->getNormalDest();
1765 assert(!isa<PHINode>(NormalDest->begin()) &&
1766 NormalDest->getUniquePredecessor() &&
1769 Builder.SetInsertPoint(&*NormalDest->getFirstInsertionPt());
2065 BasicBlock *NormalDest = Invoke->getNormalDest();
2066 Store->insertBefore(NormalDest->getFirstNonPHI());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 3745 BasicBlock *NormalDest = cast<InvokeInst>(CB).getNormalDest();
3746 if (!NormalDest->getSinglePredecessor()) {
3748 // Perhaps we need to split the edge between this BB and NormalDest,
3756 NextInsn = NormalDest->getFirstInsertionPt();
3757 assert(NextInsn != NormalDest->end() &&

Completed in 31 milliseconds