Searched refs:StatepointCall (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DStatepoint.h75 CallBaseTy *StatepointCall; member in class:llvm::StatepointFlags::StatepointBase
79 StatepointCall = isStatepoint(I) ? cast<CallBaseTy>(I) : nullptr;
83 StatepointCall = isStatepoint(Call) ? Call : nullptr;
102 // We do not assign non-statepoint call instructions to StatepointCall.
103 return (bool)StatepointCall;
109 return StatepointCall;
414 for (const User *U : StatepointCall->users())
418 auto *StatepointInvoke = dyn_cast<InvokeInst>(StatepointCall);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp4480 const auto *StatepointCall = dyn_cast<CallBase>(Call.getArgOperand(0)); local
4482 StatepointCall ? StatepointCall->getCalledFunction() : nullptr;
4490 const Value *Target = StatepointCall->getArgOperand(2);
4530 const CallBase &StatepointCall = local
4545 Assert(0 <= BaseIndex && BaseIndex < (int)StatepointCall.arg_size(),
4547 Assert(0 <= DerivedIndex && DerivedIndex < (int)StatepointCall.arg_size(),
4552 Assert(StatepointCall.arg_size() > 0,
4554 Assert(isa<ConstantInt>(StatepointCall.getArgOperand(3)),
4557 cast<ConstantInt>(StatepointCall
[all...]

Completed in 113 milliseconds