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

  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 99 /// getMachineOpValue - Return binary encoding of operand. If the machine
101 unsigned getMachineOpValue(const MachineInstr &MI,
196 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo)) << 16;
197 return (getMachineOpValue(MI, MI.getOperand(OpNo+1)) & 0xFFFF) | RegBits;
203 return getMachineOpValue(MI, MI.getOperand(OpNo)) - 1;
209 return getMachineOpValue(MI, MI.getOperand(OpNo-1)) +
210 getMachineOpValue(MI, MI.getOperand(OpNo)) - 1;
213 /// getMachineOpValue - Return binary encoding of operand. If the machine
215 unsigned MipsCodeEmitter::getMachineOpValue(const MachineInstr &MI,
281 unsigned src = getMachineOpValue(MI, MI.getOperand(0))
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCCodeEmitter.cpp 53 /// getMachineOpValue - Return binary encoding of operand. If the machine
55 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
90 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
101 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
112 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
123 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
136 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 16;
140 return (getMachineOpValue(MI, MO, Fixups) & 0xFFFF) | RegBits;
154 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 14;
158 return (getMachineOpValue(MI, MO, Fixups) & 0x3FFF) | RegBits
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCodeEmitter.cpp 59 /// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr
60 unsigned getMachineOpValue(const MachineInstr &MI,
183 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO);
199 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO);
208 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO);
219 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 16;
223 return (getMachineOpValue(MI, MO) & 0xFFFF) | RegBits;
235 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 14;
239 return (getMachineOpValue(MI, MO) & 0x3FFF) | RegBits;
246 unsigned PPCCodeEmitter::getMachineOpValue(const MachineInstr &MI
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 78 // getMachineOpValue - Return binary encoding of operand. If the machin
80 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
177 /// getMachineOpValue - Return binary encoding of operand. If the machine
180 getMachineOpValue(const MCInst &MI, const MCOperand &MO,
286 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups) << 16;
287 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups);
296 unsigned SizeEncoding = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups);
307 unsigned Position = getMachineOpValue(MI, MI.getOperand(OpNo-1), Fixups);
308 unsigned Size = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups);
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 152 /// getMachineOpValue - Return binary encoding of operand. If the machine
154 unsigned getMachineOpValue(const MachineInstr &MI,
156 unsigned getMachineOpValue(const MachineInstr &MI, unsigned OpIdx) const {
157 return getMachineOpValue(MI, MI.getOperand(OpIdx));
162 // operand values, instead querying getMachineOpValue() directly for
465 /// getMachineOpValue - Return binary encoding of operand. If the machine
467 unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
750 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
765 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
788 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift
    [all...]
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCCodeEmitter.cpp 48 /// getMachineOpValue - Return binary encoding of operand. If the machine
50 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO) const;
51 unsigned getMachineOpValue(const MCInst &MI, unsigned OpIdx) const {
52 return getMachineOpValue(MI, MI.getOperand(OpIdx));
107 /// getMachineOpValue - Return binary encoding of operand. If the machine
109 unsigned MBlazeMCCodeEmitter::getMachineOpValue(const MCInst &MI,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 72 /// getMachineOpValue - Return binary encoding of operand. If the machine
74 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
403 /// getMachineOpValue - Return binary encoding of operand. If the machine
406 getMachineOpValue(const MCInst &MI, const MCOperand &MO,
    [all...]

Completed in 383 milliseconds