HomeSort by relevance Sort by last modified time
    Searched defs:FrameIdx (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 292 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(2, -4, true);
293 (void)FrameIdx;
294 assert(FrameIdx == MF.getFrameInfo()->getObjectIndexBegin() &&
  /external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp 52 int FrameIdx; // The frame index
55 MI(I), LocalOffset(Offset), FrameIdx(Idx) {}
61 int getFrameIndex() const { return FrameIdx; }
69 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
134 int FrameIdx, int64_t &Offset,
139 Offset += MFI->getObjectSize(FrameIdx);
141 unsigned Align = MFI->getObjectAlignment(FrameIdx);
151 DEBUG(dbgs() << "Allocate FI(" << FrameIdx << ") to local offset "
154 LocalOffsets[FrameIdx] = LocalOffset;
156 MFI->mapLocalFrameObject(FrameIdx, LocalOffset)
    [all...]
PrologEpilogInserter.cpp 288 int FrameIdx;
289 if (RegInfo->hasReservedSpillSlot(F, Reg, FrameIdx)) {
290 I->setFrameIdx(FrameIdx);
310 FrameIdx = MFI->CreateStackObject(RC->getSize(), Align, true);
311 if ((unsigned)FrameIdx < MinCSFrameIndex) MinCSFrameIndex = FrameIdx;
312 if ((unsigned)FrameIdx > MaxCSFrameIndex) MaxCSFrameIndex = FrameIdx;
315 FrameIdx =
319 I->setFrameIdx(FrameIdx);
    [all...]
RegAllocFast.cpp 209 int FrameIdx = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(),
213 StackSlotForVirtReg[VirtReg] = FrameIdx;
214 return FrameIdx;
    [all...]
TargetInstrInfo.cpp 584 int FrameIdx = 0;
585 if (TII.isLoadFromStackSlot(MI, FrameIdx) &&
586 MF.getFrameInfo()->isImmutableObjectIndex(FrameIdx))
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 39 int FrameIdx;
43 : Reg(R), FrameIdx(FI) {}
47 int getFrameIdx() const { return FrameIdx; }
48 void setFrameIdx(int FI) { FrameIdx = FI; }
211 /// into the local frame allocation block. <FrameIdx, LocalOffset>
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp     [all...]