1 //===-- MipsISelLowering.h - Mips 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 Mips uses to lower LLVM code into a
13 //===----------------------------------------------------------------------===//
15 #ifndef MipsISELLOWERING_H
16 #define MipsISELLOWERING_H
18 #include "llvm/CodeGen/SelectionDAG.h"
19 #include "llvm/Target/TargetLowering.h"
21 #include "MipsSubtarget.h"
26 // Start the numbering from where ISD NodeType finishes.
27 FIRST_NUMBER
= ISD::BUILTIN_OP_END
,
29 // Jump and link (call)
32 // Get the Higher 16 bits from a 32-bit immediate
33 // No relation with Mips Hi register
36 // Get the Lower 16 bits from a 32-bit immediate
37 // No relation with Mips Lo register
40 // Handle gp_rel (small data/bss sections) relocation.
43 // General Dynamic TLS
53 // Floating Point Branch Conditional
56 // Floating Point Compare
59 // Floating Point Conditional Moves
63 // Floating Point Rounding
88 //===--------------------------------------------------------------------===//
89 // TargetLowering Implementation
90 //===--------------------------------------------------------------------===//
92 class MipsTargetLowering
: public TargetLowering
{
94 explicit MipsTargetLowering(MipsTargetMachine
&TM
);
96 /// LowerOperation - Provide custom lowering hooks for some operations.
97 virtual SDValue
LowerOperation(SDValue Op
, SelectionDAG
&DAG
) const;
99 /// getTargetNodeName - This method returns the name of a target specific
101 virtual const char *getTargetNodeName(unsigned Opcode
) const;
103 /// getSetCCResultType - get the ISD::SETCC result ValueType
104 MVT::SimpleValueType
getSetCCResultType(EVT VT
) const;
106 virtual SDValue
PerformDAGCombine(SDNode
*N
, DAGCombinerInfo
&DCI
) const;
109 const MipsSubtarget
*Subtarget
;
112 // Lower Operand helpers
113 SDValue
LowerCallResult(SDValue Chain
, SDValue InFlag
,
114 CallingConv::ID CallConv
, bool isVarArg
,
115 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
116 DebugLoc dl
, SelectionDAG
&DAG
,
117 SmallVectorImpl
<SDValue
> &InVals
) const;
119 // Lower Operand specifics
120 SDValue
LowerBRCOND(SDValue Op
, SelectionDAG
&DAG
) const;
121 SDValue
LowerConstantPool(SDValue Op
, SelectionDAG
&DAG
) const;
122 SDValue
LowerDYNAMIC_STACKALLOC(SDValue Op
, SelectionDAG
&DAG
) const;
123 SDValue
LowerGlobalAddress(SDValue Op
, SelectionDAG
&DAG
) const;
124 SDValue
LowerBlockAddress(SDValue Op
, SelectionDAG
&DAG
) const;
125 SDValue
LowerGlobalTLSAddress(SDValue Op
, SelectionDAG
&DAG
) const;
126 SDValue
LowerJumpTable(SDValue Op
, SelectionDAG
&DAG
) const;
127 SDValue
LowerSELECT(SDValue Op
, SelectionDAG
&DAG
) const;
128 SDValue
LowerVASTART(SDValue Op
, SelectionDAG
&DAG
) const;
129 SDValue
LowerFCOPYSIGN(SDValue Op
, SelectionDAG
&DAG
) const;
130 SDValue
LowerFRAMEADDR(SDValue Op
, SelectionDAG
&DAG
) const;
133 LowerFormalArguments(SDValue Chain
,
134 CallingConv::ID CallConv
, bool isVarArg
,
135 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
136 DebugLoc dl
, SelectionDAG
&DAG
,
137 SmallVectorImpl
<SDValue
> &InVals
) const;
140 LowerCall(SDValue Chain
, SDValue Callee
,
141 CallingConv::ID CallConv
, bool isVarArg
,
143 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
144 const SmallVectorImpl
<SDValue
> &OutVals
,
145 const SmallVectorImpl
<ISD::InputArg
> &Ins
,
146 DebugLoc dl
, SelectionDAG
&DAG
,
147 SmallVectorImpl
<SDValue
> &InVals
) const;
150 LowerReturn(SDValue Chain
,
151 CallingConv::ID CallConv
, bool isVarArg
,
152 const SmallVectorImpl
<ISD::OutputArg
> &Outs
,
153 const SmallVectorImpl
<SDValue
> &OutVals
,
154 DebugLoc dl
, SelectionDAG
&DAG
) const;
156 virtual MachineBasicBlock
*
157 EmitInstrWithCustomInserter(MachineInstr
*MI
,
158 MachineBasicBlock
*MBB
) const;
160 // Inline asm support
161 ConstraintType
getConstraintType(const std::string
&Constraint
) const;
163 /// Examine constraint string and operand type and determine a weight value.
164 /// The operand object must already have been set up with the operand type.
165 ConstraintWeight
getSingleConstraintMatchWeight(
166 AsmOperandInfo
&info
, const char *constraint
) const;
168 std::pair
<unsigned, const TargetRegisterClass
*>
169 getRegForInlineAsmConstraint(const std::string
&Constraint
,
172 virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode
*GA
) const;
174 /// isFPImmLegal - Returns true if the target can instruction select the
175 /// specified FP immediate natively. If false, the legalizer will
176 /// materialize the FP immediate as a load from a constant pool.
177 virtual bool isFPImmLegal(const APFloat
&Imm
, EVT VT
) const;
179 MachineBasicBlock
*EmitAtomicBinary(MachineInstr
*MI
, MachineBasicBlock
*BB
,
180 unsigned Size
, unsigned BinOpcode
, bool Nand
= false) const;
181 MachineBasicBlock
*EmitAtomicBinaryPartword(MachineInstr
*MI
,
182 MachineBasicBlock
*BB
, unsigned Size
, unsigned BinOpcode
,
183 bool Nand
= false) const;
184 MachineBasicBlock
*EmitAtomicCmpSwap(MachineInstr
*MI
,
185 MachineBasicBlock
*BB
, unsigned Size
) const;
186 MachineBasicBlock
*EmitAtomicCmpSwapPartword(MachineInstr
*MI
,
187 MachineBasicBlock
*BB
, unsigned Size
) const;
191 #endif // MipsISELLOWERING_H