2009-05-29 23:41:08 +00:00
|
|
|
//===- ARMInstrThumb2.td - Thumb2 support for ARM -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the Thumb2 instruction set.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-17 18:13:58 +00:00
|
|
|
|
|
|
|
// Shifted operands. No register controlled shifts for Thumb2.
|
|
|
|
// Note: We do not support rrx shifted operands yet.
|
|
|
|
def t2_so_reg : Operand<i32>, // reg imm
|
2009-06-23 18:14:38 +00:00
|
|
|
ComplexPattern<i32, 2, "SelectThumb2ShifterOperandReg",
|
2009-06-17 18:13:58 +00:00
|
|
|
[shl,srl,sra,rotr]> {
|
|
|
|
let PrintMethod = "printSOOperand";
|
|
|
|
let MIOperandInfo = (ops GPR, i32imm);
|
|
|
|
}
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
// t2_so_imm_XFORM - Return a t2_so_imm value packed into the format
|
|
|
|
// described for t2_so_imm def below.
|
|
|
|
def t2_so_imm_XFORM : SDNodeXForm<imm, [{
|
|
|
|
return CurDAG->getTargetConstant(
|
|
|
|
ARM_AM::getT2SOImmVal(N->getZExtValue()), MVT::i32);
|
2009-06-17 18:13:58 +00:00
|
|
|
}]>;
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
// t2_so_imm_not_XFORM - Return the complement of a t2_so_imm value
|
|
|
|
def t2_so_imm_not_XFORM : SDNodeXForm<imm, [{
|
|
|
|
return CurDAG->getTargetConstant(
|
|
|
|
ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())), MVT::i32);
|
2009-06-17 18:13:58 +00:00
|
|
|
}]>;
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
// t2_so_imm_neg_XFORM - Return the negation of a t2_so_imm value
|
|
|
|
def t2_so_imm_neg_XFORM : SDNodeXForm<imm, [{
|
|
|
|
return CurDAG->getTargetConstant(
|
|
|
|
ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())), MVT::i32);
|
|
|
|
}]>;
|
|
|
|
|
|
|
|
// t2_so_imm - Match a 32-bit immediate operand, which is an
|
|
|
|
// 8-bit immediate rotated by an arbitrary number of bits, or an 8-bit
|
|
|
|
// immediate splatted into multiple bytes of the word. t2_so_imm values are
|
|
|
|
// represented in the imm field in the same 12-bit form that they are encoded
|
|
|
|
// into t2_so_imm instructions: the 8-bit immediate is the least significant bits
|
|
|
|
// [bits 0-7], the 4-bit shift/splat amount is the next 4 bits [bits 8-11].
|
|
|
|
def t2_so_imm : Operand<i32>,
|
|
|
|
PatLeaf<(imm), [{
|
|
|
|
return ARM_AM::getT2SOImmVal((uint32_t)N->getZExtValue()) != -1;
|
|
|
|
}], t2_so_imm_XFORM> {
|
|
|
|
let PrintMethod = "printT2SOImmOperand";
|
|
|
|
}
|
2009-06-17 18:13:58 +00:00
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
// t2_so_imm_not - Match an immediate that is a complement
|
|
|
|
// of a t2_so_imm.
|
|
|
|
def t2_so_imm_not : Operand<i32>,
|
|
|
|
PatLeaf<(imm), [{
|
|
|
|
return ARM_AM::getT2SOImmVal(~((uint32_t)N->getZExtValue())) != -1;
|
|
|
|
}], t2_so_imm_not_XFORM> {
|
|
|
|
let PrintMethod = "printT2SOImmOperand";
|
|
|
|
}
|
|
|
|
|
|
|
|
// t2_so_imm_neg - Match an immediate that is a negation of a t2_so_imm.
|
|
|
|
def t2_so_imm_neg : Operand<i32>,
|
|
|
|
PatLeaf<(imm), [{
|
|
|
|
return ARM_AM::getT2SOImmVal(-((int)N->getZExtValue())) != -1;
|
|
|
|
}], t2_so_imm_neg_XFORM> {
|
|
|
|
let PrintMethod = "printT2SOImmOperand";
|
|
|
|
}
|
2009-06-17 18:13:58 +00:00
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
/// imm1_31 predicate - True if the 32-bit immediate is in the range [1,31].
|
|
|
|
def imm1_31 : PatLeaf<(i32 imm), [{
|
|
|
|
return (int32_t)N->getZExtValue() >= 1 && (int32_t)N->getZExtValue() < 32;
|
|
|
|
}]>;
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
/// imm0_4095 predicate - True if the 32-bit immediate is in the range [0.4095].
|
|
|
|
def imm0_4095 : PatLeaf<(i32 imm), [{
|
|
|
|
return (uint32_t)N->getZExtValue() < 4096;
|
|
|
|
}]>;
|
2009-06-17 18:13:58 +00:00
|
|
|
|
|
|
|
def imm0_4095_neg : PatLeaf<(i32 imm), [{
|
2009-06-23 17:48:47 +00:00
|
|
|
return (uint32_t)(-N->getZExtValue()) < 4096;
|
2009-06-17 18:13:58 +00:00
|
|
|
}], imm_neg_XFORM>;
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
/// imm0_65535 predicate - True if the 32-bit immediate is in the range
|
|
|
|
/// [0.65535].
|
|
|
|
def imm0_65535 : PatLeaf<(i32 imm), [{
|
|
|
|
return (uint32_t)N->getZExtValue() < 65536;
|
2009-06-17 18:13:58 +00:00
|
|
|
}]>;
|
|
|
|
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
/// bf_inv_mask_imm predicate - An AND mask to clear an arbitrary width bitfield
|
|
|
|
/// e.g., 0xf000ffff
|
|
|
|
def bf_inv_mask_imm : Operand<i32>,
|
|
|
|
PatLeaf<(imm), [{
|
|
|
|
uint32_t v = (uint32_t)N->getZExtValue();
|
|
|
|
if (v == 0xffffffff)
|
|
|
|
return 0;
|
|
|
|
// naive checker. should do better, but simple is best for now since it's
|
|
|
|
// more likely to be correct.
|
|
|
|
while (v & 1) v >>= 1; // shift off the leading 1's
|
|
|
|
if (v)
|
|
|
|
{
|
|
|
|
while (!(v & 1)) v >>=1; // shift off the mask
|
|
|
|
while (v & 1) v >>= 1; // shift off the trailing 1's
|
|
|
|
}
|
|
|
|
// if this is a mask for clearing a bitfield, what's left should be zero.
|
|
|
|
return (v == 0);
|
|
|
|
}] > {
|
|
|
|
let PrintMethod = "printBitfieldInvMaskImmOperand";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Split a 32-bit immediate into two 16 bit parts.
|
|
|
|
def t2_lo16 : SDNodeXForm<imm, [{
|
|
|
|
return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() & 0xffff,
|
|
|
|
MVT::i32);
|
|
|
|
}]>;
|
|
|
|
|
|
|
|
def t2_hi16 : SDNodeXForm<imm, [{
|
|
|
|
return CurDAG->getTargetConstant((uint32_t)N->getZExtValue() >> 16, MVT::i32);
|
|
|
|
}]>;
|
|
|
|
|
|
|
|
def t2_lo16AllZero : PatLeaf<(i32 imm), [{
|
|
|
|
// Returns true if all low 16-bits are 0.
|
|
|
|
return (((uint32_t)N->getZExtValue()) & 0xFFFFUL) == 0;
|
|
|
|
}], t2_hi16>;
|
|
|
|
|
2009-06-17 18:13:58 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-23 17:48:47 +00:00
|
|
|
// Thumb2 to cover the functionality of the ARM instruction set.
|
2009-06-17 18:13:58 +00:00
|
|
|
//
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
/// T2I_un_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
|
2009-06-25 02:08:06 +00:00
|
|
|
/// unary operation that produces a value. These are predicable and can be
|
|
|
|
/// changed to modify CPSR.
|
2009-06-23 19:39:13 +00:00
|
|
|
multiclass T2I_un_irs<string opc, PatFrag opnode, bit Cheap = 0, bit ReMat = 0>{
|
|
|
|
// shifted imm
|
2009-06-25 02:08:06 +00:00
|
|
|
def i : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src),
|
|
|
|
opc, " $dst, $src",
|
2009-06-23 19:39:13 +00:00
|
|
|
[(set GPR:$dst, (opnode t2_so_imm:$src))]> {
|
|
|
|
let isAsCheapAsAMove = Cheap;
|
|
|
|
let isReMaterializable = ReMat;
|
|
|
|
}
|
|
|
|
// register
|
|
|
|
def r : T2I<(outs GPR:$dst), (ins GPR:$src),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $dst, $src",
|
2009-06-23 19:39:13 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$src))]>;
|
|
|
|
// shifted register
|
|
|
|
def s : T2I<(outs GPR:$dst), (ins t2_so_reg:$src),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $dst, $src",
|
|
|
|
[(set GPR:$dst, (opnode t2_so_reg:$src))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// T2I_bin_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
|
2009-06-25 02:08:06 +00:00
|
|
|
// binary operation that produces a value. These are predicable and can be
|
|
|
|
/// changed to modify CPSR.
|
2009-06-26 00:19:44 +00:00
|
|
|
multiclass T2I_bin_irs<string opc, PatFrag opnode, bit Commutable = 0> {
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted imm
|
2009-06-25 02:08:06 +00:00
|
|
|
def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
// register
|
2009-06-25 02:08:06 +00:00
|
|
|
def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
2009-06-26 00:19:44 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
|
|
|
|
let isCommutable = Commutable;
|
|
|
|
}
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted register
|
2009-06-25 02:08:06 +00:00
|
|
|
def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
|
2009-06-23 17:48:47 +00:00
|
|
|
}
|
|
|
|
|
2009-06-25 20:59:23 +00:00
|
|
|
/// T2I_rbin_is - Same as T2I_bin_irs except the order of operands are
|
|
|
|
/// reversed. It doesn't define the 'rr' form since it's handled by its
|
|
|
|
/// T2I_bin_irs counterpart.
|
|
|
|
multiclass T2I_rbin_is<string opc, PatFrag opnode> {
|
2009-06-17 18:13:58 +00:00
|
|
|
// shifted imm
|
2009-06-23 17:48:47 +00:00
|
|
|
def ri : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $dst, $rhs, $lhs",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
|
2009-06-17 18:13:58 +00:00
|
|
|
// shifted register
|
2009-06-23 17:48:47 +00:00
|
|
|
def rs : T2I<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $dst, $rhs, $lhs",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
|
2009-06-17 18:13:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
/// T2I_bin_s_irs - Similar to T2I_bin_irs except it sets the 's' bit so the
|
2009-06-17 18:13:58 +00:00
|
|
|
/// instruction modifies the CPSR register.
|
|
|
|
let Defs = [CPSR] in {
|
2009-06-26 00:19:44 +00:00
|
|
|
multiclass T2I_bin_s_irs<string opc, PatFrag opnode, bit Commutable = 0> {
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted imm
|
|
|
|
def ri : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
!strconcat(opc, "s"), " $dst, $lhs, $rhs",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
// register
|
|
|
|
def rr : T2I<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
!strconcat(opc, "s"), " $dst, $lhs, $rhs",
|
2009-06-26 00:19:44 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
|
|
|
|
let isCommutable = Commutable;
|
|
|
|
}
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted register
|
|
|
|
def rs : T2I<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
!strconcat(opc, "s"), " $dst, $lhs, $rhs",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
/// T2I_bin_ii12rs - Defines a set of (op reg, {so_imm|imm0_4095|r|so_reg})
|
|
|
|
/// patterns for a binary operation that produces a value.
|
2009-06-26 00:19:44 +00:00
|
|
|
multiclass T2I_bin_ii12rs<string opc, PatFrag opnode, bit Commutable = 0> {
|
2009-06-17 18:13:58 +00:00
|
|
|
// shifted imm
|
2009-06-25 02:08:06 +00:00
|
|
|
def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>;
|
2009-06-23 17:48:47 +00:00
|
|
|
// 12-bit imm
|
2009-06-25 02:08:06 +00:00
|
|
|
def ri12 : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs),
|
|
|
|
!strconcat(opc, "w"), " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, imm0_4095:$rhs))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
// register
|
2009-06-25 02:08:06 +00:00
|
|
|
def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
2009-06-26 00:19:44 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]> {
|
|
|
|
let isCommutable = Commutable;
|
|
|
|
}
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted register
|
2009-06-25 02:08:06 +00:00
|
|
|
def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>;
|
2009-06-23 17:48:47 +00:00
|
|
|
}
|
2009-06-17 18:13:58 +00:00
|
|
|
|
2009-06-25 23:34:10 +00:00
|
|
|
/// T2I_adde_sube_irs - Defines a set of (op reg, {so_imm|r|so_reg}) patterns for a
|
2009-06-25 20:59:23 +00:00
|
|
|
/// binary operation that produces a value and use and define the carry bit.
|
|
|
|
/// It's not predicable.
|
2009-06-25 23:34:10 +00:00
|
|
|
let Uses = [CPSR] in {
|
2009-06-26 00:19:44 +00:00
|
|
|
multiclass T2I_adde_sube_irs<string opc, PatFrag opnode, bit Commutable = 0> {
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted imm
|
2009-06-25 23:34:10 +00:00
|
|
|
def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs),
|
2009-06-26 20:45:56 +00:00
|
|
|
opc, " $dst, $lhs, $rhs",
|
2009-06-25 23:34:10 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUnused]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
// register
|
2009-06-25 23:34:10 +00:00
|
|
|
def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
|
2009-06-26 20:45:56 +00:00
|
|
|
opc, " $dst, $lhs, $rhs",
|
2009-06-25 23:34:10 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
|
2009-06-26 00:19:44 +00:00
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUnused]> {
|
|
|
|
let isCommutable = Commutable;
|
|
|
|
}
|
2009-06-17 18:13:58 +00:00
|
|
|
// shifted register
|
2009-06-25 23:34:10 +00:00
|
|
|
def rs : T2sI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs),
|
2009-06-26 20:45:56 +00:00
|
|
|
opc, " $dst, $lhs, $rhs",
|
2009-06-25 23:34:10 +00:00
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUnused]>;
|
|
|
|
// Carry setting variants
|
|
|
|
// shifted imm
|
|
|
|
def Sri : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_imm:$rhs),
|
|
|
|
!strconcat(opc, "s $dst, $lhs, $rhs"),
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_imm:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUsed]> {
|
|
|
|
let Defs = [CPSR];
|
|
|
|
}
|
|
|
|
// register
|
|
|
|
def Srr : T2XI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
|
|
|
|
!strconcat(opc, "s $dst, $lhs, $rhs"),
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUsed]> {
|
|
|
|
let Defs = [CPSR];
|
2009-06-26 00:19:44 +00:00
|
|
|
let isCommutable = Commutable;
|
|
|
|
}
|
2009-06-25 23:34:10 +00:00
|
|
|
// shifted register
|
|
|
|
def Srs : T2XI<(outs GPR:$dst), (ins GPR:$lhs, t2_so_reg:$rhs),
|
|
|
|
!strconcat(opc, "s $dst, $lhs, $rhs"),
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUsed]> {
|
|
|
|
let Defs = [CPSR];
|
2009-06-26 00:19:44 +00:00
|
|
|
}
|
2009-06-17 18:13:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-25 23:34:10 +00:00
|
|
|
/// T2I_rsc_is - Same as T2I_adde_sube_irs except the order of operands are
|
2009-06-25 20:59:23 +00:00
|
|
|
/// reversed. It doesn't define the 'rr' form since it's handled by its
|
2009-06-25 23:34:10 +00:00
|
|
|
/// T2I_adde_sube_irs counterpart.
|
2009-06-25 20:59:23 +00:00
|
|
|
let Defs = [CPSR], Uses = [CPSR] in {
|
2009-06-25 23:34:10 +00:00
|
|
|
multiclass T2I_rsc_is<string opc, PatFrag opnode> {
|
2009-06-17 18:13:58 +00:00
|
|
|
// shifted imm
|
2009-06-25 23:34:10 +00:00
|
|
|
def ri : T2sI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs),
|
|
|
|
opc, " $dst, $rhs, $lhs",
|
|
|
|
[(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUnused]>;
|
|
|
|
// shifted register
|
|
|
|
def rs : T2sI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs),
|
|
|
|
opc, " $dst, $rhs, $lhs",
|
|
|
|
[(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUnused]>;
|
|
|
|
// shifted imm
|
|
|
|
def Sri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs),
|
2009-06-25 20:59:23 +00:00
|
|
|
!strconcat(opc, "s $dst, $rhs, $lhs"),
|
2009-06-25 23:34:10 +00:00
|
|
|
[(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUsed]> {
|
|
|
|
let Defs = [CPSR];
|
2009-06-26 00:19:44 +00:00
|
|
|
}
|
2009-06-23 17:48:47 +00:00
|
|
|
// shifted register
|
2009-06-25 23:34:10 +00:00
|
|
|
def Srs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs),
|
2009-06-25 20:59:23 +00:00
|
|
|
!strconcat(opc, "s $dst, $rhs, $lhs"),
|
2009-06-25 23:34:10 +00:00
|
|
|
[(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>,
|
|
|
|
Requires<[IsThumb, HasThumb2, CarryDefIsUsed]> {
|
|
|
|
let Defs = [CPSR];
|
2009-06-26 00:19:44 +00:00
|
|
|
}
|
2009-06-25 20:59:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// T2I_rbin_s_is - Same as T2I_bin_s_irs except the order of operands are
|
|
|
|
/// reversed. It doesn't define the 'rr' form since it's handled by its
|
|
|
|
/// T2I_bin_s_irs counterpart.
|
|
|
|
let Defs = [CPSR] in {
|
|
|
|
multiclass T2I_rbin_s_is<string opc, PatFrag opnode> {
|
|
|
|
// shifted imm
|
|
|
|
def ri : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_imm:$lhs, cc_out:$s),
|
|
|
|
!strconcat(opc, "${s} $dst, $rhs, $lhs"),
|
|
|
|
[(set GPR:$dst, (opnode t2_so_imm:$lhs, GPR:$rhs))]>;
|
|
|
|
// shifted register
|
2009-06-25 02:08:06 +00:00
|
|
|
def rs : T2XI<(outs GPR:$dst), (ins GPR:$rhs, t2_so_reg:$lhs, cc_out:$s),
|
|
|
|
!strconcat(opc, "${s} $dst, $rhs, $lhs"),
|
|
|
|
[(set GPR:$dst, (opnode t2_so_reg:$lhs, GPR:$rhs))]>;
|
2009-06-23 17:48:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
/// T2I_sh_ir - Defines a set of (op reg, {so_imm|r}) patterns for a shift /
|
|
|
|
// rotate operation that produces a value.
|
|
|
|
multiclass T2I_sh_ir<string opc, PatFrag opnode> {
|
|
|
|
// 5-bit imm
|
2009-06-25 02:08:06 +00:00
|
|
|
def ri : T2sI<(outs GPR:$dst), (ins GPR:$lhs, i32imm:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, imm1_31:$rhs))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
// register
|
2009-06-25 02:08:06 +00:00
|
|
|
def rr : T2sI<(outs GPR:$dst), (ins GPR:$lhs, GPR:$rhs),
|
|
|
|
opc, " $dst, $lhs, $rhs",
|
|
|
|
[(set GPR:$dst, (opnode GPR:$lhs, GPR:$rhs))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
}
|
2009-06-23 17:48:47 +00:00
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
/// T21_cmp_irs - Defines a set of (op r, {so_imm|r|so_reg}) cmp / test
|
|
|
|
/// patterns. Similar to T2I_bin_irs except the instruction does not produce
|
2009-06-23 17:48:47 +00:00
|
|
|
/// a explicit result, only implicitly set CPSR.
|
|
|
|
let Uses = [CPSR] in {
|
|
|
|
multiclass T2I_cmp_is<string opc, PatFrag opnode> {
|
|
|
|
// shifted imm
|
|
|
|
def ri : T2I<(outs), (ins GPR:$lhs, t2_so_imm:$rhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $lhs, $rhs",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(opnode GPR:$lhs, t2_so_imm:$rhs)]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
// register
|
|
|
|
def rr : T2I<(outs), (ins GPR:$lhs, GPR:$rhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $lhs, $rhs",
|
2009-06-23 19:39:13 +00:00
|
|
|
[(opnode GPR:$lhs, GPR:$rhs)]>;
|
2009-06-17 18:13:58 +00:00
|
|
|
// shifted register
|
2009-06-23 17:48:47 +00:00
|
|
|
def rs : T2I<(outs), (ins GPR:$lhs, t2_so_reg:$rhs),
|
2009-06-25 02:08:06 +00:00
|
|
|
opc, " $lhs, $rhs",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(opnode GPR:$lhs, t2_so_reg:$rhs)]>;
|
2009-06-17 18:13:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 23:47:58 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Miscellaneous Instructions.
|
|
|
|
//
|
|
|
|
|
|
|
|
let isNotDuplicable = 1 in
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2PICADD : T2XI<(outs tGPR:$dst), (ins tGPR:$lhs, pclabel:$cp),
|
|
|
|
"$cp:\n\tadd $dst, pc",
|
|
|
|
[(set tGPR:$dst, (ARMpic_add tGPR:$lhs, imm:$cp))]>;
|
2009-06-24 23:47:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
// LEApcrel - Load a pc-relative address into a register without offending the
|
|
|
|
// assembler.
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2LEApcrel : T2XI<(outs GPR:$dst), (ins i32imm:$label, pred:$p),
|
2009-06-24 23:47:58 +00:00
|
|
|
!strconcat(!strconcat(".set PCRELV${:uid}, ($label-(",
|
|
|
|
"${:private}PCRELL${:uid}+8))\n"),
|
|
|
|
!strconcat("${:private}PCRELL${:uid}:\n\t",
|
|
|
|
"add$p $dst, pc, #PCRELV${:uid}")),
|
|
|
|
[]>;
|
|
|
|
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2LEApcrelJT : T2XI<(outs GPR:$dst),
|
2009-06-24 23:47:58 +00:00
|
|
|
(ins i32imm:$label, i32imm:$id, pred:$p),
|
|
|
|
!strconcat(!strconcat(".set PCRELV${:uid}, (${label}_${id:no_hash}-(",
|
|
|
|
"${:private}PCRELL${:uid}+8))\n"),
|
|
|
|
!strconcat("${:private}PCRELL${:uid}:\n\t",
|
|
|
|
"add$p $dst, pc, #PCRELV${:uid}")),
|
|
|
|
[]>;
|
|
|
|
|
2009-06-25 01:21:30 +00:00
|
|
|
// ADD rd, sp, #so_imm
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2ADDrSPi : T2XI<(outs GPR:$dst), (ins GPR:$sp, t2_so_imm:$imm),
|
|
|
|
"add $dst, $sp, $imm",
|
|
|
|
[]>;
|
2009-06-25 01:21:30 +00:00
|
|
|
|
|
|
|
// ADD rd, sp, #imm12
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2ADDrSPi12 : T2XI<(outs GPR:$dst), (ins GPR:$sp, i32imm:$imm),
|
|
|
|
"addw $dst, $sp, $imm",
|
|
|
|
[]>;
|
2009-06-25 01:21:30 +00:00
|
|
|
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2ADDrSPs : T2XI<(outs GPR:$dst), (ins GPR:$sp, t2_so_reg:$rhs),
|
|
|
|
"addw $dst, $sp, $rhs",
|
|
|
|
[]>;
|
2009-06-25 01:21:30 +00:00
|
|
|
|
2009-06-17 18:13:58 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Move Instructions.
|
|
|
|
//
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
let neverHasSideEffects = 1 in
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2MOVr : T2sI<(outs GPR:$dst), (ins GPR:$src),
|
|
|
|
"mov", " $dst, $src", []>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
let isReMaterializable = 1, isAsCheapAsAMove = 1 in
|
2009-06-26 16:10:07 +00:00
|
|
|
def t2MOVi : T2sI<(outs GPR:$dst), (ins t2_so_imm:$src),
|
|
|
|
"mov", " $dst, $src",
|
|
|
|
[(set GPR:$dst, t2_so_imm:$src)]>;
|
|
|
|
|
|
|
|
let isReMaterializable = 1, isAsCheapAsAMove = 1 in
|
|
|
|
def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src),
|
|
|
|
"movw", " $dst, $src",
|
|
|
|
[(set GPR:$dst, imm0_65535:$src)]>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
|
|
|
// FIXME: Also available in ARM mode.
|
|
|
|
let Constraints = "$src = $dst" in
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2MOVTi16 : T2sI<(outs GPR:$dst), (ins GPR:$src, i32imm:$imm),
|
|
|
|
"movt", " $dst, $imm",
|
|
|
|
[(set GPR:$dst,
|
|
|
|
(or (and GPR:$src, 0xffff), t2_lo16AllZero:$imm))]>;
|
2009-06-17 18:13:58 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Arithmetic Instructions.
|
|
|
|
//
|
2009-06-23 17:48:47 +00:00
|
|
|
|
2009-06-26 00:19:44 +00:00
|
|
|
defm t2ADD : T2I_bin_ii12rs<"add", BinOpFrag<(add node:$LHS, node:$RHS)>, 1>;
|
2009-06-23 19:39:13 +00:00
|
|
|
defm t2SUB : T2I_bin_ii12rs<"sub", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
|
|
|
// ADD and SUB with 's' bit set. No 12-bit immediate (T4) variants.
|
2009-06-26 00:19:44 +00:00
|
|
|
defm t2ADDS : T2I_bin_s_irs <"add", BinOpFrag<(addc node:$LHS, node:$RHS)>, 1>;
|
2009-06-25 20:59:23 +00:00
|
|
|
defm t2SUBS : T2I_bin_s_irs <"sub", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
2009-06-26 00:19:44 +00:00
|
|
|
defm t2ADC : T2I_adde_sube_irs<"adc",BinOpFrag<(adde node:$LHS, node:$RHS)>,1>;
|
|
|
|
defm t2SBC : T2I_adde_sube_irs<"sbc",BinOpFrag<(sube node:$LHS, node:$RHS)>>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
|
|
|
// RSB, RSC
|
2009-06-25 20:59:23 +00:00
|
|
|
defm t2RSB : T2I_rbin_is <"rsb", BinOpFrag<(sub node:$LHS, node:$RHS)>>;
|
|
|
|
defm t2RSBS : T2I_rbin_s_is <"rsb", BinOpFrag<(subc node:$LHS, node:$RHS)>>;
|
2009-06-25 23:34:10 +00:00
|
|
|
defm t2RSC : T2I_rsc_is <"rsc", BinOpFrag<(sube node:$LHS, node:$RHS)>>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
|
|
|
// (sub X, imm) gets canonicalized to (add X, -imm). Match this form.
|
|
|
|
def : Thumb2Pat<(add GPR:$src, t2_so_imm_neg:$imm),
|
|
|
|
(t2SUBri GPR:$src, t2_so_imm_neg:$imm)>;
|
|
|
|
def : Thumb2Pat<(add GPR:$src, imm0_4095_neg:$imm),
|
|
|
|
(t2SUBri12 GPR:$src, imm0_4095_neg:$imm)>;
|
|
|
|
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Shift and rotate Instructions.
|
|
|
|
//
|
|
|
|
|
|
|
|
defm t2LSL : T2I_sh_ir<"lsl", BinOpFrag<(shl node:$LHS, node:$RHS)>>;
|
|
|
|
defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>;
|
|
|
|
defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>;
|
|
|
|
defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>;
|
|
|
|
|
2009-06-25 02:08:06 +00:00
|
|
|
def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src),
|
|
|
|
"mov", " $dst, $src, rrx",
|
|
|
|
[(set GPR:$dst, (ARMrrx GPR:$src))]>;
|
2009-06-23 19:39:13 +00:00
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Bitwise Instructions.
|
|
|
|
//
|
|
|
|
|
2009-06-26 00:19:44 +00:00
|
|
|
defm t2AND : T2I_bin_irs<"and", BinOpFrag<(and node:$LHS, node:$RHS)>, 1>;
|
|
|
|
defm t2ORR : T2I_bin_irs<"orr", BinOpFrag<(or node:$LHS, node:$RHS)>, 1>;
|
|
|
|
defm t2EOR : T2I_bin_irs<"eor", BinOpFrag<(xor node:$LHS, node:$RHS)>, 1>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
defm t2BIC : T2I_bin_irs<"bic", BinOpFrag<(and node:$LHS, (not node:$RHS))>>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
|
|
|
def : Thumb2Pat<(and GPR:$src, t2_so_imm_not:$imm),
|
|
|
|
(t2BICri GPR:$src, t2_so_imm_not:$imm)>;
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
defm t2ORN : T2I_bin_irs<"orn", BinOpFrag<(or node:$LHS, (not node:$RHS))>>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
|
|
|
def : Thumb2Pat<(or GPR:$src, t2_so_imm_not:$imm),
|
|
|
|
(t2ORNri GPR:$src, t2_so_imm_not:$imm)>;
|
|
|
|
|
2009-06-23 19:39:13 +00:00
|
|
|
defm t2MVN : T2I_un_irs <"mvn", UnOpFrag<(not node:$Src)>, 1, 1>;
|
2009-06-23 17:48:47 +00:00
|
|
|
|
2009-06-25 23:11:21 +00:00
|
|
|
def : Thumb2Pat<(t2_so_imm_not:$src),
|
|
|
|
(t2MVNi t2_so_imm_not:$src)>;
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
// A8.6.17 BFC - Bitfield clear
|
|
|
|
// FIXME: Also available in ARM mode.
|
|
|
|
let Constraints = "$src = $dst" in
|
|
|
|
def t2BFC : T2I<(outs GPR:$dst), (ins GPR:$src, bf_inv_mask_imm:$imm),
|
2009-06-25 02:08:06 +00:00
|
|
|
"bfc", " $dst, $imm",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (and GPR:$src, bf_inv_mask_imm:$imm))]>;
|
|
|
|
|
|
|
|
// FIXME: A8.6.18 BFI - Bitfield insert (Encoding T1)
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Multiply Instructions.
|
|
|
|
//
|
2009-06-26 00:19:44 +00:00
|
|
|
let isCommutable = 1 in
|
2009-06-23 17:48:47 +00:00
|
|
|
def t2MUL: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b),
|
2009-06-25 02:08:06 +00:00
|
|
|
"mul", " $dst, $a, $b",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (mul GPR:$a, GPR:$b))]>;
|
|
|
|
|
|
|
|
def t2MLA: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c),
|
2009-06-25 02:08:06 +00:00
|
|
|
"mla", " $dst, $a, $b, $c",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (add (mul GPR:$a, GPR:$b), GPR:$c))]>;
|
|
|
|
|
|
|
|
def t2MLS: T2I<(outs GPR:$dst), (ins GPR:$a, GPR:$b, GPR:$c),
|
2009-06-25 02:08:06 +00:00
|
|
|
"mls", " $dst, $a, $b, $c",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (sub GPR:$c, (mul GPR:$a, GPR:$b)))]>;
|
|
|
|
|
|
|
|
// FIXME: SMULL, etc.
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Misc. Arithmetic Instructions.
|
|
|
|
//
|
|
|
|
|
|
|
|
/////
|
|
|
|
/// A8.6.31 CLZ
|
|
|
|
/////
|
|
|
|
// FIXME not firing? but ARM version does...
|
|
|
|
def t2CLZ : T2I<(outs GPR:$dst), (ins GPR:$src),
|
2009-06-25 02:08:06 +00:00
|
|
|
"clz", " $dst, $src",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (ctlz GPR:$src))]>;
|
|
|
|
|
|
|
|
def t2REV : T2I<(outs GPR:$dst), (ins GPR:$src),
|
2009-06-25 02:08:06 +00:00
|
|
|
"rev", " $dst, $src",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst, (bswap GPR:$src))]>;
|
|
|
|
|
|
|
|
def t2REV16 : T2I<(outs GPR:$dst), (ins GPR:$src),
|
2009-06-25 02:08:06 +00:00
|
|
|
"rev16", " $dst, $src",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst,
|
|
|
|
(or (and (srl GPR:$src, (i32 8)), 0xFF),
|
|
|
|
(or (and (shl GPR:$src, (i32 8)), 0xFF00),
|
|
|
|
(or (and (srl GPR:$src, (i32 8)), 0xFF0000),
|
|
|
|
(and (shl GPR:$src, (i32 8)), 0xFF000000)))))]>;
|
|
|
|
|
|
|
|
/////
|
|
|
|
/// A8.6.137 REVSH
|
|
|
|
/////
|
|
|
|
def t2REVSH : T2I<(outs GPR:$dst), (ins GPR:$src),
|
2009-06-25 02:08:06 +00:00
|
|
|
"revsh", " $dst, $src",
|
2009-06-23 17:48:47 +00:00
|
|
|
[(set GPR:$dst,
|
|
|
|
(sext_inreg
|
|
|
|
(or (srl (and GPR:$src, 0xFFFF), (i32 8)),
|
|
|
|
(shl GPR:$src, (i32 8))), i16))]>;
|
|
|
|
|
|
|
|
// FIXME: PKHxx etc.
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Comparison Instructions...
|
|
|
|
//
|
|
|
|
|
|
|
|
defm t2CMP : T2I_cmp_is<"cmp",
|
|
|
|
BinOpFrag<(ARMcmp node:$LHS, node:$RHS)>>;
|
|
|
|
defm t2CMPnz : T2I_cmp_is<"cmp",
|
|
|
|
BinOpFrag<(ARMcmpNZ node:$LHS, node:$RHS)>>;
|
|
|
|
|
|
|
|
defm t2CMN : T2I_cmp_is<"cmn",
|
|
|
|
BinOpFrag<(ARMcmp node:$LHS,(ineg node:$RHS))>>;
|
|
|
|
defm t2CMNnz : T2I_cmp_is<"cmn",
|
|
|
|
BinOpFrag<(ARMcmpNZ node:$LHS,(ineg node:$RHS))>>;
|
|
|
|
|
|
|
|
def : Thumb2Pat<(ARMcmp GPR:$src, t2_so_imm_neg:$imm),
|
|
|
|
(t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
|
|
|
|
|
|
|
|
def : Thumb2Pat<(ARMcmpNZ GPR:$src, t2_so_imm_neg:$imm),
|
|
|
|
(t2CMNri GPR:$src, t2_so_imm_neg:$imm)>;
|
|
|
|
|
|
|
|
// FIXME: TST, TEQ, etc.
|
|
|
|
|
|
|
|
// A8.6.27 CBNZ, CBZ - Compare and branch on (non)zero.
|
|
|
|
// Short range conditional branch. Looks awesome for loops. Need to figure
|
|
|
|
// out how to use this one.
|
|
|
|
|
|
|
|
// FIXME: Conditional moves
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Non-Instruction Patterns
|
|
|
|
//
|
|
|
|
|
2009-06-24 23:47:58 +00:00
|
|
|
// ConstantPool, GlobalAddress, and JumpTable
|
|
|
|
def : Thumb2Pat<(ARMWrapper tglobaladdr :$dst), (t2LEApcrel tglobaladdr :$dst)>;
|
|
|
|
def : Thumb2Pat<(ARMWrapper tconstpool :$dst), (t2LEApcrel tconstpool :$dst)>;
|
|
|
|
def : Thumb2Pat<(ARMWrapperJT tjumptable:$dst, imm:$id),
|
|
|
|
(t2LEApcrelJT tjumptable:$dst, imm:$id)>;
|
|
|
|
|
2009-06-23 17:48:47 +00:00
|
|
|
// Large immediate handling.
|
|
|
|
|
|
|
|
def : Thumb2Pat<(i32 imm:$src),
|
|
|
|
(t2MOVTi16 (t2MOVi16 (t2_lo16 imm:$src)),
|
|
|
|
(t2_hi16 imm:$src))>;
|