]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/ARM/ARMISelLowering.h
Merge ACPICA 20180105.
[FreeBSD/FreeBSD.git] / contrib / llvm / 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 LLVM_LIB_TARGET_ARM_ARMISELLOWERING_H
16 #define LLVM_LIB_TARGET_ARM_ARMISELLOWERING_H
17
18 #include "MCTargetDesc/ARMBaseInfo.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/ADT/StringRef.h"
21 #include "llvm/CodeGen/CallingConvLower.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineValueType.h"
24 #include "llvm/CodeGen/SelectionDAG.h"
25 #include "llvm/CodeGen/SelectionDAGNodes.h"
26 #include "llvm/CodeGen/ValueTypes.h"
27 #include "llvm/IR/CallingConv.h"
28 #include "llvm/IR/IRBuilder.h"
29 #include "llvm/IR/InlineAsm.h"
30 #include "llvm/Support/CodeGen.h"
31 #include "llvm/Target/TargetLowering.h"
32 #include <utility>
33
34 namespace llvm {
35
36 class ARMSubtarget;
37 class InstrItineraryData;
38
39   namespace ARMISD {
40
41     // ARM Specific DAG Nodes
42     enum NodeType : unsigned {
43       // Start the numbering where the builtin ops and target ops leave off.
44       FIRST_NUMBER = ISD::BUILTIN_OP_END,
45
46       Wrapper,      // Wrapper - A wrapper node for TargetConstantPool,
47                     // TargetExternalSymbol, and TargetGlobalAddress.
48       WrapperPIC,   // WrapperPIC - A wrapper node for TargetGlobalAddress in
49                     // PIC mode.
50       WrapperJT,    // WrapperJT - A wrapper node for TargetJumpTable
51
52       // Add pseudo op to model memcpy for struct byval.
53       COPY_STRUCT_BYVAL,
54
55       CALL,         // Function call.
56       CALL_PRED,    // Function call that's predicable.
57       CALL_NOLINK,  // Function call with branch not branch-and-link.
58       BRCOND,       // Conditional branch.
59       BR_JT,        // Jumptable branch.
60       BR2_JT,       // Jumptable branch (2 level - jumptable entry is a jump).
61       RET_FLAG,     // Return with a flag operand.
62       INTRET_FLAG,  // Interrupt return with an LR-offset and a flag operand.
63
64       PIC_ADD,      // Add with a PC operand and a PIC label.
65
66       CMP,          // ARM compare instructions.
67       CMN,          // ARM CMN instructions.
68       CMPZ,         // ARM compare that sets only Z flag.
69       CMPFP,        // ARM VFP compare instruction, sets FPSCR.
70       CMPFPw0,      // ARM VFP compare against zero instruction, sets FPSCR.
71       FMSTAT,       // ARM fmstat instruction.
72
73       CMOV,         // ARM conditional move instructions.
74
75       SSAT,         // Signed saturation
76
77       BCC_i64,
78
79       SRL_FLAG,     // V,Flag = srl_flag X -> srl X, 1 + save carry out.
80       SRA_FLAG,     // V,Flag = sra_flag X -> sra X, 1 + save carry out.
81       RRX,          // V = RRX X, Flag     -> srl X, 1 + shift in carry flag.
82
83       ADDC,         // Add with carry
84       ADDE,         // Add using carry
85       SUBC,         // Sub with carry
86       SUBE,         // Sub using carry
87
88       VMOVRRD,      // double to two gprs.
89       VMOVDRR,      // Two gprs to double.
90
91       EH_SJLJ_SETJMP,         // SjLj exception handling setjmp.
92       EH_SJLJ_LONGJMP,        // SjLj exception handling longjmp.
93       EH_SJLJ_SETUP_DISPATCH, // SjLj exception handling setup_dispatch.
94
95       TC_RETURN,    // Tail call return pseudo.
96
97       THREAD_POINTER,
98
99       DYN_ALLOC,    // Dynamic allocation on the stack.
100
101       MEMBARRIER_MCR, // Memory barrier (MCR)
102
103       PRELOAD,      // Preload
104
105       WIN__CHKSTK,  // Windows' __chkstk call to do stack probing.
106       WIN__DBZCHK,  // Windows' divide by zero check
107
108       VCEQ,         // Vector compare equal.
109       VCEQZ,        // Vector compare equal to zero.
110       VCGE,         // Vector compare greater than or equal.
111       VCGEZ,        // Vector compare greater than or equal to zero.
112       VCLEZ,        // Vector compare less than or equal to zero.
113       VCGEU,        // Vector compare unsigned greater than or equal.
114       VCGT,         // Vector compare greater than.
115       VCGTZ,        // Vector compare greater than zero.
116       VCLTZ,        // Vector compare less than zero.
117       VCGTU,        // Vector compare unsigned greater than.
118       VTST,         // Vector test bits.
119
120       // Vector shift by immediate:
121       VSHL,         // ...left
122       VSHRs,        // ...right (signed)
123       VSHRu,        // ...right (unsigned)
124
125       // Vector rounding shift by immediate:
126       VRSHRs,       // ...right (signed)
127       VRSHRu,       // ...right (unsigned)
128       VRSHRN,       // ...right narrow
129
130       // Vector saturating shift by immediate:
131       VQSHLs,       // ...left (signed)
132       VQSHLu,       // ...left (unsigned)
133       VQSHLsu,      // ...left (signed to unsigned)
134       VQSHRNs,      // ...right narrow (signed)
135       VQSHRNu,      // ...right narrow (unsigned)
136       VQSHRNsu,     // ...right narrow (signed to unsigned)
137
138       // Vector saturating rounding shift by immediate:
139       VQRSHRNs,     // ...right narrow (signed)
140       VQRSHRNu,     // ...right narrow (unsigned)
141       VQRSHRNsu,    // ...right narrow (signed to unsigned)
142
143       // Vector shift and insert:
144       VSLI,         // ...left
145       VSRI,         // ...right
146
147       // Vector get lane (VMOV scalar to ARM core register)
148       // (These are used for 8- and 16-bit element types only.)
149       VGETLANEu,    // zero-extend vector extract element
150       VGETLANEs,    // sign-extend vector extract element
151
152       // Vector move immediate and move negated immediate:
153       VMOVIMM,
154       VMVNIMM,
155
156       // Vector move f32 immediate:
157       VMOVFPIMM,
158
159       // Vector duplicate:
160       VDUP,
161       VDUPLANE,
162
163       // Vector shuffles:
164       VEXT,         // extract
165       VREV64,       // reverse elements within 64-bit doublewords
166       VREV32,       // reverse elements within 32-bit words
167       VREV16,       // reverse elements within 16-bit halfwords
168       VZIP,         // zip (interleave)
169       VUZP,         // unzip (deinterleave)
170       VTRN,         // transpose
171       VTBL1,        // 1-register shuffle with mask
172       VTBL2,        // 2-register shuffle with mask
173
174       // Vector multiply long:
175       VMULLs,       // ...signed
176       VMULLu,       // ...unsigned
177
178       SMULWB,       // Signed multiply word by half word, bottom
179       SMULWT,       // Signed multiply word by half word, top
180       UMLAL,        // 64bit Unsigned Accumulate Multiply
181       SMLAL,        // 64bit Signed Accumulate Multiply
182       UMAAL,        // 64-bit Unsigned Accumulate Accumulate Multiply
183       SMLALBB,      // 64-bit signed accumulate multiply bottom, bottom 16
184       SMLALBT,      // 64-bit signed accumulate multiply bottom, top 16
185       SMLALTB,      // 64-bit signed accumulate multiply top, bottom 16
186       SMLALTT,      // 64-bit signed accumulate multiply top, top 16
187       SMLALD,       // Signed multiply accumulate long dual
188       SMLALDX,      // Signed multiply accumulate long dual exchange
189       SMLSLD,       // Signed multiply subtract long dual
190       SMLSLDX,      // Signed multiply subtract long dual exchange
191
192       // Operands of the standard BUILD_VECTOR node are not legalized, which
193       // is fine if BUILD_VECTORs are always lowered to shuffles or other
194       // operations, but for ARM some BUILD_VECTORs are legal as-is and their
195       // operands need to be legalized.  Define an ARM-specific version of
196       // BUILD_VECTOR for this purpose.
197       BUILD_VECTOR,
198
199       // Bit-field insert
200       BFI,
201
202       // Vector OR with immediate
203       VORRIMM,
204       // Vector AND with NOT of immediate
205       VBICIMM,
206
207       // Vector bitwise select
208       VBSL,
209
210       // Pseudo-instruction representing a memory copy using ldm/stm
211       // instructions.
212       MEMCPY,
213
214       // Vector load N-element structure to all lanes:
215       VLD1DUP = ISD::FIRST_TARGET_MEMORY_OPCODE,
216       VLD2DUP,
217       VLD3DUP,
218       VLD4DUP,
219
220       // NEON loads with post-increment base updates:
221       VLD1_UPD,
222       VLD2_UPD,
223       VLD3_UPD,
224       VLD4_UPD,
225       VLD2LN_UPD,
226       VLD3LN_UPD,
227       VLD4LN_UPD,
228       VLD1DUP_UPD,
229       VLD2DUP_UPD,
230       VLD3DUP_UPD,
231       VLD4DUP_UPD,
232
233       // NEON stores with post-increment base updates:
234       VST1_UPD,
235       VST2_UPD,
236       VST3_UPD,
237       VST4_UPD,
238       VST2LN_UPD,
239       VST3LN_UPD,
240       VST4LN_UPD
241     };
242
243   } // end namespace ARMISD
244
245   /// Define some predicates that are used for node matching.
246   namespace ARM {
247
248     bool isBitFieldInvertedMask(unsigned v);
249
250   } // end namespace ARM
251
252   //===--------------------------------------------------------------------===//
253   //  ARMTargetLowering - ARM Implementation of the TargetLowering interface
254
255   class ARMTargetLowering : public TargetLowering {
256   public:
257     explicit ARMTargetLowering(const TargetMachine &TM,
258                                const ARMSubtarget &STI);
259
260     unsigned getJumpTableEncoding() const override;
261     bool useSoftFloat() const override;
262
263     SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
264
265     /// ReplaceNodeResults - Replace the results of node with an illegal result
266     /// type with new values built out of custom code.
267     ///
268     void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
269                             SelectionDAG &DAG) const override;
270
271     const char *getTargetNodeName(unsigned Opcode) const override;
272
273     bool isSelectSupported(SelectSupportKind Kind) const override {
274       // ARM does not support scalar condition selects on vectors.
275       return (Kind != ScalarCondVectorVal);
276     }
277
278     /// getSetCCResultType - Return the value type to use for ISD::SETCC.
279     EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
280                            EVT VT) const override;
281
282     MachineBasicBlock *
283     EmitInstrWithCustomInserter(MachineInstr &MI,
284                                 MachineBasicBlock *MBB) const override;
285
286     void AdjustInstrPostInstrSelection(MachineInstr &MI,
287                                        SDNode *Node) const override;
288
289     SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const;
290     SDValue PerformBRCONDCombine(SDNode *N, SelectionDAG &DAG) const;
291     SDValue PerformCMOVToBFICombine(SDNode *N, SelectionDAG &DAG) const;
292     SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
293
294     bool isDesirableToTransformToIntegerOp(unsigned Opc, EVT VT) const override;
295
296     /// allowsMisalignedMemoryAccesses - Returns true if the target allows
297     /// unaligned memory accesses of the specified type. Returns whether it
298     /// is "fast" by reference in the second argument.
299     bool allowsMisalignedMemoryAccesses(EVT VT, unsigned AddrSpace,
300                                         unsigned Align,
301                                         bool *Fast) const override;
302
303     EVT getOptimalMemOpType(uint64_t Size,
304                             unsigned DstAlign, unsigned SrcAlign,
305                             bool IsMemset, bool ZeroMemset,
306                             bool MemcpyStrSrc,
307                             MachineFunction &MF) const override;
308
309     using TargetLowering::isZExtFree;
310     bool isZExtFree(SDValue Val, EVT VT2) const override;
311
312     bool isVectorLoadExtDesirable(SDValue ExtVal) const override;
313
314     bool allowTruncateForTailCall(Type *Ty1, Type *Ty2) const override;
315
316
317     /// isLegalAddressingMode - Return true if the addressing mode represented
318     /// by AM is legal for this target, for a load/store of the specified type.
319     bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
320                                Type *Ty, unsigned AS) const override;
321
322     /// getScalingFactorCost - Return the cost of the scaling used in
323     /// addressing mode represented by AM.
324     /// If the AM is supported, the return value must be >= 0.
325     /// If the AM is not supported, the return value must be negative.
326     int getScalingFactorCost(const DataLayout &DL, const AddrMode &AM, Type *Ty,
327                              unsigned AS) const override;
328
329     bool isLegalT2ScaledAddressingMode(const AddrMode &AM, EVT VT) const;
330
331     /// isLegalICmpImmediate - Return true if the specified immediate is legal
332     /// icmp immediate, that is the target has icmp instructions which can
333     /// compare a register against the immediate without having to materialize
334     /// the immediate into a register.
335     bool isLegalICmpImmediate(int64_t Imm) const override;
336
337     /// isLegalAddImmediate - Return true if the specified immediate is legal
338     /// add immediate, that is the target has add instructions which can
339     /// add a register and the immediate without having to materialize
340     /// the immediate into a register.
341     bool isLegalAddImmediate(int64_t Imm) const override;
342
343     /// getPreIndexedAddressParts - returns true by value, base pointer and
344     /// offset pointer and addressing mode by reference if the node's address
345     /// can be legally represented as pre-indexed load / store address.
346     bool getPreIndexedAddressParts(SDNode *N, SDValue &Base, SDValue &Offset,
347                                    ISD::MemIndexedMode &AM,
348                                    SelectionDAG &DAG) const override;
349
350     /// getPostIndexedAddressParts - returns true by value, base pointer and
351     /// offset pointer and addressing mode by reference if this node can be
352     /// combined with a load / store to form a post-indexed load / store.
353     bool getPostIndexedAddressParts(SDNode *N, SDNode *Op, SDValue &Base,
354                                     SDValue &Offset, ISD::MemIndexedMode &AM,
355                                     SelectionDAG &DAG) const override;
356
357     void computeKnownBitsForTargetNode(const SDValue Op, KnownBits &Known,
358                                        const APInt &DemandedElts,
359                                        const SelectionDAG &DAG,
360                                        unsigned Depth) const override;
361
362
363     bool ExpandInlineAsm(CallInst *CI) const override;
364
365     ConstraintType getConstraintType(StringRef Constraint) const override;
366
367     /// Examine constraint string and operand type and determine a weight value.
368     /// The operand object must already have been set up with the operand type.
369     ConstraintWeight getSingleConstraintMatchWeight(
370       AsmOperandInfo &info, const char *constraint) const override;
371
372     std::pair<unsigned, const TargetRegisterClass *>
373     getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
374                                  StringRef Constraint, MVT VT) const override;
375
376     const char *LowerXConstraint(EVT ConstraintVT) const override;
377
378     /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
379     /// vector.  If it is invalid, don't add anything to Ops. If hasMemory is
380     /// true it means one of the asm constraint of the inline asm instruction
381     /// being processed is 'm'.
382     void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
383                                       std::vector<SDValue> &Ops,
384                                       SelectionDAG &DAG) const override;
385
386     unsigned
387     getInlineAsmMemConstraint(StringRef ConstraintCode) const override {
388       if (ConstraintCode == "Q")
389         return InlineAsm::Constraint_Q;
390       else if (ConstraintCode == "o")
391         return InlineAsm::Constraint_o;
392       else if (ConstraintCode.size() == 2) {
393         if (ConstraintCode[0] == 'U') {
394           switch(ConstraintCode[1]) {
395           default:
396             break;
397           case 'm':
398             return InlineAsm::Constraint_Um;
399           case 'n':
400             return InlineAsm::Constraint_Un;
401           case 'q':
402             return InlineAsm::Constraint_Uq;
403           case 's':
404             return InlineAsm::Constraint_Us;
405           case 't':
406             return InlineAsm::Constraint_Ut;
407           case 'v':
408             return InlineAsm::Constraint_Uv;
409           case 'y':
410             return InlineAsm::Constraint_Uy;
411           }
412         }
413       }
414       return TargetLowering::getInlineAsmMemConstraint(ConstraintCode);
415     }
416
417     const ARMSubtarget* getSubtarget() const {
418       return Subtarget;
419     }
420
421     /// getRegClassFor - Return the register class that should be used for the
422     /// specified value type.
423     const TargetRegisterClass *getRegClassFor(MVT VT) const override;
424
425     /// Returns true if a cast between SrcAS and DestAS is a noop.
426     bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override {
427       // Addrspacecasts are always noops.
428       return true;
429     }
430
431     bool shouldAlignPointerArgs(CallInst *CI, unsigned &MinSize,
432                                 unsigned &PrefAlign) const override;
433
434     /// createFastISel - This method returns a target specific FastISel object,
435     /// or null if the target does not support "fast" ISel.
436     FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
437                              const TargetLibraryInfo *libInfo) const override;
438
439     Sched::Preference getSchedulingPreference(SDNode *N) const override;
440
441     bool
442     isShuffleMaskLegal(const SmallVectorImpl<int> &M, EVT VT) const override;
443     bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
444
445     /// isFPImmLegal - Returns true if the target can instruction select the
446     /// specified FP immediate natively. If false, the legalizer will
447     /// materialize the FP immediate as a load from a constant pool.
448     bool isFPImmLegal(const APFloat &Imm, EVT VT) const override;
449
450     bool getTgtMemIntrinsic(IntrinsicInfo &Info,
451                             const CallInst &I,
452                             unsigned Intrinsic) const override;
453
454     /// \brief Returns true if it is beneficial to convert a load of a constant
455     /// to just the constant itself.
456     bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
457                                            Type *Ty) const override;
458
459     /// Return true if EXTRACT_SUBVECTOR is cheap for this result type
460     /// with this index.
461     bool isExtractSubvectorCheap(EVT ResVT, unsigned Index) const override;
462
463     /// \brief Returns true if an argument of type Ty needs to be passed in a
464     /// contiguous block of registers in calling convention CallConv.
465     bool functionArgumentNeedsConsecutiveRegisters(
466         Type *Ty, CallingConv::ID CallConv, bool isVarArg) const override;
467
468     /// If a physical register, this returns the register that receives the
469     /// exception address on entry to an EH pad.
470     unsigned
471     getExceptionPointerRegister(const Constant *PersonalityFn) const override;
472
473     /// If a physical register, this returns the register that receives the
474     /// exception typeid on entry to a landing pad.
475     unsigned
476     getExceptionSelectorRegister(const Constant *PersonalityFn) const override;
477
478     Instruction *makeDMB(IRBuilder<> &Builder, ARM_MB::MemBOpt Domain) const;
479     Value *emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
480                           AtomicOrdering Ord) const override;
481     Value *emitStoreConditional(IRBuilder<> &Builder, Value *Val,
482                                 Value *Addr, AtomicOrdering Ord) const override;
483
484     void emitAtomicCmpXchgNoStoreLLBalance(IRBuilder<> &Builder) const override;
485
486     Instruction *emitLeadingFence(IRBuilder<> &Builder, Instruction *Inst,
487                                   AtomicOrdering Ord) const override;
488     Instruction *emitTrailingFence(IRBuilder<> &Builder, Instruction *Inst,
489                                    AtomicOrdering Ord) const override;
490
491     unsigned getMaxSupportedInterleaveFactor() const override { return 4; }
492
493     bool lowerInterleavedLoad(LoadInst *LI,
494                               ArrayRef<ShuffleVectorInst *> Shuffles,
495                               ArrayRef<unsigned> Indices,
496                               unsigned Factor) const override;
497     bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI,
498                                unsigned Factor) const override;
499
500     bool shouldInsertFencesForAtomic(const Instruction *I) const override;
501     TargetLoweringBase::AtomicExpansionKind
502     shouldExpandAtomicLoadInIR(LoadInst *LI) const override;
503     bool shouldExpandAtomicStoreInIR(StoreInst *SI) const override;
504     TargetLoweringBase::AtomicExpansionKind
505     shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const override;
506     bool shouldExpandAtomicCmpXchgInIR(AtomicCmpXchgInst *AI) const override;
507
508     bool useLoadStackGuardNode() const override;
509
510     bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
511                                    unsigned &Cost) const override;
512
513     bool canMergeStoresTo(unsigned AddressSpace, EVT MemVT,
514                           const SelectionDAG &DAG) const override {
515       // Do not merge to larger than i32.
516       return (MemVT.getSizeInBits() <= 32);
517     }
518
519     bool isCheapToSpeculateCttz() const override;
520     bool isCheapToSpeculateCtlz() const override;
521
522     bool convertSetCCLogicToBitwiseLogic(EVT VT) const override {
523       return VT.isScalarInteger();
524     }
525
526     bool supportSwiftError() const override {
527       return true;
528     }
529
530     bool hasStandaloneRem(EVT VT) const override {
531       return HasStandaloneRem;
532     }
533
534     CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool isVarArg) const;
535     CCAssignFn *CCAssignFnForReturn(CallingConv::ID CC, bool isVarArg) const;
536
537     /// Returns true if \p VecTy is a legal interleaved access type. This
538     /// function checks the vector element type and the overall width of the
539     /// vector.
540     bool isLegalInterleavedAccessType(VectorType *VecTy,
541                                       const DataLayout &DL) const;
542
543     /// Returns the number of interleaved accesses that will be generated when
544     /// lowering accesses of the given type.
545     unsigned getNumInterleavedAccesses(VectorType *VecTy,
546                                        const DataLayout &DL) const;
547
548     void finalizeLowering(MachineFunction &MF) const override;
549
550   protected:
551     std::pair<const TargetRegisterClass *, uint8_t>
552     findRepresentativeClass(const TargetRegisterInfo *TRI,
553                             MVT VT) const override;
554
555   private:
556     /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
557     /// make the right decision when generating code for different targets.
558     const ARMSubtarget *Subtarget;
559
560     const TargetRegisterInfo *RegInfo;
561
562     const InstrItineraryData *Itins;
563
564     /// ARMPCLabelIndex - Keep track of the number of ARM PC labels created.
565     ///
566     unsigned ARMPCLabelIndex;
567
568     // TODO: remove this, and have shouldInsertFencesForAtomic do the proper
569     // check.
570     bool InsertFencesForAtomic;
571
572     bool HasStandaloneRem = true;
573
574     void addTypeForNEON(MVT VT, MVT PromotedLdStVT, MVT PromotedBitwiseVT);
575     void addDRTypeForNEON(MVT VT);
576     void addQRTypeForNEON(MVT VT);
577     std::pair<SDValue, SDValue> getARMXALUOOp(SDValue Op, SelectionDAG &DAG, SDValue &ARMcc) const;
578
579     typedef SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPassVector;
580
581     void PassF64ArgInRegs(const SDLoc &dl, SelectionDAG &DAG, SDValue Chain,
582                           SDValue &Arg, RegsToPassVector &RegsToPass,
583                           CCValAssign &VA, CCValAssign &NextVA,
584                           SDValue &StackPtr,
585                           SmallVectorImpl<SDValue> &MemOpChains,
586                           ISD::ArgFlagsTy Flags) const;
587     SDValue GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
588                                  SDValue &Root, SelectionDAG &DAG,
589                                  const SDLoc &dl) const;
590
591     CallingConv::ID getEffectiveCallingConv(CallingConv::ID CC,
592                                             bool isVarArg) const;
593     CCAssignFn *CCAssignFnForNode(CallingConv::ID CC, bool Return,
594                                   bool isVarArg) const;
595     SDValue LowerMemOpCallTo(SDValue Chain, SDValue StackPtr, SDValue Arg,
596                              const SDLoc &dl, SelectionDAG &DAG,
597                              const CCValAssign &VA,
598                              ISD::ArgFlagsTy Flags) const;
599     SDValue LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const;
600     SDValue LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const;
601     SDValue LowerEH_SJLJ_SETUP_DISPATCH(SDValue Op, SelectionDAG &DAG) const;
602     SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
603                                     const ARMSubtarget *Subtarget) const;
604     SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
605     SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
606     SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
607     SDValue LowerGlobalAddressDarwin(SDValue Op, SelectionDAG &DAG) const;
608     SDValue LowerGlobalAddressELF(SDValue Op, SelectionDAG &DAG) const;
609     SDValue LowerGlobalAddressWindows(SDValue Op, SelectionDAG &DAG) const;
610     SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
611     SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
612                                             SelectionDAG &DAG) const;
613     SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA,
614                                  SelectionDAG &DAG,
615                                  TLSModel::Model model) const;
616     SDValue LowerGlobalTLSAddressDarwin(SDValue Op, SelectionDAG &DAG) const;
617     SDValue LowerGlobalTLSAddressWindows(SDValue Op, SelectionDAG &DAG) const;
618     SDValue LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG) const;
619     SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG) const;
620     SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) const;
621     SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
622     SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
623     SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const;
624     SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const;
625     SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
626     SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
627     SDValue LowerShiftRightParts(SDValue Op, SelectionDAG &DAG) const;
628     SDValue LowerShiftLeftParts(SDValue Op, SelectionDAG &DAG) const;
629     SDValue LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) const;
630     SDValue LowerConstantFP(SDValue Op, SelectionDAG &DAG,
631                             const ARMSubtarget *ST) const;
632     SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
633                               const ARMSubtarget *ST) const;
634     SDValue LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const;
635     SDValue LowerDivRem(SDValue Op, SelectionDAG &DAG) const;
636     SDValue LowerDIV_Windows(SDValue Op, SelectionDAG &DAG, bool Signed) const;
637     void ExpandDIV_Windows(SDValue Op, SelectionDAG &DAG, bool Signed,
638                            SmallVectorImpl<SDValue> &Results) const;
639     SDValue LowerWindowsDIVLibCall(SDValue Op, SelectionDAG &DAG, bool Signed,
640                                    SDValue &Chain) const;
641     SDValue LowerREM(SDNode *N, SelectionDAG &DAG) const;
642     SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
643     SDValue LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const;
644     SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const;
645     SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const;
646     SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) const;
647
648     unsigned getRegisterByName(const char* RegName, EVT VT,
649                                SelectionDAG &DAG) const override;
650
651     /// isFMAFasterThanFMulAndFAdd - Return true if an FMA operation is faster
652     /// than a pair of fmul and fadd instructions. fmuladd intrinsics will be
653     /// expanded to FMAs when this method returns true, otherwise fmuladd is
654     /// expanded to fmul + fadd.
655     ///
656     /// ARM supports both fused and unfused multiply-add operations; we already
657     /// lower a pair of fmul and fadd to the latter so it's not clear that there
658     /// would be a gain or that the gain would be worthwhile enough to risk
659     /// correctness bugs.
660     bool isFMAFasterThanFMulAndFAdd(EVT VT) const override { return false; }
661
662     SDValue ReconstructShuffle(SDValue Op, SelectionDAG &DAG) const;
663
664     SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
665                             CallingConv::ID CallConv, bool isVarArg,
666                             const SmallVectorImpl<ISD::InputArg> &Ins,
667                             const SDLoc &dl, SelectionDAG &DAG,
668                             SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
669                             SDValue ThisVal) const;
670
671     bool supportSplitCSR(MachineFunction *MF) const override {
672       return MF->getFunction()->getCallingConv() == CallingConv::CXX_FAST_TLS &&
673           MF->getFunction()->hasFnAttribute(Attribute::NoUnwind);
674     }
675
676     void initializeSplitCSR(MachineBasicBlock *Entry) const override;
677     void insertCopiesSplitCSR(
678       MachineBasicBlock *Entry,
679       const SmallVectorImpl<MachineBasicBlock *> &Exits) const override;
680
681     SDValue
682     LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
683                          const SmallVectorImpl<ISD::InputArg> &Ins,
684                          const SDLoc &dl, SelectionDAG &DAG,
685                          SmallVectorImpl<SDValue> &InVals) const override;
686
687     int StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG, const SDLoc &dl,
688                        SDValue &Chain, const Value *OrigArg,
689                        unsigned InRegsParamRecordIdx, int ArgOffset,
690                        unsigned ArgSize) const;
691
692     void VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
693                               const SDLoc &dl, SDValue &Chain,
694                               unsigned ArgOffset, unsigned TotalArgRegsSaveSize,
695                               bool ForceMutable = false) const;
696
697     SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
698                       SmallVectorImpl<SDValue> &InVals) const override;
699
700     /// HandleByVal - Target-specific cleanup for ByVal support.
701     void HandleByVal(CCState *, unsigned &, unsigned) const override;
702
703     /// IsEligibleForTailCallOptimization - Check whether the call is eligible
704     /// for tail call optimization. Targets which want to do tail call
705     /// optimization should implement this function.
706     bool IsEligibleForTailCallOptimization(SDValue Callee,
707                                            CallingConv::ID CalleeCC,
708                                            bool isVarArg,
709                                            bool isCalleeStructRet,
710                                            bool isCallerStructRet,
711                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
712                                     const SmallVectorImpl<SDValue> &OutVals,
713                                     const SmallVectorImpl<ISD::InputArg> &Ins,
714                                            SelectionDAG& DAG) const;
715
716     bool CanLowerReturn(CallingConv::ID CallConv,
717                         MachineFunction &MF, bool isVarArg,
718                         const SmallVectorImpl<ISD::OutputArg> &Outs,
719                         LLVMContext &Context) const override;
720
721     SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
722                         const SmallVectorImpl<ISD::OutputArg> &Outs,
723                         const SmallVectorImpl<SDValue> &OutVals,
724                         const SDLoc &dl, SelectionDAG &DAG) const override;
725
726     bool isUsedByReturnOnly(SDNode *N, SDValue &Chain) const override;
727
728     bool mayBeEmittedAsTailCall(const CallInst *CI) const override;
729
730     SDValue getCMOV(const SDLoc &dl, EVT VT, SDValue FalseVal, SDValue TrueVal,
731                     SDValue ARMcc, SDValue CCR, SDValue Cmp,
732                     SelectionDAG &DAG) const;
733     SDValue getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
734                       SDValue &ARMcc, SelectionDAG &DAG, const SDLoc &dl) const;
735     SDValue getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
736                       const SDLoc &dl, bool InvalidOnQNaN) const;
737     SDValue duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const;
738
739     SDValue OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const;
740
741     void SetupEntryBlockForSjLj(MachineInstr &MI, MachineBasicBlock *MBB,
742                                 MachineBasicBlock *DispatchBB, int FI) const;
743
744     void EmitSjLjDispatchBlock(MachineInstr &MI, MachineBasicBlock *MBB) const;
745
746     bool RemapAddSubWithFlags(MachineInstr &MI, MachineBasicBlock *BB) const;
747
748     MachineBasicBlock *EmitStructByval(MachineInstr &MI,
749                                        MachineBasicBlock *MBB) const;
750
751     MachineBasicBlock *EmitLowered__chkstk(MachineInstr &MI,
752                                            MachineBasicBlock *MBB) const;
753     MachineBasicBlock *EmitLowered__dbzchk(MachineInstr &MI,
754                                            MachineBasicBlock *MBB) const;
755   };
756
757   enum NEONModImmType {
758     VMOVModImm,
759     VMVNModImm,
760     OtherModImm
761   };
762
763   namespace ARM {
764
765     FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
766                              const TargetLibraryInfo *libInfo);
767
768   } // end namespace ARM
769
770 } // end namespace llvm
771
772 #endif // LLVM_LIB_TARGET_ARM_ARMISELLOWERING_H