Home
last modified time | relevance | path

Searched refs:GCStatepointInst (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DStatepoint.h63 class GCStatepointInst : public CallBase {
65 GCStatepointInst() = delete;
66 GCStatepointInst(const GCStatepointInst &) = delete;
67 GCStatepointInst &operator=(const GCStatepointInst &) = delete;
214 std::vector<const GCRelocateInst *> GCStatepointInst::getGCRelocates() const { in getGCRelocates()
239 std::pair<bool, bool> GCStatepointInst::getGCResultLocality() const { in getGCResultLocality()
H A DIntrinsicInst.h1228 class GCStatepointInst; variable
1252 const GCStatepointInst *getStatepoint() const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DStripGCRelocates.cpp37 if (isa<GCStatepointInst>(GCR->getOperand(0))) in stripGCRelocates()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp547 const GCStatepointInst *GCProjectionInst::getStatepoint() const { in getStatepoint()
553 return cast<GCStatepointInst>(Token); in getStatepoint()
563 return cast<GCStatepointInst>(InvokeBB->getTerminator()); in getStatepoint()
H A DSafepointIRVerifier.cpp784 if (isa<GCStatepointInst>(I)) { in transferInstruction()
H A DVerifier.cpp4906 Assert(isa<GCStatepointInst>(InvokeBB->getTerminator()), in visitIntrinsicCall()
4913 Assert(isa<GCStatepointInst>(Token), in visitIntrinsicCall()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp994 SelectionDAGBuilder::LowerStatepoint(const GCStatepointInst &I, in LowerStatepoint()
1020 populateCallLoweringInfo(SI.CLI, &I, GCStatepointInst::CallArgsBeginPos, in LowerStatepoint()
1159 const GCStatepointInst *SI = CI.getStatepoint(); in visitGCResult()
H A DSelectionDAGBuilder.h65 class GCStatepointInst; variable
625 void LowerStatepoint(const GCStatepointInst &I,
H A DSelectionDAGBuilder.cpp1119 !isa<GCStatepointInst>(I)) // statepoints handle their exports internally in visit()
2903 LowerStatepoint(cast<GCStatepointInst>(I), EHPadBB); in visitInvoke()
2934 if (!isa<GCStatepointInst>(I)) { in visitInvoke()
6873 LowerStatepoint(cast<GCStatepointInst>(I)); in visitIntrinsicCall()
H A DSelectionDAGISel.cpp1532 if (isa<CallInst>(Inst) && !isa<GCStatepointInst>(Inst) && in SelectAllBasicBlocks()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp274 GCStatepointInst *StatepointToken;
1718 GCStatepointInst *Token = nullptr; in makeStatepointExplicitImpl()
1734 Token = cast<GCStatepointInst>(SPCall); in makeStatepointExplicitImpl()
1761 Token = cast<GCStatepointInst>(SPInvoke); in makeStatepointExplicitImpl()
2812 if (isa<GCStatepointInst>(Call)) in runOnFunction()
H A DPlaceSafepoints.cpp192 return !(isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in needsStatepoint()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2106 if (isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in isSafeToEliminateVarargsCast()
2457 GCStatepointInst &GCSP = *cast<GCStatepointInst>(&Call); in visitCallBase()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp427 bool simplifyOffsetableRelocate(GCStatepointInst &I);
604 SmallVector<GCStatepointInst *, 2> Statepoints; in runOnFunction()
607 if (auto *SP = dyn_cast<GCStatepointInst>(&I)) in runOnFunction()
1173 bool CodeGenPrepare::simplifyOffsetableRelocate(GCStatepointInst &I) { in simplifyOffsetableRelocate()