| /openbsd/src/gnu/llvm/llvm/include/llvm/IR/ |
| D | Statepoint.h | 56 class GCRelocateInst; variable 203 inline std::vector<const GCRelocateInst *> getGCRelocates() const; 206 std::vector<const GCRelocateInst *> GCStatepointInst::getGCRelocates() const { in getGCRelocates() 207 std::vector<const GCRelocateInst *> Result; in getGCRelocates() 213 if (auto *Relocate = dyn_cast<GCRelocateInst>(U)) in getGCRelocates() 225 if (auto *Relocate = dyn_cast<GCRelocateInst>(LandingPadUser)) in getGCRelocates()
|
| D | IntrinsicInst.h | 1477 class GCRelocateInst : public GCProjectionInst {
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| D | StripGCRelocates.cpp | 30 SmallVector<GCRelocateInst *, 20> GCRelocates; in stripGCRelocates() 34 if (auto *GCR = dyn_cast<GCRelocateInst>(&I)) in stripGCRelocates() 40 for (GCRelocateInst *GCRel : GCRelocates) { in stripGCRelocates()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| D | StatepointLowering.h | 66 void scheduleRelocCall(const GCRelocateInst &RelocCall) { in scheduleRelocCall() 75 void relocCallVisited(const GCRelocateInst &RelocCall) { in relocCallVisited() 121 SmallVector<const GCRelocateInst *, 10> PendingGCRelocateCalls;
|
| D | SelectionDAGBuilder.h | 67 class GCRelocateInst; variable 440 SmallVector<const GCRelocateInst *, 16> GCRelocates; 645 void visitGCRelocate(const GCRelocateInst &Relocate);
|
| D | StatepointLowering.cpp | 169 if (const auto *Relocate = dyn_cast<GCRelocateInst>(Val)) { in findPreviousSpillSlot() 907 for (const GCRelocateInst *Relocate : SI.GCRelocates) { in LowerAsSTATEPOINT() 1055 for (const GCRelocateInst *Relocate : I.getGCRelocates()) { in LowerStatepoint() 1199 void SelectionDAGBuilder::visitGCRelocate(const GCRelocateInst &Relocate) { in visitGCRelocate()
|
| D | SelectionDAGISel.cpp | 1544 !isa<GCRelocateInst>(Inst) && !isa<GCResultInst>(Inst)) { in SelectAllBasicBlocks()
|
| D | SelectionDAGBuilder.cpp | 7017 visitGCRelocate(cast<GCRelocateInst>(I)); in visitIntrinsicCall()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| D | EarlyCSE.cpp | 317 if (const GCRelocateInst *GCR = dyn_cast<GCRelocateInst>(Inst)) in getHashValueImpl() 383 if (const GCRelocateInst *GCR1 = dyn_cast<GCRelocateInst>(LHSI)) in isEqualImpl() 384 if (const GCRelocateInst *GCR2 = dyn_cast<GCRelocateInst>(RHSI)) in isEqualImpl()
|
| D | PlaceSafepoints.cpp | 193 return !(isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in needsStatepoint()
|
| D | RewriteStatepointsForGC.cpp | 1993 GCRelocateInst *Relocate = dyn_cast<GCRelocateInst>(U); in insertRelocationStores()
|
| D | GVN.cpp | 323 if (const GCRelocateInst *GCR = dyn_cast<GCRelocateInst>(I)) { in createExpr()
|
| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| D | Loads.cpp | 150 if (const GCRelocateInst *RelocateInst = dyn_cast<GCRelocateInst>(V)) in isDereferenceableAndAlignedPointer()
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | IntrinsicInst.cpp | 813 Value *GCRelocateInst::getBasePtr() const { in getBasePtr() 824 Value *GCRelocateInst::getDerivedPtr() const { in getDerivedPtr()
|
| D | SafepointIRVerifier.cpp | 360 if (const auto *GCRelocate = dyn_cast<GCRelocateInst>(V)) { in getBaseType()
|
| D | Verifier.cpp | 2392 Check(isa<GCRelocateInst>(UserCall) || isa<GCResultInst>(UserCall), in verifyStatepoint() 2399 } else if (isa<GCRelocateInst>(Call)) { in verifyStatepoint() 5330 const Value &StatepointCall = *cast<GCRelocateInst>(Call).getStatepoint(); in visitIntrinsicCall() 5359 GCRelocateInst &Relocate = cast<GCRelocateInst>(Call); in visitIntrinsicCall()
|
| D | AsmWriter.cpp | 2645 void printGCRelocateComment(const GCRelocateInst &Relocate); 3994 void AssemblyWriter::printGCRelocateComment(const GCRelocateInst &Relocate) { in printGCRelocateComment() 4005 if (const auto *Relocate = dyn_cast<GCRelocateInst>(&V)) in printInfoComment()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | CodeGenPrepare.cpp | 1113 const SmallVectorImpl<GCRelocateInst *> &AllRelocateCalls, in computeBaseDerivedRelocateMap() 1114 DenseMap<GCRelocateInst *, SmallVector<GCRelocateInst *, 2>> in computeBaseDerivedRelocateMap() argument 1119 DenseMap<std::pair<unsigned, unsigned>, GCRelocateInst *> RelocateIdxMap; in computeBaseDerivedRelocateMap() 1131 GCRelocateInst *I = Item.second; in computeBaseDerivedRelocateMap() 1164 simplifyRelocatesOffABase(GCRelocateInst *RelocatedBase, in simplifyRelocatesOffABase() 1165 const SmallVectorImpl<GCRelocateInst *> &Targets) { in simplifyRelocatesOffABase() 1175 if (auto *RI = dyn_cast<GCRelocateInst>(R)) in simplifyRelocatesOffABase() 1182 for (GCRelocateInst *ToReplace : Targets) { in simplifyRelocatesOffABase() 1281 SmallVector<GCRelocateInst *, 2> AllRelocateCalls; in simplifyOffsetableRelocate() 1283 if (GCRelocateInst *Relocate = dyn_cast<GCRelocateInst>(U)) in simplifyOffsetableRelocate() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| D | InstCombineCalls.cpp | 2924 if (isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in isSafeToEliminateVarargsCast() 3288 for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) { in visitCallBase() 3289 GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc); in visitCallBase() 3360 for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) { in visitCallBase() 3361 GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc); in visitCallBase()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| D | IRTranslator.cpp | 2415 if (isa<GCStatepointInst, GCRelocateInst, GCResultInst>(U)) in translateCall()
|