/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | WinEHPrepare.cpp | 726 AllocaInst *SpillSlot = insertPHILoads(PN, F); in demotePHIsOnFunclets() local 727 if (SpillSlot) in demotePHIsOnFunclets() 728 insertPHIStores(PN, SpillSlot); in demotePHIsOnFunclets() 1084 AllocaInst *SpillSlot = nullptr; in insertPHILoads() local 1093 Value *V = new LoadInst(PN->getType(), SpillSlot, in insertPHILoads() 1097 return SpillSlot; in insertPHILoads() 1110 replaceUseWithLoad(PN, U, SpillSlot, Loads, F); in insertPHILoads() 1112 return SpillSlot; in insertPHILoads() 1174 if (!SpillSlot) in replaceUseWithLoad() 1234 Load = new LoadInst(V->getType(), SpillSlot, in replaceUseWithLoad() [all …]
|
H A D | MIRPrinter.cpp | 397 ? yaml::FixedMachineStackObject::SpillSlot in convertStackObjects() 430 ? yaml::MachineStackObject::SpillSlot in convertStackObjects()
|
H A D | PrologEpilogInserter.cpp | 496 const TargetFrameLowering::SpillSlot *FixedSpillSlots = in assignCalleeSavedSpillSlots() 518 const TargetFrameLowering::SpillSlot *FixedSlot = FixedSpillSlots; in assignCalleeSavedSpillSlots()
|
/openbsd/gnu/llvm/llvm/lib/Target/VE/ |
H A D | VEFrameLowering.h | 57 const SpillSlot * 59 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | StatepointLowering.cpp | 142 SDValue SpillSlot = Builder.DAG.CreateStackTemporary(ValueType); in allocateStackSlot() local 143 const unsigned FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in allocateStackSlot() 155 return SpillSlot; in allocateStackSlot() 201 std::optional<int> SpillSlot = in findPreviousSpillSlot() local 203 if (!SpillSlot) in findPreviousSpillSlot() 206 if (MergedResult && *MergedResult != *SpillSlot) in findPreviousSpillSlot() 209 MergedResult = SpillSlot; in findPreviousSpillSlot() 1249 SDValue SpillSlot = DAG.getTargetFrameIndex(Index, getFrameIndexTy()); in visitGCRelocate() local 1271 DAG.getLoad(LoadVT, getCurSDLoc(), Chain, SpillSlot, LoadMMO); in visitGCRelocate()
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | TargetFrameLowering.h | 52 struct SpillSlot { struct 181 virtual const SpillSlot *
|
H A D | MIRYamlMapping.h | 241 enum ObjectType { DefaultType, SpillSlot, VariableSized }; 272 IO.enumCase(Type, "spill-slot", MachineStackObject::SpillSlot); 310 enum ObjectType { DefaultType, SpillSlot }; 342 IO.enumCase(Type, "spill-slot", FixedMachineStackObject::SpillSlot); 367 if (Object.Type != FixedMachineStackObject::SpillSlot) {
|
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/ |
H A D | HexagonFrameLowering.h | 90 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots() 92 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots()
|
H A D | HexagonFrameLowering.cpp | 1657 using SpillSlot = TargetFrameLowering::SpillSlot; in assignCalleeSavedSpillSlots() typedef 1661 const SpillSlot *FixedSlots = getCalleeSavedSpillSlots(NumFixed); in assignCalleeSavedSpillSlots() 1662 for (const SpillSlot *S = FixedSlots; S != FixedSlots+NumFixed; ++S) { in assignCalleeSavedSpillSlots()
|
/openbsd/gnu/llvm/llvm/lib/Target/ARM/ |
H A D | ARMFrameLowering.h | 79 const SpillSlot *
|
H A D | ARMFrameLowering.cpp | 2819 const TargetFrameLowering::SpillSlot * 2821 static const SpillSlot FixedSpillOffsets[] = {{ARM::FPCXTNS, -4}}; in getCalleeSavedSpillSlots()
|
/openbsd/gnu/llvm/llvm/lib/Target/PowerPC/ |
H A D | PPCFrameLowering.h | 168 const SpillSlot *
|
H A D | PPCFrameLowering.cpp | 94 const PPCFrameLowering::SpillSlot *PPCFrameLowering::getCalleeSavedSpillSlots( in getCalleeSavedSpillSlots() 179 static const SpillSlot ELFOffsets32[] = { in getCalleeSavedSpillSlots() 214 static const SpillSlot ELFOffsets64[] = { in getCalleeSavedSpillSlots() 223 static const SpillSlot AIXOffsets32[] = {CALLEE_SAVED_FPRS, in getCalleeSavedSpillSlots() 229 static const SpillSlot AIXOffsets64[] = { in getCalleeSavedSpillSlots()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/MIRParser/ |
H A D | MIRParser.cpp | 771 if (Object.Type != yaml::FixedMachineStackObject::SpillSlot) in initializeFrameInfo() 818 Object.Type == yaml::MachineStackObject::SpillSlot, Alloca, in initializeFrameInfo()
|
/openbsd/gnu/llvm/llvm/lib/Target/LoongArch/ |
H A D | LoongArchISelLowering.cpp | 2485 SDValue SpillSlot = DAG.CreateStackTemporary(StoredSize, StackAlign); in LowerCall() local 2486 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall() 2488 DAG.getStore(Chain, DL, ArgValue, SpillSlot, in LowerCall() 2494 DAG.getNode(ISD::ADD, DL, PtrVT, SpillSlot, PartOffset); in LowerCall() 2499 ArgValue = SpillSlot; in LowerCall()
|
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/ |
H A D | SystemZFrameLowering.cpp | 28 static const TargetFrameLowering::SpillSlot ELFSpillOffsetTable[] = { 49 static const TargetFrameLowering::SpillSlot XPLINKSpillOffsetTable[] = {
|
H A D | SystemZISelLowering.cpp | 1738 SDValue SpillSlot = DAG.CreateStackTemporary(SlotVT); in LowerCall() local 1739 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall() 1741 DAG.getStore(Chain, DL, ArgValue, SpillSlot, in LowerCall() 1749 SDValue Address = DAG.getNode(ISD::ADD, DL, PtrVT, SpillSlot, in LowerCall() 1758 ArgValue = SpillSlot; in LowerCall()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.cpp | 297 SpillSlot, enumerator 298 Best = SpillSlot 325 if (Min >= LocationQuality::SpillSlot) in getLocQualityIfBetter() 328 return LocationQuality::SpillSlot; in getLocQualityIfBetter()
|
/openbsd/gnu/llvm/llvm/lib/Target/M68k/ |
H A D | M68kISelLowering.cpp | 651 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT()); in LowerCall() local 652 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall() 654 Chain, DL, Arg, SpillSlot, in LowerCall() 656 Arg = SpillSlot; in LowerCall()
|
/openbsd/gnu/llvm/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.cpp | 12969 SDValue SpillSlot = DAG.CreateStackTemporary(StoredSize, StackAlign); in LowerCall() local 12970 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall() 12972 DAG.getStore(Chain, DL, ArgValue, SpillSlot, in LowerCall() 12978 DAG.getNode(ISD::ADD, DL, PtrVT, SpillSlot, PartOffset); in LowerCall() 12983 ArgValue = SpillSlot; in LowerCall()
|
/openbsd/gnu/llvm/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 7385 SDValue SpillSlot = Ptr; in LowerCall() local 7414 Arg = SpillSlot; in LowerCall()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 4620 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT()); in LowerCall() local 4621 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall() 4623 Chain, dl, Arg, SpillSlot, in LowerCall() 4625 Arg = SpillSlot; in LowerCall()
|