| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Statepoint.h | 57 class GCRelocateInst; variable 206 inline std::vector<const GCRelocateInst *> getGCRelocates() const; 214 std::vector<const GCRelocateInst *> GCStatepointInst::getGCRelocates() const { in getGCRelocates() 215 std::vector<const GCRelocateInst *> Result; in getGCRelocates() 221 if (auto *Relocate = dyn_cast<GCRelocateInst>(U)) in getGCRelocates() 233 if (auto *Relocate = dyn_cast<GCRelocateInst>(LandingPadUser)) in getGCRelocates()
|
| H A D | IntrinsicInst.h | 1237 class GCRelocateInst : public GCProjectionInst {
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | StripGCRelocates.cpp | 32 SmallVector<GCRelocateInst *, 20> GCRelocates; in stripGCRelocates() 36 if (auto *GCR = dyn_cast<GCRelocateInst>(&I)) in stripGCRelocates() 42 for (GCRelocateInst *GCRel : GCRelocates) { in stripGCRelocates()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A 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;
|
| H A D | SelectionDAGBuilder.h | 63 class GCRelocateInst; variable 585 SmallVector<const GCRelocateInst *, 16> GCRelocates; 777 void visitGCRelocate(const GCRelocateInst &Relocate);
|
| H A D | StatepointLowering.cpp | 167 if (const auto *Relocate = dyn_cast<GCRelocateInst>(Val)) { in findPreviousSpillSlot() 913 for (const GCRelocateInst *Relocate : SI.GCRelocates) { in LowerAsSTATEPOINT() 1038 for (const GCRelocateInst *Relocate : I.getGCRelocates()) { in LowerStatepoint() 1178 void SelectionDAGBuilder::visitGCRelocate(const GCRelocateInst &Relocate) { in visitGCRelocate()
|
| H A D | SelectionDAGISel.cpp | 1524 !isa<GCRelocateInst>(Inst) && !isa<GCResultInst>(Inst)) { in SelectAllBasicBlocks()
|
| H A D | SelectionDAGBuilder.cpp | 6834 visitGCRelocate(cast<GCRelocateInst>(I)); in visitIntrinsicCall()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 306 if (const GCRelocateInst *GCR = dyn_cast<GCRelocateInst>(Inst)) in getHashValueImpl() 372 if (const GCRelocateInst *GCR1 = dyn_cast<GCRelocateInst>(LHSI)) in isEqualImpl() 373 if (const GCRelocateInst *GCR2 = dyn_cast<GCRelocateInst>(RHSI)) in isEqualImpl()
|
| H A D | PlaceSafepoints.cpp | 192 return !(isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in needsStatepoint()
|
| H A D | GVN.cpp | 293 if (const GCRelocateInst *GCR = dyn_cast<GCRelocateInst>(I)) { in createExpr()
|
| H A D | RewriteStatepointsForGC.cpp | 1849 GCRelocateInst *Relocate = dyn_cast<GCRelocateInst>(U); in insertRelocationStores()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | IntrinsicInst.cpp | 483 Value *GCRelocateInst::getBasePtr() const { in getBasePtr() 489 Value *GCRelocateInst::getDerivedPtr() const { in getDerivedPtr()
|
| H A D | Verifier.cpp | 2303 Assert(isa<GCRelocateInst>(UserCall) || isa<GCResultInst>(UserCall), in verifyStatepoint() 2310 } else if (isa<GCRelocateInst>(Call)) { in verifyStatepoint() 4956 *cast<GCRelocateInst>(Call).getStatepoint(); in visitIntrinsicCall() 4982 GCRelocateInst &Relocate = cast<GCRelocateInst>(Call); in visitIntrinsicCall()
|
| H A D | AsmWriter.cpp | 2675 void printGCRelocateComment(const GCRelocateInst &Relocate); 3914 void AssemblyWriter::printGCRelocateComment(const GCRelocateInst &Relocate) { in printGCRelocateComment() 3925 if (const auto *Relocate = dyn_cast<GCRelocateInst>(&V)) in printInfoComment()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | Loads.cpp | 145 if (const GCRelocateInst *RelocateInst = dyn_cast<GCRelocateInst>(V)) in isDereferenceableAndAlignedPointer()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCalls.cpp | 2020 if (isa<GCStatepointInst>(Call) || isa<GCRelocateInst>(Call) || in isSafeToEliminateVarargsCast() 2363 for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) { in visitCallBase() 2364 GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc); in visitCallBase() 2436 for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) { in visitCallBase() 2437 GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc); in visitCallBase()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | CodeGenPrepare.cpp | 1010 const SmallVectorImpl<GCRelocateInst *> &AllRelocateCalls, in computeBaseDerivedRelocateMap() 1011 DenseMap<GCRelocateInst *, SmallVector<GCRelocateInst *, 2>> in computeBaseDerivedRelocateMap() argument 1016 DenseMap<std::pair<unsigned, unsigned>, GCRelocateInst *> RelocateIdxMap; in computeBaseDerivedRelocateMap() 1028 GCRelocateInst *I = Item.second; in computeBaseDerivedRelocateMap() 1061 simplifyRelocatesOffABase(GCRelocateInst *RelocatedBase, in simplifyRelocatesOffABase() 1062 const SmallVectorImpl<GCRelocateInst *> &Targets) { in simplifyRelocatesOffABase() 1072 if (auto *RI = dyn_cast<GCRelocateInst>(R)) in simplifyRelocatesOffABase() 1079 for (GCRelocateInst *ToReplace : Targets) { in simplifyRelocatesOffABase() 1175 SmallVector<GCRelocateInst *, 2> AllRelocateCalls; in simplifyOffsetableRelocate() 1177 if (GCRelocateInst *Relocate = dyn_cast<GCRelocateInst>(U)) in simplifyOffsetableRelocate() [all …]
|