diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-11-12 19:27:45 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-11-12 19:27:45 +0000 |
commit | 6bb1ae9d45e1cff18273092ab320ea9dd51ee83e (patch) | |
tree | 087dc1393e4ff863fabd18ec716a3703c53aaa3e | |
parent | dcc7732f88589a934da2d9f6fb4f7b6be35df13b (diff) | |
download | bcm5719-llvm-6bb1ae9d45e1cff18273092ab320ea9dd51ee83e.tar.gz bcm5719-llvm-6bb1ae9d45e1cff18273092ab320ea9dd51ee83e.zip |
Kill more unused stuff.
llvm-svn: 118921
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrFormats.td | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrFormats.td b/llvm/lib/Target/ARM/ARMInstrFormats.td index af13db8bdc2..2c61be20c27 100644 --- a/llvm/lib/Target/ARM/ARMInstrFormats.td +++ b/llvm/lib/Target/ARM/ARMInstrFormats.td @@ -448,19 +448,6 @@ class AIldr2<bits<4> op, bit opc22, bit opc20, dag oops, dag iops, AddrMode am, let Inst{7-4} = op; } - - - -class AI2ldw<dag oops, dag iops, Format f, InstrItinClass itin, - string opc, string asm, list<dag> pattern> - : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, - opc, asm, "", pattern> { - let Inst{20} = 1; // L bit - let Inst{21} = 0; // W bit - let Inst{22} = 0; // B bit - let Inst{24} = 1; // P bit - let Inst{27-26} = 0b01; -} class AXI2ldw<dag oops, dag iops, Format f, InstrItinClass itin, string asm, list<dag> pattern> : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, @@ -471,16 +458,6 @@ class AXI2ldw<dag oops, dag iops, Format f, InstrItinClass itin, let Inst{24} = 1; // P bit let Inst{27-26} = 0b01; } -class AI2ldb<dag oops, dag iops, Format f, InstrItinClass itin, - string opc, string asm, list<dag> pattern> - : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, - opc, asm, "", pattern> { - let Inst{20} = 1; // L bit - let Inst{21} = 0; // W bit - let Inst{22} = 1; // B bit - let Inst{24} = 1; // P bit - let Inst{27-26} = 0b01; -} class AXI2ldb<dag oops, dag iops, Format f, InstrItinClass itin, string asm, list<dag> pattern> : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, @@ -493,16 +470,6 @@ class AXI2ldb<dag oops, dag iops, Format f, InstrItinClass itin, } // stores -class AI2stw<dag oops, dag iops, Format f, InstrItinClass itin, - string opc, string asm, list<dag> pattern> - : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, - opc, asm, "", pattern> { - let Inst{20} = 0; // L bit - let Inst{21} = 0; // W bit - let Inst{22} = 0; // B bit - let Inst{24} = 1; // P bit - let Inst{27-26} = 0b01; -} class AXI2stw<dag oops, dag iops, Format f, InstrItinClass itin, string asm, list<dag> pattern> : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, @@ -513,16 +480,6 @@ class AXI2stw<dag oops, dag iops, Format f, InstrItinClass itin, let Inst{24} = 1; // P bit let Inst{27-26} = 0b01; } -class AI2stb<dag oops, dag iops, Format f, InstrItinClass itin, - string opc, string asm, list<dag> pattern> - : I<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, - opc, asm, "", pattern> { - let Inst{20} = 0; // L bit - let Inst{21} = 0; // W bit - let Inst{22} = 1; // B bit - let Inst{24} = 1; // P bit - let Inst{27-26} = 0b01; -} class AXI2stb<dag oops, dag iops, Format f, InstrItinClass itin, string asm, list<dag> pattern> : XI<oops, iops, AddrMode2, Size4Bytes, IndexModeNone, f, itin, |