Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DStatepoint.h61 class GCStatepointInst : public CallBase {
63 GCStatepointInst() = delete;
64 GCStatepointInst(const GCStatepointInst &) = delete;
65 GCStatepointInst &operator=(const GCStatepointInst &) = delete;
206 std::vector<const GCRelocateInst *> GCStatepointInst::getGCRelocates() const { in getGCRelocates()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp173 assert((isa<GCStatepointInst>(Statepoint) || isa<UndefValue>(Statepoint)) && in findPreviousSpillSlot()
179 [cast<GCStatepointInst>(Statepoint)]; in findPreviousSpillSlot()
1025 getGCResultLocality(const GCStatepointInst &S) { in getGCResultLocality()
1040 SelectionDAGBuilder::LowerStatepoint(const GCStatepointInst &I, in LowerStatepoint()
1066 populateCallLoweringInfo(SI.CLI, &I, GCStatepointInst::CallArgsBeginPos, in LowerStatepoint()
1206 assert((isa<GCStatepointInst>(SI) || isa<UndefValue>(SI)) && in visitGCResult()
1211 if (cast<GCStatepointInst>(SI)->getParent() == CI.getParent()) { in visitGCResult()
1235 assert((isa<GCStatepointInst>(Statepoint) || isa<UndefValue>(Statepoint)) && in visitGCRelocate()
1240 if (cast<GCStatepointInst>(Statepoint)->getParent() == Relocate.getParent()) in visitGCRelocate()
1250 FuncInfo.StatepointRelocationMaps[cast<GCStatepointInst>(Statepoint)]; in visitGCRelocate()
[all …]
H A DSelectionDAGBuilder.h66 class GCStatepointInst; variable
428 void LowerStatepoint(const GCStatepointInst &I,
H A DSelectionDAGISel.cpp1496 if (isa<CallInst>(Inst) && !isa<GCStatepointInst>(Inst) && in SelectAllBasicBlocks()
H A DSelectionDAGBuilder.cpp1129 !isa<GCStatepointInst>(I)) // statepoints handle their exports internally in visit()
2924 LowerStatepoint(cast<GCStatepointInst>(I), EHPadBB); in visitInvoke()
2955 if (!isa<GCStatepointInst>(I)) { in visitInvoke()
6931 LowerStatepoint(cast<GCStatepointInst>(I)); in visitIntrinsicCall()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DStripGCRelocates.cpp35 if (isa<GCStatepointInst>(GCR->getOperand(0))) in stripGCRelocates()
/llvm-project-15.0.7/llvm/lib/IR/
H A DIntrinsicInst.cpp738 return cast<GCStatepointInst>(Token); in getStatepoint()
748 return cast<GCStatepointInst>(InvokeBB->getTerminator()); in getStatepoint()
756 auto *GCInst = cast<GCStatepointInst>(Statepoint); in getBasePtr()
767 auto *GCInst = cast<GCStatepointInst>(Statepoint); in getDerivedPtr()
H A DSafepointIRVerifier.cpp793 if (isa<GCStatepointInst>(I)) { in transferInstruction()
H A DVerifier.cpp5213 Check(isa<GCStatepointInst>(InvokeBB->getTerminator()), in visitIntrinsicCall()
5220 Check(isa<GCStatepointInst>(Token) || isa<UndefValue>(Token), in visitIntrinsicCall()
5242 if (auto Opt = cast<GCStatepointInst>(StatepointCall) in visitIntrinsicCall()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp273 GCStatepointInst *StatepointToken;
1792 GCStatepointInst *Token = nullptr; in makeStatepointExplicitImpl()
1808 Token = cast<GCStatepointInst>(SPCall); in makeStatepointExplicitImpl()
1835 Token = cast<GCStatepointInst>(SPInvoke); in makeStatepointExplicitImpl()
2936 if (isa<GCStatepointInst>(Call)) in runOnFunction()
H A DPlaceSafepoints.cpp193 return !(isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in needsStatepoint()
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2749 if (isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in isSafeToEliminateVarargsCast()
3087 GCStatepointInst &GCSP = *cast<GCStatepointInst>(&Call); in visitCallBase()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp438 bool simplifyOffsetableRelocate(GCStatepointInst &I);
622 SmallVector<GCStatepointInst *, 2> Statepoints; in runOnFunction()
625 if (auto *SP = dyn_cast<GCStatepointInst>(&I)) in runOnFunction()
1187 bool CodeGenPrepare::simplifyOffsetableRelocate(GCStatepointInst &I) { in simplifyOffsetableRelocate()