diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-11-09 00:30:18 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-11-09 00:30:18 +0000 |
commit | 1b83ed5f7c1a9bd76523519f49b858562d568496 (patch) | |
tree | 447e7634cbfc97089ae19b96a90d61e0ab3976f6 /llvm | |
parent | 9b14a25126f239f9b80dccb7f97958c2e96d4769 (diff) | |
download | bcm5719-llvm-1b83ed5f7c1a9bd76523519f49b858562d568496.tar.gz bcm5719-llvm-1b83ed5f7c1a9bd76523519f49b858562d568496.zip |
Revert r118457 and r118458. These won't hold for GPRs.
llvm-svn: 118462
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.td | 1 | ||||
-rw-r--r-- | llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp | 13 |
2 files changed, 8 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index 0a988138a92..7c7257900fd 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -278,7 +278,6 @@ def brtarget : Operand<OtherVT>; // A list of registers separated by comma. Used by load/store multiple. def reglist : Operand<i32> { - int NumOperands = 2; string EncoderMethod = "getRegisterListOpValue"; let PrintMethod = "printRegisterList"; } diff --git a/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp b/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp index fe6bd34a2b6..296a5c9ce36 100644 --- a/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp +++ b/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp @@ -378,11 +378,14 @@ getBitfieldInvertedMaskOpValue(const MCInst &MI, unsigned Op, unsigned ARMMCCodeEmitter:: getRegisterListOpValue(const MCInst &MI, unsigned Op, - SmallVectorImpl<MCFixup> &) const { - // {12-8} = Rd - // {7-0} = count - unsigned Binary = getARMRegisterNumbering(MI.getOperand(Op).getReg()) << 8; - Binary |= MI.getOperand(Op + 1).getImm() & 0xFF; + SmallVectorImpl<MCFixup> &Fixups) const { + // Convert a list of GPRs into a bitfield (R0 -> bit 0). For each + // register in the list, set the corresponding bit. + unsigned Binary = 0; + for (unsigned i = Op, e = MI.getNumOperands(); i < e; ++i) { + unsigned regno = getARMRegisterNumbering(MI.getOperand(i).getReg()); + Binary |= 1 << regno; + } return Binary; } |