This patch implements atomic intrinsics atomic.load.add (sub,and,or,xor,
[oota-llvm.git] / lib / Target / Mips / MipsISelLowering.h
1 //===-- MipsISelLowering.h - Mips DAG Lowering Interface --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that Mips uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef MipsISELLOWERING_H
16 #define MipsISELLOWERING_H
17
18 #include "llvm/CodeGen/SelectionDAG.h"
19 #include "llvm/Target/TargetLowering.h"
20 #include "Mips.h"
21 #include "MipsSubtarget.h"
22
23 namespace llvm {
24   namespace MipsISD {
25     enum NodeType {
26       // Start the numbering from where ISD NodeType finishes.
27       FIRST_NUMBER = ISD::BUILTIN_OP_END,
28
29       // Jump and link (call)
30       JmpLink,
31
32       // Get the Higher 16 bits from a 32-bit immediate
33       // No relation with Mips Hi register
34       Hi,
35
36       // Get the Lower 16 bits from a 32-bit immediate
37       // No relation with Mips Lo register
38       Lo,
39
40       // Handle gp_rel (small data/bss sections) relocation.
41       GPRel,
42
43       // General Dynamic TLS
44       TlsGd,
45
46       // Local Exec TLS
47       TprelHi,
48       TprelLo,
49
50       // Thread Pointer
51       ThreadPointer,
52
53       // Floating Point Branch Conditional
54       FPBrcond,
55
56       // Floating Point Compare
57       FPCmp,
58
59       // Floating Point Conditional Moves
60       CMovFP_T,
61       CMovFP_F,
62
63       // Floating Point Rounding
64       FPRound,
65
66       // Return
67       Ret,
68
69       // MAdd/Sub nodes
70       MAdd,
71       MAddu,
72       MSub,
73       MSubu,
74
75       // DivRem(u)
76       DivRem,
77       DivRemU,
78
79       BuildPairF64,
80       ExtractElementF64,
81
82       WrapperPIC
83     };
84   }
85
86   //===--------------------------------------------------------------------===//
87   // TargetLowering Implementation
88   //===--------------------------------------------------------------------===//
89
90   class MipsTargetLowering : public TargetLowering  {
91   public:
92     explicit MipsTargetLowering(MipsTargetMachine &TM);
93
94     /// LowerOperation - Provide custom lowering hooks for some operations.
95     virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
96
97     /// getTargetNodeName - This method returns the name of a target specific
98     //  DAG node.
99     virtual const char *getTargetNodeName(unsigned Opcode) const;
100
101     /// getSetCCResultType - get the ISD::SETCC result ValueType
102     MVT::SimpleValueType getSetCCResultType(EVT VT) const;
103
104     virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
105   private:
106     // Subtarget Info
107     const MipsSubtarget *Subtarget;
108
109
110     // Lower Operand helpers
111     SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
112                             CallingConv::ID CallConv, bool isVarArg,
113                             const SmallVectorImpl<ISD::InputArg> &Ins,
114                             DebugLoc dl, SelectionDAG &DAG,
115                             SmallVectorImpl<SDValue> &InVals) const;
116
117     // Lower Operand specifics
118     SDValue LowerBRCOND(SDValue Op, SelectionDAG &DAG) const;
119     SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
120     SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
121     SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
122     SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
123     SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
124     SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
125     SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
126     SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
127     SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const;
128
129     virtual SDValue
130       LowerFormalArguments(SDValue Chain,
131                            CallingConv::ID CallConv, bool isVarArg,
132                            const SmallVectorImpl<ISD::InputArg> &Ins,
133                            DebugLoc dl, SelectionDAG &DAG,
134                            SmallVectorImpl<SDValue> &InVals) const;
135
136     virtual SDValue
137       LowerCall(SDValue Chain, SDValue Callee,
138                 CallingConv::ID CallConv, bool isVarArg,
139                 bool &isTailCall,
140                 const SmallVectorImpl<ISD::OutputArg> &Outs,
141                 const SmallVectorImpl<SDValue> &OutVals,
142                 const SmallVectorImpl<ISD::InputArg> &Ins,
143                 DebugLoc dl, SelectionDAG &DAG,
144                 SmallVectorImpl<SDValue> &InVals) const;
145
146     virtual SDValue
147       LowerReturn(SDValue Chain,
148                   CallingConv::ID CallConv, bool isVarArg,
149                   const SmallVectorImpl<ISD::OutputArg> &Outs,
150                   const SmallVectorImpl<SDValue> &OutVals,
151                   DebugLoc dl, SelectionDAG &DAG) const;
152
153     virtual MachineBasicBlock *
154       EmitInstrWithCustomInserter(MachineInstr *MI,
155                                   MachineBasicBlock *MBB) const;
156
157     // Inline asm support
158     ConstraintType getConstraintType(const std::string &Constraint) const;
159
160     /// Examine constraint string and operand type and determine a weight value.
161     /// The operand object must already have been set up with the operand type.
162     ConstraintWeight getSingleConstraintMatchWeight(
163       AsmOperandInfo &info, const char *constraint) const;
164
165     std::pair<unsigned, const TargetRegisterClass*>
166               getRegForInlineAsmConstraint(const std::string &Constraint,
167               EVT VT) const;
168
169     std::vector<unsigned>
170     getRegClassForInlineAsmConstraint(const std::string &Constraint,
171               EVT VT) const;
172
173     virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
174
175     /// isFPImmLegal - Returns true if the target can instruction select the
176     /// specified FP immediate natively. If false, the legalizer will
177     /// materialize the FP immediate as a load from a constant pool.
178     virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
179
180     MachineBasicBlock *EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
181                     unsigned Size, unsigned BinOpcode, bool Nand = false) const;
182     MachineBasicBlock *EmitAtomicBinaryPartword(MachineInstr *MI,
183                     MachineBasicBlock *BB, unsigned Size, unsigned BinOpcode,
184                     bool Nand = false) const;
185     MachineBasicBlock *EmitAtomicCmpSwap(MachineInstr *MI,
186                                   MachineBasicBlock *BB, unsigned Size) const;
187     MachineBasicBlock *EmitAtomicCmpSwapPartword(MachineInstr *MI,
188                                   MachineBasicBlock *BB, unsigned Size) const;
189   };
190 }
191
192 #endif // MipsISELLOWERING_H