Home
last modified time | relevance | path

Searched refs:SpillSlot (Results 1 – 20 of 20) sorted by relevance

/external/llvm/lib/CodeGen/
DWinEHPrepare.cpp70 void insertPHIStores(PHINode *OriginalPHI, AllocaInst *SpillSlot);
72 insertPHIStore(BasicBlock *PredBlock, Value *PredVal, AllocaInst *SpillSlot,
75 void replaceUseWithLoad(Value *V, Use &U, AllocaInst *&SpillSlot,
694 AllocaInst *SpillSlot = insertPHILoads(PN, F); in demotePHIsOnFunclets() local
695 if (SpillSlot) in demotePHIsOnFunclets()
696 insertPHIStores(PN, SpillSlot); in demotePHIsOnFunclets()
1067 AllocaInst *SpillSlot = nullptr; in insertPHILoads() local
1073 SpillSlot = new AllocaInst(PN->getType(), nullptr, in insertPHILoads()
1076 Value *V = new LoadInst(SpillSlot, Twine(PN->getName(), ".wineh.reload"), in insertPHILoads()
1079 return SpillSlot; in insertPHILoads()
[all …]
DMIRPrinter.cpp296 ? yaml::FixedMachineStackObject::SpillSlot in convertStackObjects()
320 ? yaml::MachineStackObject::SpillSlot in convertStackObjects()
DPrologEpilogInserter.cpp351 const TargetFrameLowering::SpillSlot *FixedSpillSlots = in assignCalleeSavedSpillSlots()
368 const TargetFrameLowering::SpillSlot *FixedSlot = FixedSpillSlots; in assignCalleeSavedSpillSlots()
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCFrameLowering.h113 const SpillSlot *
118 static const SpillSlot darwin64Offsets = {PPC::X31, -8}; in getCalleeSavedSpillSlots()
121 static const SpillSlot darwinOffsets = {PPC::R31, -4}; in getCalleeSavedSpillSlots()
132 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots()
209 static const SpillSlot Offsets64[] = { in getCalleeSavedSpillSlots()
/external/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.cpp102 SDValue SpillSlot = Builder.DAG.CreateStackTemporary(ValueType); in allocateStackSlot() local
103 const unsigned FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in allocateStackSlot()
111 return SpillSlot; in allocateStackSlot()
147 Optional<int> SpillSlot = in findPreviousSpillSlot() local
149 if (!SpillSlot.hasValue()) in findPreviousSpillSlot()
152 if (MergedResult.hasValue() && *MergedResult != *SpillSlot) in findPreviousSpillSlot()
155 MergedResult = SpillSlot; in findPreviousSpillSlot()
919 SDValue SpillSlot = DAG.getTargetFrameIndex(*DerivedPtrLocation, in visitGCRelocate() local
928 DAG.getLoad(SpillSlot.getValueType(), getCurSDLoc(), Chain, SpillSlot, in visitGCRelocate()
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetFrameLowering.h46 struct SpillSlot { struct
98 virtual const SpillSlot *
/external/llvm/include/llvm/CodeGen/
DMIRYamlMapping.h186 enum ObjectType { DefaultType, SpillSlot, VariableSized };
204 IO.enumCase(Type, "spill-slot", MachineStackObject::SpillSlot);
238 enum ObjectType { DefaultType, SpillSlot };
254 IO.enumCase(Type, "spill-slot", FixedMachineStackObject::SpillSlot);
267 if (Object.Type != FixedMachineStackObject::SpillSlot) {
/external/llvm/include/llvm/Target/
DTargetFrameLowering.h42 struct SpillSlot { struct
136 virtual const SpillSlot *
/external/llvm/lib/Target/Hexagon/
DHexagonFrameLowering.h60 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) in getCalleeSavedSpillSlots()
62 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots()
DHexagonFrameLowering.cpp1316 typedef TargetFrameLowering::SpillSlot SpillSlot; in assignCalleeSavedSpillSlots() typedef
1319 const SpillSlot *FixedSlots = getCalleeSavedSpillSlots(NumFixed); in assignCalleeSavedSpillSlots()
1320 for (const SpillSlot *S = FixedSlots; S != FixedSlots+NumFixed; ++S) { in assignCalleeSavedSpillSlots()
/external/llvm/lib/Target/SystemZ/
DSystemZFrameLowering.h28 const SpillSlot *getCalleeSavedSpillSlots(unsigned &NumEntries) const
DSystemZFrameLowering.cpp27 static const TargetFrameLowering::SpillSlot SpillOffsetTable[] = {
59 const TargetFrameLowering::SpillSlot *
DSystemZISelLowering.cpp1082 SDValue SpillSlot = DAG.CreateStackTemporary(Outs[I].ArgVT); in LowerCall() local
1083 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall()
1085 Chain, DL, ArgValue, SpillSlot, in LowerCall()
1094 SDValue Address = DAG.getNode(ISD::ADD, DL, PtrVT, SpillSlot, in LowerCall()
1101 ArgValue = SpillSlot; in LowerCall()
/external/llvm/lib/Target/PowerPC/
DPPCFrameLowering.h137 const SpillSlot *
DPPCFrameLowering.cpp92 const PPCFrameLowering::SpillSlot *PPCFrameLowering::getCalleeSavedSpillSlots( in getCalleeSavedSpillSlots()
97 static const SpillSlot darwin64Offsets = {PPC::X31, -8}; in getCalleeSavedSpillSlots()
100 static const SpillSlot darwinOffsets = {PPC::R31, -4}; in getCalleeSavedSpillSlots()
114 static const SpillSlot Offsets[] = { in getCalleeSavedSpillSlots()
178 static const SpillSlot Offsets64[] = { in getCalleeSavedSpillSlots()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DPrologEpilogInserter.cpp245 const TargetFrameLowering::SpillSlot *FixedSpillSlots = in calculateCalleeSavedRegisters()
263 const TargetFrameLowering::SpillSlot *FixedSlot = FixedSpillSlots; in calculateCalleeSavedRegisters()
/external/llvm/lib/CodeGen/MIRParser/
DMIRParser.cpp486 if (Object.Type != yaml::FixedMachineStackObject::SpillSlot) in initializeFrameInfo()
522 Object.Type == yaml::MachineStackObject::SpillSlot, Alloca); in initializeFrameInfo()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ra.cpp311 struct SpillSlot struct in nv50_ir::SpillCodeInserter
319 std::list<SpillSlot> slots;
1559 SpillSlot slot; in assignSlot()
1562 std::list<SpillSlot>::iterator pos = slots.end(), it = slots.begin(); in assignSlot()
1575 std::list<SpillSlot>::iterator bgn = it; in assignSlot()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelLowering.cpp2147 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT()); in LowerCall() local
2148 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall()
2149 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot, in LowerCall()
2152 Arg = SpillSlot; in LowerCall()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp3129 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT()); in LowerCall() local
3130 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); in LowerCall()
3132 Chain, dl, Arg, SpillSlot, in LowerCall()
3135 Arg = SpillSlot; in LowerCall()