2006-02-05 05:50:24 +00:00
|
|
|
//===- SparcInstrInfo.td - Target Description for Sparc Target ------------===//
|
2004-02-25 19:28:19 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-02-05 05:50:24 +00:00
|
|
|
// This file describes the Sparc instructions in TableGen format.
|
2004-02-25 19:28:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-02-25 21:02:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-02-26 00:37:12 +00:00
|
|
|
// Instruction format superclass
|
2004-02-25 21:02:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
include "SparcInstrFormats.td"
|
2004-02-25 19:28:19 +00:00
|
|
|
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Feature predicates.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// HasV9 - This predicate is true when the target processor supports V9
|
|
|
|
// instructions. Note that the machine may be running in 32-bit mode.
|
|
|
|
def HasV9 : Predicate<"Subtarget.isV9()">;
|
|
|
|
|
2006-01-30 05:48:37 +00:00
|
|
|
// HasNoV9 - This predicate is true when the target doesn't have V9
|
|
|
|
// instructions. Use of this is just a hack for the isel not having proper
|
|
|
|
// costs for V8 instructions that are more expensive than their V9 ones.
|
|
|
|
def HasNoV9 : Predicate<"!Subtarget.isV9()">;
|
|
|
|
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
// HasVIS - This is true when the target processor has VIS extensions.
|
|
|
|
def HasVIS : Predicate<"Subtarget.isVIS()">;
|
|
|
|
|
|
|
|
// UseDeprecatedInsts - This predicate is true when the target processor is a
|
|
|
|
// V8, or when it is V9 but the V8 deprecated instructions are efficient enough
|
|
|
|
// to use when appropriate. In either of these cases, the instruction selector
|
|
|
|
// will pick deprecated instructions.
|
|
|
|
def UseDeprecatedInsts : Predicate<"Subtarget.useDeprecatedV8Instructions()">;
|
|
|
|
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Pattern Stuff
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-01-31 06:18:16 +00:00
|
|
|
def simm11 : PatLeaf<(imm), [{
|
|
|
|
// simm11 predicate - True if the imm fits in a 11-bit sign extended field.
|
|
|
|
return (((int)N->getValue() << (32-11)) >> (32-11)) == (int)N->getValue();
|
|
|
|
}]>;
|
|
|
|
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
def simm13 : PatLeaf<(imm), [{
|
|
|
|
// simm13 predicate - True if the imm fits in a 13-bit sign extended field.
|
|
|
|
return (((int)N->getValue() << (32-13)) >> (32-13)) == (int)N->getValue();
|
|
|
|
}]>;
|
|
|
|
|
2005-12-17 19:41:43 +00:00
|
|
|
def LO10 : SDNodeXForm<imm, [{
|
|
|
|
return CurDAG->getTargetConstant((unsigned)N->getValue() & 1023, MVT::i32);
|
|
|
|
}]>;
|
|
|
|
|
2005-12-17 19:37:00 +00:00
|
|
|
def HI22 : SDNodeXForm<imm, [{
|
|
|
|
// Transformation function: shift the immediate value down into the low bits.
|
|
|
|
return CurDAG->getTargetConstant((unsigned)N->getValue() >> 10, MVT::i32);
|
|
|
|
}]>;
|
|
|
|
|
|
|
|
def SETHIimm : PatLeaf<(imm), [{
|
|
|
|
return (((unsigned)N->getValue() >> 10) << 10) == (unsigned)N->getValue();
|
|
|
|
}], HI22>;
|
|
|
|
|
2005-12-17 20:04:49 +00:00
|
|
|
// Addressing modes.
|
|
|
|
def ADDRrr : ComplexPattern<i32, 2, "SelectADDRrr", []>;
|
2006-02-10 07:35:42 +00:00
|
|
|
def ADDRri : ComplexPattern<i32, 2, "SelectADDRri", [frameindex]>;
|
2005-12-17 20:04:49 +00:00
|
|
|
|
|
|
|
// Address operands
|
|
|
|
def MEMrr : Operand<i32> {
|
|
|
|
let PrintMethod = "printMemOperand";
|
|
|
|
let NumMIOperands = 2;
|
|
|
|
let MIOperandInfo = (ops IntRegs, IntRegs);
|
|
|
|
}
|
|
|
|
def MEMri : Operand<i32> {
|
|
|
|
let PrintMethod = "printMemOperand";
|
|
|
|
let NumMIOperands = 2;
|
|
|
|
let MIOperandInfo = (ops IntRegs, i32imm);
|
|
|
|
}
|
|
|
|
|
2005-12-18 01:46:58 +00:00
|
|
|
// Branch targets have OtherVT type.
|
|
|
|
def brtarget : Operand<OtherVT>;
|
2005-12-18 15:55:15 +00:00
|
|
|
def calltarget : Operand<i32>;
|
2005-12-18 01:46:58 +00:00
|
|
|
|
2006-01-31 06:49:09 +00:00
|
|
|
// Operand for printing out a condition code.
|
2006-02-05 05:50:24 +00:00
|
|
|
let PrintMethod = "printCCOperand" in
|
|
|
|
def CCOp : Operand<i32>;
|
2006-01-31 06:49:09 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDTSPcmpfcc :
|
2006-02-10 06:58:25 +00:00
|
|
|
SDTypeProfile<0, 2, [SDTCisFP<0>, SDTCisSameAs<0, 1>]>;
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDTSPbrcc :
|
2006-02-10 06:58:25 +00:00
|
|
|
SDTypeProfile<0, 2, [SDTCisVT<0, OtherVT>, SDTCisVT<1, i32>]>;
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDTSPselectcc :
|
2006-02-10 06:58:25 +00:00
|
|
|
SDTypeProfile<1, 3, [SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>, SDTCisVT<3, i32>]>;
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDTSPFTOI :
|
2005-12-23 05:00:16 +00:00
|
|
|
SDTypeProfile<1, 1, [SDTCisVT<0, f32>, SDTCisFP<1>]>;
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDTSPITOF :
|
2005-12-23 05:00:16 +00:00
|
|
|
SDTypeProfile<1, 1, [SDTCisFP<0>, SDTCisVT<1, f32>]>;
|
2005-12-18 01:20:35 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SPcmpicc : SDNode<"SPISD::CMPICC", SDTIntBinOp, [SDNPOutFlag]>;
|
|
|
|
def SPcmpfcc : SDNode<"SPISD::CMPFCC", SDTSPcmpfcc, [SDNPOutFlag]>;
|
2006-02-10 06:58:25 +00:00
|
|
|
def SPbricc : SDNode<"SPISD::BRICC", SDTSPbrcc, [SDNPHasChain, SDNPInFlag]>;
|
|
|
|
def SPbrfcc : SDNode<"SPISD::BRFCC", SDTSPbrcc, [SDNPHasChain, SDNPInFlag]>;
|
2005-12-18 01:20:35 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SPhi : SDNode<"SPISD::Hi", SDTIntUnaryOp>;
|
|
|
|
def SPlo : SDNode<"SPISD::Lo", SDTIntUnaryOp>;
|
2005-12-18 01:20:35 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SPftoi : SDNode<"SPISD::FTOI", SDTSPFTOI>;
|
|
|
|
def SPitof : SDNode<"SPISD::ITOF", SDTSPITOF>;
|
2005-12-18 06:59:57 +00:00
|
|
|
|
2006-02-10 06:58:25 +00:00
|
|
|
def SPselecticc : SDNode<"SPISD::SELECT_ICC", SDTSPselectcc, [SDNPInFlag]>;
|
|
|
|
def SPselectfcc : SDNode<"SPISD::SELECT_FCC", SDTSPselectcc, [SDNPInFlag]>;
|
2005-12-18 08:13:54 +00:00
|
|
|
|
2005-12-18 15:55:15 +00:00
|
|
|
// These are target-independent nodes, but have target-specific formats.
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDT_SPCallSeq : SDTypeProfile<0, 1, [ SDTCisVT<0, i32> ]>;
|
2006-08-11 09:03:33 +00:00
|
|
|
def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_SPCallSeq,
|
|
|
|
[SDNPHasChain, SDNPOutFlag]>;
|
|
|
|
def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_SPCallSeq,
|
|
|
|
[SDNPHasChain, SDNPOutFlag]>;
|
2005-12-18 15:55:15 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDT_SPCall : SDTypeProfile<0, 1, [SDTCisVT<0, i32>]>;
|
|
|
|
def call : SDNode<"SPISD::CALL", SDT_SPCall,
|
2006-01-09 18:28:21 +00:00
|
|
|
[SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
|
2005-12-18 15:55:15 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SDT_SPRetFlag : SDTypeProfile<0, 0, []>;
|
|
|
|
def retflag : SDNode<"SPISD::RET_FLAG", SDT_SPRetFlag,
|
2006-01-09 18:28:21 +00:00
|
|
|
[SDNPHasChain, SDNPOptInFlag]>;
|
2005-12-18 21:03:04 +00:00
|
|
|
|
2006-01-30 07:43:04 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// SPARC Flag Conditions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
// Note that these values must be kept in sync with the CCOp::CondCode enum
|
2006-01-30 07:43:04 +00:00
|
|
|
// values.
|
2006-01-31 06:56:30 +00:00
|
|
|
class ICC_VAL<int N> : PatLeaf<(i32 N)>;
|
2006-01-31 06:18:16 +00:00
|
|
|
def ICC_NE : ICC_VAL< 9>; // Not Equal
|
|
|
|
def ICC_E : ICC_VAL< 1>; // Equal
|
|
|
|
def ICC_G : ICC_VAL<10>; // Greater
|
|
|
|
def ICC_LE : ICC_VAL< 2>; // Less or Equal
|
|
|
|
def ICC_GE : ICC_VAL<11>; // Greater or Equal
|
|
|
|
def ICC_L : ICC_VAL< 3>; // Less
|
|
|
|
def ICC_GU : ICC_VAL<12>; // Greater Unsigned
|
|
|
|
def ICC_LEU : ICC_VAL< 4>; // Less or Equal Unsigned
|
|
|
|
def ICC_CC : ICC_VAL<13>; // Carry Clear/Great or Equal Unsigned
|
|
|
|
def ICC_CS : ICC_VAL< 5>; // Carry Set/Less Unsigned
|
|
|
|
def ICC_POS : ICC_VAL<14>; // Positive
|
|
|
|
def ICC_NEG : ICC_VAL< 6>; // Negative
|
|
|
|
def ICC_VC : ICC_VAL<15>; // Overflow Clear
|
|
|
|
def ICC_VS : ICC_VAL< 7>; // Overflow Set
|
|
|
|
|
2006-01-31 06:56:30 +00:00
|
|
|
class FCC_VAL<int N> : PatLeaf<(i32 N)>;
|
2006-01-31 06:18:16 +00:00
|
|
|
def FCC_U : FCC_VAL<23>; // Unordered
|
|
|
|
def FCC_G : FCC_VAL<22>; // Greater
|
|
|
|
def FCC_UG : FCC_VAL<21>; // Unordered or Greater
|
|
|
|
def FCC_L : FCC_VAL<20>; // Less
|
|
|
|
def FCC_UL : FCC_VAL<19>; // Unordered or Less
|
|
|
|
def FCC_LG : FCC_VAL<18>; // Less or Greater
|
|
|
|
def FCC_NE : FCC_VAL<17>; // Not Equal
|
|
|
|
def FCC_E : FCC_VAL<25>; // Equal
|
|
|
|
def FCC_UE : FCC_VAL<24>; // Unordered or Equal
|
|
|
|
def FCC_GE : FCC_VAL<25>; // Greater or Equal
|
|
|
|
def FCC_UGE : FCC_VAL<26>; // Unordered or Greater or Equal
|
|
|
|
def FCC_LE : FCC_VAL<27>; // Less or Equal
|
|
|
|
def FCC_ULE : FCC_VAL<28>; // Unordered or Less or Equal
|
|
|
|
def FCC_O : FCC_VAL<29>; // Ordered
|
2006-01-30 07:43:04 +00:00
|
|
|
|
|
|
|
|
2004-02-26 00:37:12 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-02-28 19:37:18 +00:00
|
|
|
// Pseudo instructions.
|
2005-12-18 08:21:00 +00:00
|
|
|
class Pseudo<dag ops, string asmstr, list<dag> pattern>
|
2006-02-05 05:50:24 +00:00
|
|
|
: InstSP<ops, asmstr, pattern>;
|
2005-12-18 08:21:00 +00:00
|
|
|
|
2005-12-18 15:55:15 +00:00
|
|
|
def ADJCALLSTACKDOWN : Pseudo<(ops i32imm:$amt),
|
|
|
|
"!ADJCALLSTACKDOWN $amt",
|
|
|
|
[(callseq_start imm:$amt)]>;
|
|
|
|
def ADJCALLSTACKUP : Pseudo<(ops i32imm:$amt),
|
|
|
|
"!ADJCALLSTACKUP $amt",
|
|
|
|
[(callseq_end imm:$amt)]>;
|
2005-12-18 23:10:57 +00:00
|
|
|
def IMPLICIT_DEF_Int : Pseudo<(ops IntRegs:$dst),
|
|
|
|
"!IMPLICIT_DEF $dst",
|
|
|
|
[(set IntRegs:$dst, (undef))]>;
|
|
|
|
def IMPLICIT_DEF_FP : Pseudo<(ops FPRegs:$dst), "!IMPLICIT_DEF $dst",
|
|
|
|
[(set FPRegs:$dst, (undef))]>;
|
|
|
|
def IMPLICIT_DEF_DFP : Pseudo<(ops DFPRegs:$dst), "!IMPLICIT_DEF $dst",
|
|
|
|
[(set DFPRegs:$dst, (undef))]>;
|
2005-12-19 00:50:12 +00:00
|
|
|
|
|
|
|
// FpMOVD/FpNEGD/FpABSD - These are lowered to single-precision ops by the
|
|
|
|
// fpmover pass.
|
2006-02-21 18:04:32 +00:00
|
|
|
let Predicates = [HasNoV9] in { // Only emit these in V8 mode.
|
2006-01-30 05:48:37 +00:00
|
|
|
def FpMOVD : Pseudo<(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"!FpMOVD $src, $dst", []>;
|
|
|
|
def FpNEGD : Pseudo<(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"!FpNEGD $src, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fneg DFPRegs:$src))]>;
|
|
|
|
def FpABSD : Pseudo<(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"!FpABSD $src, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fabs DFPRegs:$src))]>;
|
|
|
|
}
|
2005-12-18 08:13:54 +00:00
|
|
|
|
|
|
|
// SELECT_CC_* - Used to implement the SELECT_CC DAG operation. Expanded by the
|
|
|
|
// scheduler into a branch sequence. This has to handle all permutations of
|
|
|
|
// selection between i32/f32/f64 on ICC and FCC.
|
2006-02-21 18:04:32 +00:00
|
|
|
let usesCustomDAGSchedInserter = 1 in { // Expanded by the scheduler.
|
2005-12-18 08:13:54 +00:00
|
|
|
def SELECT_CC_Int_ICC
|
|
|
|
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, IntRegs:$F, i32imm:$Cond),
|
|
|
|
"; SELECT_CC_Int_ICC PSEUDO!",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set IntRegs:$dst, (SPselecticc IntRegs:$T, IntRegs:$F,
|
2006-02-10 06:58:25 +00:00
|
|
|
imm:$Cond))]>;
|
2005-12-18 08:13:54 +00:00
|
|
|
def SELECT_CC_Int_FCC
|
|
|
|
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, IntRegs:$F, i32imm:$Cond),
|
|
|
|
"; SELECT_CC_Int_FCC PSEUDO!",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set IntRegs:$dst, (SPselectfcc IntRegs:$T, IntRegs:$F,
|
2006-02-10 06:58:25 +00:00
|
|
|
imm:$Cond))]>;
|
2005-12-18 08:13:54 +00:00
|
|
|
def SELECT_CC_FP_ICC
|
|
|
|
: Pseudo<(ops FPRegs:$dst, FPRegs:$T, FPRegs:$F, i32imm:$Cond),
|
|
|
|
"; SELECT_CC_FP_ICC PSEUDO!",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set FPRegs:$dst, (SPselecticc FPRegs:$T, FPRegs:$F,
|
2006-02-10 06:58:25 +00:00
|
|
|
imm:$Cond))]>;
|
2005-12-18 08:13:54 +00:00
|
|
|
def SELECT_CC_FP_FCC
|
|
|
|
: Pseudo<(ops FPRegs:$dst, FPRegs:$T, FPRegs:$F, i32imm:$Cond),
|
|
|
|
"; SELECT_CC_FP_FCC PSEUDO!",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set FPRegs:$dst, (SPselectfcc FPRegs:$T, FPRegs:$F,
|
2006-02-10 06:58:25 +00:00
|
|
|
imm:$Cond))]>;
|
2005-12-18 08:13:54 +00:00
|
|
|
def SELECT_CC_DFP_ICC
|
|
|
|
: Pseudo<(ops DFPRegs:$dst, DFPRegs:$T, DFPRegs:$F, i32imm:$Cond),
|
|
|
|
"; SELECT_CC_DFP_ICC PSEUDO!",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set DFPRegs:$dst, (SPselecticc DFPRegs:$T, DFPRegs:$F,
|
2006-02-10 06:58:25 +00:00
|
|
|
imm:$Cond))]>;
|
2005-12-18 08:13:54 +00:00
|
|
|
def SELECT_CC_DFP_FCC
|
|
|
|
: Pseudo<(ops DFPRegs:$dst, DFPRegs:$T, DFPRegs:$F, i32imm:$Cond),
|
|
|
|
"; SELECT_CC_DFP_FCC PSEUDO!",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set DFPRegs:$dst, (SPselectfcc DFPRegs:$T, DFPRegs:$F,
|
2006-02-10 06:58:25 +00:00
|
|
|
imm:$Cond))]>;
|
2004-02-28 19:37:18 +00:00
|
|
|
}
|
|
|
|
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
|
2004-03-06 05:32:13 +00:00
|
|
|
// Section A.3 - Synthetic Instructions, p. 85
|
2004-05-08 04:21:32 +00:00
|
|
|
// special cases of JMPL:
|
2005-12-26 09:11:45 +00:00
|
|
|
let isReturn = 1, isTerminator = 1, hasDelaySlot = 1, noResults = 1 in {
|
2004-10-14 22:32:49 +00:00
|
|
|
let rd = O7.Num, rs1 = G0.Num, simm13 = 8 in
|
2006-01-09 18:28:21 +00:00
|
|
|
def RETL: F3_2<2, 0b111000, (ops), "retl", [(retflag)]>;
|
2004-10-14 22:32:49 +00:00
|
|
|
}
|
2004-04-02 20:53:37 +00:00
|
|
|
|
|
|
|
// Section B.1 - Load Integer Instructions, p. 90
|
2005-12-17 20:26:45 +00:00
|
|
|
def LDSBrr : F3_1<3, 0b001001,
|
|
|
|
(ops IntRegs:$dst, MEMrr:$addr),
|
|
|
|
"ldsb [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (sextload ADDRrr:$addr, i8))]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def LDSBri : F3_2<3, 0b001001,
|
|
|
|
(ops IntRegs:$dst, MEMri:$addr),
|
|
|
|
"ldsb [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (sextload ADDRri:$addr, i8))]>;
|
2005-12-17 20:26:45 +00:00
|
|
|
def LDSHrr : F3_1<3, 0b001010,
|
|
|
|
(ops IntRegs:$dst, MEMrr:$addr),
|
|
|
|
"ldsh [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (sextload ADDRrr:$addr, i16))]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def LDSHri : F3_2<3, 0b001010,
|
|
|
|
(ops IntRegs:$dst, MEMri:$addr),
|
|
|
|
"ldsh [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (sextload ADDRri:$addr, i16))]>;
|
2005-12-17 20:26:45 +00:00
|
|
|
def LDUBrr : F3_1<3, 0b000001,
|
|
|
|
(ops IntRegs:$dst, MEMrr:$addr),
|
|
|
|
"ldub [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (zextload ADDRrr:$addr, i8))]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def LDUBri : F3_2<3, 0b000001,
|
|
|
|
(ops IntRegs:$dst, MEMri:$addr),
|
|
|
|
"ldub [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (zextload ADDRri:$addr, i8))]>;
|
2005-12-17 20:26:45 +00:00
|
|
|
def LDUHrr : F3_1<3, 0b000010,
|
|
|
|
(ops IntRegs:$dst, MEMrr:$addr),
|
|
|
|
"lduh [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (zextload ADDRrr:$addr, i16))]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def LDUHri : F3_2<3, 0b000010,
|
|
|
|
(ops IntRegs:$dst, MEMri:$addr),
|
|
|
|
"lduh [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (zextload ADDRri:$addr, i16))]>;
|
2005-12-17 20:26:45 +00:00
|
|
|
def LDrr : F3_1<3, 0b000000,
|
|
|
|
(ops IntRegs:$dst, MEMrr:$addr),
|
|
|
|
"ld [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (load ADDRrr:$addr))]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def LDri : F3_2<3, 0b000000,
|
|
|
|
(ops IntRegs:$dst, MEMri:$addr),
|
|
|
|
"ld [$addr], $dst",
|
|
|
|
[(set IntRegs:$dst, (load ADDRri:$addr))]>;
|
2004-04-02 20:53:37 +00:00
|
|
|
|
2004-06-18 05:19:27 +00:00
|
|
|
// Section B.2 - Load Floating-point Instructions, p. 92
|
2005-12-16 06:25:42 +00:00
|
|
|
def LDFrr : F3_1<3, 0b100000,
|
2005-12-17 20:32:47 +00:00
|
|
|
(ops FPRegs:$dst, MEMrr:$addr),
|
|
|
|
"ld [$addr], $dst",
|
|
|
|
[(set FPRegs:$dst, (load ADDRrr:$addr))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def LDFri : F3_2<3, 0b100000,
|
2005-12-17 20:32:47 +00:00
|
|
|
(ops FPRegs:$dst, MEMri:$addr),
|
|
|
|
"ld [$addr], $dst",
|
|
|
|
[(set FPRegs:$dst, (load ADDRri:$addr))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def LDDFrr : F3_1<3, 0b100011,
|
2005-12-17 20:32:47 +00:00
|
|
|
(ops DFPRegs:$dst, MEMrr:$addr),
|
|
|
|
"ldd [$addr], $dst",
|
|
|
|
[(set DFPRegs:$dst, (load ADDRrr:$addr))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def LDDFri : F3_2<3, 0b100011,
|
2005-12-17 20:32:47 +00:00
|
|
|
(ops DFPRegs:$dst, MEMri:$addr),
|
|
|
|
"ldd [$addr], $dst",
|
|
|
|
[(set DFPRegs:$dst, (load ADDRri:$addr))]>;
|
2004-06-18 05:19:27 +00:00
|
|
|
|
2004-04-02 20:53:37 +00:00
|
|
|
// Section B.4 - Store Integer Instructions, p. 95
|
2005-12-17 20:44:36 +00:00
|
|
|
def STBrr : F3_1<3, 0b000101,
|
|
|
|
(ops MEMrr:$addr, IntRegs:$src),
|
|
|
|
"stb $src, [$addr]",
|
|
|
|
[(truncstore IntRegs:$src, ADDRrr:$addr, i8)]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def STBri : F3_2<3, 0b000101,
|
|
|
|
(ops MEMri:$addr, IntRegs:$src),
|
2005-12-17 20:42:55 +00:00
|
|
|
"stb $src, [$addr]",
|
|
|
|
[(truncstore IntRegs:$src, ADDRri:$addr, i8)]>;
|
2005-12-17 20:44:36 +00:00
|
|
|
def STHrr : F3_1<3, 0b000110,
|
|
|
|
(ops MEMrr:$addr, IntRegs:$src),
|
|
|
|
"sth $src, [$addr]",
|
|
|
|
[(truncstore IntRegs:$src, ADDRrr:$addr, i16)]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def STHri : F3_2<3, 0b000110,
|
|
|
|
(ops MEMri:$addr, IntRegs:$src),
|
2005-12-17 20:42:55 +00:00
|
|
|
"sth $src, [$addr]",
|
|
|
|
[(truncstore IntRegs:$src, ADDRri:$addr, i16)]>;
|
2005-12-17 20:44:36 +00:00
|
|
|
def STrr : F3_1<3, 0b000100,
|
|
|
|
(ops MEMrr:$addr, IntRegs:$src),
|
|
|
|
"st $src, [$addr]",
|
|
|
|
[(store IntRegs:$src, ADDRrr:$addr)]>;
|
2005-12-17 20:18:24 +00:00
|
|
|
def STri : F3_2<3, 0b000100,
|
|
|
|
(ops MEMri:$addr, IntRegs:$src),
|
2005-12-17 20:42:55 +00:00
|
|
|
"st $src, [$addr]",
|
|
|
|
[(store IntRegs:$src, ADDRri:$addr)]>;
|
2004-06-24 07:36:59 +00:00
|
|
|
|
|
|
|
// Section B.5 - Store Floating-point Instructions, p. 97
|
2005-12-16 06:25:42 +00:00
|
|
|
def STFrr : F3_1<3, 0b100100,
|
2005-12-17 20:47:16 +00:00
|
|
|
(ops MEMrr:$addr, FPRegs:$src),
|
|
|
|
"st $src, [$addr]",
|
|
|
|
[(store FPRegs:$src, ADDRrr:$addr)]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def STFri : F3_2<3, 0b100100,
|
2005-12-17 20:47:16 +00:00
|
|
|
(ops MEMri:$addr, FPRegs:$src),
|
|
|
|
"st $src, [$addr]",
|
|
|
|
[(store FPRegs:$src, ADDRri:$addr)]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def STDFrr : F3_1<3, 0b100111,
|
2005-12-17 20:47:16 +00:00
|
|
|
(ops MEMrr:$addr, DFPRegs:$src),
|
|
|
|
"std $src, [$addr]",
|
|
|
|
[(store DFPRegs:$src, ADDRrr:$addr)]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def STDFri : F3_2<3, 0b100111,
|
2005-12-17 20:47:16 +00:00
|
|
|
(ops MEMri:$addr, DFPRegs:$src),
|
|
|
|
"std $src, [$addr]",
|
|
|
|
[(store DFPRegs:$src, ADDRri:$addr)]>;
|
2004-02-26 00:37:12 +00:00
|
|
|
|
2004-03-04 04:37:45 +00:00
|
|
|
// Section B.9 - SETHI Instruction, p. 104
|
2005-12-16 07:18:48 +00:00
|
|
|
def SETHIi: F2_1<0b100,
|
|
|
|
(ops IntRegs:$dst, i32imm:$src),
|
2005-12-17 19:37:00 +00:00
|
|
|
"sethi $src, $dst",
|
|
|
|
[(set IntRegs:$dst, SETHIimm:$src)]>;
|
2004-03-04 00:56:25 +00:00
|
|
|
|
2004-04-02 20:53:37 +00:00
|
|
|
// Section B.10 - NOP Instruction, p. 105
|
|
|
|
// (It's a special case of SETHI)
|
2004-10-14 22:33:32 +00:00
|
|
|
let rd = 0, imm22 = 0 in
|
2005-12-17 19:37:00 +00:00
|
|
|
def NOP : F2_1<0b100, (ops), "nop", []>;
|
2004-04-02 20:53:37 +00:00
|
|
|
|
2004-03-03 23:03:14 +00:00
|
|
|
// Section B.11 - Logical Instructions, p. 106
|
2005-12-16 06:25:42 +00:00
|
|
|
def ANDrr : F3_1<2, 0b000001,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:53:33 +00:00
|
|
|
"and $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (and IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ANDri : F3_2<2, 0b000001,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
"and $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (and IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ANDNrr : F3_1<2, 0b000101,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
add andn/orn/xorn patterns. This allows us to compile this:
long %test(ubyte, short, long %X, long %Y) {
%A = xor long %X, -1
%B = and long %Y, %A
ret long %B
}
to this:
test:
save -96, %sp, %sp
andn %i4, %i2, %i0
andn %i5, %i3, %i1
restore %g0, %g0, %g0
retl
nop
instead of this:
test:
save -96, %sp, %sp
xor %i2, -1, %l0
xor %i3, -1, %l1
and %i4, %l0, %i0
and %i5, %l1, %i1
restore %g0, %g0, %g0
retl
nop
The simpleisel emits: :(
test:
save -96, %sp, %sp
or %g0, -1, %l0
or %g0, -1, %l0
or %g0, -1, %l0
or %g0, -1, %l1
xor %i2, %l0, %l0
xor %i3, %l1, %l1
and %i4, %l0, %i0
and %i5, %l1, %i1
restore %g0, %g0, %g0
retl
nop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24793 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 21:05:49 +00:00
|
|
|
"andn $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (and IntRegs:$b, (not IntRegs:$c)))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ANDNri : F3_2<2, 0b000101,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"andn $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ORrr : F3_1<2, 0b000010,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:53:33 +00:00
|
|
|
"or $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (or IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ORri : F3_2<2, 0b000010,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
"or $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (or IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ORNrr : F3_1<2, 0b000110,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
add andn/orn/xorn patterns. This allows us to compile this:
long %test(ubyte, short, long %X, long %Y) {
%A = xor long %X, -1
%B = and long %Y, %A
ret long %B
}
to this:
test:
save -96, %sp, %sp
andn %i4, %i2, %i0
andn %i5, %i3, %i1
restore %g0, %g0, %g0
retl
nop
instead of this:
test:
save -96, %sp, %sp
xor %i2, -1, %l0
xor %i3, -1, %l1
and %i4, %l0, %i0
and %i5, %l1, %i1
restore %g0, %g0, %g0
retl
nop
The simpleisel emits: :(
test:
save -96, %sp, %sp
or %g0, -1, %l0
or %g0, -1, %l0
or %g0, -1, %l0
or %g0, -1, %l1
xor %i2, %l0, %l0
xor %i3, %l1, %l1
and %i4, %l0, %i0
and %i5, %l1, %i1
restore %g0, %g0, %g0
retl
nop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24793 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 21:05:49 +00:00
|
|
|
"orn $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (or IntRegs:$b, (not IntRegs:$c)))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ORNri : F3_2<2, 0b000110,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"orn $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def XORrr : F3_1<2, 0b000011,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:53:33 +00:00
|
|
|
"xor $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (xor IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def XORri : F3_2<2, 0b000011,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
"xor $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (xor IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def XNORrr : F3_1<2, 0b000111,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
add andn/orn/xorn patterns. This allows us to compile this:
long %test(ubyte, short, long %X, long %Y) {
%A = xor long %X, -1
%B = and long %Y, %A
ret long %B
}
to this:
test:
save -96, %sp, %sp
andn %i4, %i2, %i0
andn %i5, %i3, %i1
restore %g0, %g0, %g0
retl
nop
instead of this:
test:
save -96, %sp, %sp
xor %i2, -1, %l0
xor %i3, -1, %l1
and %i4, %l0, %i0
and %i5, %l1, %i1
restore %g0, %g0, %g0
retl
nop
The simpleisel emits: :(
test:
save -96, %sp, %sp
or %g0, -1, %l0
or %g0, -1, %l0
or %g0, -1, %l0
or %g0, -1, %l1
xor %i2, %l0, %l0
xor %i3, %l1, %l1
and %i4, %l0, %i0
and %i5, %l1, %i1
restore %g0, %g0, %g0
retl
nop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24793 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 21:05:49 +00:00
|
|
|
"xnor $b, $c, $dst",
|
2006-01-11 07:14:01 +00:00
|
|
|
[(set IntRegs:$dst, (not (xor IntRegs:$b, IntRegs:$c)))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def XNORri : F3_2<2, 0b000111,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"xnor $b, $c, $dst", []>;
|
2004-03-03 23:03:14 +00:00
|
|
|
|
|
|
|
// Section B.12 - Shift Instructions, p. 107
|
2005-12-16 06:25:42 +00:00
|
|
|
def SLLrr : F3_1<2, 0b100101,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 19:07:57 +00:00
|
|
|
"sll $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (shl IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SLLri : F3_2<2, 0b100101,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 19:07:57 +00:00
|
|
|
"sll $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (shl IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SRLrr : F3_1<2, 0b100110,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 19:07:57 +00:00
|
|
|
"srl $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (srl IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SRLri : F3_2<2, 0b100110,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 19:07:57 +00:00
|
|
|
"srl $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (srl IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SRArr : F3_1<2, 0b100111,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 19:07:57 +00:00
|
|
|
"sra $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (sra IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SRAri : F3_2<2, 0b100111,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 19:07:57 +00:00
|
|
|
"sra $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (sra IntRegs:$b, simm13:$c))]>;
|
2004-03-03 23:03:14 +00:00
|
|
|
|
|
|
|
// Section B.13 - Add Instructions, p. 108
|
2005-12-16 06:25:42 +00:00
|
|
|
def ADDrr : F3_1<2, 0b000000,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:53:33 +00:00
|
|
|
"add $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (add IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ADDri : F3_2<2, 0b000000,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
"add $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (add IntRegs:$b, simm13:$c))]>;
|
2006-02-10 07:35:42 +00:00
|
|
|
|
|
|
|
// "LEA" forms of add (patterns to make tblgen happy)
|
|
|
|
def LEA_ADDri : F3_2<2, 0b000000,
|
|
|
|
(ops IntRegs:$dst, MEMri:$addr),
|
|
|
|
"add ${addr:arith}, $dst",
|
|
|
|
[(set IntRegs:$dst, ADDRri:$addr)]>;
|
|
|
|
|
2005-12-16 06:25:42 +00:00
|
|
|
def ADDCCrr : F3_1<2, 0b010000,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2006-02-17 05:43:56 +00:00
|
|
|
"addcc $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (addc IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ADDCCri : F3_2<2, 0b010000,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2006-02-17 05:43:56 +00:00
|
|
|
"addcc $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (addc IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ADDXrr : F3_1<2, 0b001000,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2006-02-17 05:43:56 +00:00
|
|
|
"addx $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (adde IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def ADDXri : F3_2<2, 0b001000,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2006-02-17 05:43:56 +00:00
|
|
|
"addx $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (adde IntRegs:$b, simm13:$c))]>;
|
2004-03-03 23:03:14 +00:00
|
|
|
|
2004-03-04 04:37:45 +00:00
|
|
|
// Section B.15 - Subtract Instructions, p. 110
|
2005-12-16 06:25:42 +00:00
|
|
|
def SUBrr : F3_1<2, 0b000100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:53:33 +00:00
|
|
|
"sub $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (sub IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SUBri : F3_2<2, 0b000100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
Add some simple integer patterns. This allows us to compile this:
int %test(int %A) {
%B = add int %A, 1
%C = xor int %B, 123
ret int %C
}
into this:
test:
save -96, %sp, %sp
add %i0, 1, %l0
xor %l0, 123, %i0
restore %g0, %g0, %g0
retl
nop
for example. I guess it would make sense to add reg/reg versions too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24774 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-17 08:26:38 +00:00
|
|
|
"sub $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (sub IntRegs:$b, simm13:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SUBXrr : F3_1<2, 0b001100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2006-02-17 05:43:56 +00:00
|
|
|
"subx $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (sube IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SUBXri : F3_2<2, 0b001100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2006-02-17 05:43:56 +00:00
|
|
|
"subx $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (sube IntRegs:$b, simm13:$c))]>;
|
2005-12-17 21:13:50 +00:00
|
|
|
def SUBCCrr : F3_1<2, 0b010100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2006-01-11 07:49:38 +00:00
|
|
|
"subcc $b, $c, $dst",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set IntRegs:$dst, (SPcmpicc IntRegs:$b, IntRegs:$c))]>;
|
2005-12-17 21:13:50 +00:00
|
|
|
def SUBCCri : F3_2<2, 0b010100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2006-01-11 07:49:38 +00:00
|
|
|
"subcc $b, $c, $dst",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set IntRegs:$dst, (SPcmpicc IntRegs:$b, simm13:$c))]>;
|
2005-12-17 21:13:50 +00:00
|
|
|
def SUBXCCrr: F3_1<2, 0b011100,
|
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"subxcc $b, $c, $dst", []>;
|
2004-03-04 04:37:45 +00:00
|
|
|
|
2004-03-16 22:37:13 +00:00
|
|
|
// Section B.18 - Multiply Instructions, p. 113
|
2005-12-16 06:25:42 +00:00
|
|
|
def UMULrr : F3_1<2, 0b001010,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:49:14 +00:00
|
|
|
"umul $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def UMULri : F3_2<2, 0b001010,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"umul $b, $c, $dst", []>;
|
2006-02-09 05:06:36 +00:00
|
|
|
|
2005-12-16 06:25:42 +00:00
|
|
|
def SMULrr : F3_1<2, 0b001011,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 22:22:53 +00:00
|
|
|
"smul $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (mul IntRegs:$b, IntRegs:$c))]>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SMULri : F3_2<2, 0b001011,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 22:22:53 +00:00
|
|
|
"smul $b, $c, $dst",
|
|
|
|
[(set IntRegs:$dst, (mul IntRegs:$b, simm13:$c))]>;
|
2004-03-16 22:37:13 +00:00
|
|
|
|
2006-02-09 05:06:36 +00:00
|
|
|
|
2004-04-07 04:01:00 +00:00
|
|
|
// Section B.19 - Divide Instructions, p. 115
|
2005-12-16 06:25:42 +00:00
|
|
|
def UDIVrr : F3_1<2, 0b001110,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:49:14 +00:00
|
|
|
"udiv $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def UDIVri : F3_2<2, 0b001110,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"udiv $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SDIVrr : F3_1<2, 0b001111,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:49:14 +00:00
|
|
|
"sdiv $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SDIVri : F3_2<2, 0b001111,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"sdiv $b, $c, $dst", []>;
|
2004-04-07 04:01:00 +00:00
|
|
|
|
2004-03-06 05:32:13 +00:00
|
|
|
// Section B.20 - SAVE and RESTORE, p. 117
|
2005-12-16 06:25:42 +00:00
|
|
|
def SAVErr : F3_1<2, 0b111100,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:49:14 +00:00
|
|
|
"save $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def SAVEri : F3_2<2, 0b111100,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"save $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def RESTORErr : F3_1<2, 0b111101,
|
2005-12-16 06:52:00 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, IntRegs:$c),
|
2005-12-17 18:49:14 +00:00
|
|
|
"restore $b, $c, $dst", []>;
|
2005-12-16 06:25:42 +00:00
|
|
|
def RESTOREri : F3_2<2, 0b111101,
|
2005-12-16 07:10:02 +00:00
|
|
|
(ops IntRegs:$dst, IntRegs:$b, i32imm:$c),
|
2005-12-17 08:06:43 +00:00
|
|
|
"restore $b, $c, $dst", []>;
|
2004-03-06 05:32:13 +00:00
|
|
|
|
2004-05-08 04:21:32 +00:00
|
|
|
// Section B.21 - Branch on Integer Condition Codes Instructions, p. 119
|
2004-06-17 22:34:29 +00:00
|
|
|
|
|
|
|
// conditional branch class:
|
2006-02-05 05:50:24 +00:00
|
|
|
class BranchSP<bits<4> cc, dag ops, string asmstr, list<dag> pattern>
|
2005-12-18 01:20:35 +00:00
|
|
|
: F2_2<cc, 0b010, ops, asmstr, pattern> {
|
2004-06-17 22:34:29 +00:00
|
|
|
let isBranch = 1;
|
|
|
|
let isTerminator = 1;
|
2004-09-30 04:04:48 +00:00
|
|
|
let hasDelaySlot = 1;
|
2005-12-26 09:11:45 +00:00
|
|
|
let noResults = 1;
|
2004-06-17 22:34:29 +00:00
|
|
|
}
|
2004-07-31 02:24:37 +00:00
|
|
|
|
|
|
|
let isBarrier = 1 in
|
2006-02-05 05:50:24 +00:00
|
|
|
def BA : BranchSP<0b1000, (ops brtarget:$dst),
|
2005-12-18 01:46:58 +00:00
|
|
|
"ba $dst",
|
|
|
|
[(br bb:$dst)]>;
|
2006-01-31 06:56:30 +00:00
|
|
|
|
|
|
|
// FIXME: the encoding for the JIT should look at the condition field.
|
2006-02-05 05:50:24 +00:00
|
|
|
def BCOND : BranchSP<0, (ops brtarget:$dst, CCOp:$cc),
|
2006-01-31 06:56:30 +00:00
|
|
|
"b$cc $dst",
|
2006-02-10 06:58:25 +00:00
|
|
|
[(SPbricc bb:$dst, imm:$cc)]>;
|
2006-01-30 07:43:04 +00:00
|
|
|
|
2004-05-08 04:21:32 +00:00
|
|
|
|
2004-07-08 09:08:22 +00:00
|
|
|
// Section B.22 - Branch on Floating-point Condition Codes Instructions, p. 121
|
|
|
|
|
|
|
|
// floating-point conditional branch class:
|
2006-02-05 05:50:24 +00:00
|
|
|
class FPBranchSP<bits<4> cc, dag ops, string asmstr, list<dag> pattern>
|
2005-12-18 01:20:35 +00:00
|
|
|
: F2_2<cc, 0b110, ops, asmstr, pattern> {
|
2004-07-08 09:08:22 +00:00
|
|
|
let isBranch = 1;
|
|
|
|
let isTerminator = 1;
|
2004-09-30 04:04:48 +00:00
|
|
|
let hasDelaySlot = 1;
|
2005-12-26 09:11:45 +00:00
|
|
|
let noResults = 1;
|
2004-07-08 09:08:22 +00:00
|
|
|
}
|
|
|
|
|
2006-01-31 06:56:30 +00:00
|
|
|
// FIXME: the encoding for the JIT should look at the condition field.
|
2006-02-05 05:50:24 +00:00
|
|
|
def FBCOND : FPBranchSP<0, (ops brtarget:$dst, CCOp:$cc),
|
2006-01-31 07:26:55 +00:00
|
|
|
"fb$cc $dst",
|
2006-02-10 06:58:25 +00:00
|
|
|
[(SPbrfcc bb:$dst, imm:$cc)]>;
|
2004-11-16 07:32:09 +00:00
|
|
|
|
|
|
|
|
2004-04-02 20:53:37 +00:00
|
|
|
// Section B.24 - Call and Link Instruction, p. 125
|
2004-03-06 05:32:13 +00:00
|
|
|
// This is the only Format 1 instruction
|
2005-12-23 22:14:32 +00:00
|
|
|
let Uses = [O0, O1, O2, O3, O4, O5],
|
2006-01-09 18:28:21 +00:00
|
|
|
hasDelaySlot = 1, isCall = 1, noResults = 1,
|
2005-12-18 15:55:15 +00:00
|
|
|
Defs = [O0, O1, O2, O3, O4, O5, O7, G1, G2, G3, G4, G5, G6, G7,
|
|
|
|
D0, D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, D12, D13, D14, D15] in {
|
2006-02-05 05:50:24 +00:00
|
|
|
def CALL : InstSP<(ops calltarget:$dst),
|
2005-12-23 22:14:32 +00:00
|
|
|
"call $dst", []> {
|
2004-09-29 20:45:05 +00:00
|
|
|
bits<30> disp;
|
|
|
|
let op = 1;
|
|
|
|
let Inst{29-0} = disp;
|
|
|
|
}
|
2005-12-23 22:14:32 +00:00
|
|
|
|
2005-12-18 15:55:15 +00:00
|
|
|
// indirect calls
|
2005-12-16 06:52:00 +00:00
|
|
|
def JMPLrr : F3_1<2, 0b111000,
|
2005-12-18 15:55:15 +00:00
|
|
|
(ops MEMrr:$ptr),
|
2005-12-19 01:22:53 +00:00
|
|
|
"call $ptr",
|
2005-12-23 22:14:32 +00:00
|
|
|
[(call ADDRrr:$ptr)]>;
|
2005-12-18 15:55:15 +00:00
|
|
|
def JMPLri : F3_2<2, 0b111000,
|
|
|
|
(ops MEMri:$ptr),
|
2005-12-19 01:22:53 +00:00
|
|
|
"call $ptr",
|
2005-12-23 22:14:32 +00:00
|
|
|
[(call ADDRri:$ptr)]>;
|
2004-09-29 20:45:05 +00:00
|
|
|
}
|
2004-02-26 00:37:12 +00:00
|
|
|
|
2005-12-17 22:22:53 +00:00
|
|
|
// Section B.28 - Read State Register Instructions
|
|
|
|
def RDY : F3_1<2, 0b101000,
|
|
|
|
(ops IntRegs:$dst),
|
2005-12-19 00:53:02 +00:00
|
|
|
"rd %y, $dst", []>;
|
2005-12-17 22:22:53 +00:00
|
|
|
|
2004-04-07 04:06:46 +00:00
|
|
|
// Section B.29 - Write State Register Instructions
|
2005-12-17 22:22:53 +00:00
|
|
|
def WRYrr : F3_1<2, 0b110000,
|
|
|
|
(ops IntRegs:$b, IntRegs:$c),
|
|
|
|
"wr $b, $c, %y", []>;
|
|
|
|
def WRYri : F3_2<2, 0b110000,
|
|
|
|
(ops IntRegs:$b, i32imm:$c),
|
|
|
|
"wr $b, $c, %y", []>;
|
2004-04-07 05:04:01 +00:00
|
|
|
|
2004-06-27 22:53:56 +00:00
|
|
|
// Convert Integer to Floating-point Instructions, p. 141
|
2005-12-17 06:32:52 +00:00
|
|
|
def FITOS : F3_3<2, 0b110100, 0b011000100,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src),
|
2005-12-18 06:59:57 +00:00
|
|
|
"fitos $src, $dst",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set FPRegs:$dst, (SPitof FPRegs:$src))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FITOD : F3_3<2, 0b110100, 0b011001000,
|
2005-12-23 05:00:16 +00:00
|
|
|
(ops DFPRegs:$dst, FPRegs:$src),
|
2005-12-18 06:59:57 +00:00
|
|
|
"fitod $src, $dst",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set DFPRegs:$dst, (SPitof FPRegs:$src))]>;
|
2004-06-27 22:53:56 +00:00
|
|
|
|
2004-10-14 19:39:35 +00:00
|
|
|
// Convert Floating-point to Integer Instructions, p. 142
|
2005-12-17 06:32:52 +00:00
|
|
|
def FSTOI : F3_3<2, 0b110100, 0b011010001,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src),
|
2005-12-18 06:59:57 +00:00
|
|
|
"fstoi $src, $dst",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set FPRegs:$dst, (SPftoi FPRegs:$src))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FDTOI : F3_3<2, 0b110100, 0b011010010,
|
2005-12-23 05:00:16 +00:00
|
|
|
(ops FPRegs:$dst, DFPRegs:$src),
|
2005-12-18 06:59:57 +00:00
|
|
|
"fdtoi $src, $dst",
|
2006-02-05 05:50:24 +00:00
|
|
|
[(set FPRegs:$dst, (SPftoi DFPRegs:$src))]>;
|
2004-10-14 19:39:35 +00:00
|
|
|
|
2004-06-24 21:22:09 +00:00
|
|
|
// Convert between Floating-point Formats Instructions, p. 143
|
2005-12-17 06:32:52 +00:00
|
|
|
def FSTOD : F3_3<2, 0b110100, 0b011001001,
|
|
|
|
(ops DFPRegs:$dst, FPRegs:$src),
|
2005-12-17 23:14:30 +00:00
|
|
|
"fstod $src, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fextend FPRegs:$src))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FDTOS : F3_3<2, 0b110100, 0b011000110,
|
|
|
|
(ops FPRegs:$dst, DFPRegs:$src),
|
2005-12-17 23:14:30 +00:00
|
|
|
"fdtos $src, $dst",
|
|
|
|
[(set FPRegs:$dst, (fround DFPRegs:$src))]>;
|
2004-06-24 21:22:09 +00:00
|
|
|
|
2004-06-18 06:28:10 +00:00
|
|
|
// Floating-point Move Instructions, p. 144
|
2005-12-17 06:32:52 +00:00
|
|
|
def FMOVS : F3_3<2, 0b110100, 0b000000001,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src),
|
2005-12-17 23:05:35 +00:00
|
|
|
"fmovs $src, $dst", []>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FNEGS : F3_3<2, 0b110100, 0b000000101,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src),
|
2005-12-17 23:20:27 +00:00
|
|
|
"fnegs $src, $dst",
|
|
|
|
[(set FPRegs:$dst, (fneg FPRegs:$src))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FABSS : F3_3<2, 0b110100, 0b000001001,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src),
|
2005-12-17 23:20:27 +00:00
|
|
|
"fabss $src, $dst",
|
|
|
|
[(set FPRegs:$dst, (fabs FPRegs:$src))]>;
|
2005-12-17 23:52:08 +00:00
|
|
|
|
2005-12-17 23:20:27 +00:00
|
|
|
|
|
|
|
// Floating-point Square Root Instructions, p.145
|
|
|
|
def FSQRTS : F3_3<2, 0b110100, 0b000101001,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src),
|
|
|
|
"fsqrts $src, $dst",
|
|
|
|
[(set FPRegs:$dst, (fsqrt FPRegs:$src))]>;
|
|
|
|
def FSQRTD : F3_3<2, 0b110100, 0b000101010,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"fsqrtd $src, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fsqrt DFPRegs:$src))]>;
|
|
|
|
|
|
|
|
|
2004-06-18 06:28:10 +00:00
|
|
|
|
2004-06-27 22:53:56 +00:00
|
|
|
// Floating-point Add and Subtract Instructions, p. 146
|
2005-12-17 06:32:52 +00:00
|
|
|
def FADDS : F3_3<2, 0b110100, 0b001000001,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src1, FPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fadds $src1, $src2, $dst",
|
|
|
|
[(set FPRegs:$dst, (fadd FPRegs:$src1, FPRegs:$src2))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FADDD : F3_3<2, 0b110100, 0b001000010,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src1, DFPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"faddd $src1, $src2, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fadd DFPRegs:$src1, DFPRegs:$src2))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FSUBS : F3_3<2, 0b110100, 0b001000101,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src1, FPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fsubs $src1, $src2, $dst",
|
|
|
|
[(set FPRegs:$dst, (fsub FPRegs:$src1, FPRegs:$src2))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FSUBD : F3_3<2, 0b110100, 0b001000110,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src1, DFPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fsubd $src1, $src2, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fsub DFPRegs:$src1, DFPRegs:$src2))]>;
|
2004-06-27 22:53:56 +00:00
|
|
|
|
|
|
|
// Floating-point Multiply and Divide Instructions, p. 147
|
2005-12-17 06:32:52 +00:00
|
|
|
def FMULS : F3_3<2, 0b110100, 0b001001001,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src1, FPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fmuls $src1, $src2, $dst",
|
|
|
|
[(set FPRegs:$dst, (fmul FPRegs:$src1, FPRegs:$src2))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FMULD : F3_3<2, 0b110100, 0b001001010,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src1, DFPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fmuld $src1, $src2, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fmul DFPRegs:$src1, DFPRegs:$src2))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FSMULD : F3_3<2, 0b110100, 0b001101001,
|
|
|
|
(ops DFPRegs:$dst, FPRegs:$src1, FPRegs:$src2),
|
2005-12-17 23:14:30 +00:00
|
|
|
"fsmuld $src1, $src2, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fmul (fextend FPRegs:$src1),
|
|
|
|
(fextend FPRegs:$src2)))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FDIVS : F3_3<2, 0b110100, 0b001001101,
|
|
|
|
(ops FPRegs:$dst, FPRegs:$src1, FPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fdivs $src1, $src2, $dst",
|
2005-12-17 23:14:30 +00:00
|
|
|
[(set FPRegs:$dst, (fdiv FPRegs:$src1, FPRegs:$src2))]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FDIVD : F3_3<2, 0b110100, 0b001001110,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src1, DFPRegs:$src2),
|
2005-12-17 23:10:46 +00:00
|
|
|
"fdivd $src1, $src2, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fdiv DFPRegs:$src1, DFPRegs:$src2))]>;
|
2004-06-24 21:22:09 +00:00
|
|
|
|
2004-07-08 09:08:22 +00:00
|
|
|
// Floating-point Compare Instructions, p. 148
|
2004-09-30 04:04:48 +00:00
|
|
|
// Note: the 2nd template arg is different for these guys.
|
|
|
|
// Note 2: the result of a FCMP is not available until the 2nd cycle
|
|
|
|
// after the instr is retired, but there is no interlock. This behavior
|
2005-12-17 06:32:52 +00:00
|
|
|
// is modelled with a forced noop after the instruction.
|
|
|
|
def FCMPS : F3_3<2, 0b110101, 0b001010001,
|
|
|
|
(ops FPRegs:$src1, FPRegs:$src2),
|
2005-12-18 01:20:35 +00:00
|
|
|
"fcmps $src1, $src2\n\tnop",
|
2006-02-10 06:58:25 +00:00
|
|
|
[(SPcmpfcc FPRegs:$src1, FPRegs:$src2)]>;
|
2005-12-17 06:32:52 +00:00
|
|
|
def FCMPD : F3_3<2, 0b110101, 0b001010010,
|
|
|
|
(ops DFPRegs:$src1, DFPRegs:$src2),
|
2005-12-18 01:20:35 +00:00
|
|
|
"fcmpd $src1, $src2\n\tnop",
|
2006-02-10 06:58:25 +00:00
|
|
|
[(SPcmpfcc DFPRegs:$src1, DFPRegs:$src2)]>;
|
2005-12-17 19:07:57 +00:00
|
|
|
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// V9 Instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// V9 Conditional Moves.
|
|
|
|
let Predicates = [HasV9], isTwoAddress = 1 in {
|
2006-01-31 06:24:29 +00:00
|
|
|
// Move Integer Register on Condition (MOVcc) p. 194 of the V9 manual.
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
// FIXME: Add instruction encodings for the JIT some day.
|
2006-01-31 06:49:09 +00:00
|
|
|
def MOVICCrr
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, IntRegs:$F, CCOp:$cc),
|
2006-01-31 06:49:09 +00:00
|
|
|
"mov$cc %icc, $F, $dst",
|
2006-01-31 06:18:16 +00:00
|
|
|
[(set IntRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselecticc IntRegs:$F, IntRegs:$T, imm:$cc))]>;
|
2006-01-31 06:49:09 +00:00
|
|
|
def MOVICCri
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, i32imm:$F, CCOp:$cc),
|
2006-01-31 06:49:09 +00:00
|
|
|
"mov$cc %icc, $F, $dst",
|
2006-01-31 06:24:29 +00:00
|
|
|
[(set IntRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselecticc simm11:$F, IntRegs:$T, imm:$cc))]>;
|
2006-01-31 06:49:09 +00:00
|
|
|
|
|
|
|
def MOVFCCrr
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, IntRegs:$F, CCOp:$cc),
|
2006-02-02 08:02:20 +00:00
|
|
|
"mov$cc %fcc0, $F, $dst",
|
2006-01-31 06:18:16 +00:00
|
|
|
[(set IntRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselectfcc IntRegs:$F, IntRegs:$T, imm:$cc))]>;
|
2006-01-31 06:49:09 +00:00
|
|
|
def MOVFCCri
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, i32imm:$F, CCOp:$cc),
|
2006-02-02 08:02:20 +00:00
|
|
|
"mov$cc %fcc0, $F, $dst",
|
2006-01-31 06:24:29 +00:00
|
|
|
[(set IntRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselectfcc simm11:$F, IntRegs:$T, imm:$cc))]>;
|
2006-01-31 07:26:55 +00:00
|
|
|
|
|
|
|
def FMOVS_ICC
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops FPRegs:$dst, FPRegs:$T, FPRegs:$F, CCOp:$cc),
|
2006-01-31 07:26:55 +00:00
|
|
|
"fmovs$cc %icc, $F, $dst",
|
|
|
|
[(set FPRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselecticc FPRegs:$F, FPRegs:$T, imm:$cc))]>;
|
2006-01-31 07:26:55 +00:00
|
|
|
def FMOVD_ICC
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops DFPRegs:$dst, DFPRegs:$T, DFPRegs:$F, CCOp:$cc),
|
2006-01-31 07:26:55 +00:00
|
|
|
"fmovd$cc %icc, $F, $dst",
|
|
|
|
[(set DFPRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselecticc DFPRegs:$F, DFPRegs:$T, imm:$cc))]>;
|
2006-01-31 07:26:55 +00:00
|
|
|
def FMOVS_FCC
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops FPRegs:$dst, FPRegs:$T, FPRegs:$F, CCOp:$cc),
|
2006-02-02 08:02:20 +00:00
|
|
|
"fmovs$cc %fcc0, $F, $dst",
|
2006-01-31 07:26:55 +00:00
|
|
|
[(set FPRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselectfcc FPRegs:$F, FPRegs:$T, imm:$cc))]>;
|
2006-01-31 07:26:55 +00:00
|
|
|
def FMOVD_FCC
|
2006-02-05 05:50:24 +00:00
|
|
|
: Pseudo<(ops DFPRegs:$dst, DFPRegs:$T, DFPRegs:$F, CCOp:$cc),
|
2006-02-02 08:02:20 +00:00
|
|
|
"fmovd$cc %fcc0, $F, $dst",
|
2006-01-31 07:26:55 +00:00
|
|
|
[(set DFPRegs:$dst,
|
2006-02-10 06:58:25 +00:00
|
|
|
(SPselectfcc DFPRegs:$F, DFPRegs:$T, imm:$cc))]>;
|
2006-01-31 07:26:55 +00:00
|
|
|
|
First step towards V9 instructions in the V8 backend, two conditional move
patterns. This allows emission of this code:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
move %icc, %i0, %i2
or %g0, %i2, %i0
restore %g0, %g0, %g0
retl
nop
instead of this:
t1:
save -96, %o6, %o6
subcc %i0, %i1, %l0
be .LBBt1_2 !
nop
.LBBt1_1: !
or %g0, %i2, %i0
.LBBt1_2: !
restore %g0, %g0, %g0
retl
nop
for this:
int %t1(int %a, int %b, int %c) {
%tmp.2 = seteq int %a, %b
%tmp3 = select bool %tmp.2, int %a, int %c
ret int %tmp3
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25809 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-30 05:35:57 +00:00
|
|
|
}
|
|
|
|
|
2006-01-30 05:48:37 +00:00
|
|
|
// Floating-Point Move Instructions, p. 164 of the V9 manual.
|
|
|
|
let Predicates = [HasV9] in {
|
|
|
|
def FMOVD : F3_3<2, 0b110100, 0b000000010,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"fmovd $src, $dst", []>;
|
|
|
|
def FNEGD : F3_3<2, 0b110100, 0b000000110,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"fnegd $src, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fneg DFPRegs:$src))]>;
|
|
|
|
def FABSD : F3_3<2, 0b110100, 0b000001010,
|
|
|
|
(ops DFPRegs:$dst, DFPRegs:$src),
|
|
|
|
"fabsd $src, $dst",
|
|
|
|
[(set DFPRegs:$dst, (fabs DFPRegs:$src))]>;
|
|
|
|
}
|
|
|
|
|
2006-01-30 06:14:02 +00:00
|
|
|
// POPCrr - This does a ctpop of a 64-bit register. As such, we have to clear
|
|
|
|
// the top 32-bits before using it. To do this clearing, we use a SLLri X,0.
|
|
|
|
def POPCrr : F3_1<2, 0b101110,
|
|
|
|
(ops IntRegs:$dst, IntRegs:$src),
|
|
|
|
"popc $src, $dst", []>, Requires<[HasV9]>;
|
|
|
|
def : Pat<(ctpop IntRegs:$src),
|
|
|
|
(POPCrr (SLLri IntRegs:$src, 0))>;
|
|
|
|
|
2005-12-17 19:07:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Non-Instruction Patterns
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Small immediates.
|
|
|
|
def : Pat<(i32 simm13:$val),
|
|
|
|
(ORri G0, imm:$val)>;
|
2005-12-17 19:41:43 +00:00
|
|
|
// Arbitrary immediates.
|
|
|
|
def : Pat<(i32 imm:$val),
|
2005-12-17 20:04:49 +00:00
|
|
|
(ORri (SETHIi (HI22 imm:$val)), (LO10 imm:$val))>;
|
2005-12-18 02:10:39 +00:00
|
|
|
|
2006-02-17 05:43:56 +00:00
|
|
|
// subc
|
|
|
|
def : Pat<(subc IntRegs:$b, IntRegs:$c),
|
|
|
|
(SUBCCrr IntRegs:$b, IntRegs:$c)>;
|
|
|
|
def : Pat<(subc IntRegs:$b, simm13:$val),
|
|
|
|
(SUBCCri IntRegs:$b, imm:$val)>;
|
|
|
|
|
2005-12-18 02:37:35 +00:00
|
|
|
// Global addresses, constant pool entries
|
2006-02-05 05:50:24 +00:00
|
|
|
def : Pat<(SPhi tglobaladdr:$in), (SETHIi tglobaladdr:$in)>;
|
|
|
|
def : Pat<(SPlo tglobaladdr:$in), (ORri G0, tglobaladdr:$in)>;
|
|
|
|
def : Pat<(SPhi tconstpool:$in), (SETHIi tconstpool:$in)>;
|
|
|
|
def : Pat<(SPlo tconstpool:$in), (ORri G0, tconstpool:$in)>;
|
2005-12-18 21:03:04 +00:00
|
|
|
|
Don't print a label for the first MBB in a function.
Compile this:
%_2E_str_8 = external global [75 x sbyte]
implementation ; Functions:
declare int %printf(sbyte*, ...)
void %test()
%tmp.101 = call int (sbyte*, ...)* %printf( sbyte* getelementptr ([75 x sbyte]* %_2E_str_8, int 0, int 0) ) ; <int> [#uses=0]
unreachable
}
to this:
main_endif_2E_8:
save -96, %o6, %o6
sethi %hi(_2E_str_8), %l0
add %l0, %lo(_2E_str_8), %o0
call printf
nop
instead of this:
main_endif_2E_8:
save -96, %o6, %o6
sethi %hi(_2E_str_8), %l0
or %g0, %lo(_2E_str_8), %l1 ;; extra instruction
add %l1, %l0, %o0
call printf
nop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25335 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-15 09:26:27 +00:00
|
|
|
// Add reg, lo. This is used when taking the addr of a global/constpool entry.
|
2006-02-05 05:50:24 +00:00
|
|
|
def : Pat<(add IntRegs:$r, (SPlo tglobaladdr:$in)),
|
Don't print a label for the first MBB in a function.
Compile this:
%_2E_str_8 = external global [75 x sbyte]
implementation ; Functions:
declare int %printf(sbyte*, ...)
void %test()
%tmp.101 = call int (sbyte*, ...)* %printf( sbyte* getelementptr ([75 x sbyte]* %_2E_str_8, int 0, int 0) ) ; <int> [#uses=0]
unreachable
}
to this:
main_endif_2E_8:
save -96, %o6, %o6
sethi %hi(_2E_str_8), %l0
add %l0, %lo(_2E_str_8), %o0
call printf
nop
instead of this:
main_endif_2E_8:
save -96, %o6, %o6
sethi %hi(_2E_str_8), %l0
or %g0, %lo(_2E_str_8), %l1 ;; extra instruction
add %l1, %l0, %o0
call printf
nop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25335 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-15 09:26:27 +00:00
|
|
|
(ADDri IntRegs:$r, tglobaladdr:$in)>;
|
2006-02-05 05:50:24 +00:00
|
|
|
def : Pat<(add IntRegs:$r, (SPlo tconstpool:$in)),
|
Don't print a label for the first MBB in a function.
Compile this:
%_2E_str_8 = external global [75 x sbyte]
implementation ; Functions:
declare int %printf(sbyte*, ...)
void %test()
%tmp.101 = call int (sbyte*, ...)* %printf( sbyte* getelementptr ([75 x sbyte]* %_2E_str_8, int 0, int 0) ) ; <int> [#uses=0]
unreachable
}
to this:
main_endif_2E_8:
save -96, %o6, %o6
sethi %hi(_2E_str_8), %l0
add %l0, %lo(_2E_str_8), %o0
call printf
nop
instead of this:
main_endif_2E_8:
save -96, %o6, %o6
sethi %hi(_2E_str_8), %l0
or %g0, %lo(_2E_str_8), %l1 ;; extra instruction
add %l1, %l0, %o0
call printf
nop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25335 91177308-0d34-0410-b5e6-96231b3b80d8
2006-01-15 09:26:27 +00:00
|
|
|
(ADDri IntRegs:$r, tconstpool:$in)>;
|
|
|
|
|
2005-12-23 22:14:32 +00:00
|
|
|
// Calls:
|
|
|
|
def : Pat<(call tglobaladdr:$dst),
|
|
|
|
(CALL tglobaladdr:$dst)>;
|
2006-02-10 07:35:42 +00:00
|
|
|
def : Pat<(call texternalsym:$dst),
|
|
|
|
(CALL texternalsym:$dst)>;
|
2005-12-23 22:14:32 +00:00
|
|
|
|
2006-01-11 07:15:43 +00:00
|
|
|
def : Pat<(ret), (RETL)>;
|
2005-12-18 23:18:37 +00:00
|
|
|
|
|
|
|
// Map integer extload's to zextloads.
|
|
|
|
def : Pat<(i32 (extload ADDRrr:$src, i1)), (LDUBrr ADDRrr:$src)>;
|
|
|
|
def : Pat<(i32 (extload ADDRri:$src, i1)), (LDUBri ADDRri:$src)>;
|
|
|
|
def : Pat<(i32 (extload ADDRrr:$src, i8)), (LDUBrr ADDRrr:$src)>;
|
|
|
|
def : Pat<(i32 (extload ADDRri:$src, i8)), (LDUBri ADDRri:$src)>;
|
|
|
|
def : Pat<(i32 (extload ADDRrr:$src, i16)), (LDUHrr ADDRrr:$src)>;
|
|
|
|
def : Pat<(i32 (extload ADDRri:$src, i16)), (LDUHri ADDRri:$src)>;
|
2005-12-19 00:19:21 +00:00
|
|
|
|
2005-12-19 01:43:04 +00:00
|
|
|
// zextload bool -> zextload byte
|
|
|
|
def : Pat<(i32 (zextload ADDRrr:$src, i1)), (LDUBrr ADDRrr:$src)>;
|
2005-12-19 01:44:58 +00:00
|
|
|
def : Pat<(i32 (zextload ADDRri:$src, i1)), (LDUBri ADDRri:$src)>;
|
2005-12-19 01:43:04 +00:00
|
|
|
|
2005-12-19 00:19:21 +00:00
|
|
|
// truncstore bool -> truncstore byte.
|
|
|
|
def : Pat<(truncstore IntRegs:$src, ADDRrr:$addr, i1),
|
2005-12-19 02:06:50 +00:00
|
|
|
(STBrr ADDRrr:$addr, IntRegs:$src)>;
|
2005-12-19 00:19:21 +00:00
|
|
|
def : Pat<(truncstore IntRegs:$src, ADDRri:$addr, i1),
|
2005-12-19 02:06:50 +00:00
|
|
|
(STBri ADDRri:$addr, IntRegs:$src)>;
|