Searched refs:isStatepoint (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DStatepoint.cpp20 bool llvm::isStatepoint(const CallBase *Call) { function in class:llvm
26 bool llvm::isStatepoint(const Value *V) { function in class:llvm
28 return isStatepoint(Call);
32 bool llvm::isStatepoint(const Value &V) { function in class:llvm
33 return isStatepoint(&V);
H A DSafepointIRVerifier.cpp785 if (isStatepoint(I)) {
H A DVerifier.cpp4518 Assert(isStatepoint(InvokeBB->getTerminator()),
4525 Assert(isa<Instruction>(Token) && isStatepoint(cast<Instruction>(Token)),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DStripGCRelocates.cpp51 if (isStatepoint(GCR->getOperand(0)))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DStatepoint.h58 bool isStatepoint(const CallBase *Call);
59 bool isStatepoint(const Value *V);
60 bool isStatepoint(const Value &V);
79 StatepointCall = isStatepoint(I) ? cast<CallBaseTy>(I) : nullptr;
83 StatepointCall = isStatepoint(Call) ? Call : nullptr;
342 assert(isStatepoint(Token));
353 assert(isStatepoint(InvokeBB->getTerminator()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp192 return !(isStatepoint(Call) || isGCRelocate(Call) || isGCResult(Call));
H A DRewriteStatepointsForGC.cpp2526 return !callsGCLeafFunction(Call, TLI) && !isStatepoint(Call);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1516 if (isa<CallInst>(Inst) && !isStatepoint(Inst) && !isGCRelocate(Inst) &&
H A DSelectionDAGBuilder.cpp1140 !isStatepoint(&I)) // statepoints handle their exports internally
2832 if (!isStatepoint(I)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp4235 if (isStatepoint(&Call) || isGCRelocate(&Call) || isGCResult(&Call))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp556 if (isStatepoint(I))

Completed in 253 milliseconds