aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-11-09 00:30:18 +0000
committerBill Wendling <isanbard@gmail.com>2010-11-09 00:30:18 +0000
commit5e559a22c18166508a01fbd65471ec4e752726f9 (patch)
treec9958a8d03baa5b4abe7dc21dc7768e51ffbedc7
parent3afb024907729b09bd91ff2358c0b085f472e6ac (diff)
downloadexternal_llvm-5e559a22c18166508a01fbd65471ec4e752726f9.zip
external_llvm-5e559a22c18166508a01fbd65471ec4e752726f9.tar.gz
external_llvm-5e559a22c18166508a01fbd65471ec4e752726f9.tar.bz2
Revert r118457 and r118458. These won't hold for GPRs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118462 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMInstrInfo.td1
-rw-r--r--lib/Target/ARM/ARMMCCodeEmitter.cpp13
2 files changed, 8 insertions, 6 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td
index 0a98813..7c72579 100644
--- a/lib/Target/ARM/ARMInstrInfo.td
+++ b/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/lib/Target/ARM/ARMMCCodeEmitter.cpp b/lib/Target/ARM/ARMMCCodeEmitter.cpp
index fe6bd34..296a5c9 100644
--- a/lib/Target/ARM/ARMMCCodeEmitter.cpp
+++ b/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;
}