Searched refs:RegBits (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCCodeEmitter.cpp237 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 16; local
241 return (getMachineOpValue(MI, MO) & 0xFFFF) | RegBits;
245 return RegBits;
253 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1)) << 14; local
257 return ((getMachineOpValue(MI, MO) >> 2) & 0x3FFF) | RegBits;
260 return RegBits;
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp231 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 16; local
235 return (getMachineOpValue(MI, MO, Fixups, STI) & 0xFFFF) | RegBits;
240 return RegBits;
250 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI) << 14; local
254 return ((getMachineOpValue(MI, MO, Fixups, STI) >> 2) & 0x3FFF) | RegBits;
259 return RegBits;
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp526 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups, STI) << 16;
559 return (OffBits & 0xFFFF) | RegBits;
570 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups, STI) << 16;
573 return (OffBits & 0xFFFF) | RegBits;
582 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) << 16;
585 return (OffBits & 0x0FFF) | RegBits;
/external/llvm/lib/Target/Mips/
H A DMipsCodeEmitter.cpp242 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo)) << 16; local
243 return (getMachineOpValue(MI, MI.getOperand(OpNo+1)) & 0xFFFF) | RegBits;

Completed in 186 milliseconds