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

1 2 3 4 5 6 7 8 91011

  /external/llvm/lib/Transforms/Utils/
DemoteRegToStack.cpp 45 if (InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
96 InvokeInst &II = cast<InvokeInst>(I);
126 if (InvokeInst *II = dyn_cast<InvokeInst>(P->getIncomingValue(i))) {
LowerInvoke.cpp 56 if (InvokeInst *II = dyn_cast<InvokeInst>(BB.getTerminator())) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
BlockExtractor.cpp 95 if (!isa<InvokeInst>(&I))
97 InvokeInst *II = cast<InvokeInst>(&I);
106 isa<InvokeInst>(Parent->getTerminator())) {
155 if (const InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DemoteRegToStack.cpp 47 if (InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
98 InvokeInst &II = cast<InvokeInst>(I);
131 if (InvokeInst *II = dyn_cast<InvokeInst>(P->getIncomingValue(i))) {
LowerInvoke.cpp 50 if (InvokeInst *II = dyn_cast<InvokeInst>(BB.getTerminator())) {
CallPromotionUtils.cpp 48 static void fixupPHINodeForNormalDest(InvokeInst *Invoke, BasicBlock *OrigBlock,
79 static void fixupPHINodeForUnwindDest(InvokeInst *Invoke, BasicBlock *OrigBlock,
173 if (auto *Invoke = dyn_cast<InvokeInst>(CS.getInstruction()))
292 if (auto *OrigInvoke = dyn_cast<InvokeInst>(OrigInst)) {
293 auto *NewInvoke = cast<InvokeInst>(NewInst);
  /external/llvm/include/llvm/CodeGen/
WinEHFuncInfo.h 30 class InvokeInst;
96 DenseMap<const InvokeInst *, int> InvokeStateMap;
107 void addIPToStateRange(const InvokeInst *II, MCSymbol *InvokeBegin,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
WinEHFuncInfo.h 32 class InvokeInst;
94 DenseMap<const InvokeInst *, int> InvokeStateMap;
105 void addIPToStateRange(const InvokeInst *II, MCSymbol *InvokeBegin,
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h 38 class InvokeInst;
45 typename InvokeTy = const InvokeInst,
72 /// Note that !isCall() does not mean it is an InvokeInst enclosed,
76 /// isInvoke - true if a InvokeInst is enclosed.
160 : cast<InvokeInst>(II)->METHOD
167 cast<InvokeInst>(II)->METHOD
262 return cast<InvokeInst>(getInstruction())->op_end() - 3;
267 CallInst, InvokeInst, User::op_iterator> {
269 CallInst, InvokeInst, User::op_iterator> Base;
275 CallSite(InvokeInst *II) : Base(II) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DemoteRegToStack.cpp 94 InvokeInst &II = cast<InvokeInst>(I);
130 if (InvokeInst *II = dyn_cast<InvokeInst>(P->getIncomingValue(i))) {
LowerInvoke.cpp 96 void splitLiveRangesLiveAcrossInvokes(SmallVectorImpl<InvokeInst*>&Invokes);
97 void rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,
175 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
216 void LowerInvoke::rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,
286 splitLiveRangesLiveAcrossInvokes(SmallVectorImpl<InvokeInst*> &Invokes) {
289 InvokeInst *II = Invokes[i];
367 std::set<InvokeInst*> InvokesWithStoreInserted;
408 SmallVector<InvokeInst*,16> Invokes;
416 } else if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Dominators.cpp 90 if (const InvokeInst *II = dyn_cast<InvokeInst>(A))
Instruction.cpp 213 if (const InvokeInst *CI = dyn_cast<InvokeInst>(this))
214 return CI->getCallingConv() == cast<InvokeInst>(I)->getCallingConv() &&
215 CI->getAttributes() == cast<InvokeInst>(I)->getAttributes();
268 if (const InvokeInst *CI = dyn_cast<InvokeInst>(this))
269 return CI->getCallingConv() == cast<InvokeInst>(I)->getCallingConv() &&
271 cast<InvokeInst>(I)->getAttributes();
327 return !cast<InvokeInst>(this)->doesNotAccessMemory();
347 return !cast<InvokeInst>(this)->onlyReadsMemory()
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
Cloning.h 37 class InvokeInst;
208 bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
DwarfEHPrepare.cpp 86 void FindAllURoRInvokes(SmallPtrSet<InvokeInst*, 32> &URoRInvokes);
163 FindAllURoRInvokes(SmallPtrSet<InvokeInst*, 32> &URoRInvokes) {
167 if (InvokeInst *II = dyn_cast<InvokeInst>(*I))
218 } else if (InvokeInst *Invoke = dyn_cast<InvokeInst>(II)) {
260 SmallPtrSet<InvokeInst*, 32> URoRInvokes;
268 for (SmallPtrSet<InvokeInst*, 32>::iterator
371 if (!isa<InvokeInst>(TI))
392 if (!isa<InvokeInst>(PT) || LPad == PT->getSuccessor(0))
    [all...]
SjLjEHPrepare.cpp 63 DenseMap<InvokeInst*, BasicBlock*> LPadSuccMap;
80 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst*> Invokes);
83 void markInvokeCallSite(InvokeInst *II, int InvokeNo, Value *CallSite,
85 void splitLiveRangesAcrossInvokes(SmallVector<InvokeInst*,16> &Invokes);
86 void splitLandingPad(InvokeInst *II);
160 void SjLjEHPass::splitLandingPad(InvokeInst *II) {
184 void SjLjEHPass::markInvokeCallSite(InvokeInst *II, int InvokeNo,
243 splitLiveRangesAcrossInvokes(SmallVector<InvokeInst*,16> &Invokes) {
246 InvokeInst *II = Invokes[i];
406 SmallVector<InvokeInst*,16> Invokes
    [all...]
  /external/llvm/include/llvm/IR/
CallSite.h 38 class InvokeInst;
47 typename InvokeTy = const InvokeInst,
76 /// Note that !isCall() does not mean it is an InvokeInst enclosed,
80 /// isInvoke - true if a InvokeInst is enclosed.
259 : cast<InvokeInst>(II)->METHOD
266 cast<InvokeInst>(II)->METHOD
530 cast<InvokeInst>(II)->getOperandBundlesAsDefs(Defs);
597 return cast<InvokeInst>(getInstruction())->op_end() - 3;
602 Instruction, CallInst, InvokeInst,
608 CallSite(InvokeInst *II) : CallSiteBase(II) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 226 InvokeInst *II = dyn_cast<InvokeInst>(I);
238 isa<InvokeInst>(Parent->getTerminator())) {
304 if (const InvokeInst *II =
305 dyn_cast<InvokeInst>(BlockToExtract->getTerminator()))
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
LoopExtractor.cpp 219 InvokeInst *II = dyn_cast<InvokeInst>(I);
231 isa<InvokeInst>(Parent->getTerminator())) {
296 if (const InvokeInst *II =
297 dyn_cast<InvokeInst>(BlocksToExtract[i]->getTerminator()))
  /external/llvm/lib/Analysis/
CodeMetrics.cpp 116 if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
161 if (const InvokeInst *InvI = dyn_cast<InvokeInst>(&I))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
CodeMetrics.cpp 129 if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
174 if (const InvokeInst *InvI = dyn_cast<InvokeInst>(&I))
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 39 class InvokeInst;
213 bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI,
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 276 } else if (isa<InvokeInst>(L)) {
277 InvokeInst *LI = cast<InvokeInst>(L);
278 InvokeInst *RI = cast<InvokeInst>(R);
603 if (isa<BranchInst>(LTerm) && isa<InvokeInst>(RTerm)) {
610 InvokeInst *RInvoke = cast<InvokeInst>(RTerm);
616 } else if (isa<InvokeInst>(LTerm) && isa<BranchInst>(RTerm)) {
623 InvokeInst *LInvoke = cast<InvokeInst>(LTerm)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DifferenceEngine.cpp 280 } else if (isa<InvokeInst>(L)) {
281 InvokeInst *LI = cast<InvokeInst>(L);
282 InvokeInst *RI = cast<InvokeInst>(R);
600 if (isa<BranchInst>(LTerm) && isa<InvokeInst>(RTerm)) {
607 InvokeInst *RInvoke = cast<InvokeInst>(RTerm);
613 } else if (isa<InvokeInst>(LTerm) && isa<BranchInst>(RTerm)) {
620 InvokeInst *LInvoke = cast<InvokeInst>(LTerm)
    [all...]
  /external/llvm/include/llvm/Analysis/
ObjCARCInstKind.h 111 return isa<InvokeInst>(V) ? ARCInstKind::CallOrUser : ARCInstKind::User;

Completed in 763 milliseconds

1 2 3 4 5 6 7 8 91011