1 //===-- SparcISelLowering.h - Sparc DAG Lowering Interface ------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the interfaces that Sparc uses to lower LLVM code into a
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_LIB_TARGET_SPARC_SPARCISELLOWERING_H
16 #define LLVM_LIB_TARGET_SPARC_SPARCISELLOWERING_H
19 #include "llvm/CodeGen/TargetLowering.h"
25 enum NodeType
: unsigned {
26 FIRST_NUMBER
= ISD::BUILTIN_OP_END
,
27 CMPICC
, // Compare two GPR operands, set icc+xcc.
28 CMPFCC
, // Compare two FP operands, set fcc.
29 BRICC
, // Branch to dest on icc condition
30 BRXCC
, // Branch to dest on xcc condition (64-bit only).
31 BRFCC
, // Branch to dest on fcc condition
32 SELECT_ICC
, // Select between two values using the current ICC flags.
33 SELECT_XCC
, // Select between two values using the current XCC flags.
34 SELECT_FCC
, // Select between two values using the current FCC flags.
36 Hi
, Lo
, // Hi/Lo operations, typically on a global address.
38 FTOI
, // FP to Int within a FP register.
39 ITOF
, // Int to FP within a FP register.
40 FTOX
, // FP to Int64 within a FP register.
41 XTOF
, // Int64 to FP within a FP register.
43 CALL
, // A call instruction.
44 RET_FLAG
, // Return with a flag operand.
45 GLOBAL_BASE_REG
, // Global base reg for PIC.
46 FLUSHW
, // FLUSH register windows to stack.
48 TLS_ADD
, // For Thread Local Storage (TLS).
54 class SparcTargetLowering
: public TargetLowering
{
55 const SparcSubtarget
*Subtarget
;
57 SparcTargetLowering(const TargetMachine
&TM
, const SparcSubtarget
&STI
);
58 SDValue
LowerOperation(SDValue Op
, SelectionDAG
&DAG
) const override
;
60 bool useSoftFloat() const override
;
62 /// computeKnownBitsForTargetNode - Determine which of the bits specified
63 /// in Mask are known to be either zero or one and return them in the
64 /// KnownZero/KnownOne bitsets.
65 void computeKnownBitsForTargetNode(const SDValue Op
,
67 const APInt
&DemandedElts
,
68 const SelectionDAG
&DAG
,
69 unsigned Depth
= 0) const override
;
72 EmitInstrWithCustomInserter(MachineInstr
&MI
,
73 MachineBasicBlock
*MBB
) const override
;
75 const char *getTargetNodeName(unsigned Opcode
) const override
;
77 ConstraintType
getConstraintType(StringRef Constraint
) const override
;
79 getSingleConstraintMatchWeight(AsmOperandInfo
&info
,
80 const char *constraint
) const override
;
81 void LowerAsmOperandForConstraint(SDValue Op
,
82 std::string
&Constraint
,
83 std::vector
<SDValue
> &Ops
,
84 SelectionDAG
&DAG
) const override
;
87 getInlineAsmMemConstraint(StringRef ConstraintCode
) const override
{
88 if (ConstraintCode
== "o")
89 return InlineAsm::Constraint_o
;
90 return TargetLowering::getInlineAsmMemConstraint(ConstraintCode
);
93 std::pair
<unsigned, const TargetRegisterClass
*>
94 getRegForInlineAsmConstraint(const TargetRegisterInfo
*TRI
,
95 StringRef Constraint
, MVT VT
) const override
;
97 bool isOffsetFoldingLegal(const GlobalAddressSDNode
*GA
) const override
;
98 MVT
getScalarShiftAmountTy(const DataLayout
&, EVT
) const override
{
102 unsigned getRegisterByName(const char* RegName
, EVT VT
,
103 SelectionDAG
&DAG
) const override
;
105 /// If a physical register, this returns the register that receives the
106 /// exception address on entry to an EH pad.
108 getExceptionPointerRegister(const Constant
*PersonalityFn
) const override
{
112 /// If a physical register, this returns the register that receives the
113 /// exception typeid on entry to a landing pad.
115 getExceptionSelectorRegister(const Constant
*PersonalityFn
) const override
{
119 /// Override to support customized stack guard loading.
120 bool useLoadStackGuardNode() const override
;
121 void insertSSPDeclarations(Module
&M
) const override
;
123 /// getSetCCResultType - Return the ISD::SETCC ValueType
124 EVT
getSetCCResultType(const DataLayout
&DL
, LLVMContext
&Context
,
125 EVT VT
) const override
;
128 LowerFormalArguments(SDValue Chain
, CallingConv::ID CallConv
, bool isVarArg
,
129 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
130 const SDLoc
&dl
, SelectionDAG
&DAG
,
131 SmallVectorImpl
<SDValue
> &InVals
) const override
;
132 SDValue
LowerFormalArguments_32(SDValue Chain
, CallingConv::ID CallConv
,
134 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
135 const SDLoc
&dl
, SelectionDAG
&DAG
,
136 SmallVectorImpl
<SDValue
> &InVals
) const;
137 SDValue
LowerFormalArguments_64(SDValue Chain
, CallingConv::ID CallConv
,
139 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
140 const SDLoc
&dl
, SelectionDAG
&DAG
,
141 SmallVectorImpl
<SDValue
> &InVals
) const;
144 LowerCall(TargetLowering::CallLoweringInfo
&CLI
,
145 SmallVectorImpl
<SDValue
> &InVals
) const override
;
146 SDValue
LowerCall_32(TargetLowering::CallLoweringInfo
&CLI
,
147 SmallVectorImpl
<SDValue
> &InVals
) const;
148 SDValue
LowerCall_64(TargetLowering::CallLoweringInfo
&CLI
,
149 SmallVectorImpl
<SDValue
> &InVals
) const;
151 SDValue
LowerReturn(SDValue Chain
, CallingConv::ID CallConv
, bool isVarArg
,
152 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
153 const SmallVectorImpl
<SDValue
> &OutVals
,
154 const SDLoc
&dl
, SelectionDAG
&DAG
) const override
;
155 SDValue
LowerReturn_32(SDValue Chain
, CallingConv::ID CallConv
,
157 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
158 const SmallVectorImpl
<SDValue
> &OutVals
,
159 const SDLoc
&DL
, SelectionDAG
&DAG
) const;
160 SDValue
LowerReturn_64(SDValue Chain
, CallingConv::ID CallConv
,
162 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
163 const SmallVectorImpl
<SDValue
> &OutVals
,
164 const SDLoc
&DL
, SelectionDAG
&DAG
) const;
166 SDValue
LowerGlobalAddress(SDValue Op
, SelectionDAG
&DAG
) const;
167 SDValue
LowerGlobalTLSAddress(SDValue Op
, SelectionDAG
&DAG
) const;
168 SDValue
LowerConstantPool(SDValue Op
, SelectionDAG
&DAG
) const;
169 SDValue
LowerBlockAddress(SDValue Op
, SelectionDAG
&DAG
) const;
171 SDValue
withTargetFlags(SDValue Op
, unsigned TF
, SelectionDAG
&DAG
) const;
172 SDValue
makeHiLoPair(SDValue Op
, unsigned HiTF
, unsigned LoTF
,
173 SelectionDAG
&DAG
) const;
174 SDValue
makeAddress(SDValue Op
, SelectionDAG
&DAG
) const;
176 SDValue
LowerF128_LibCallArg(SDValue Chain
, ArgListTy
&Args
, SDValue Arg
,
177 const SDLoc
&DL
, SelectionDAG
&DAG
) const;
178 SDValue
LowerF128Op(SDValue Op
, SelectionDAG
&DAG
,
179 const char *LibFuncName
,
180 unsigned numArgs
) const;
181 SDValue
LowerF128Compare(SDValue LHS
, SDValue RHS
, unsigned &SPCC
,
182 const SDLoc
&DL
, SelectionDAG
&DAG
) const;
184 SDValue
LowerINTRINSIC_WO_CHAIN(SDValue Op
, SelectionDAG
&DAG
) const;
186 SDValue
PerformBITCASTCombine(SDNode
*N
, DAGCombinerInfo
&DCI
) const;
188 SDValue
bitcastConstantFPToInt(ConstantFPSDNode
*C
, const SDLoc
&DL
,
189 SelectionDAG
&DAG
) const;
191 SDValue
PerformDAGCombine(SDNode
*N
, DAGCombinerInfo
&DCI
) const override
;
193 bool ShouldShrinkFPConstant(EVT VT
) const override
{
194 // Do not shrink FP constpool if VT == MVT::f128.
195 // (ldd, call _Q_fdtoq) is more expensive than two ldds.
196 return VT
!= MVT::f128
;
199 bool shouldInsertFencesForAtomic(const Instruction
*I
) const override
{
200 // FIXME: We insert fences for each atomics and generate
201 // sub-optimal code for PSO/TSO. (Approximately nobody uses any
202 // mode but TSO, which makes this even more silly)
206 AtomicExpansionKind
shouldExpandAtomicRMWInIR(AtomicRMWInst
*AI
) const override
;
208 void ReplaceNodeResults(SDNode
*N
,
209 SmallVectorImpl
<SDValue
>& Results
,
210 SelectionDAG
&DAG
) const override
;
212 MachineBasicBlock
*expandSelectCC(MachineInstr
&MI
, MachineBasicBlock
*BB
,
213 unsigned BROpcode
) const;
215 } // end namespace llvm
217 #endif // SPARC_ISELLOWERING_H