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

1 2 3 4

  /external/llvm/lib/Analysis/
CodeMetrics.cpp 32 if (isa<CallInst>(II) || isa<InvokeInst>(II)) {
71 if (const InvokeInst *InvI = dyn_cast<InvokeInst>(II))
  /external/llvm/include/llvm/IR/
CallSite.h 37 class InvokeInst;
44 typename InvokeTy = const InvokeInst,
71 /// Note that !isCall() does not mean it is an InvokeInst enclosed,
75 /// isInvoke - true if a InvokeInst is enclosed.
178 : cast<InvokeInst>(II)->METHOD
185 cast<InvokeInst>(II)->METHOD
327 return cast<InvokeInst>(getInstruction())->op_end() - 3;
332 CallInst, InvokeInst, User::op_iterator> {
334 CallInst, InvokeInst, User::op_iterator> Base;
340 CallSite(InvokeInst *II) : Base(II) {
    [all...]
Instructions.h     [all...]
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 57 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
DemoteRegToStack.cpp 83 InvokeInst &II = cast<InvokeInst>(I);
129 if (InvokeInst *II = dyn_cast<InvokeInst>(P->getIncomingValue(i))) {
InlineFunction.cpp 39 bool llvm::InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI,
54 InvokeInliningInfo(InvokeInst *II)
189 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(), Split,
216 static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock,
230 if (InvokeInst *II = dyn_cast<InvokeInst>(I->getTerminator()))
561 if (const InvokeInst *II = dyn_cast<InvokeInst>(I->getTerminator())) {
574 if (const InvokeInst *II = dyn_cast<InvokeInst>(I->getTerminator()))
    [all...]
LCSSA.cpp 91 if (InvokeInst *Inv = dyn_cast<InvokeInst>(&Inst))
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 37 class InvokeInst;
193 bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime = true);
  /external/llvm/lib/IR/
Dominators.cpp 101 if (isa<InvokeInst>(Def) || isa<PHINode>(User))
132 const InvokeInst *II = dyn_cast<InvokeInst>(Def);
243 if (const InvokeInst *II = dyn_cast<InvokeInst>(Def)) {
Instruction.cpp 290 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
291 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
293 cast<InvokeInst>(I2)->getAttributes();
415 return !cast<InvokeInst>(this)->doesNotAccessMemory();
435 return !cast<InvokeInst>(this)->onlyReadsMemory();
Instructions.cpp 37 : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
528 // InvokeInst Implementation
531 void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
556 InvokeInst::InvokeInst(const InvokeInst &II)
558 OperandTraits<InvokeInst>::op_end(this)
567 BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
570 unsigned InvokeInst::getNumSuccessorsV() const {
573 void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B)
    [all...]
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 224 InvokeInst *II = dyn_cast<InvokeInst>(I);
236 isa<InvokeInst>(Parent->getTerminator())) {
301 if (const InvokeInst *II =
302 dyn_cast<InvokeInst>(BlocksToExtract[i]->getTerminator()))
PruneEH.cpp 177 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
246 } else if (InvokeInst *II = dyn_cast<InvokeInst>(I))
PartialInlining.cpp 138 else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI))
DeadArgumentElimination.cpp 256 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
257 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
259 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
260 cast<InvokeInst>(New)->setAttributes(PAL);
    [all...]
ArgumentPromotion.cpp 743 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
744 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
746 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
747 cast<InvokeInst>(New)->setAttributes(AttributeSet::get(II->getContext(),
    [all...]
  /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);
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...]
DiffConsumer.cpp 60 } else if (isa<InvokeInst>(V)) {
62 printValue(cast<InvokeInst>(V)->getCalledValue(), isL);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARC.h 212 return isa<InvokeInst>(V) ? IC_CallOrUser : IC_User;
367 if (isa<CallInst>(V) || isa<InvokeInst>(V) ||
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 77 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst *> Invokes);
286 ArrayRef<InvokeInst *> Invokes) {
386 SmallVector<InvokeInst *, 16> Invokes;
391 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
GlobalMerge.cpp 263 const InvokeInst *II = dyn_cast<InvokeInst>(IBB->getTerminator());
ShadowStackGC.cpp 178 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(),
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 373 case Instruction::Invoke: return getModRefInfo((const InvokeInst*)I,Loc);
408 ModRefResult getModRefInfo(const InvokeInst *I,
414 ModRefResult getModRefInfo(const InvokeInst *I,
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 118 if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
221 if (const InvokeInst *Invoke = dyn_cast<InvokeInst>(BB->getTerminator()))

Completed in 455 milliseconds

1 2 3 4