HomeSort by relevance Sort by last modified time
    Searched refs:FrameIndex (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/lib/Target/PTX/
PTXRegisterInfo.cpp 45 llvm_unreachable("FrameIndex should have been previously eliminated!");
51 "Instr does not have a FrameIndex operand!");
54 int FrameIndex = MI.getOperand(Index).getIndex();
58 DEBUG(dbgs() << "- FrameIndex: " << FrameIndex << "\n");
61 //.addReg(Reg, RegState::Define).addImm(FrameIndex);
72 MI.getOperand(Index).ChangeToImmediate(FrameIndex);
PTXMachineFunctionInfo.h 146 /// getFrameSymbol - Returns the symbol name for the given FrameIndex.
147 const char* getFrameSymbol(int FrameIndex) {
148 if (FrameSymbols.count(FrameIndex)) {
149 return FrameSymbols.lookup(FrameIndex).c_str();
152 Name += utostr(FrameIndex);
157 FrameSymbols[FrameIndex] = Name;
158 return FrameSymbols[FrameIndex].c_str();
  /external/llvm/lib/Target/ARM/
Thumb1InstrInfo.h 46 unsigned SrcReg, bool isKill, int FrameIndex,
52 unsigned DestReg, int FrameIndex,
Thumb2InstrInfo.h 48 unsigned SrcReg, bool isKill, int FrameIndex,
54 unsigned DestReg, int FrameIndex,
ARMBaseInstrInfo.h 101 int &FrameIndex) const;
103 int &FrameIndex) const;
105 int &FrameIndex) const;
107 int &FrameIndex) const;
116 unsigned SrcReg, bool isKill, int FrameIndex,
122 unsigned DestReg, int FrameIndex,
  /external/llvm/lib/Target/Alpha/
AlphaInstrInfo.h 37 int &FrameIndex) const;
39 int &FrameIndex) const;
51 unsigned SrcReg, bool isKill, int FrameIndex,
57 unsigned DestReg, int FrameIndex,
  /external/llvm/lib/Target/Blackfin/
BlackfinInstrInfo.h 37 int &FrameIndex) const;
40 int &FrameIndex) const;
57 int FrameIndex,
69 unsigned DestReg, int FrameIndex,
BlackfinInstrInfo.cpp 36 /// the destination along with the FrameIndex of the loaded stack slot. If
40 int &FrameIndex) const {
48 FrameIndex = MI->getOperand(1).getIndex();
58 /// the source reg along with the FrameIndex of the loaded stack slot. If
62 int &FrameIndex) const {
70 FrameIndex = MI->getOperand(1).getIndex();
  /external/llvm/lib/Target/CellSPU/
SPUInstrInfo.h 43 int &FrameIndex) const;
45 int &FrameIndex) const;
55 unsigned SrcReg, bool isKill, int FrameIndex,
62 unsigned DestReg, int FrameIndex,
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 51 /// the destination along with the FrameIndex of the loaded stack slot. If
55 int &FrameIndex) const;
59 /// the source reg along with the FrameIndex of the loaded stack slot. If
63 int &FrameIndex) const;
85 unsigned SrcReg, bool isKill, int FrameIndex,
91 unsigned DestReg, int FrameIndex,
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.h 38 /// the destination along with the FrameIndex of the loaded stack slot. If
42 int &FrameIndex) const;
46 /// the source reg along with the FrameIndex of the loaded stack slot. If
50 int &FrameIndex) const;
71 unsigned SrcReg, bool isKill, int FrameIndex,
77 unsigned DestReg, int FrameIndex,
XCoreInstrInfo.cpp 53 /// the destination along with the FrameIndex of the loaded stack slot. If
57 XCoreInstrInfo::isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const{
65 FrameIndex = MI->getOperand(1).getIndex();
74 /// the source reg along with the FrameIndex of the loaded stack slot. If
79 int &FrameIndex) const {
87 FrameIndex = MI->getOperand(1).getIndex();
364 int FrameIndex,
372 .addFrameIndex(FrameIndex)
378 unsigned DestReg, int FrameIndex,
385 .addFrameIndex(FrameIndex)
    [all...]
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.h 128 /// the destination along with the FrameIndex of the loaded stack slot. If
132 int &FrameIndex) const;
136 /// the source reg along with the FrameIndex of the loaded stack slot. If
140 int &FrameIndex) const;
164 unsigned SrcReg, bool isKill, int FrameIndex,
170 unsigned DestReg, int FrameIndex,
MipsRegisterInfo.cpp 240 // FrameIndex represent objects inside a abstract stack.
241 // We must replace FrameIndex with an stack/frame pointer
255 "Instr doesn't have FrameIndex operand!");
261 int FrameIndex = MI.getOperand(i).getIndex();
263 int spOffset = MF.getFrameInfo()->getObjectOffset(FrameIndex);
265 DEBUG(errs() << "FrameIndex : " << FrameIndex << "\n"
286 if (MipsFI->isOutArgFI(FrameIndex) || MipsFI->isDynAllocFI(FrameIndex) ||
287 (FrameIndex >= MinCSFI && FrameIndex <= MaxCSFI)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.h 70 unsigned isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const;
71 unsigned isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const;
76 int FrameIndex,
SystemZInstrBuilder.h 42 int FrameIndex;
94 MIB.addFrameIndex(AM.Base.FrameIndex);
103 /// reference has base register as the FrameIndex offset until it is resolved.
SystemZRegisterInfo.cpp 106 assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
109 int FrameIndex = MI.getOperand(i).getIndex();
114 // FrameIndex with base register with BasePtr. Add an offset to the
121 TFI->getFrameIndexOffset(MF, FrameIndex) + MI.getOperand(i+1).getImm();
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 124 // FrameIndex represent objects inside a abstract stack.
125 // We must replace FrameIndex with an stack/frame pointer
138 "Instr doesn't have FrameIndex operand!");
146 int FrameIndex = MI.getOperand(i).getIndex();
148 int spOffset = MFI->getObjectOffset(FrameIndex);
151 dbgs() << "FrameIndex : " << FrameIndex << "\n"
154 << "isFixed : " << MFI->isFixedObjectIndex(FrameIndex) << "\n"
155 << "isLiveIn : " << MBlazeFI->isLiveIn(FrameIndex) << "\n"
156 << "isSpill : " << MFI->isSpillSlotObjectIndex(FrameIndex)
    [all...]
MBlazeInstrInfo.h 183 /// the destination along with the FrameIndex of the loaded stack slot. If
187 int &FrameIndex) const;
191 /// the source reg along with the FrameIndex of the loaded stack slot. If
195 int &FrameIndex) const;
217 unsigned SrcReg, bool isKill, int FrameIndex,
223 unsigned DestReg, int FrameIndex,
MBlazeMachineFunction.h 38 /// MBlazeFIHolder - Holds a FrameIndex and it's Stack Pointer Offset
44 MBlazeFIHolder(int FrameIndex, int StackPointerOffset)
45 : FI(FrameIndex), SPOffset(StackPointerOffset) {}
82 // VarArgsFrameIndex - FrameIndex for start of varargs area.
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 117 /// the destination along with the FrameIndex of the loaded stack slot. If
121 int &FrameIndex) const {
129 int &FrameIndex) const {
134 /// a load from a stack slot, return true along with the FrameIndex
142 int &FrameIndex) const {
148 /// the source reg along with the FrameIndex of the loaded stack slot. If
152 int &FrameIndex) const {
160 int &FrameIndex) const {
165 /// store to a stack slot, return true along with the FrameIndex of
172 int &FrameIndex) const
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.h 93 int &FrameIndex) const;
95 int &FrameIndex) const;
122 unsigned SrcReg, bool isKill, int FrameIndex,
128 unsigned DestReg, int FrameIndex,
PPCRegisterInfo.h 55 void lowerCRSpilling(MachineBasicBlock::iterator II, unsigned FrameIndex,
  /external/llvm/lib/Target/X86/
X86InstrInfo.h 170 unsigned isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const;
175 int &FrameIndex) const;
177 unsigned isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const;
182 int &FrameIndex) const;
227 unsigned SrcReg, bool isKill, int FrameIndex,
240 unsigned DestReg, int FrameIndex,
268 int FrameIndex) const;
367 /// isFrameOperand - Return true and the FrameIndex if the specified
370 int &FrameIndex) const;
X86InstrBuilder.h 46 int FrameIndex;
69 MO.push_back(MachineOperand::CreateFI(Base.FrameIndex));
131 MIB.addFrameIndex(AM.Base.FrameIndex);
145 /// reference has base register as the FrameIndex offset until it is resolved.

Completed in 5303 milliseconds

1 2 3