1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Refactor encoding function for NEON 1-register with modified immediate format.

llvm-svn: 107070
This commit is contained in:
Bob Wilson 2010-06-28 21:16:30 +00:00
parent 6385cb2386
commit 378395412f

View File

@ -1630,15 +1630,11 @@ void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
// Immediate fields: Op, Cmode, I, Imm3, Imm4
unsigned Imm = MI.getOperand(1).getImm();
unsigned Op = (Imm >> 12) & 1;
Binary |= (Op << 5);
unsigned Cmode = (Imm >> 8) & 0xf;
Binary |= (Cmode << 8);
unsigned I = (Imm >> 7) & 1;
Binary |= (I << 24);
unsigned Imm3 = (Imm >> 4) & 0x7;
Binary |= (Imm3 << 16);
unsigned Imm4 = Imm & 0xf;
Binary |= Imm4;
Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
if (Subtarget->isThumb())
Binary = convertNEONDataProcToThumb(Binary);
emitWordLE(Binary);