HomeSort by relevance Sort by last modified time
    Searched refs:InvokeInst (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 173 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 97 if (!isa<CallInst>(UR) && !isa<InvokeInst>(UR))
MergeFunctions.cpp 771 if (const InvokeInst *CI = dyn_cast<InvokeInst>(L)) {
773 cast<InvokeInst>(R)->getCallingConv()))
775 return cmpAttrs(CI->getAttributes(), cast<InvokeInst>(R)->getAttributes());
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 209 return GetCallSiteClass(cast<InvokeInst>(I));
ObjCARCOpts.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 571 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
573 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest,
577 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
580 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Arg1),
583 InvokeInst *CreateInvoke3(Value *Callee, BasicBlock *NormalDest,
588 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
592 InvokeInst *CreateInvoke(Value *Callee, BasicBlock *NormalDest,
595 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Args),
    [all...]
InstVisitor.h 223 RetTy visitInvokeInst(InvokeInst &I) {
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 476 InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator());
LoopInfo.cpp 220 if (const InvokeInst *II = dyn_cast<InvokeInst>((*I)->getTerminator()))
SparsePropagation.cpp 162 if (isa<InvokeInst>(TI)) {
AliasAnalysis.cpp 547 if (isa<CallInst>(V) || isa<InvokeInst>(V))
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 92 else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I))
  /external/llvm/lib/CodeGen/
Analysis.cpp 274 } else if (isa<InvokeInst>(I)) {
279 if (cast<InvokeInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
StackProtector.cpp 163 } else if (isa<InvokeInst>(U)) {
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 50 class InvokeInst;
692 void visitInvoke(const InvokeInst &I);
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 92 else if (const InvokeInst *II = dyn_cast<InvokeInst>(I))
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 92 else if (const InvokeInst *II = dyn_cast<InvokeInst>(I))
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 92 else if (const InvokeInst *II = dyn_cast<InvokeInst>(I))
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 59 if (isa<AllocaInst>(I) || isa<InvokeInst>(I))
570 if (InvokeInst *Invoke = dyn_cast<InvokeInst>(outputs[out])) {
Local.cpp     [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 87 TEST_F(ModuleWithFunctionTest, InvokeInst) {
94 std::unique_ptr<InvokeInst> Invoke(InvokeInst::Create(F, BB1, BB2, Args));
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 489 void visitInvokeInst (InvokeInst &II) {
541 if (isa<InvokeInst>(TI)) {
608 if (isa<InvokeInst>(TI))
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp 299 void visitInvokeInst(InvokeInst &II);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 150 DenseMap<InvokeInst*, std::pair<Value*, Value*> > InvokeToIntrinsicsMap;
158 InvokeInst *Inst = dyn_cast<InvokeInst>(BB->getTerminator());
176 for (DenseMap<InvokeInst*, std::pair<Value*, Value*> >::iterator
179 InvokeInst *Invoke = I->first;
237 for (DenseMap<InvokeInst*, std::pair<Value*, Value*> >::iterator
    [all...]

Completed in 355 milliseconds

12 3 4