OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFI
(Results
1 - 25
of
28
) sorted by null
1
2
/external/llvm/include/llvm/CodeGen/
MachineOperand.h
233
///
isFI
- Tests if this is a MO_FrameIndex operand.
234
bool
isFI
() const { return OpKind == MO_FrameIndex; }
423
assert((
isFI
() || isCPI() || isTargetIndex() || isJTI()) &&
501
assert((
isFI
() || isCPI() || isTargetIndex() || isJTI()) &&
/external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp
250
if (MI->getOperand(i).
isFI
()) {
288
if (!MI->getOperand(idx).
isFI
())
StackSlotColoring.cpp
151
if (!MO.
isFI
())
348
if (!MO.
isFI
())
StackColoring.cpp
555
if (!MO.
isFI
())
621
if (!MO.
isFI
())
RegisterScavenging.cpp
353
while (!MI->getOperand(i).
isFI
()) {
PrologEpilogInserter.cpp
806
if (!MI->getOperand(i).
isFI
())
[
all
...]
MachineLICM.cpp
413
if (MO.
isFI
()) {
[
all
...]
/external/llvm/lib/Target/X86/
X86InstrInfo.h
113
if (MI->getOperand(Op).
isFI
()) return true;
124
if (MI->getOperand(Op).
isFI
()) return true;
/external/llvm/lib/Target/XCore/
XCoreInstrInfo.cpp
61
if ((MI->getOperand(1).
isFI
()) && // is a stack slot
83
if ((MI->getOperand(1).
isFI
()) && // is a stack slot
/external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp
481
for (unsigned i = 0; !MI->getOperand(i).
isFI
(); ++i) {
602
while (!MI.getOperand(i).
isFI
()) {
623
while (!MI->getOperand(i).
isFI
()) {
ARMBaseInstrInfo.cpp
[
all
...]
Thumb1FrameLowering.cpp
225
MI->getOperand(1).
isFI
() &&
Thumb1RegisterInfo.cpp
497
while (!MI.getOperand(i).
isFI
()) {
ARMFrameLowering.cpp
[
all
...]
/external/llvm/lib/Target/Sparc/
SparcInstrInfo.cpp
48
if (MI->getOperand(1).
isFI
() && MI->getOperand(2).isImm() &&
68
if (MI->getOperand(0).
isFI
() && MI->getOperand(1).isImm() &&
/external/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp
116
assert(I->getOperand(0).isReg() && I->getOperand(1).
isFI
());
136
assert(I->getOperand(0).isReg() && I->getOperand(1).
isFI
());
159
assert(I->getOperand(0).isReg() && I->getOperand(1).
isFI
());
188
assert(I->getOperand(0).isReg() && I->getOperand(1).
isFI
());
MipsSEInstrInfo.cpp
56
if ((MI->getOperand(1).
isFI
()) && // is a stack slot
81
if ((MI->getOperand(1).
isFI
()) && // is a stack slot
/external/llvm/lib/Target/NVPTX/
NVPTXPrologEpilogPass.cpp
59
if (!MI->getOperand(i).
isFI
())
/external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp
94
MI->getOperand(1).
isFI
() &&
119
!MI->getOperand(0).
isFI
() ||
121
!MI->getOperand(3).
isFI
() ||
/external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp
747
while (!MI->getOperand(FIOperandNum).
isFI
()) {
827
while (!MI.getOperand(FIOperandNum).
isFI
()) {
PPCInstrInfo.cpp
115
MI->getOperand(2).
isFI
()) {
139
MI->getOperand(2).
isFI
()) {
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp
291
if (MBBI->getOperand(FrameOp).
isFI
())
AArch64InstrInfo.cpp
464
if (!I->getOperand(i).
isFI
()) continue;
/external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp
81
if (MI->getOperand(2).
isFI
() &&
105
if (MI->getOperand(2).
isFI
() &&
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp
602
assert(MI->getOperand(0).
isFI
() && "Unknown operand type");
[
all
...]
Completed in 1544 milliseconds
1
2