HomeSort by relevance Sort by last modified time
    Searched refs:LiveInFI (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/MBlaze/
MBlazeMachineFunction.h 84 /// LiveInFI - keeps track of the frame indexes in a callers stack
86 SmallVector<int, 16> LiveInFI;
92 VarArgsFrameIndex(0), LiveInFI()
111 LiveInFI.push_back(FI);
115 for (unsigned i = 0, e = LiveInFI.size(); i < e; ++i)
116 if (FI == LiveInFI[i]) return true;
121 const SmallVector<int, 16>& getLiveIn() const { return LiveInFI; }
MBlazeFrameLowering.cpp 94 const SmallVector<int, 16> &LiveInFI = MBlazeFI->getLiveIn();
120 for (unsigned i = 0, e = LiveInFI.size(); i < e; ++i) {
124 I->getOperand(1).getIndex() != LiveInFI[i]) continue;

Completed in 22 milliseconds