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 100 /// getMachineOpValue - Return binary encoding of operand. If the machine
102 unsigned getMachineOpValue(const MachineInstr &MI,
197 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo)) << 16;
198 return (getMachineOpValue(MI, MI.getOperand(OpNo+1)) & 0xFFFF) | RegBits;
204 return getMachineOpValue(MI, MI.getOperand(OpNo)) - 1;
210 return getMachineOpValue(MI, MI.getOperand(OpNo-1)) +
211 getMachineOpValue(MI, MI.getOperand(OpNo)) - 1;
214 /// getMachineOpValue - Return binary encoding of operand. If the machine
216 unsigned MipsCodeEmitter::getMachineOpValue(const MachineInstr &MI,
282 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,
89 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
100 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
111 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
122 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups);
135 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 16;
139 return (getMachineOpValue(MI, MO, Fixups) & 0xFFFF) | RegBits;
153 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 14;
157 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,
168 /// getMachineOpValue - Return binary encoding of operand. If the machine
171 getMachineOpValue(const MCInst &MI, const MCOperand &MO,
256 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups) << 16;
257 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups);
266 unsigned SizeEncoding = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups);
277 unsigned Position = getMachineOpValue(MI, MI.getOperand(OpNo-1), Fixups);
278 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
317 uint32_t Reg = getMachineOpValue(MI, MO);
453 /// getMachineOpValue - Return binary encoding of operand. If the machine
455 unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
743 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
758 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));
106 /// getMachineOpValue - Return binary encoding of operand. If the machine
108 unsigned MBlazeMCCodeEmitter::getMachineOpValue(const MCInst &MI,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 70 /// getMachineOpValue - Return binary encoding of operand. If the machine
72 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
400 /// getMachineOpValue - Return binary encoding of operand. If the machine
403 getMachineOpValue(const MCInst &MI, const MCOperand &MO,
    [all...]

Completed in 236 milliseconds