Searched defs:RegBits (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp172 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 16; local
176 return (getMachineOpValue(MI, MO, Fixups) & 0xFFFF) | RegBits;
181 return RegBits;
190 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups) << 14; local
194 return ((getMachineOpValue(MI, MO, Fixups) >> 2) & 0x3FFF) | RegBits;
199 return RegBits;
/external/llvm/lib/Target/PowerPC/
H A DPPCCodeEmitter.cpp234 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 16; local
238 return (getMachineOpValue(MI, MO) & 0xFFFF) | RegBits;
242 return RegBits;
250 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 14; local
254 return ((getMachineOpValue(MI, MO) >> 2) & 0x3FFF) | RegBits;
257 return RegBits;
/external/llvm/lib/Target/Mips/
H A DMipsCodeEmitter.cpp200 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo)) << 16; local
201 return (getMachineOpValue(MI, MI.getOperand(OpNo+1)) & 0xFFFF) | RegBits;

Completed in 178 milliseconds