blob: ba9ea7f15e7b23c023fd93207764f04b6193475b [file] [log] [blame]
Evan Cheng10043e22007-01-19 07:51:42 +00001//===-- ARMISelLowering.h - ARM DAG Lowering Interface ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Cheng10043e22007-01-19 07:51:42 +00007//
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
Rafael Espindolafa0df552007-11-05 23:12:20 +000018#include "ARMSubtarget.h"
Evan Cheng10043e22007-01-19 07:51:42 +000019#include "llvm/Target/TargetLowering.h"
Evan Chengdf907f42010-07-23 22:39:59 +000020#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopher84bdfd82010-07-21 22:26:11 +000021#include "llvm/CodeGen/FastISel.h"
Evan Cheng10043e22007-01-19 07:51:42 +000022#include "llvm/CodeGen/SelectionDAG.h"
Bob Wilsona4c22902009-04-17 19:07:39 +000023#include "llvm/CodeGen/CallingConvLower.h"
Evan Cheng10043e22007-01-19 07:51:42 +000024#include <vector>
25
26namespace llvm {
27 class ARMConstantPoolValue;
Evan Cheng10043e22007-01-19 07:51:42 +000028
29 namespace ARMISD {
30 // ARM Specific DAG Nodes
31 enum NodeType {
Jim Grosbach91fa7812009-05-13 22:32:43 +000032 // Start the numbering where the builtin ops and target ops leave off.
Dan Gohmaned1cf1a2008-09-23 18:42:32 +000033 FIRST_NUMBER = ISD::BUILTIN_OP_END,
Evan Cheng10043e22007-01-19 07:51:42 +000034
35 Wrapper, // Wrapper - A wrapper node for TargetConstantPool,
36 // TargetExternalSymbol, and TargetGlobalAddress.
Evan Cheng10043e22007-01-19 07:51:42 +000037 WrapperJT, // WrapperJT - A wrapper node for TargetJumpTable
Jim Grosbach91fa7812009-05-13 22:32:43 +000038
Evan Cheng10043e22007-01-19 07:51:42 +000039 CALL, // Function call.
Evan Chengc3c949b42007-06-19 21:05:09 +000040 CALL_PRED, // Function call that's predicable.
Evan Cheng10043e22007-01-19 07:51:42 +000041 CALL_NOLINK, // Function call with branch not branch-and-link.
42 tCALL, // Thumb function call.
43 BRCOND, // Conditional branch.
44 BR_JT, // Jumptable branch.
Evan Chengc6d70ae2009-07-29 02:18:14 +000045 BR2_JT, // Jumptable branch (2 level - jumptable entry is a jump).
Evan Cheng10043e22007-01-19 07:51:42 +000046 RET_FLAG, // Return with a flag operand.
47
48 PIC_ADD, // Add with a PC operand and a PIC label.
49
Bill Wendling0a651162010-08-29 03:02:11 +000050 AND, // ARM "and" instruction that sets the 's' flag in CPSR.
51
Evan Cheng10043e22007-01-19 07:51:42 +000052 CMP, // ARM compare instructions.
David Goodwindbf11ba2009-06-29 15:33:01 +000053 CMPZ, // ARM compare that sets only Z flag.
Evan Cheng10043e22007-01-19 07:51:42 +000054 CMPFP, // ARM VFP compare instruction, sets FPSCR.
55 CMPFPw0, // ARM VFP compare against zero instruction, sets FPSCR.
56 FMSTAT, // ARM fmstat instruction.
57 CMOV, // ARM conditional move instructions.
58 CNEG, // ARM conditional negate instructions.
Jim Grosbach91fa7812009-05-13 22:32:43 +000059
Evan Cheng0cc4ad92010-07-13 19:27:42 +000060 BCC_i64,
61
Jim Grosbach8546ec92010-01-18 19:58:49 +000062 RBIT, // ARM bitreverse instruction
63
Bob Wilsone4191e72010-03-19 22:51:32 +000064 FTOSI, // FP to sint within a FP register.
65 FTOUI, // FP to uint within a FP register.
66 SITOF, // sint to FP within a FP register.
67 UITOF, // uint to FP within a FP register.
68
Evan Cheng10043e22007-01-19 07:51:42 +000069 SRL_FLAG, // V,Flag = srl_flag X -> srl X, 1 + save carry out.
70 SRA_FLAG, // V,Flag = sra_flag X -> sra X, 1 + save carry out.
71 RRX, // V = RRX X, Flag -> srl X, 1 + shift in carry flag.
Jim Grosbach91fa7812009-05-13 22:32:43 +000072
Jim Grosbachd7cf55c2009-11-09 00:11:35 +000073 VMOVRRD, // double to two gprs.
74 VMOVDRR, // Two gprs to double.
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +000075
Evan Chengb972e562009-08-07 00:34:42 +000076 EH_SJLJ_SETJMP, // SjLj exception handling setjmp.
77 EH_SJLJ_LONGJMP, // SjLj exception handling longjmp.
Jim Grosbachaeca45d2009-05-12 23:59:14 +000078
Dale Johannesend679ff72010-06-03 21:09:53 +000079 TC_RETURN, // Tail call return pseudo.
80
Bob Wilson2e076c42009-06-22 23:27:02 +000081 THREAD_POINTER,
82
Evan Chengb972e562009-08-07 00:34:42 +000083 DYN_ALLOC, // Dynamic allocation on the stack.
84
Jim Grosbach53e88542009-12-10 00:11:09 +000085 MEMBARRIER, // Memory barrier
86 SYNCBARRIER, // Memory sync barrier
Nate Begemanb69b1822010-08-03 21:31:55 +000087
Bob Wilson2e076c42009-06-22 23:27:02 +000088 VCEQ, // Vector compare equal.
89 VCGE, // Vector compare greater than or equal.
90 VCGEU, // Vector compare unsigned greater than or equal.
91 VCGT, // Vector compare greater than.
92 VCGTU, // Vector compare unsigned greater than.
93 VTST, // Vector test bits.
94
95 // Vector shift by immediate:
96 VSHL, // ...left
97 VSHRs, // ...right (signed)
98 VSHRu, // ...right (unsigned)
99 VSHLLs, // ...left long (signed)
100 VSHLLu, // ...left long (unsigned)
101 VSHLLi, // ...left long (with maximum shift count)
102 VSHRN, // ...right narrow
103
104 // Vector rounding shift by immediate:
105 VRSHRs, // ...right (signed)
106 VRSHRu, // ...right (unsigned)
107 VRSHRN, // ...right narrow
108
109 // Vector saturating shift by immediate:
110 VQSHLs, // ...left (signed)
111 VQSHLu, // ...left (unsigned)
112 VQSHLsu, // ...left (signed to unsigned)
113 VQSHRNs, // ...right narrow (signed)
114 VQSHRNu, // ...right narrow (unsigned)
115 VQSHRNsu, // ...right narrow (signed to unsigned)
116
117 // Vector saturating rounding shift by immediate:
118 VQRSHRNs, // ...right narrow (signed)
119 VQRSHRNu, // ...right narrow (unsigned)
120 VQRSHRNsu, // ...right narrow (signed to unsigned)
121
122 // Vector shift and insert:
123 VSLI, // ...left
124 VSRI, // ...right
125
126 // Vector get lane (VMOV scalar to ARM core register)
127 // (These are used for 8- and 16-bit element types only.)
128 VGETLANEu, // zero-extend vector extract element
129 VGETLANEs, // sign-extend vector extract element
130
Bob Wilsonbad47f62010-07-14 06:31:50 +0000131 // Vector move immediate and move negated immediate:
Bob Wilsona3f19012010-07-13 21:16:48 +0000132 VMOVIMM,
Bob Wilsonbad47f62010-07-14 06:31:50 +0000133 VMVNIMM,
134
135 // Vector duplicate:
Bob Wilsoneb54d512009-08-14 05:13:08 +0000136 VDUP,
Bob Wilsoncce31f62009-08-14 05:08:32 +0000137 VDUPLANE,
Bob Wilsonf45dee32009-08-04 00:36:16 +0000138
Bob Wilsonea3a4022009-08-12 22:31:50 +0000139 // Vector shuffles:
Bob Wilson32cd8552009-08-19 17:03:43 +0000140 VEXT, // extract
Bob Wilsonea3a4022009-08-12 22:31:50 +0000141 VREV64, // reverse elements within 64-bit doublewords
142 VREV32, // reverse elements within 32-bit words
Anton Korobeynikov9a232f42009-08-21 12:41:24 +0000143 VREV16, // reverse elements within 16-bit halfwords
Bob Wilsona7062312009-08-21 20:54:19 +0000144 VZIP, // zip (interleave)
145 VUZP, // unzip (deinterleave)
Bob Wilsonc6c13a32010-02-18 06:05:53 +0000146 VTRN, // transpose
147
Bob Wilson38ab35a2010-09-01 23:50:19 +0000148 // Vector multiply long:
149 VMULLs, // ...signed
150 VMULLu, // ...unsigned
151
Bob Wilsond8a9a042010-06-04 00:04:02 +0000152 // Operands of the standard BUILD_VECTOR node are not legalized, which
153 // is fine if BUILD_VECTORs are always lowered to shuffles or other
154 // operations, but for ARM some BUILD_VECTORs are legal as-is and their
155 // operands need to be legalized. Define an ARM-specific version of
156 // BUILD_VECTOR for this purpose.
157 BUILD_VECTOR,
158
Bob Wilsonc6c13a32010-02-18 06:05:53 +0000159 // Floating-point max and min:
160 FMAX,
Jim Grosbach11013ed2010-07-16 23:05:05 +0000161 FMIN,
162
163 // Bit-field insert
164 BFI
Evan Cheng10043e22007-01-19 07:51:42 +0000165 };
166 }
167
Bob Wilson2e076c42009-06-22 23:27:02 +0000168 /// Define some predicates that are used for node matching.
169 namespace ARM {
Evan Cheng4a609f3c2009-10-28 01:44:26 +0000170 /// getVFPf32Imm / getVFPf64Imm - If the given fp immediate can be
171 /// materialized with a VMOV.f32 / VMOV.f64 (i.e. fconsts / fconstd)
172 /// instruction, returns its 8-bit integer representation. Otherwise,
173 /// returns -1.
174 int getVFPf32Imm(const APFloat &FPImm);
175 int getVFPf64Imm(const APFloat &FPImm);
Jim Grosbach11013ed2010-07-16 23:05:05 +0000176 bool isBitFieldInvertedMask(unsigned v);
Bob Wilson2e076c42009-06-22 23:27:02 +0000177 }
178
Bob Wilsondd0e2362009-05-20 16:30:25 +0000179 //===--------------------------------------------------------------------===//
Dale Johannesen8447d342007-03-20 00:30:56 +0000180 // ARMTargetLowering - ARM Implementation of the TargetLowering interface
Jim Grosbach91fa7812009-05-13 22:32:43 +0000181
Evan Cheng10043e22007-01-19 07:51:42 +0000182 class ARMTargetLowering : public TargetLowering {
Evan Cheng10043e22007-01-19 07:51:42 +0000183 public:
Dan Gohman5f6a9da52007-08-02 21:21:54 +0000184 explicit ARMTargetLowering(TargetMachine &TM);
Evan Cheng10043e22007-01-19 07:51:42 +0000185
Jim Grosbach8d3ba732010-07-19 17:20:38 +0000186 virtual unsigned getJumpTableEncoding(void) const;
187
Dan Gohman21cea8a2010-04-17 15:26:15 +0000188 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
Duncan Sands6ed40142008-12-01 11:39:25 +0000189
190 /// ReplaceNodeResults - Replace the results of node with an illegal result
191 /// type with new values built out of custom code.
192 ///
193 virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000194 SelectionDAG &DAG) const;
Duncan Sands6ed40142008-12-01 11:39:25 +0000195
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000196 virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
Jim Grosbach91fa7812009-05-13 22:32:43 +0000197
Evan Cheng10043e22007-01-19 07:51:42 +0000198 virtual const char *getTargetNodeName(unsigned Opcode) const;
199
Dan Gohman25c16532010-05-01 00:01:06 +0000200 virtual MachineBasicBlock *
201 EmitInstrWithCustomInserter(MachineInstr *MI,
202 MachineBasicBlock *MBB) const;
Evan Cheng10043e22007-01-19 07:51:42 +0000203
Bill Wendlingbae6b2c2009-08-15 21:21:19 +0000204 /// allowsUnalignedMemoryAccesses - Returns true if the target allows
205 /// unaligned memory accesses. of the specified type.
206 /// FIXME: Add getOptimalMemOpType to implement memcpy with NEON?
207 virtual bool allowsUnalignedMemoryAccesses(EVT VT) const;
208
Chris Lattner1eb94d92007-03-30 23:15:24 +0000209 /// isLegalAddressingMode - Return true if the addressing mode represented
210 /// by AM is legal for this target, for a load/store of the specified type.
211 virtual bool isLegalAddressingMode(const AddrMode &AM, const Type *Ty)const;
Evan Chengdc49a8d2009-08-14 20:09:37 +0000212 bool isLegalT2ScaledAddressingMode(const AddrMode &AM, EVT VT) const;
Jim Grosbach91fa7812009-05-13 22:32:43 +0000213
Evan Cheng3d3c24a2009-11-11 19:05:52 +0000214 /// isLegalICmpImmediate - Return true if the specified immediate is legal
Jim Grosbach84511e12010-06-02 21:53:11 +0000215 /// icmp immediate, that is the target has icmp instructions which can
216 /// compare a register against the immediate without having to materialize
217 /// the immediate into a register.
Evan Cheng15b80e42009-11-12 07:13:11 +0000218 virtual bool isLegalICmpImmediate(int64_t Imm) const;
Evan Cheng3d3c24a2009-11-11 19:05:52 +0000219
Evan Cheng10043e22007-01-19 07:51:42 +0000220 /// getPreIndexedAddressParts - returns true by value, base pointer and
221 /// offset pointer and addressing mode by reference if the node's address
222 /// can be legally represented as pre-indexed load / store address.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000223 virtual bool getPreIndexedAddressParts(SDNode *N, SDValue &Base,
224 SDValue &Offset,
Evan Cheng10043e22007-01-19 07:51:42 +0000225 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +0000226 SelectionDAG &DAG) const;
Evan Cheng10043e22007-01-19 07:51:42 +0000227
228 /// getPostIndexedAddressParts - returns true by value, base pointer and
229 /// offset pointer and addressing mode by reference if this node can be
230 /// combined with a load / store to form a post-indexed load / store.
231 virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000232 SDValue &Base, SDValue &Offset,
Evan Cheng10043e22007-01-19 07:51:42 +0000233 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +0000234 SelectionDAG &DAG) const;
Evan Cheng10043e22007-01-19 07:51:42 +0000235
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000236 virtual void computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmane1d9ee62008-02-13 22:28:48 +0000237 const APInt &Mask,
Jim Grosbach91fa7812009-05-13 22:32:43 +0000238 APInt &KnownZero,
Dan Gohmanf990faf2008-02-13 00:35:47 +0000239 APInt &KnownOne,
Dan Gohman309d3d52007-06-22 14:59:07 +0000240 const SelectionDAG &DAG,
Evan Cheng10043e22007-01-19 07:51:42 +0000241 unsigned Depth) const;
Bill Wendlingbae6b2c2009-08-15 21:21:19 +0000242
243
Chris Lattnerd6855142007-03-25 02:14:49 +0000244 ConstraintType getConstraintType(const std::string &Constraint) const;
Jim Grosbach91fa7812009-05-13 22:32:43 +0000245 std::pair<unsigned, const TargetRegisterClass*>
Evan Cheng10043e22007-01-19 07:51:42 +0000246 getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Anderson53aa7a92009-08-10 22:56:29 +0000247 EVT VT) const;
Evan Cheng10043e22007-01-19 07:51:42 +0000248 std::vector<unsigned>
249 getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Anderson53aa7a92009-08-10 22:56:29 +0000250 EVT VT) const;
Rafael Espindolafa0df552007-11-05 23:12:20 +0000251
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +0000252 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
253 /// vector. If it is invalid, don't add anything to Ops. If hasMemory is
254 /// true it means one of the asm constraint of the inline asm instruction
255 /// being processed is 'm'.
256 virtual void LowerAsmOperandForConstraint(SDValue Op,
257 char ConstraintLetter,
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +0000258 std::vector<SDValue> &Ops,
259 SelectionDAG &DAG) const;
Jim Grosbach91fa7812009-05-13 22:32:43 +0000260
Dan Gohman4df9d9c2010-05-11 16:21:03 +0000261 const ARMSubtarget* getSubtarget() const {
Dan Gohman544ab2c2008-04-12 04:36:06 +0000262 return Subtarget;
Rafael Espindolafa0df552007-11-05 23:12:20 +0000263 }
264
Evan Cheng4cad68e2010-05-15 02:18:07 +0000265 /// getRegClassFor - Return the register class that should be used for the
266 /// specified value type.
267 virtual TargetRegisterClass *getRegClassFor(EVT VT) const;
268
Bill Wendling512ff732009-07-01 18:50:55 +0000269 /// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling31ceb1b2009-06-30 22:38:32 +0000270 virtual unsigned getFunctionAlignment(const Function *F) const;
271
Anton Korobeynikov19edda02010-07-24 21:52:08 +0000272 /// getMaximalGlobalOffset - Returns the maximal possible offset which can
273 /// be used for loads / stores from the global.
274 virtual unsigned getMaximalGlobalOffset() const;
275
Eric Christopher84bdfd82010-07-21 22:26:11 +0000276 /// createFastISel - This method returns a target specific FastISel object,
277 /// or null if the target does not support "fast" ISel.
278 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
279
Evan Cheng4401f882010-05-20 23:26:43 +0000280 Sched::Preference getSchedulingPreference(SDNode *N) const;
281
Evan Chengdf907f42010-07-23 22:39:59 +0000282 unsigned getRegPressureLimit(const TargetRegisterClass *RC,
283 MachineFunction &MF) const;
284
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +0000285 bool isShuffleMaskLegal(const SmallVectorImpl<int> &M, EVT VT) const;
Anton Korobeynikov29a44df2009-09-23 19:04:09 +0000286 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
Evan Cheng4a609f3c2009-10-28 01:44:26 +0000287
288 /// isFPImmLegal - Returns true if the target can instruction select the
289 /// specified FP immediate natively. If false, the legalizer will
290 /// materialize the FP immediate as a load from a constant pool.
291 virtual bool isFPImmLegal(const APFloat &Imm, EVT VT) const;
292
Evan Cheng10f99a32010-07-19 22:15:08 +0000293 protected:
Evan Chenga77f3d32010-07-21 06:09:07 +0000294 std::pair<const TargetRegisterClass*, uint8_t>
295 findRepresentativeClass(EVT VT) const;
Evan Cheng10f99a32010-07-19 22:15:08 +0000296
Evan Cheng10043e22007-01-19 07:51:42 +0000297 private:
298 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
299 /// make the right decision when generating code for different targets.
300 const ARMSubtarget *Subtarget;
301
Evan Chengdf907f42010-07-23 22:39:59 +0000302 const TargetRegisterInfo *RegInfo;
303
Bob Wilson844d6c82009-07-13 18:11:36 +0000304 /// ARMPCLabelIndex - Keep track of the number of ARM PC labels created.
Evan Cheng10043e22007-01-19 07:51:42 +0000305 ///
306 unsigned ARMPCLabelIndex;
307
Owen Anderson53aa7a92009-08-10 22:56:29 +0000308 void addTypeForNEON(EVT VT, EVT PromotedLdStVT, EVT PromotedBitwiseVT);
309 void addDRTypeForNEON(EVT VT);
310 void addQRTypeForNEON(EVT VT);
Bob Wilson2e076c42009-06-22 23:27:02 +0000311
312 typedef SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPassVector;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000313 void PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG,
Bob Wilson2e076c42009-06-22 23:27:02 +0000314 SDValue Chain, SDValue &Arg,
315 RegsToPassVector &RegsToPass,
316 CCValAssign &VA, CCValAssign &NextVA,
317 SDValue &StackPtr,
318 SmallVector<SDValue, 8> &MemOpChains,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000319 ISD::ArgFlagsTy Flags) const;
Bob Wilson2e076c42009-06-22 23:27:02 +0000320 SDValue GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000321 SDValue &Root, SelectionDAG &DAG,
322 DebugLoc dl) const;
Bob Wilson2e076c42009-06-22 23:27:02 +0000323
Jim Grosbach84511e12010-06-02 21:53:11 +0000324 CCAssignFn *CCAssignFnForNode(CallingConv::ID CC, bool Return,
325 bool isVarArg) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000326 SDValue LowerMemOpCallTo(SDValue Chain, SDValue StackPtr, SDValue Arg,
327 DebugLoc dl, SelectionDAG &DAG,
328 const CCValAssign &VA,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000329 ISD::ArgFlagsTy Flags) const;
Jim Grosbachc98892f2010-05-26 20:22:18 +0000330 SDValue LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const;
Jim Grosbachbd9485d2010-05-22 01:06:18 +0000331 SDValue LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const;
Jim Grosbacha570d052010-02-08 23:22:00 +0000332 SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000333 const ARMSubtarget *Subtarget) const;
334 SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
335 SDValue LowerGlobalAddressDarwin(SDValue Op, SelectionDAG &DAG) const;
336 SDValue LowerGlobalAddressELF(SDValue Op, SelectionDAG &DAG) const;
337 SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000338 SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000339 SelectionDAG &DAG) const;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000340 SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000341 SelectionDAG &DAG) const;
342 SDValue LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG) const;
343 SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG) const;
Bill Wendling6a981312010-08-11 08:43:16 +0000344 SDValue LowerSELECT(SDValue Op, SelectionDAG &DAG) const;
Dan Gohman21cea8a2010-04-17 15:26:15 +0000345 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
346 SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const;
Evan Cheng25f93642010-07-08 02:08:50 +0000347 SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const;
Evan Cheng168ced92010-05-22 01:47:14 +0000348 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
Dan Gohman21cea8a2010-04-17 15:26:15 +0000349 SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
Dan Gohman21cea8a2010-04-17 15:26:15 +0000350 SDValue LowerShiftRightParts(SDValue Op, SelectionDAG &DAG) const;
351 SDValue LowerShiftLeftParts(SDValue Op, SelectionDAG &DAG) const;
Nate Begemanb69b1822010-08-03 21:31:55 +0000352 SDValue LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) const;
Rafael Espindola18a831d2007-10-19 14:35:17 +0000353
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000354 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000355 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000356 const SmallVectorImpl<ISD::InputArg> &Ins,
357 DebugLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000358 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000359
360 virtual SDValue
361 LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000362 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000363 const SmallVectorImpl<ISD::InputArg> &Ins,
364 DebugLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000365 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000366
367 virtual SDValue
Evan Cheng6f36a082010-02-02 23:55:14 +0000368 LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000369 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng67a69dd2010-01-27 00:07:07 +0000370 bool &isTailCall,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000371 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +0000372 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000373 const SmallVectorImpl<ISD::InputArg> &Ins,
374 DebugLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000375 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000376
Dale Johannesend679ff72010-06-03 21:09:53 +0000377 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
378 /// for tail call optimization. Targets which want to do tail call
379 /// optimization should implement this function.
380 bool IsEligibleForTailCallOptimization(SDValue Callee,
381 CallingConv::ID CalleeCC,
382 bool isVarArg,
383 bool isCalleeStructRet,
384 bool isCallerStructRet,
385 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +0000386 const SmallVectorImpl<SDValue> &OutVals,
Dale Johannesend679ff72010-06-03 21:09:53 +0000387 const SmallVectorImpl<ISD::InputArg> &Ins,
388 SelectionDAG& DAG) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000389 virtual SDValue
390 LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000391 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000392 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +0000393 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000394 DebugLoc dl, SelectionDAG &DAG) const;
Evan Cheng15b80e42009-11-12 07:13:11 +0000395
396 SDValue getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
Evan Cheng0cc4ad92010-07-13 19:27:42 +0000397 SDValue &ARMcc, SelectionDAG &DAG, DebugLoc dl) const;
398 SDValue getVFPCmp(SDValue LHS, SDValue RHS,
399 SelectionDAG &DAG, DebugLoc dl) const;
400
401 SDValue OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000402
Jim Grosbach8f9a3ac2009-12-12 01:40:06 +0000403 MachineBasicBlock *EmitAtomicCmpSwap(MachineInstr *MI,
404 MachineBasicBlock *BB,
405 unsigned Size) const;
406 MachineBasicBlock *EmitAtomicBinary(MachineInstr *MI,
407 MachineBasicBlock *BB,
408 unsigned Size,
409 unsigned BinOpcode) const;
Jim Grosbach5c4e99f2009-12-11 01:42:04 +0000410
Evan Cheng10043e22007-01-19 07:51:42 +0000411 };
Eric Christopher84bdfd82010-07-21 22:26:11 +0000412
413 namespace ARM {
414 FastISel *createFastISel(FunctionLoweringInfo &funcInfo);
415 }
Evan Cheng10043e22007-01-19 07:51:42 +0000416}
417
418#endif // ARMISELLOWERING_H