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

  /external/llvm/lib/Target/PowerPC/
PPCCodeEmitter.cpp 218 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 16;
222 return (getMachineOpValue(MI, MO) & 0xFFFF) | RegBits;
226 return RegBits;
234 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 14;
238 return (getMachineOpValue(MI, MO) & 0x3FFF) | RegBits;
241 return RegBits;
PPCMCCodeEmitter.cpp 136 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 16;
140 return (getMachineOpValue(MI, MO, Fixups) & 0xFFFF) | RegBits;
145 return RegBits;
154 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 14;
158 return (getMachineOpValue(MI, MO, Fixups) & 0x3FFF) | RegBits;
163 return RegBits;

Completed in 837 milliseconds