OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PIdx
(Results
1 - 7
of
7
) sorted by null
/external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h
78
int
PIdx
= MI->findFirstPredOperandIdx();
79
return
PIdx
!= -1 ? (ARMCC::CondCodes)MI->getOperand(
PIdx
).getImm()
ARMBaseRegisterInfo.cpp
741
int
PIdx
= MI.findFirstPredOperandIdx();
742
ARMCC::CondCodes Pred = (
PIdx
== -1)
743
? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(
PIdx
).getImm();
744
unsigned PredReg = (
PIdx
== -1) ? 0 : MI.getOperand(
PIdx
+1).getReg();
ARMFrameLowering.cpp
[
all
...]
ARMBaseInstrInfo.cpp
441
int
PIdx
= I->findFirstPredOperandIdx();
442
if (
PIdx
!= -1 && I->getOperand(
PIdx
).getImm() != ARMCC::AL)
448
int
PIdx
= MI->findFirstPredOperandIdx();
449
return
PIdx
!= -1 && MI->getOperand(
PIdx
).getImm() != ARMCC::AL;
464
int
PIdx
= MI->findFirstPredOperandIdx();
465
if (
PIdx
!= -1) {
466
MachineOperand &PMO = MI->getOperand(
PIdx
);
468
MI->getOperand(
PIdx
+1).setReg(Pred[1].getReg())
[
all
...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600InstrInfo.cpp
458
int
PIdx
= MI->findFirstPredOperandIdx();
460
if (
PIdx
!= -1) {
461
MachineOperand &PMO = MI->getOperand(
PIdx
);
/external/mesa3d/src/gallium/drivers/radeon/
R600InstrInfo.cpp
458
int
PIdx
= MI->findFirstPredOperandIdx();
460
if (
PIdx
!= -1) {
461
MachineOperand &PMO = MI->getOperand(
PIdx
);
/external/llvm/lib/CodeGen/
MachineScheduler.cpp
[
all
...]
Completed in 180 milliseconds