Use a target-specific VMOVIMM DAG node instead of BUILD_VECTOR to represent
[oota-llvm.git] / lib / Target / ARM / ARMISelLowering.h
1 //===-- ARMISelLowering.h - ARM 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 ARM uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef ARMISELLOWERING_H
16 #define ARMISELLOWERING_H
17
18 #include "ARMSubtarget.h"
19 #include "llvm/Target/TargetLowering.h"
20 #include "llvm/CodeGen/SelectionDAG.h"
21 #include "llvm/CodeGen/CallingConvLower.h"
22 #include <vector>
23
24 namespace llvm {
25   class ARMConstantPoolValue;
26
27   namespace ARMISD {
28     // ARM Specific DAG Nodes
29     enum NodeType {
30       // Start the numbering where the builtin ops and target ops leave off.
31       FIRST_NUMBER = ISD::BUILTIN_OP_END,
32
33       Wrapper,      // Wrapper - A wrapper node for TargetConstantPool,
34                     // TargetExternalSymbol, and TargetGlobalAddress.
35       WrapperJT,    // WrapperJT - A wrapper node for TargetJumpTable
36
37       CALL,         // Function call.
38       CALL_PRED,    // Function call that's predicable.
39       CALL_NOLINK,  // Function call with branch not branch-and-link.
40       tCALL,        // Thumb function call.
41       BRCOND,       // Conditional branch.
42       BR_JT,        // Jumptable branch.
43       BR2_JT,       // Jumptable branch (2 level - jumptable entry is a jump).
44       RET_FLAG,     // Return with a flag operand.
45
46       PIC_ADD,      // Add with a PC operand and a PIC label.
47
48       CMP,          // ARM compare instructions.
49       CMPZ,         // ARM compare that sets only Z flag.
50       CMPFP,        // ARM VFP compare instruction, sets FPSCR.
51       CMPFPw0,      // ARM VFP compare against zero instruction, sets FPSCR.
52       FMSTAT,       // ARM fmstat instruction.
53       CMOV,         // ARM conditional move instructions.
54       CNEG,         // ARM conditional negate instructions.
55
56       BCC_i64,
57
58       RBIT,         // ARM bitreverse instruction
59
60       FTOSI,        // FP to sint within a FP register.
61       FTOUI,        // FP to uint within a FP register.
62       SITOF,        // sint to FP within a FP register.
63       UITOF,        // uint to FP within a FP register.
64
65       SRL_FLAG,     // V,Flag = srl_flag X -> srl X, 1 + save carry out.
66       SRA_FLAG,     // V,Flag = sra_flag X -> sra X, 1 + save carry out.
67       RRX,          // V = RRX X, Flag     -> srl X, 1 + shift in carry flag.
68
69       VMOVRRD,      // double to two gprs.
70       VMOVDRR,      // Two gprs to double.
71
72       EH_SJLJ_SETJMP,    // SjLj exception handling setjmp.
73       EH_SJLJ_LONGJMP,   // SjLj exception handling longjmp.
74
75       TC_RETURN,    // Tail call return pseudo.
76
77       THREAD_POINTER,
78
79       DYN_ALLOC,    // Dynamic allocation on the stack.
80
81       MEMBARRIER,   // Memory barrier
82       SYNCBARRIER,  // Memory sync barrier
83
84       VCEQ,         // Vector compare equal.
85       VCGE,         // Vector compare greater than or equal.
86       VCGEU,        // Vector compare unsigned greater than or equal.
87       VCGT,         // Vector compare greater than.
88       VCGTU,        // Vector compare unsigned greater than.
89       VTST,         // Vector test bits.
90
91       // Vector shift by immediate:
92       VSHL,         // ...left
93       VSHRs,        // ...right (signed)
94       VSHRu,        // ...right (unsigned)
95       VSHLLs,       // ...left long (signed)
96       VSHLLu,       // ...left long (unsigned)
97       VSHLLi,       // ...left long (with maximum shift count)
98       VSHRN,        // ...right narrow
99
100       // Vector rounding shift by immediate:
101       VRSHRs,       // ...right (signed)
102       VRSHRu,       // ...right (unsigned)
103       VRSHRN,       // ...right narrow
104
105       // Vector saturating shift by immediate:
106       VQSHLs,       // ...left (signed)
107       VQSHLu,       // ...left (unsigned)
108       VQSHLsu,      // ...left (signed to unsigned)
109       VQSHRNs,      // ...right narrow (signed)
110       VQSHRNu,      // ...right narrow (unsigned)
111       VQSHRNsu,     // ...right narrow (signed to unsigned)
112
113       // Vector saturating rounding shift by immediate:
114       VQRSHRNs,     // ...right narrow (signed)
115       VQRSHRNu,     // ...right narrow (unsigned)
116       VQRSHRNsu,    // ...right narrow (signed to unsigned)
117
118       // Vector shift and insert:
119       VSLI,         // ...left
120       VSRI,         // ...right
121
122       // Vector get lane (VMOV scalar to ARM core register)
123       // (These are used for 8- and 16-bit element types only.)
124       VGETLANEu,    // zero-extend vector extract element
125       VGETLANEs,    // sign-extend vector extract element
126
127       // Vector duplicate:
128       VMOVIMM,
129       VDUP,
130       VDUPLANE,
131
132       // Vector shuffles:
133       VEXT,         // extract
134       VREV64,       // reverse elements within 64-bit doublewords
135       VREV32,       // reverse elements within 32-bit words
136       VREV16,       // reverse elements within 16-bit halfwords
137       VZIP,         // zip (interleave)
138       VUZP,         // unzip (deinterleave)
139       VTRN,         // transpose
140
141       // Operands of the standard BUILD_VECTOR node are not legalized, which
142       // is fine if BUILD_VECTORs are always lowered to shuffles or other
143       // operations, but for ARM some BUILD_VECTORs are legal as-is and their
144       // operands need to be legalized.  Define an ARM-specific version of
145       // BUILD_VECTOR for this purpose.
146       BUILD_VECTOR,
147
148       // Floating-point max and min:
149       FMAX,
150       FMIN
151     };
152   }
153
154   /// Define some predicates that are used for node matching.
155   namespace ARM {
156     /// getVFPf32Imm / getVFPf64Imm - If the given fp immediate can be
157     /// materialized with a VMOV.f32 / VMOV.f64 (i.e. fconsts / fconstd)
158     /// instruction, returns its 8-bit integer representation. Otherwise,
159     /// returns -1.
160     int getVFPf32Imm(const APFloat &FPImm);
161     int getVFPf64Imm(const APFloat &FPImm);
162   }
163
164   //===--------------------------------------------------------------------===//
165   //  ARMTargetLowering - ARM Implementation of the TargetLowering interface
166
167   class ARMTargetLowering : public TargetLowering {
168   public:
169     explicit ARMTargetLowering(TargetMachine &TM);
170
171     virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
172
173     /// ReplaceNodeResults - Replace the results of node with an illegal result
174     /// type with new values built out of custom code.
175     ///
176     virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
177                                     SelectionDAG &DAG) const;
178
179     virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
180
181     virtual const char *getTargetNodeName(unsigned Opcode) const;
182
183     virtual MachineBasicBlock *
184       EmitInstrWithCustomInserter(MachineInstr *MI,
185                                   MachineBasicBlock *MBB) const;
186
187     /// allowsUnalignedMemoryAccesses - Returns true if the target allows
188     /// unaligned memory accesses. of the specified type.
189     /// FIXME: Add getOptimalMemOpType to implement memcpy with NEON?
190     virtual bool allowsUnalignedMemoryAccesses(EVT VT) const;
191
192     /// isLegalAddressingMode - Return true if the addressing mode represented
193     /// by AM is legal for this target, for a load/store of the specified type.
194     virtual bool isLegalAddressingMode(const AddrMode &AM, const Type *Ty)const;
195     bool isLegalT2ScaledAddressingMode(const AddrMode &AM, EVT VT) const;
196
197     /// isLegalICmpImmediate - Return true if the specified immediate is legal
198     /// icmp immediate, that is the target has icmp instructions which can
199     /// compare a register against the immediate without having to materialize
200     /// the immediate into a register.
201     virtual bool isLegalICmpImmediate(int64_t Imm) const;
202
203     /// getPreIndexedAddressParts - returns true by value, base pointer and
204     /// offset pointer and addressing mode by reference if the node's address
205     /// can be legally represented as pre-indexed load / store address.
206     virtual bool getPreIndexedAddressParts(SDNode *N, SDValue &Base,
207                                            SDValue &Offset,
208                                            ISD::MemIndexedMode &AM,
209                                            SelectionDAG &DAG) const;
210
211     /// getPostIndexedAddressParts - returns true by value, base pointer and
212     /// offset pointer and addressing mode by reference if this node can be
213     /// combined with a load / store to form a post-indexed load / store.
214     virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
215                                             SDValue &Base, SDValue &Offset,
216                                             ISD::MemIndexedMode &AM,
217                                             SelectionDAG &DAG) const;
218
219     virtual void computeMaskedBitsForTargetNode(const SDValue Op,
220                                                 const APInt &Mask,
221                                                 APInt &KnownZero,
222                                                 APInt &KnownOne,
223                                                 const SelectionDAG &DAG,
224                                                 unsigned Depth) const;
225
226
227     ConstraintType getConstraintType(const std::string &Constraint) const;
228     std::pair<unsigned, const TargetRegisterClass*>
229       getRegForInlineAsmConstraint(const std::string &Constraint,
230                                    EVT VT) const;
231     std::vector<unsigned>
232     getRegClassForInlineAsmConstraint(const std::string &Constraint,
233                                       EVT VT) const;
234
235     /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
236     /// vector.  If it is invalid, don't add anything to Ops. If hasMemory is
237     /// true it means one of the asm constraint of the inline asm instruction
238     /// being processed is 'm'.
239     virtual void LowerAsmOperandForConstraint(SDValue Op,
240                                               char ConstraintLetter,
241                                               std::vector<SDValue> &Ops,
242                                               SelectionDAG &DAG) const;
243
244     const ARMSubtarget* getSubtarget() const {
245       return Subtarget;
246     }
247
248     /// getRegClassFor - Return the register class that should be used for the
249     /// specified value type.
250     virtual TargetRegisterClass *getRegClassFor(EVT VT) const;
251
252     /// getFunctionAlignment - Return the Log2 alignment of this function.
253     virtual unsigned getFunctionAlignment(const Function *F) const;
254
255     Sched::Preference getSchedulingPreference(SDNode *N) const;
256
257     bool isShuffleMaskLegal(const SmallVectorImpl<int> &M, EVT VT) const;
258     bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
259
260     /// isFPImmLegal - Returns true if the target can instruction select the
261     /// specified FP immediate natively. If false, the legalizer will
262     /// materialize the FP immediate as a load from a constant pool.
263     virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
264
265   private:
266     /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
267     /// make the right decision when generating code for different targets.
268     const ARMSubtarget *Subtarget;
269
270     /// ARMPCLabelIndex - Keep track of the number of ARM PC labels created.
271     ///
272     unsigned ARMPCLabelIndex;
273
274     void addTypeForNEON(EVT VT, EVT PromotedLdStVT, EVT PromotedBitwiseVT);
275     void addDRTypeForNEON(EVT VT);
276     void addQRTypeForNEON(EVT VT);
277
278     typedef SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPassVector;
279     void PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG,
280                           SDValue Chain, SDValue &Arg,
281                           RegsToPassVector &RegsToPass,
282                           CCValAssign &VA, CCValAssign &NextVA,
283                           SDValue &StackPtr,
284                           SmallVector<SDValue, 8> &MemOpChains,
285                           ISD::ArgFlagsTy Flags) const;
286     SDValue GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
287                                  SDValue &Root, SelectionDAG &DAG,
288                                  DebugLoc dl) const;
289
290     CCAssignFn *CCAssignFnForNode(CallingConv::ID CC, bool Return,
291                                   bool isVarArg) const;
292     SDValue LowerMemOpCallTo(SDValue Chain, SDValue StackPtr, SDValue Arg,
293                              DebugLoc dl, SelectionDAG &DAG,
294                              const CCValAssign &VA,
295                              ISD::ArgFlagsTy Flags) const;
296     SDValue LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const;
297     SDValue LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const;
298     SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
299                                     const ARMSubtarget *Subtarget) const;
300     SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
301     SDValue LowerGlobalAddressDarwin(SDValue Op, SelectionDAG &DAG) const;
302     SDValue LowerGlobalAddressELF(SDValue Op, SelectionDAG &DAG) const;
303     SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
304     SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
305                                             SelectionDAG &DAG) const;
306     SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA,
307                                    SelectionDAG &DAG) const;
308     SDValue LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG) const;
309     SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG) const;
310     SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
311     SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const;
312     SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const;
313     SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
314     SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
315     SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
316     SDValue LowerShiftRightParts(SDValue Op, SelectionDAG &DAG) const;
317     SDValue LowerShiftLeftParts(SDValue Op, SelectionDAG &DAG) const;
318
319     SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
320                             CallingConv::ID CallConv, bool isVarArg,
321                             const SmallVectorImpl<ISD::InputArg> &Ins,
322                             DebugLoc dl, SelectionDAG &DAG,
323                             SmallVectorImpl<SDValue> &InVals) const;
324
325     virtual SDValue
326       LowerFormalArguments(SDValue Chain,
327                            CallingConv::ID CallConv, bool isVarArg,
328                            const SmallVectorImpl<ISD::InputArg> &Ins,
329                            DebugLoc dl, SelectionDAG &DAG,
330                            SmallVectorImpl<SDValue> &InVals) const;
331
332     virtual SDValue
333       LowerCall(SDValue Chain, SDValue Callee,
334                 CallingConv::ID CallConv, bool isVarArg,
335                 bool &isTailCall,
336                 const SmallVectorImpl<ISD::OutputArg> &Outs,
337                 const SmallVectorImpl<SDValue> &OutVals,
338                 const SmallVectorImpl<ISD::InputArg> &Ins,
339                 DebugLoc dl, SelectionDAG &DAG,
340                 SmallVectorImpl<SDValue> &InVals) const;
341
342     /// IsEligibleForTailCallOptimization - Check whether the call is eligible
343     /// for tail call optimization. Targets which want to do tail call
344     /// optimization should implement this function.
345     bool IsEligibleForTailCallOptimization(SDValue Callee,
346                                            CallingConv::ID CalleeCC,
347                                            bool isVarArg,
348                                            bool isCalleeStructRet,
349                                            bool isCallerStructRet,
350                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
351                                     const SmallVectorImpl<SDValue> &OutVals,
352                                     const SmallVectorImpl<ISD::InputArg> &Ins,
353                                            SelectionDAG& DAG) const;
354     virtual SDValue
355       LowerReturn(SDValue Chain,
356                   CallingConv::ID CallConv, bool isVarArg,
357                   const SmallVectorImpl<ISD::OutputArg> &Outs,
358                   const SmallVectorImpl<SDValue> &OutVals,
359                   DebugLoc dl, SelectionDAG &DAG) const;
360
361     SDValue getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
362                       SDValue &ARMcc, SelectionDAG &DAG, DebugLoc dl) const;
363     SDValue getVFPCmp(SDValue LHS, SDValue RHS,
364                       SelectionDAG &DAG, DebugLoc dl) const;
365
366     SDValue OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const;
367
368     MachineBasicBlock *EmitAtomicCmpSwap(MachineInstr *MI,
369                                          MachineBasicBlock *BB,
370                                          unsigned Size) const;
371     MachineBasicBlock *EmitAtomicBinary(MachineInstr *MI,
372                                         MachineBasicBlock *BB,
373                                         unsigned Size,
374                                         unsigned BinOpcode) const;
375
376   };
377 }
378
379 #endif  // ARMISELLOWERING_H