OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LiveInFI
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/MBlaze/
MBlazeMachineFunction.h
85
///
LiveInFI
- keeps track of the frame indexes in a callers stack
87
SmallVector<int, 16>
LiveInFI
;
93
VarArgsFrameIndex(0),
LiveInFI
()
112
LiveInFI
.push_back(FI);
116
for (unsigned i = 0, e =
LiveInFI
.size(); i < e; ++i)
117
if (FI ==
LiveInFI
[i]) return true;
122
const SmallVector<int, 16>& getLiveIn() const { return
LiveInFI
; }
MBlazeFrameLowering.cpp
96
const SmallVector<int, 16> &
LiveInFI
= MBlazeFI->getLiveIn();
122
for (unsigned i = 0, e =
LiveInFI
.size(); i < e; ++i) {
126
I->getOperand(1).getIndex() !=
LiveInFI
[i]) continue;
Completed in 17 milliseconds