forked from OSchip/llvm-project
Added encoding bits for the Thumb ISA. Initial checkin.
llvm-svn: 91434
This commit is contained in:
parent
906db8a546
commit
c28e629c2d
|
@ -146,11 +146,9 @@ def s_cc_out : OptionalDefOperand<OtherVT, (ops CCR), (ops (i32 CPSR))> {
|
||||||
// ARM Instruction templates.
|
// ARM Instruction templates.
|
||||||
//
|
//
|
||||||
|
|
||||||
class InstARM<AddrMode am, SizeFlagVal sz, IndexMode im,
|
class InstTemplate<AddrMode am, SizeFlagVal sz, IndexMode im,
|
||||||
Format f, Domain d, string cstr, InstrItinClass itin>
|
Format f, Domain d, string cstr, InstrItinClass itin>
|
||||||
: Instruction {
|
: Instruction {
|
||||||
field bits<32> Inst;
|
|
||||||
|
|
||||||
let Namespace = "ARM";
|
let Namespace = "ARM";
|
||||||
|
|
||||||
// TSFlagsFields
|
// TSFlagsFields
|
||||||
|
@ -179,6 +177,20 @@ class InstARM<AddrMode am, SizeFlagVal sz, IndexMode im,
|
||||||
let Itinerary = itin;
|
let Itinerary = itin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Encoding {
|
||||||
|
field bits<32> Inst;
|
||||||
|
}
|
||||||
|
|
||||||
|
class InstARM<AddrMode am, SizeFlagVal sz, IndexMode im,
|
||||||
|
Format f, Domain d, string cstr, InstrItinClass itin>
|
||||||
|
: InstTemplate<am, sz, im, f, d, cstr, itin>, Encoding;
|
||||||
|
|
||||||
|
// This Encoding-less class is used by Thumb1 to specify the encoding bits later
|
||||||
|
// on by adding flavors to specific instructions.
|
||||||
|
class InstThumb<AddrMode am, SizeFlagVal sz, IndexMode im,
|
||||||
|
Format f, Domain d, string cstr, InstrItinClass itin>
|
||||||
|
: InstTemplate<am, sz, im, f, d, cstr, itin>;
|
||||||
|
|
||||||
class PseudoInst<dag oops, dag iops, InstrItinClass itin,
|
class PseudoInst<dag oops, dag iops, InstrItinClass itin,
|
||||||
string asm, list<dag> pattern>
|
string asm, list<dag> pattern>
|
||||||
: InstARM<AddrModeNone, SizeSpecial, IndexModeNone, Pseudo, GenericDomain,
|
: InstARM<AddrModeNone, SizeSpecial, IndexModeNone, Pseudo, GenericDomain,
|
||||||
|
@ -861,7 +873,7 @@ class ARMV6Pat<dag pattern, dag result> : Pat<pattern, result> {
|
||||||
|
|
||||||
class ThumbI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
class ThumbI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
||||||
InstrItinClass itin, string asm, string cstr, list<dag> pattern>
|
InstrItinClass itin, string asm, string cstr, list<dag> pattern>
|
||||||
: InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
: InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
||||||
let OutOperandList = oops;
|
let OutOperandList = oops;
|
||||||
let InOperandList = iops;
|
let InOperandList = iops;
|
||||||
let AsmString = asm;
|
let AsmString = asm;
|
||||||
|
@ -876,9 +888,14 @@ class TI<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
||||||
class TIt<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
class TIt<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
||||||
: ThumbI<oops, iops, AddrModeNone, Size2Bytes, itin, asm, "$lhs = $dst", pattern>;
|
: ThumbI<oops, iops, AddrModeNone, Size2Bytes, itin, asm, "$lhs = $dst", pattern>;
|
||||||
|
|
||||||
// tBL, tBX instructions
|
// tBL, tBX 32-bit instructions
|
||||||
class TIx2<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
class TIx2<bits<5> opcod1, bits<2> opcod2, bit opcod3,
|
||||||
: ThumbI<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>;
|
dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
||||||
|
: ThumbI<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>, Encoding {
|
||||||
|
let Inst{31-27} = opcod1;
|
||||||
|
let Inst{15-14} = opcod2;
|
||||||
|
let Inst{12} = opcod3;
|
||||||
|
}
|
||||||
|
|
||||||
// BR_JT instructions
|
// BR_JT instructions
|
||||||
class TJTI<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
class TJTI<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> pattern>
|
||||||
|
@ -887,7 +904,7 @@ class TJTI<dag oops, dag iops, InstrItinClass itin, string asm, list<dag> patter
|
||||||
// Thumb1 only
|
// Thumb1 only
|
||||||
class Thumb1I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
class Thumb1I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
||||||
InstrItinClass itin, string asm, string cstr, list<dag> pattern>
|
InstrItinClass itin, string asm, string cstr, list<dag> pattern>
|
||||||
: InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
: InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
||||||
let OutOperandList = oops;
|
let OutOperandList = oops;
|
||||||
let InOperandList = iops;
|
let InOperandList = iops;
|
||||||
let AsmString = asm;
|
let AsmString = asm;
|
||||||
|
@ -903,7 +920,8 @@ class T1Ix2<dag oops, dag iops, InstrItinClass itin,
|
||||||
: Thumb1I<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>;
|
: Thumb1I<oops, iops, AddrModeNone, Size4Bytes, itin, asm, "", pattern>;
|
||||||
class T1JTI<dag oops, dag iops, InstrItinClass itin,
|
class T1JTI<dag oops, dag iops, InstrItinClass itin,
|
||||||
string asm, list<dag> pattern>
|
string asm, list<dag> pattern>
|
||||||
: Thumb1I<oops, iops, AddrModeNone, SizeSpecial, itin, asm, "", pattern>;
|
: Thumb1I<oops, iops, AddrModeNone, SizeSpecial, itin, asm, "", pattern>,
|
||||||
|
Encoding;
|
||||||
|
|
||||||
// Two-address instructions
|
// Two-address instructions
|
||||||
class T1It<dag oops, dag iops, InstrItinClass itin,
|
class T1It<dag oops, dag iops, InstrItinClass itin,
|
||||||
|
@ -915,7 +933,7 @@ class T1It<dag oops, dag iops, InstrItinClass itin,
|
||||||
class Thumb1sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
class Thumb1sI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
||||||
InstrItinClass itin,
|
InstrItinClass itin,
|
||||||
string opc, string asm, string cstr, list<dag> pattern>
|
string opc, string asm, string cstr, list<dag> pattern>
|
||||||
: InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
: InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
||||||
let OutOperandList = !con(oops, (ops s_cc_out:$s));
|
let OutOperandList = !con(oops, (ops s_cc_out:$s));
|
||||||
let InOperandList = !con(iops, (ops pred:$p));
|
let InOperandList = !con(iops, (ops pred:$p));
|
||||||
let AsmString = !strconcat(opc, !strconcat("${s}${p}", asm));
|
let AsmString = !strconcat(opc, !strconcat("${s}${p}", asm));
|
||||||
|
@ -937,7 +955,7 @@ class T1sIt<dag oops, dag iops, InstrItinClass itin,
|
||||||
class Thumb1pI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
class Thumb1pI<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
||||||
InstrItinClass itin,
|
InstrItinClass itin,
|
||||||
string opc, string asm, string cstr, list<dag> pattern>
|
string opc, string asm, string cstr, list<dag> pattern>
|
||||||
: InstARM<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
: InstThumb<am, sz, IndexModeNone, ThumbFrm, GenericDomain, cstr, itin> {
|
||||||
let OutOperandList = oops;
|
let OutOperandList = oops;
|
||||||
let InOperandList = !con(iops, (ops pred:$p));
|
let InOperandList = !con(iops, (ops pred:$p));
|
||||||
let AsmString = !strconcat(opc, !strconcat("${p}", asm));
|
let AsmString = !strconcat(opc, !strconcat("${p}", asm));
|
||||||
|
@ -968,6 +986,46 @@ class T1pIs<dag oops, dag iops,
|
||||||
InstrItinClass itin, string opc, string asm, list<dag> pattern>
|
InstrItinClass itin, string opc, string asm, list<dag> pattern>
|
||||||
: Thumb1pI<oops, iops, AddrModeT1_s, Size2Bytes, itin, opc, asm, "", pattern>;
|
: Thumb1pI<oops, iops, AddrModeT1_s, Size2Bytes, itin, opc, asm, "", pattern>;
|
||||||
|
|
||||||
|
// A6.2 16-bit Thumb instruction encoding
|
||||||
|
class T1Encoding<bits<6> opcode> : Encoding {
|
||||||
|
let Inst{15-10} = opcode;
|
||||||
|
}
|
||||||
|
|
||||||
|
// A6.2.1 Shift (immediate), add, subtract, move, and compare encoding.
|
||||||
|
class T1General<bits<5> opcode> : Encoding {
|
||||||
|
let Inst{15-14} = 0b00;
|
||||||
|
let Inst{13-9} = opcode;
|
||||||
|
}
|
||||||
|
|
||||||
|
// A6.2.2 Data-processing encoding.
|
||||||
|
class T1DataProcessing<bits<4> opcode> : Encoding {
|
||||||
|
let Inst{15-10} = 0b010000;
|
||||||
|
let Inst{9-6} = opcode;
|
||||||
|
}
|
||||||
|
|
||||||
|
// A6.2.3 Special data instructions and branch and exchange encoding.
|
||||||
|
class T1Special<bits<4> opcode> : Encoding {
|
||||||
|
let Inst{15-10} = 0b010001;
|
||||||
|
let Inst{9-6} = opcode;
|
||||||
|
}
|
||||||
|
|
||||||
|
// A6.2.4 Load/store single data item encoding.
|
||||||
|
class T1LoadStore<bits<4> opA, bits<3> opB> : Encoding {
|
||||||
|
let Inst{15-12} = opA;
|
||||||
|
let Inst{11-9} = opB;
|
||||||
|
}
|
||||||
|
class T1LdSt<bits<3> opB> : T1LoadStore<0b0101, opB>;
|
||||||
|
class T1LdSt4Imm<bits<3> opB> : T1LoadStore<0b0110, opB>; // Immediate, 4 bytes
|
||||||
|
class T1LdSt1Imm<bits<3> opB> : T1LoadStore<0b0111, opB>; // Immediate, 1 byte
|
||||||
|
class T1LdSt2Imm<bits<3> opB> : T1LoadStore<0b1000, opB>; // Immediate, 2 bytes
|
||||||
|
class T1LdStSP<bits<3> opB> : T1LoadStore<0b1001, opB>; // SP relative
|
||||||
|
|
||||||
|
// A6.2.5 Miscellaneous 16-bit instructions encoding.
|
||||||
|
class T1Misc<bits<7> opcode> : Encoding {
|
||||||
|
let Inst{15-12} = 0b1011;
|
||||||
|
let Inst{11-5} = opcode;
|
||||||
|
}
|
||||||
|
|
||||||
// Thumb2I - Thumb2 instruction. Almost all Thumb2 instructions are predicable.
|
// Thumb2I - Thumb2 instruction. Almost all Thumb2 instructions are predicable.
|
||||||
class Thumb2I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
class Thumb2I<dag oops, dag iops, AddrMode am, SizeFlagVal sz,
|
||||||
InstrItinClass itin,
|
InstrItinClass itin,
|
||||||
|
@ -1034,9 +1092,18 @@ class T2Iso<dag oops, dag iops, InstrItinClass itin,
|
||||||
class T2Ipc<dag oops, dag iops, InstrItinClass itin,
|
class T2Ipc<dag oops, dag iops, InstrItinClass itin,
|
||||||
string opc, string asm, list<dag> pattern>
|
string opc, string asm, list<dag> pattern>
|
||||||
: Thumb2I<oops, iops, AddrModeT2_pc, Size4Bytes, itin, opc, asm, "", pattern>;
|
: Thumb2I<oops, iops, AddrModeT2_pc, Size4Bytes, itin, opc, asm, "", pattern>;
|
||||||
class T2Ii8s4<dag oops, dag iops, InstrItinClass itin,
|
class T2Ii8s4<bit P, bit W, bit load, dag oops, dag iops, InstrItinClass itin,
|
||||||
string opc, string asm, list<dag> pattern>
|
string opc, string asm, list<dag> pattern>
|
||||||
: Thumb2I<oops, iops, AddrModeT2_i8s4, Size4Bytes, itin, opc, asm, "", pattern>;
|
: Thumb2I<oops, iops, AddrModeT2_i8s4, Size4Bytes, itin, opc, asm, "",
|
||||||
|
pattern> {
|
||||||
|
let Inst{31-27} = 0b11101;
|
||||||
|
let Inst{26-25} = 0b00;
|
||||||
|
let Inst{24} = P;
|
||||||
|
let Inst{23} = ?; // The U bit.
|
||||||
|
let Inst{22} = 1;
|
||||||
|
let Inst{21} = W;
|
||||||
|
let Inst{20} = load;
|
||||||
|
}
|
||||||
|
|
||||||
class T2sI<dag oops, dag iops, InstrItinClass itin,
|
class T2sI<dag oops, dag iops, InstrItinClass itin,
|
||||||
string opc, string asm, list<dag> pattern>
|
string opc, string asm, list<dag> pattern>
|
||||||
|
@ -1055,8 +1122,9 @@ class T2Ix2<dag oops, dag iops, InstrItinClass itin,
|
||||||
|
|
||||||
|
|
||||||
// T2Iidxldst - Thumb2 indexed load / store instructions.
|
// T2Iidxldst - Thumb2 indexed load / store instructions.
|
||||||
class T2Iidxldst<dag oops, dag iops, AddrMode am, IndexMode im,
|
class T2Iidxldst<bit signed, bits<2> opcod, bit load, bit pre,
|
||||||
InstrItinClass itin,
|
dag oops, dag iops,
|
||||||
|
AddrMode am, IndexMode im, InstrItinClass itin,
|
||||||
string opc, string asm, string cstr, list<dag> pattern>
|
string opc, string asm, string cstr, list<dag> pattern>
|
||||||
: InstARM<am, Size4Bytes, im, ThumbFrm, GenericDomain, cstr, itin> {
|
: InstARM<am, Size4Bytes, im, ThumbFrm, GenericDomain, cstr, itin> {
|
||||||
let OutOperandList = oops;
|
let OutOperandList = oops;
|
||||||
|
@ -1064,6 +1132,16 @@ class T2Iidxldst<dag oops, dag iops, AddrMode am, IndexMode im,
|
||||||
let AsmString = !strconcat(opc, !strconcat("${p}", asm));
|
let AsmString = !strconcat(opc, !strconcat("${p}", asm));
|
||||||
let Pattern = pattern;
|
let Pattern = pattern;
|
||||||
list<Predicate> Predicates = [IsThumb2];
|
list<Predicate> Predicates = [IsThumb2];
|
||||||
|
let Inst{31-27} = 0b11111;
|
||||||
|
let Inst{26-25} = 0b00;
|
||||||
|
let Inst{24} = signed;
|
||||||
|
let Inst{23} = 0;
|
||||||
|
let Inst{22-21} = opcod;
|
||||||
|
let Inst{20} = load;
|
||||||
|
let Inst{11} = 1;
|
||||||
|
// (P, W) = (1, 1) Pre-indexed or (0, 1) Post-indexed
|
||||||
|
let Inst{10} = pre; // The P bit.
|
||||||
|
let Inst{8} = 1; // The W bit.
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tv5Pat - Same as Pat<>, but requires V5T Thumb mode.
|
// Tv5Pat - Same as Pat<>, but requires V5T Thumb mode.
|
||||||
|
|
|
@ -136,31 +136,46 @@ PseudoInst<(outs), (ins i32imm:$amt), NoItinerary,
|
||||||
let isNotDuplicable = 1 in
|
let isNotDuplicable = 1 in
|
||||||
def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr,
|
def tPICADD : TIt<(outs GPR:$dst), (ins GPR:$lhs, pclabel:$cp), IIC_iALUr,
|
||||||
"\n$cp:\n\tadd\t$dst, pc",
|
"\n$cp:\n\tadd\t$dst, pc",
|
||||||
[(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>;
|
[(set GPR:$dst, (ARMpic_add GPR:$lhs, imm:$cp))]>,
|
||||||
|
T1Special<{0,0,?,?}> {
|
||||||
|
let Inst{6-3} = 0b1111; // A8.6.6 Rm = pc
|
||||||
|
}
|
||||||
|
|
||||||
// PC relative add.
|
// PC relative add.
|
||||||
def tADDrPCi : T1I<(outs tGPR:$dst), (ins t_imm_s4:$rhs), IIC_iALUi,
|
def tADDrPCi : T1I<(outs tGPR:$dst), (ins t_imm_s4:$rhs), IIC_iALUi,
|
||||||
"add\t$dst, pc, $rhs", []>;
|
"add\t$dst, pc, $rhs", []>,
|
||||||
|
T1Encoding<{1,0,1,0,0,?}>; // A6.2 & A8.6.10
|
||||||
|
|
||||||
// ADD rd, sp, #imm8
|
// ADD rd, sp, #imm8
|
||||||
def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
|
def tADDrSPi : T1I<(outs tGPR:$dst), (ins GPR:$sp, t_imm_s4:$rhs), IIC_iALUi,
|
||||||
"add\t$dst, $sp, $rhs", []>;
|
"add\t$dst, $sp, $rhs", []>,
|
||||||
|
T1Encoding<{1,0,1,0,1,?}>; // A6.2 & A8.6.8
|
||||||
|
|
||||||
// ADD sp, sp, #imm7
|
// ADD sp, sp, #imm7
|
||||||
def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
|
def tADDspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
|
||||||
"add\t$dst, $rhs", []>;
|
"add\t$dst, $rhs", []>,
|
||||||
|
T1Misc<{0,0,0,0,0,?,?}>; // A6.2.5 & A8.6.8
|
||||||
|
|
||||||
// SUB sp, sp, #imm7
|
// SUB sp, sp, #imm7
|
||||||
def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
|
def tSUBspi : TIt<(outs GPR:$dst), (ins GPR:$lhs, t_imm_s4:$rhs), IIC_iALUi,
|
||||||
"sub\t$dst, $rhs", []>;
|
"sub\t$dst, $rhs", []>,
|
||||||
|
T1Misc<{0,0,0,0,1,?,?}>; // A6.2.5 & A8.6.215
|
||||||
|
|
||||||
// ADD rm, sp
|
// ADD rm, sp
|
||||||
def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
|
def tADDrSP : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
|
||||||
"add\t$dst, $rhs", []>;
|
"add\t$dst, $rhs", []>,
|
||||||
|
T1Special<{0,0,?,?}> {
|
||||||
|
let Inst{6-3} = 0b1101; // A8.6.9 Encoding T1
|
||||||
|
}
|
||||||
|
|
||||||
// ADD sp, rm
|
// ADD sp, rm
|
||||||
def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
|
def tADDspr : TIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
|
||||||
"add\t$dst, $rhs", []>;
|
"add\t$dst, $rhs", []>,
|
||||||
|
T1Special<{0,0,?,?}> {
|
||||||
|
// A8.6.9 Encoding T2
|
||||||
|
let Inst{7} = 1;
|
||||||
|
let Inst{2-0} = 0b101;
|
||||||
|
}
|
||||||
|
|
||||||
// Pseudo instruction that will expand into a tSUBspi + a copy.
|
// Pseudo instruction that will expand into a tSUBspi + a copy.
|
||||||
let usesCustomInserter = 1 in { // Expanded after instruction selection.
|
let usesCustomInserter = 1 in { // Expanded after instruction selection.
|
||||||
|
@ -180,22 +195,32 @@ def tANDsp : PseudoInst<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs),
|
||||||
//
|
//
|
||||||
|
|
||||||
let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
|
let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
|
||||||
def tBX_RET : TI<(outs), (ins), IIC_Br, "bx\tlr", [(ARMretflag)]>;
|
def tBX_RET : TI<(outs), (ins), IIC_Br, "bx\tlr", [(ARMretflag)]>,
|
||||||
|
T1Special<{1,1,0,?}> { // A6.2.3 & A8.6.25
|
||||||
|
let Inst{6-3} = 0b1110; // Rm = lr
|
||||||
|
}
|
||||||
// Alternative return instruction used by vararg functions.
|
// Alternative return instruction used by vararg functions.
|
||||||
def tBX_RET_vararg : TI<(outs), (ins tGPR:$target), IIC_Br, "bx\t$target", []>;
|
def tBX_RET_vararg : TI<(outs), (ins tGPR:$target), IIC_Br, "bx\t$target", []>,
|
||||||
|
T1Special<{1,1,0,?}>; // A6.2.3 & A8.6.25
|
||||||
}
|
}
|
||||||
|
|
||||||
// Indirect branches
|
// Indirect branches
|
||||||
let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
|
let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
|
||||||
def tBRIND : TI<(outs), (ins GPR:$dst), IIC_Br, "mov\tpc, $dst",
|
def tBRIND : TI<(outs), (ins GPR:$dst), IIC_Br, "mov\tpc, $dst",
|
||||||
[(brind GPR:$dst)]>;
|
[(brind GPR:$dst)]>,
|
||||||
|
T1Special<{1,0,?,?}> {
|
||||||
|
// <Rd> = pc
|
||||||
|
let Inst{7} = 1;
|
||||||
|
let Inst{2-0} = 0b111;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME: remove when we have a way to marking a MI with these properties.
|
// FIXME: remove when we have a way to marking a MI with these properties.
|
||||||
let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
|
let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
|
||||||
hasExtraDefRegAllocReq = 1 in
|
hasExtraDefRegAllocReq = 1 in
|
||||||
def tPOP_RET : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
def tPOP_RET : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
||||||
"pop${p}\t$wb", []>;
|
"pop${p}\t$wb", []>,
|
||||||
|
T1Misc<{1,1,0,?,?,?,?}>;
|
||||||
|
|
||||||
let isCall = 1,
|
let isCall = 1,
|
||||||
Defs = [R0, R1, R2, R3, R12, LR,
|
Defs = [R0, R1, R2, R3, R12, LR,
|
||||||
|
@ -203,13 +228,15 @@ let isCall = 1,
|
||||||
D16, D17, D18, D19, D20, D21, D22, D23,
|
D16, D17, D18, D19, D20, D21, D22, D23,
|
||||||
D24, D25, D26, D27, D28, D29, D30, D31, CPSR, FPSCR] in {
|
D24, D25, D26, D27, D28, D29, D30, D31, CPSR, FPSCR] in {
|
||||||
// Also used for Thumb2
|
// Also used for Thumb2
|
||||||
def tBL : TIx2<(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
def tBL : TIx2<0b11110, 0b11, 1,
|
||||||
|
(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
||||||
"bl\t${func:call}",
|
"bl\t${func:call}",
|
||||||
[(ARMtcall tglobaladdr:$func)]>,
|
[(ARMtcall tglobaladdr:$func)]>,
|
||||||
Requires<[IsThumb, IsNotDarwin]>;
|
Requires<[IsThumb, IsNotDarwin]>;
|
||||||
|
|
||||||
// ARMv5T and above, also used for Thumb2
|
// ARMv5T and above, also used for Thumb2
|
||||||
def tBLXi : TIx2<(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
def tBLXi : TIx2<0b11110, 0b11, 0,
|
||||||
|
(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
||||||
"blx\t${func:call}",
|
"blx\t${func:call}",
|
||||||
[(ARMcall tglobaladdr:$func)]>,
|
[(ARMcall tglobaladdr:$func)]>,
|
||||||
Requires<[IsThumb, HasV5T, IsNotDarwin]>;
|
Requires<[IsThumb, HasV5T, IsNotDarwin]>;
|
||||||
|
@ -218,10 +245,12 @@ let isCall = 1,
|
||||||
def tBLXr : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
|
def tBLXr : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
|
||||||
"blx\t$func",
|
"blx\t$func",
|
||||||
[(ARMtcall GPR:$func)]>,
|
[(ARMtcall GPR:$func)]>,
|
||||||
Requires<[IsThumb, HasV5T, IsNotDarwin]>;
|
Requires<[IsThumb, HasV5T, IsNotDarwin]>,
|
||||||
|
T1Special<{1,1,1,?}>; // A6.2.3 & A8.6.24;
|
||||||
|
|
||||||
// ARMv4T
|
// ARMv4T
|
||||||
def tBX : TIx2<(outs), (ins tGPR:$func, variable_ops), IIC_Br,
|
def tBX : TIx2<{?,?,?,?,?}, {?,?}, ?,
|
||||||
|
(outs), (ins tGPR:$func, variable_ops), IIC_Br,
|
||||||
"mov\tlr, pc\n\tbx\t$func",
|
"mov\tlr, pc\n\tbx\t$func",
|
||||||
[(ARMcall_nolink tGPR:$func)]>,
|
[(ARMcall_nolink tGPR:$func)]>,
|
||||||
Requires<[IsThumb1Only, IsNotDarwin]>;
|
Requires<[IsThumb1Only, IsNotDarwin]>;
|
||||||
|
@ -234,13 +263,15 @@ let isCall = 1,
|
||||||
D16, D17, D18, D19, D20, D21, D22, D23,
|
D16, D17, D18, D19, D20, D21, D22, D23,
|
||||||
D24, D25, D26, D27, D28, D29, D30, D31, CPSR, FPSCR] in {
|
D24, D25, D26, D27, D28, D29, D30, D31, CPSR, FPSCR] in {
|
||||||
// Also used for Thumb2
|
// Also used for Thumb2
|
||||||
def tBLr9 : TIx2<(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
def tBLr9 : TIx2<0b11110, 0b11, 1,
|
||||||
|
(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
||||||
"bl\t${func:call}",
|
"bl\t${func:call}",
|
||||||
[(ARMtcall tglobaladdr:$func)]>,
|
[(ARMtcall tglobaladdr:$func)]>,
|
||||||
Requires<[IsThumb, IsDarwin]>;
|
Requires<[IsThumb, IsDarwin]>;
|
||||||
|
|
||||||
// ARMv5T and above, also used for Thumb2
|
// ARMv5T and above, also used for Thumb2
|
||||||
def tBLXi_r9 : TIx2<(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
def tBLXi_r9 : TIx2<0b11110, 0b11, 0,
|
||||||
|
(outs), (ins i32imm:$func, variable_ops), IIC_Br,
|
||||||
"blx\t${func:call}",
|
"blx\t${func:call}",
|
||||||
[(ARMcall tglobaladdr:$func)]>,
|
[(ARMcall tglobaladdr:$func)]>,
|
||||||
Requires<[IsThumb, HasV5T, IsDarwin]>;
|
Requires<[IsThumb, HasV5T, IsDarwin]>;
|
||||||
|
@ -249,10 +280,12 @@ let isCall = 1,
|
||||||
def tBLXr_r9 : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
|
def tBLXr_r9 : TI<(outs), (ins GPR:$func, variable_ops), IIC_Br,
|
||||||
"blx\t$func",
|
"blx\t$func",
|
||||||
[(ARMtcall GPR:$func)]>,
|
[(ARMtcall GPR:$func)]>,
|
||||||
Requires<[IsThumb, HasV5T, IsDarwin]>;
|
Requires<[IsThumb, HasV5T, IsDarwin]>,
|
||||||
|
T1Special<{1,1,1,?}>; // A6.2.3 & A8.6.24
|
||||||
|
|
||||||
// ARMv4T
|
// ARMv4T
|
||||||
def tBXr9 : TIx2<(outs), (ins tGPR:$func, variable_ops), IIC_Br,
|
def tBXr9 : TIx2<{?,?,?,?,?}, {?,?}, ?,
|
||||||
|
(outs), (ins tGPR:$func, variable_ops), IIC_Br,
|
||||||
"mov\tlr, pc\n\tbx\t$func",
|
"mov\tlr, pc\n\tbx\t$func",
|
||||||
[(ARMcall_nolink tGPR:$func)]>,
|
[(ARMcall_nolink tGPR:$func)]>,
|
||||||
Requires<[IsThumb1Only, IsDarwin]>;
|
Requires<[IsThumb1Only, IsDarwin]>;
|
||||||
|
@ -262,11 +295,12 @@ let isBranch = 1, isTerminator = 1 in {
|
||||||
let isBarrier = 1 in {
|
let isBarrier = 1 in {
|
||||||
let isPredicable = 1 in
|
let isPredicable = 1 in
|
||||||
def tB : T1I<(outs), (ins brtarget:$target), IIC_Br,
|
def tB : T1I<(outs), (ins brtarget:$target), IIC_Br,
|
||||||
"b\t$target", [(br bb:$target)]>;
|
"b\t$target", [(br bb:$target)]>,
|
||||||
|
T1Encoding<{1,1,1,0,0,?}>;
|
||||||
|
|
||||||
// Far jump
|
// Far jump
|
||||||
let Defs = [LR] in
|
let Defs = [LR] in
|
||||||
def tBfar : TIx2<(outs), (ins brtarget:$target), IIC_Br,
|
def tBfar : TIx2<0b11110, 0b11, 1, (outs), (ins brtarget:$target), IIC_Br,
|
||||||
"bl\t$target\t@ far jump",[]>;
|
"bl\t$target\t@ far jump",[]>;
|
||||||
|
|
||||||
def tBR_JTr : T1JTI<(outs),
|
def tBR_JTr : T1JTI<(outs),
|
||||||
|
@ -281,15 +315,18 @@ let isBranch = 1, isTerminator = 1 in {
|
||||||
let isBranch = 1, isTerminator = 1 in
|
let isBranch = 1, isTerminator = 1 in
|
||||||
def tBcc : T1I<(outs), (ins brtarget:$target, pred:$cc), IIC_Br,
|
def tBcc : T1I<(outs), (ins brtarget:$target, pred:$cc), IIC_Br,
|
||||||
"b$cc\t$target",
|
"b$cc\t$target",
|
||||||
[/*(ARMbrcond bb:$target, imm:$cc)*/]>;
|
[/*(ARMbrcond bb:$target, imm:$cc)*/]>,
|
||||||
|
T1Encoding<{1,1,0,1,?,?}>;
|
||||||
|
|
||||||
// Compare and branch on zero / non-zero
|
// Compare and branch on zero / non-zero
|
||||||
let isBranch = 1, isTerminator = 1 in {
|
let isBranch = 1, isTerminator = 1 in {
|
||||||
def tCBZ : T1I<(outs), (ins tGPR:$cmp, brtarget:$target), IIC_Br,
|
def tCBZ : T1I<(outs), (ins tGPR:$cmp, brtarget:$target), IIC_Br,
|
||||||
"cbz\t$cmp, $target", []>;
|
"cbz\t$cmp, $target", []>,
|
||||||
|
T1Misc<{0,0,?,1,?,?,?}>;
|
||||||
|
|
||||||
def tCBNZ : T1I<(outs), (ins tGPR:$cmp, brtarget:$target), IIC_Br,
|
def tCBNZ : T1I<(outs), (ins tGPR:$cmp, brtarget:$target), IIC_Br,
|
||||||
"cbnz\t$cmp, $target", []>;
|
"cbnz\t$cmp, $target", []>,
|
||||||
|
T1Misc<{1,0,?,1,?,?,?}>;
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
@ -299,71 +336,85 @@ let isBranch = 1, isTerminator = 1 in {
|
||||||
let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in
|
let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in
|
||||||
def tLDR : T1pI4<(outs tGPR:$dst), (ins t_addrmode_s4:$addr), IIC_iLoadr,
|
def tLDR : T1pI4<(outs tGPR:$dst), (ins t_addrmode_s4:$addr), IIC_iLoadr,
|
||||||
"ldr", "\t$dst, $addr",
|
"ldr", "\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (load t_addrmode_s4:$addr))]>;
|
[(set tGPR:$dst, (load t_addrmode_s4:$addr))]>,
|
||||||
|
T1LdSt<0b100>;
|
||||||
|
|
||||||
def tLDRB : T1pI1<(outs tGPR:$dst), (ins t_addrmode_s1:$addr), IIC_iLoadr,
|
def tLDRB : T1pI1<(outs tGPR:$dst), (ins t_addrmode_s1:$addr), IIC_iLoadr,
|
||||||
"ldrb", "\t$dst, $addr",
|
"ldrb", "\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (zextloadi8 t_addrmode_s1:$addr))]>;
|
[(set tGPR:$dst, (zextloadi8 t_addrmode_s1:$addr))]>,
|
||||||
|
T1LdSt<0b110>;
|
||||||
|
|
||||||
def tLDRH : T1pI2<(outs tGPR:$dst), (ins t_addrmode_s2:$addr), IIC_iLoadr,
|
def tLDRH : T1pI2<(outs tGPR:$dst), (ins t_addrmode_s2:$addr), IIC_iLoadr,
|
||||||
"ldrh", "\t$dst, $addr",
|
"ldrh", "\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (zextloadi16 t_addrmode_s2:$addr))]>;
|
[(set tGPR:$dst, (zextloadi16 t_addrmode_s2:$addr))]>,
|
||||||
|
T1LdSt<0b101>;
|
||||||
|
|
||||||
let AddedComplexity = 10 in
|
let AddedComplexity = 10 in
|
||||||
def tLDRSB : T1pI1<(outs tGPR:$dst), (ins t_addrmode_rr:$addr), IIC_iLoadr,
|
def tLDRSB : T1pI1<(outs tGPR:$dst), (ins t_addrmode_rr:$addr), IIC_iLoadr,
|
||||||
"ldrsb", "\t$dst, $addr",
|
"ldrsb", "\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>;
|
[(set tGPR:$dst, (sextloadi8 t_addrmode_rr:$addr))]>,
|
||||||
|
T1LdSt<0b011>;
|
||||||
|
|
||||||
let AddedComplexity = 10 in
|
let AddedComplexity = 10 in
|
||||||
def tLDRSH : T1pI2<(outs tGPR:$dst), (ins t_addrmode_rr:$addr), IIC_iLoadr,
|
def tLDRSH : T1pI2<(outs tGPR:$dst), (ins t_addrmode_rr:$addr), IIC_iLoadr,
|
||||||
"ldrsh", "\t$dst, $addr",
|
"ldrsh", "\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>;
|
[(set tGPR:$dst, (sextloadi16 t_addrmode_rr:$addr))]>,
|
||||||
|
T1LdSt<0b111>;
|
||||||
|
|
||||||
let canFoldAsLoad = 1 in
|
let canFoldAsLoad = 1 in
|
||||||
def tLDRspi : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
|
def tLDRspi : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
|
||||||
"ldr", "\t$dst, $addr",
|
"ldr", "\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (load t_addrmode_sp:$addr))]>;
|
[(set tGPR:$dst, (load t_addrmode_sp:$addr))]>,
|
||||||
|
T1LdStSP<{1,?,?}>;
|
||||||
|
|
||||||
// Special instruction for restore. It cannot clobber condition register
|
// Special instruction for restore. It cannot clobber condition register
|
||||||
// when it's expanded by eliminateCallFramePseudoInstr().
|
// when it's expanded by eliminateCallFramePseudoInstr().
|
||||||
let canFoldAsLoad = 1, mayLoad = 1 in
|
let canFoldAsLoad = 1, mayLoad = 1 in
|
||||||
def tRestore : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
|
def tRestore : T1pIs<(outs tGPR:$dst), (ins t_addrmode_sp:$addr), IIC_iLoadi,
|
||||||
"ldr", "\t$dst, $addr", []>;
|
"ldr", "\t$dst, $addr", []>,
|
||||||
|
T1LdStSP<{1,?,?}>;
|
||||||
|
|
||||||
// Load tconstpool
|
// Load tconstpool
|
||||||
// FIXME: Use ldr.n to work around a Darwin assembler bug.
|
// FIXME: Use ldr.n to work around a Darwin assembler bug.
|
||||||
let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in
|
let canFoldAsLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in
|
||||||
def tLDRpci : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
|
def tLDRpci : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
|
||||||
"ldr", ".n\t$dst, $addr",
|
"ldr", ".n\t$dst, $addr",
|
||||||
[(set tGPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>;
|
[(set tGPR:$dst, (load (ARMWrapper tconstpool:$addr)))]>,
|
||||||
|
T1Encoding<{0,1,0,0,1,?}>; // A6.2 & A8.6.59
|
||||||
|
|
||||||
// Special LDR for loads from non-pc-relative constpools.
|
// Special LDR for loads from non-pc-relative constpools.
|
||||||
let canFoldAsLoad = 1, mayLoad = 1, isReMaterializable = 1,
|
let canFoldAsLoad = 1, mayLoad = 1, isReMaterializable = 1,
|
||||||
mayHaveSideEffects = 1 in
|
mayHaveSideEffects = 1 in
|
||||||
def tLDRcp : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
|
def tLDRcp : T1pIs<(outs tGPR:$dst), (ins i32imm:$addr), IIC_iLoadi,
|
||||||
"ldr", "\t$dst, $addr", []>;
|
"ldr", "\t$dst, $addr", []>,
|
||||||
|
T1LdStSP<{1,?,?}>;
|
||||||
|
|
||||||
def tSTR : T1pI4<(outs), (ins tGPR:$src, t_addrmode_s4:$addr), IIC_iStorer,
|
def tSTR : T1pI4<(outs), (ins tGPR:$src, t_addrmode_s4:$addr), IIC_iStorer,
|
||||||
"str", "\t$src, $addr",
|
"str", "\t$src, $addr",
|
||||||
[(store tGPR:$src, t_addrmode_s4:$addr)]>;
|
[(store tGPR:$src, t_addrmode_s4:$addr)]>,
|
||||||
|
T1LdSt<0b000>;
|
||||||
|
|
||||||
def tSTRB : T1pI1<(outs), (ins tGPR:$src, t_addrmode_s1:$addr), IIC_iStorer,
|
def tSTRB : T1pI1<(outs), (ins tGPR:$src, t_addrmode_s1:$addr), IIC_iStorer,
|
||||||
"strb", "\t$src, $addr",
|
"strb", "\t$src, $addr",
|
||||||
[(truncstorei8 tGPR:$src, t_addrmode_s1:$addr)]>;
|
[(truncstorei8 tGPR:$src, t_addrmode_s1:$addr)]>,
|
||||||
|
T1LdSt<0b010>;
|
||||||
|
|
||||||
def tSTRH : T1pI2<(outs), (ins tGPR:$src, t_addrmode_s2:$addr), IIC_iStorer,
|
def tSTRH : T1pI2<(outs), (ins tGPR:$src, t_addrmode_s2:$addr), IIC_iStorer,
|
||||||
"strh", "\t$src, $addr",
|
"strh", "\t$src, $addr",
|
||||||
[(truncstorei16 tGPR:$src, t_addrmode_s2:$addr)]>;
|
[(truncstorei16 tGPR:$src, t_addrmode_s2:$addr)]>,
|
||||||
|
T1LdSt<0b001>;
|
||||||
|
|
||||||
def tSTRspi : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStorei,
|
def tSTRspi : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStorei,
|
||||||
"str", "\t$src, $addr",
|
"str", "\t$src, $addr",
|
||||||
[(store tGPR:$src, t_addrmode_sp:$addr)]>;
|
[(store tGPR:$src, t_addrmode_sp:$addr)]>,
|
||||||
|
T1LdStSP<{0,?,?}>;
|
||||||
|
|
||||||
let mayStore = 1 in {
|
let mayStore = 1 in {
|
||||||
// Special instruction for spill. It cannot clobber condition register
|
// Special instruction for spill. It cannot clobber condition register
|
||||||
// when it's expanded by eliminateCallFramePseudoInstr().
|
// when it's expanded by eliminateCallFramePseudoInstr().
|
||||||
def tSpill : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStorei,
|
def tSpill : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStorei,
|
||||||
"str", "\t$src, $addr", []>;
|
"str", "\t$src, $addr", []>,
|
||||||
|
T1LdStSP<{0,?,?}>;
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
@ -375,21 +426,25 @@ let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
|
||||||
def tLDM : T1I<(outs),
|
def tLDM : T1I<(outs),
|
||||||
(ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
|
(ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
|
||||||
IIC_iLoadm,
|
IIC_iLoadm,
|
||||||
"ldm${addr:submode}${p}\t$addr, $wb", []>;
|
"ldm${addr:submode}${p}\t$addr, $wb", []>,
|
||||||
|
T1Encoding<{1,1,0,0,1,?}>; // A6.2 & A8.6.53
|
||||||
|
|
||||||
let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
|
let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
|
||||||
def tSTM : T1I<(outs),
|
def tSTM : T1I<(outs),
|
||||||
(ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
|
(ins addrmode4:$addr, pred:$p, reglist:$wb, variable_ops),
|
||||||
IIC_iStorem,
|
IIC_iStorem,
|
||||||
"stm${addr:submode}${p}\t$addr, $wb", []>;
|
"stm${addr:submode}${p}\t$addr, $wb", []>,
|
||||||
|
T1Encoding<{1,1,0,0,0,?}>; // A6.2 & A8.6.189
|
||||||
|
|
||||||
let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
|
let mayLoad = 1, Uses = [SP], Defs = [SP], hasExtraDefRegAllocReq = 1 in
|
||||||
def tPOP : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
def tPOP : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
||||||
"pop${p}\t$wb", []>;
|
"pop${p}\t$wb", []>,
|
||||||
|
T1Misc<{1,1,0,?,?,?,?}>;
|
||||||
|
|
||||||
let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
|
let mayStore = 1, Uses = [SP], Defs = [SP], hasExtraSrcRegAllocReq = 1 in
|
||||||
def tPUSH : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
def tPUSH : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
||||||
"push${p}\t$wb", []>;
|
"push${p}\t$wb", []>,
|
||||||
|
T1Misc<{0,1,0,?,?,?,?}>;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Arithmetic Instructions.
|
// Arithmetic Instructions.
|
||||||
|
@ -399,82 +454,98 @@ def tPUSH : T1I<(outs), (ins pred:$p, reglist:$wb, variable_ops), IIC_Br,
|
||||||
let isCommutable = 1, Uses = [CPSR] in
|
let isCommutable = 1, Uses = [CPSR] in
|
||||||
def tADC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tADC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"adc", "\t$dst, $rhs",
|
"adc", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (adde tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (adde tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0101>;
|
||||||
|
|
||||||
// Add immediate
|
// Add immediate
|
||||||
def tADDi3 : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
def tADDi3 : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
||||||
"add", "\t$dst, $lhs, $rhs",
|
"add", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (add tGPR:$lhs, imm0_7:$rhs))]>;
|
[(set tGPR:$dst, (add tGPR:$lhs, imm0_7:$rhs))]>,
|
||||||
|
T1General<0b01110>;
|
||||||
|
|
||||||
def tADDi8 : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
def tADDi8 : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
||||||
"add", "\t$dst, $rhs",
|
"add", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (add tGPR:$lhs, imm8_255:$rhs))]>;
|
[(set tGPR:$dst, (add tGPR:$lhs, imm8_255:$rhs))]>,
|
||||||
|
T1General<{1,1,0,?,?}>;
|
||||||
|
|
||||||
// Add register
|
// Add register
|
||||||
let isCommutable = 1 in
|
let isCommutable = 1 in
|
||||||
def tADDrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tADDrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"add", "\t$dst, $lhs, $rhs",
|
"add", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (add tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (add tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1General<0b01100>;
|
||||||
|
|
||||||
let neverHasSideEffects = 1 in
|
let neverHasSideEffects = 1 in
|
||||||
def tADDhirr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
|
def tADDhirr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iALUr,
|
||||||
"add", "\t$dst, $rhs", []>;
|
"add", "\t$dst, $rhs", []>,
|
||||||
|
T1Special<{0,0,?,?}>;
|
||||||
|
|
||||||
// And register
|
// And register
|
||||||
let isCommutable = 1 in
|
let isCommutable = 1 in
|
||||||
def tAND : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tAND : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"and", "\t$dst, $rhs",
|
"and", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (and tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (and tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0000>;
|
||||||
|
|
||||||
// ASR immediate
|
// ASR immediate
|
||||||
def tASRri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
|
def tASRri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
|
||||||
"asr", "\t$dst, $lhs, $rhs",
|
"asr", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (sra tGPR:$lhs, (i32 imm:$rhs)))]>;
|
[(set tGPR:$dst, (sra tGPR:$lhs, (i32 imm:$rhs)))]>,
|
||||||
|
T1General<{0,1,0,?,?}>;
|
||||||
|
|
||||||
// ASR register
|
// ASR register
|
||||||
def tASRrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
def tASRrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
||||||
"asr", "\t$dst, $rhs",
|
"asr", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (sra tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (sra tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0100>;
|
||||||
|
|
||||||
// BIC register
|
// BIC register
|
||||||
def tBIC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tBIC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"bic", "\t$dst, $rhs",
|
"bic", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (and tGPR:$lhs, (not tGPR:$rhs)))]>;
|
[(set tGPR:$dst, (and tGPR:$lhs, (not tGPR:$rhs)))]>,
|
||||||
|
T1DataProcessing<0b1110>;
|
||||||
|
|
||||||
// CMN register
|
// CMN register
|
||||||
let Defs = [CPSR] in {
|
let Defs = [CPSR] in {
|
||||||
def tCMN : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
def tCMN : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
||||||
"cmn", "\t$lhs, $rhs",
|
"cmn", "\t$lhs, $rhs",
|
||||||
[(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>;
|
[(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b1011>;
|
||||||
def tCMNZ : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
def tCMNZ : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
||||||
"cmn", "\t$lhs, $rhs",
|
"cmn", "\t$lhs, $rhs",
|
||||||
[(ARMcmpZ tGPR:$lhs, (ineg tGPR:$rhs))]>;
|
[(ARMcmpZ tGPR:$lhs, (ineg tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b1011>;
|
||||||
}
|
}
|
||||||
|
|
||||||
// CMP immediate
|
// CMP immediate
|
||||||
let Defs = [CPSR] in {
|
let Defs = [CPSR] in {
|
||||||
def tCMPi8 : T1pI<(outs), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMPi,
|
def tCMPi8 : T1pI<(outs), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMPi,
|
||||||
"cmp", "\t$lhs, $rhs",
|
"cmp", "\t$lhs, $rhs",
|
||||||
[(ARMcmp tGPR:$lhs, imm0_255:$rhs)]>;
|
[(ARMcmp tGPR:$lhs, imm0_255:$rhs)]>,
|
||||||
|
T1General<{1,0,1,?,?}>;
|
||||||
def tCMPzi8 : T1pI<(outs), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMPi,
|
def tCMPzi8 : T1pI<(outs), (ins tGPR:$lhs, i32imm:$rhs), IIC_iCMPi,
|
||||||
"cmp", "\t$lhs, $rhs",
|
"cmp", "\t$lhs, $rhs",
|
||||||
[(ARMcmpZ tGPR:$lhs, imm0_255:$rhs)]>;
|
[(ARMcmpZ tGPR:$lhs, imm0_255:$rhs)]>,
|
||||||
|
T1General<{1,0,1,?,?}>;
|
||||||
}
|
}
|
||||||
|
|
||||||
// CMP register
|
// CMP register
|
||||||
let Defs = [CPSR] in {
|
let Defs = [CPSR] in {
|
||||||
def tCMPr : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
def tCMPr : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
||||||
"cmp", "\t$lhs, $rhs",
|
"cmp", "\t$lhs, $rhs",
|
||||||
[(ARMcmp tGPR:$lhs, tGPR:$rhs)]>;
|
[(ARMcmp tGPR:$lhs, tGPR:$rhs)]>,
|
||||||
|
T1DataProcessing<0b1010>;
|
||||||
def tCMPzr : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
def tCMPzr : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
||||||
"cmp", "\t$lhs, $rhs",
|
"cmp", "\t$lhs, $rhs",
|
||||||
[(ARMcmpZ tGPR:$lhs, tGPR:$rhs)]>;
|
[(ARMcmpZ tGPR:$lhs, tGPR:$rhs)]>,
|
||||||
|
T1DataProcessing<0b1010>;
|
||||||
|
|
||||||
def tCMPhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
|
def tCMPhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
|
||||||
"cmp", "\t$lhs, $rhs", []>;
|
"cmp", "\t$lhs, $rhs", []>,
|
||||||
|
T1Special<{0,1,?,?}>;
|
||||||
def tCMPzhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
|
def tCMPzhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
|
||||||
"cmp", "\t$lhs, $rhs", []>;
|
"cmp", "\t$lhs, $rhs", []>,
|
||||||
|
T1Special<{0,1,?,?}>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -482,32 +553,38 @@ def tCMPzhir : T1pI<(outs), (ins GPR:$lhs, GPR:$rhs), IIC_iCMPr,
|
||||||
let isCommutable = 1 in
|
let isCommutable = 1 in
|
||||||
def tEOR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tEOR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"eor", "\t$dst, $rhs",
|
"eor", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (xor tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (xor tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0001>;
|
||||||
|
|
||||||
// LSL immediate
|
// LSL immediate
|
||||||
def tLSLri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
|
def tLSLri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
|
||||||
"lsl", "\t$dst, $lhs, $rhs",
|
"lsl", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (shl tGPR:$lhs, (i32 imm:$rhs)))]>;
|
[(set tGPR:$dst, (shl tGPR:$lhs, (i32 imm:$rhs)))]>,
|
||||||
|
T1General<{0,0,0,?,?}>;
|
||||||
|
|
||||||
// LSL register
|
// LSL register
|
||||||
def tLSLrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
def tLSLrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
||||||
"lsl", "\t$dst, $rhs",
|
"lsl", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (shl tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (shl tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0010>;
|
||||||
|
|
||||||
// LSR immediate
|
// LSR immediate
|
||||||
def tLSRri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
|
def tLSRri : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iMOVsi,
|
||||||
"lsr", "\t$dst, $lhs, $rhs",
|
"lsr", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (srl tGPR:$lhs, (i32 imm:$rhs)))]>;
|
[(set tGPR:$dst, (srl tGPR:$lhs, (i32 imm:$rhs)))]>,
|
||||||
|
T1General<{0,0,1,?,?}>;
|
||||||
|
|
||||||
// LSR register
|
// LSR register
|
||||||
def tLSRrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
def tLSRrr : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
||||||
"lsr", "\t$dst, $rhs",
|
"lsr", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (srl tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (srl tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0011>;
|
||||||
|
|
||||||
// move register
|
// move register
|
||||||
def tMOVi8 : T1sI<(outs tGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
|
def tMOVi8 : T1sI<(outs tGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
|
||||||
"mov", "\t$dst, $src",
|
"mov", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, imm0_255:$src)]>;
|
[(set tGPR:$dst, imm0_255:$src)]>,
|
||||||
|
T1General<{1,0,0,?,?}>;
|
||||||
|
|
||||||
// TODO: A7-73: MOV(2) - mov setting flag.
|
// TODO: A7-73: MOV(2) - mov setting flag.
|
||||||
|
|
||||||
|
@ -515,42 +592,52 @@ def tMOVi8 : T1sI<(outs tGPR:$dst), (ins i32imm:$src), IIC_iMOVi,
|
||||||
let neverHasSideEffects = 1 in {
|
let neverHasSideEffects = 1 in {
|
||||||
// FIXME: Make this predicable.
|
// FIXME: Make this predicable.
|
||||||
def tMOVr : T1I<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
def tMOVr : T1I<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
||||||
"mov\t$dst, $src", []>;
|
"mov\t$dst, $src", []>,
|
||||||
|
T1Special<0b1000>;
|
||||||
let Defs = [CPSR] in
|
let Defs = [CPSR] in
|
||||||
def tMOVSr : T1I<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
def tMOVSr : T1I<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
||||||
"movs\t$dst, $src", []>;
|
"movs\t$dst, $src", []>, Encoding {
|
||||||
|
let Inst{15-6} = 0b0000000000;
|
||||||
|
}
|
||||||
|
|
||||||
// FIXME: Make these predicable.
|
// FIXME: Make these predicable.
|
||||||
def tMOVgpr2tgpr : T1I<(outs tGPR:$dst), (ins GPR:$src), IIC_iMOVr,
|
def tMOVgpr2tgpr : T1I<(outs tGPR:$dst), (ins GPR:$src), IIC_iMOVr,
|
||||||
"mov\t$dst, $src", []>;
|
"mov\t$dst, $src", []>,
|
||||||
|
T1Special<{1,0,0,1}>;
|
||||||
def tMOVtgpr2gpr : T1I<(outs GPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
def tMOVtgpr2gpr : T1I<(outs GPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
||||||
"mov\t$dst, $src", []>;
|
"mov\t$dst, $src", []>,
|
||||||
|
T1Special<{1,0,1,0}>;
|
||||||
def tMOVgpr2gpr : T1I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
|
def tMOVgpr2gpr : T1I<(outs GPR:$dst), (ins GPR:$src), IIC_iMOVr,
|
||||||
"mov\t$dst, $src", []>;
|
"mov\t$dst, $src", []>,
|
||||||
|
T1Special<{1,0,1,1}>;
|
||||||
} // neverHasSideEffects
|
} // neverHasSideEffects
|
||||||
|
|
||||||
// multiply register
|
// multiply register
|
||||||
let isCommutable = 1 in
|
let isCommutable = 1 in
|
||||||
def tMUL : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMUL32,
|
def tMUL : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMUL32,
|
||||||
"mul", "\t$dst, $rhs",
|
"mul", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (mul tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (mul tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b1101>;
|
||||||
|
|
||||||
// move inverse register
|
// move inverse register
|
||||||
def tMVN : T1sI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
def tMVN : T1sI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iMOVr,
|
||||||
"mvn", "\t$dst, $src",
|
"mvn", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, (not tGPR:$src))]>;
|
[(set tGPR:$dst, (not tGPR:$src))]>,
|
||||||
|
T1DataProcessing<0b1111>;
|
||||||
|
|
||||||
// bitwise or register
|
// bitwise or register
|
||||||
let isCommutable = 1 in
|
let isCommutable = 1 in
|
||||||
def tORR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tORR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"orr", "\t$dst, $rhs",
|
"orr", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (or tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (or tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b1100>;
|
||||||
|
|
||||||
// swaps
|
// swaps
|
||||||
def tREV : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tREV : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"rev", "\t$dst, $src",
|
"rev", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, (bswap tGPR:$src))]>,
|
[(set tGPR:$dst, (bswap tGPR:$src))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{1,0,1,0,0,0,?}>;
|
||||||
|
|
||||||
def tREV16 : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tREV16 : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"rev16", "\t$dst, $src",
|
"rev16", "\t$dst, $src",
|
||||||
|
@ -559,7 +646,8 @@ def tREV16 : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
(or (and (shl tGPR:$src, (i32 8)), 0xFF00),
|
(or (and (shl tGPR:$src, (i32 8)), 0xFF00),
|
||||||
(or (and (srl tGPR:$src, (i32 8)), 0xFF0000),
|
(or (and (srl tGPR:$src, (i32 8)), 0xFF0000),
|
||||||
(and (shl tGPR:$src, (i32 8)), 0xFF000000)))))]>,
|
(and (shl tGPR:$src, (i32 8)), 0xFF000000)))))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{1,0,1,0,0,1,?}>;
|
||||||
|
|
||||||
def tREVSH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tREVSH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"revsh", "\t$dst, $src",
|
"revsh", "\t$dst, $src",
|
||||||
|
@ -567,37 +655,44 @@ def tREVSH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
(sext_inreg
|
(sext_inreg
|
||||||
(or (srl (and tGPR:$src, 0xFF00), (i32 8)),
|
(or (srl (and tGPR:$src, 0xFF00), (i32 8)),
|
||||||
(shl tGPR:$src, (i32 8))), i16))]>,
|
(shl tGPR:$src, (i32 8))), i16))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{1,0,1,0,1,1,?}>;
|
||||||
|
|
||||||
// rotate right register
|
// rotate right register
|
||||||
def tROR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
def tROR : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iMOVsr,
|
||||||
"ror", "\t$dst, $rhs",
|
"ror", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (rotr tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (rotr tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0111>;
|
||||||
|
|
||||||
// negate register
|
// negate register
|
||||||
def tRSB : T1sI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iALUi,
|
def tRSB : T1sI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iALUi,
|
||||||
"rsb", "\t$dst, $src, #0",
|
"rsb", "\t$dst, $src, #0",
|
||||||
[(set tGPR:$dst, (ineg tGPR:$src))]>;
|
[(set tGPR:$dst, (ineg tGPR:$src))]>,
|
||||||
|
T1DataProcessing<0b1001>;
|
||||||
|
|
||||||
// Subtract with carry register
|
// Subtract with carry register
|
||||||
let Uses = [CPSR] in
|
let Uses = [CPSR] in
|
||||||
def tSBC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tSBC : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"sbc", "\t$dst, $rhs",
|
"sbc", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (sube tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (sube tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1DataProcessing<0b0110>;
|
||||||
|
|
||||||
// Subtract immediate
|
// Subtract immediate
|
||||||
def tSUBi3 : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
def tSUBi3 : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
||||||
"sub", "\t$dst, $lhs, $rhs",
|
"sub", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (add tGPR:$lhs, imm0_7_neg:$rhs))]>;
|
[(set tGPR:$dst, (add tGPR:$lhs, imm0_7_neg:$rhs))]>,
|
||||||
|
T1General<0b01111>;
|
||||||
|
|
||||||
def tSUBi8 : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
def tSUBi8 : T1sIt<(outs tGPR:$dst), (ins tGPR:$lhs, i32imm:$rhs), IIC_iALUi,
|
||||||
"sub", "\t$dst, $rhs",
|
"sub", "\t$dst, $rhs",
|
||||||
[(set tGPR:$dst, (add tGPR:$lhs, imm8_255_neg:$rhs))]>;
|
[(set tGPR:$dst, (add tGPR:$lhs, imm8_255_neg:$rhs))]>,
|
||||||
|
T1General<{1,1,1,?,?}>;
|
||||||
|
|
||||||
// subtract register
|
// subtract register
|
||||||
def tSUBrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
def tSUBrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
"sub", "\t$dst, $lhs, $rhs",
|
"sub", "\t$dst, $lhs, $rhs",
|
||||||
[(set tGPR:$dst, (sub tGPR:$lhs, tGPR:$rhs))]>;
|
[(set tGPR:$dst, (sub tGPR:$lhs, tGPR:$rhs))]>,
|
||||||
|
T1General<0b01101>;
|
||||||
|
|
||||||
// TODO: A7-96: STMIA - store multiple.
|
// TODO: A7-96: STMIA - store multiple.
|
||||||
|
|
||||||
|
@ -605,31 +700,36 @@ def tSUBrr : T1sI<(outs tGPR:$dst), (ins tGPR:$lhs, tGPR:$rhs), IIC_iALUr,
|
||||||
def tSXTB : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tSXTB : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"sxtb", "\t$dst, $src",
|
"sxtb", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, (sext_inreg tGPR:$src, i8))]>,
|
[(set tGPR:$dst, (sext_inreg tGPR:$src, i8))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{0,0,1,0,0,1,?}>;
|
||||||
|
|
||||||
// sign-extend short
|
// sign-extend short
|
||||||
def tSXTH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tSXTH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"sxth", "\t$dst, $src",
|
"sxth", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, (sext_inreg tGPR:$src, i16))]>,
|
[(set tGPR:$dst, (sext_inreg tGPR:$src, i16))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{0,0,1,0,0,0,?}>;
|
||||||
|
|
||||||
// test
|
// test
|
||||||
let isCommutable = 1, Defs = [CPSR] in
|
let isCommutable = 1, Defs = [CPSR] in
|
||||||
def tTST : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
def tTST : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr,
|
||||||
"tst", "\t$lhs, $rhs",
|
"tst", "\t$lhs, $rhs",
|
||||||
[(ARMcmpZ (and tGPR:$lhs, tGPR:$rhs), 0)]>;
|
[(ARMcmpZ (and tGPR:$lhs, tGPR:$rhs), 0)]>,
|
||||||
|
T1DataProcessing<0b1000>;
|
||||||
|
|
||||||
// zero-extend byte
|
// zero-extend byte
|
||||||
def tUXTB : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tUXTB : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"uxtb", "\t$dst, $src",
|
"uxtb", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, (and tGPR:$src, 0xFF))]>,
|
[(set tGPR:$dst, (and tGPR:$src, 0xFF))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{0,0,1,0,1,1,?}>;
|
||||||
|
|
||||||
// zero-extend short
|
// zero-extend short
|
||||||
def tUXTH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
def tUXTH : T1pI<(outs tGPR:$dst), (ins tGPR:$src), IIC_iUNAr,
|
||||||
"uxth", "\t$dst, $src",
|
"uxth", "\t$dst, $src",
|
||||||
[(set tGPR:$dst, (and tGPR:$src, 0xFFFF))]>,
|
[(set tGPR:$dst, (and tGPR:$src, 0xFFFF))]>,
|
||||||
Requires<[IsThumb1Only, HasV6]>;
|
Requires<[IsThumb1Only, HasV6]>,
|
||||||
|
T1Misc<{0,0,1,0,1,0,?}>;
|
||||||
|
|
||||||
|
|
||||||
// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation.
|
// Conditional move tMOVCCr - Used to implement the Thumb SELECT_CC DAG operation.
|
||||||
|
@ -643,19 +743,23 @@ let usesCustomInserter = 1 in // Expanded after instruction selection.
|
||||||
|
|
||||||
// 16-bit movcc in IT blocks for Thumb2.
|
// 16-bit movcc in IT blocks for Thumb2.
|
||||||
def tMOVCCr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iCMOVr,
|
def tMOVCCr : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs), IIC_iCMOVr,
|
||||||
"mov", "\t$dst, $rhs", []>;
|
"mov", "\t$dst, $rhs", []>,
|
||||||
|
T1Special<{1,0,?,?}>;
|
||||||
|
|
||||||
def tMOVCCi : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iCMOVi,
|
def tMOVCCi : T1pIt<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs), IIC_iCMOVi,
|
||||||
"mov", "\t$dst, $rhs", []>;
|
"mov", "\t$dst, $rhs", []>,
|
||||||
|
T1General<{1,0,0,?,?}>;
|
||||||
|
|
||||||
// tLEApcrel - Load a pc-relative address into a register without offending the
|
// tLEApcrel - Load a pc-relative address into a register without offending the
|
||||||
// assembler.
|
// assembler.
|
||||||
def tLEApcrel : T1I<(outs tGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
|
def tLEApcrel : T1I<(outs tGPR:$dst), (ins i32imm:$label, pred:$p), IIC_iALUi,
|
||||||
"adr$p\t$dst, #$label", []>;
|
"adr$p\t$dst, #$label", []>,
|
||||||
|
T1Encoding<{1,0,1,0,0,?}>; // A6.2 & A8.6.10
|
||||||
|
|
||||||
def tLEApcrelJT : T1I<(outs tGPR:$dst),
|
def tLEApcrelJT : T1I<(outs tGPR:$dst),
|
||||||
(ins i32imm:$label, nohash_imm:$id, pred:$p),
|
(ins i32imm:$label, nohash_imm:$id, pred:$p),
|
||||||
IIC_iALUi, "adr$p\t$dst, #${label}_${id}", []>;
|
IIC_iALUi, "adr$p\t$dst, #${label}_${id}", []>,
|
||||||
|
T1Encoding<{1,0,1,0,0,?}>; // A6.2 & A8.6.10
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// TLS Instructions
|
// TLS Instructions
|
||||||
|
@ -664,7 +768,7 @@ def tLEApcrelJT : T1I<(outs tGPR:$dst),
|
||||||
// __aeabi_read_tp preserves the registers r1-r3.
|
// __aeabi_read_tp preserves the registers r1-r3.
|
||||||
let isCall = 1,
|
let isCall = 1,
|
||||||
Defs = [R0, LR] in {
|
Defs = [R0, LR] in {
|
||||||
def tTPsoft : TIx2<(outs), (ins), IIC_Br,
|
def tTPsoft : TIx2<0b11110, 0b11, 1, (outs), (ins), IIC_Br,
|
||||||
"bl\t__aeabi_read_tp",
|
"bl\t__aeabi_read_tp",
|
||||||
[(set R0, ARMthread_pointer)]>;
|
[(set R0, ARMthread_pointer)]>;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue