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

  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 59 const MCOperand &MO1 = MI->getOperand(1);
68 << ", " << getRegisterName(MO1.getReg());
79 const MCOperand &MO1 = MI->getOperand(1);
87 << ", " << getRegisterName(MO1.getReg());
228 const MCOperand &MO1 = MI->getOperand(OpNum);
229 if (MO1.isExpr())
230 O << *MO1.getExpr();
231 else if (MO1.isImm())
232 O << "[pc, #" << MO1.getImm() << "]";
244 const MCOperand &MO1 = MI->getOperand(OpNum)
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 434 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
438 int32_t SImm = MO1.getImm();
699 const MCOperand &MO1 = MI.getOperand(OpIdx);
701 unsigned Rn = getARMRegisterNumbering(MO1.getReg());
833 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
835 unsigned Imm8 = MO1.getImm();
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 826 const MachineOperand &MO1 = MI.getOperand(CurOp++);
828 if (MO1.isImm()) {
829 emitConstant(MO1.getImm(), Size);
840 if (MO1.isGlobal()) {
841 bool Indirect = gvNeedsNonLazyPtr(MO1, TM);
842 emitGlobalAddress(MO1.getGlobal(), rt, MO1.getOffset(), 0,
844 } else if (MO1.isSymbol())
845 emitExternalSymbolAddress(MO1.getSymbolName(), rt);
846 else if (MO1.isCPI()
    [all...]
X86FloatingPoint.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonAsmPrinter.h 83 const MachineOperand &MO1 = MI->getOperand(OpNo);
86 O << getRegisterName(MO1.getReg())
93 const MachineOperand &MO1 = MI->getOperand(OpNo);
96 O << getRegisterName(MO1.getReg())
HexagonAsmPrinter.cpp 219 const MachineOperand &MO1 = MI->getOperand(OpNo);
222 O << HexagonInstPrinter::getRegisterName(MO1.getReg())
  /external/llvm/lib/Target/Hexagon/InstPrinter/
HexagonInstPrinter.cpp 100 const MCOperand& MO1 = MI->getOperand(OpNo + 1);
103 O << " + #" << MO1.getImm();
109 const MCOperand& MO1 = MI->getOperand(OpNo + 1);
111 O << getRegisterName(MO0.getReg()) << ", #" << MO1.getImm();
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 262 const MachineOperand &MO1 = MI.getOperand(Op + 1);
268 int32_t Imm12 = MO1.getImm();
322 const MachineOperand &MO1 = MI.getOperand(Op + 1);
323 if (uint32_t ImmOffs = ARM_AM::getAM5Offset(MO1.getImm())) {
324 if (ARM_AM::getAM5Op(MO1.getImm()) == ARM_AM::add)
732 const MachineOperand &MO1 = MI.getOperand(1);
737 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
750 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
768 const MachineOperand &MO1 = MI.getOperand(1);
769 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &
    [all...]
ARMExpandPseudoInsts.cpp     [all...]
ARMAsmPrinter.cpp     [all...]
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp 67 MachineOperand &MO1 = MI->getOperand(1);
68 if (MO1.getReg() != Reg)

Completed in 910 milliseconds