HomeSort by relevance Sort by last modified time
    Searched defs:PIdx (Results 1 - 6 of 6) 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 720 int PIdx = MI.findFirstPredOperandIdx();
721 ARMCC::CondCodes Pred = (PIdx == -1)
722 ? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(PIdx).getImm();
723 unsigned PredReg = (PIdx == -1) ? 0 : MI.getOperand(PIdx+1).getReg();
ARMFrameLowering.cpp     [all...]
ARMBaseInstrInfo.cpp 450 int PIdx = I->findFirstPredOperandIdx();
451 if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL)
457 int PIdx = MI->findFirstPredOperandIdx();
458 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
473 int PIdx = MI->findFirstPredOperandIdx();
474 if (PIdx != -1) {
475 MachineOperand &PMO = MI->getOperand(PIdx);
477 MI->getOperand(PIdx+1).setReg(Pred[1].getReg())
    [all...]
  /external/llvm/lib/Target/R600/
R600InstrInfo.cpp 510 int PIdx = MI->findFirstPredOperandIdx();
512 if (PIdx != -1) {
513 MachineOperand &PMO = MI->getOperand(PIdx);
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]

Completed in 194 milliseconds