Remove cyclic dependency in AArch64 libraries
[oota-llvm.git] / lib / Target / AArch64 / AArch64ISelLowering.cpp
1 //===-- AArch64ISelLowering.cpp - AArch64 DAG Lowering Implementation -----===//
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 AArch64 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "aarch64-isel"
16 #include "AArch64.h"
17 #include "AArch64ISelLowering.h"
18 #include "AArch64MachineFunctionInfo.h"
19 #include "AArch64TargetMachine.h"
20 #include "AArch64TargetObjectFile.h"
21 #include "Utils/AArch64BaseInfo.h"
22 #include "llvm/CodeGen/Analysis.h"
23 #include "llvm/CodeGen/CallingConvLower.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineInstrBuilder.h"
26 #include "llvm/CodeGen/MachineRegisterInfo.h"
27 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
28 #include "llvm/IR/CallingConv.h"
29
30 using namespace llvm;
31
32 static TargetLoweringObjectFile *createTLOF(AArch64TargetMachine &TM) {
33   const AArch64Subtarget *Subtarget = &TM.getSubtarget<AArch64Subtarget>();
34
35   if (Subtarget->isTargetLinux())
36     return new AArch64LinuxTargetObjectFile();
37   if (Subtarget->isTargetELF())
38     return new TargetLoweringObjectFileELF();
39   llvm_unreachable("unknown subtarget type");
40 }
41
42
43 AArch64TargetLowering::AArch64TargetLowering(AArch64TargetMachine &TM)
44   : TargetLowering(TM, createTLOF(TM)),
45     Subtarget(&TM.getSubtarget<AArch64Subtarget>()),
46     RegInfo(TM.getRegisterInfo()),
47     Itins(TM.getInstrItineraryData()) {
48
49   // SIMD compares set the entire lane's bits to 1
50   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
51
52   // Scalar register <-> type mapping
53   addRegisterClass(MVT::i32, &AArch64::GPR32RegClass);
54   addRegisterClass(MVT::i64, &AArch64::GPR64RegClass);
55   addRegisterClass(MVT::f16, &AArch64::FPR16RegClass);
56   addRegisterClass(MVT::f32, &AArch64::FPR32RegClass);
57   addRegisterClass(MVT::f64, &AArch64::FPR64RegClass);
58   addRegisterClass(MVT::f128, &AArch64::FPR128RegClass);
59
60   // And the vectors
61   addRegisterClass(MVT::v8i8, &AArch64::VPR64RegClass);
62   addRegisterClass(MVT::v4i16, &AArch64::VPR64RegClass);
63   addRegisterClass(MVT::v2i32, &AArch64::VPR64RegClass);
64   addRegisterClass(MVT::v2f32, &AArch64::VPR64RegClass);
65   addRegisterClass(MVT::v16i8, &AArch64::VPR128RegClass);
66   addRegisterClass(MVT::v8i16, &AArch64::VPR128RegClass);
67   addRegisterClass(MVT::v4i32, &AArch64::VPR128RegClass);
68   addRegisterClass(MVT::v4f32, &AArch64::VPR128RegClass);
69   addRegisterClass(MVT::v2f64, &AArch64::VPR128RegClass);
70
71   computeRegisterProperties();
72
73   // Some atomic operations can be folded into load-acquire or store-release
74   // instructions on AArch64. It's marginally simpler to let LLVM expand
75   // everything out to a barrier and then recombine the (few) barriers we can.
76   setInsertFencesForAtomic(true);
77   setTargetDAGCombine(ISD::ATOMIC_FENCE);
78   setTargetDAGCombine(ISD::ATOMIC_STORE);
79
80   // We combine OR nodes for bitfield and NEON BSL operations.
81   setTargetDAGCombine(ISD::OR);
82
83   setTargetDAGCombine(ISD::AND);
84   setTargetDAGCombine(ISD::SRA);
85
86   // AArch64 does not have i1 loads, or much of anything for i1 really.
87   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
88   setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
89   setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
90
91   setStackPointerRegisterToSaveRestore(AArch64::XSP);
92   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
93   setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
94   setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
95
96   // We'll lower globals to wrappers for selection.
97   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
98   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
99
100   // A64 instructions have the comparison predicate attached to the user of the
101   // result, but having a separate comparison is valuable for matching.
102   setOperationAction(ISD::BR_CC, MVT::i32, Custom);
103   setOperationAction(ISD::BR_CC, MVT::i64, Custom);
104   setOperationAction(ISD::BR_CC, MVT::f32, Custom);
105   setOperationAction(ISD::BR_CC, MVT::f64, Custom);
106
107   setOperationAction(ISD::SELECT, MVT::i32, Custom);
108   setOperationAction(ISD::SELECT, MVT::i64, Custom);
109   setOperationAction(ISD::SELECT, MVT::f32, Custom);
110   setOperationAction(ISD::SELECT, MVT::f64, Custom);
111
112   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
113   setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
114   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
115   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
116
117   setOperationAction(ISD::BRCOND, MVT::Other, Custom);
118
119   setOperationAction(ISD::SETCC, MVT::i32, Custom);
120   setOperationAction(ISD::SETCC, MVT::i64, Custom);
121   setOperationAction(ISD::SETCC, MVT::f32, Custom);
122   setOperationAction(ISD::SETCC, MVT::f64, Custom);
123
124   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
125   setOperationAction(ISD::JumpTable, MVT::i32, Custom);
126   setOperationAction(ISD::JumpTable, MVT::i64, Custom);
127
128   setOperationAction(ISD::VASTART, MVT::Other, Custom);
129   setOperationAction(ISD::VACOPY, MVT::Other, Custom);
130   setOperationAction(ISD::VAEND, MVT::Other, Expand);
131   setOperationAction(ISD::VAARG, MVT::Other, Expand);
132
133   setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
134
135   setOperationAction(ISD::ROTL, MVT::i32, Expand);
136   setOperationAction(ISD::ROTL, MVT::i64, Expand);
137
138   setOperationAction(ISD::UREM, MVT::i32, Expand);
139   setOperationAction(ISD::UREM, MVT::i64, Expand);
140   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
141   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
142
143   setOperationAction(ISD::SREM, MVT::i32, Expand);
144   setOperationAction(ISD::SREM, MVT::i64, Expand);
145   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
146   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
147
148   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
149   setOperationAction(ISD::CTPOP, MVT::i64, Expand);
150
151   // Legal floating-point operations.
152   setOperationAction(ISD::FABS, MVT::f32, Legal);
153   setOperationAction(ISD::FABS, MVT::f64, Legal);
154
155   setOperationAction(ISD::FCEIL, MVT::f32, Legal);
156   setOperationAction(ISD::FCEIL, MVT::f64, Legal);
157
158   setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
159   setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
160
161   setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
162   setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
163
164   setOperationAction(ISD::FNEG, MVT::f32, Legal);
165   setOperationAction(ISD::FNEG, MVT::f64, Legal);
166
167   setOperationAction(ISD::FRINT, MVT::f32, Legal);
168   setOperationAction(ISD::FRINT, MVT::f64, Legal);
169
170   setOperationAction(ISD::FSQRT, MVT::f32, Legal);
171   setOperationAction(ISD::FSQRT, MVT::f64, Legal);
172
173   setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
174   setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
175
176   setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
177   setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
178   setOperationAction(ISD::ConstantFP, MVT::f128, Legal);
179
180   // Illegal floating-point operations.
181   setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
182   setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
183
184   setOperationAction(ISD::FCOS, MVT::f32, Expand);
185   setOperationAction(ISD::FCOS, MVT::f64, Expand);
186
187   setOperationAction(ISD::FEXP, MVT::f32, Expand);
188   setOperationAction(ISD::FEXP, MVT::f64, Expand);
189
190   setOperationAction(ISD::FEXP2, MVT::f32, Expand);
191   setOperationAction(ISD::FEXP2, MVT::f64, Expand);
192
193   setOperationAction(ISD::FLOG, MVT::f32, Expand);
194   setOperationAction(ISD::FLOG, MVT::f64, Expand);
195
196   setOperationAction(ISD::FLOG2, MVT::f32, Expand);
197   setOperationAction(ISD::FLOG2, MVT::f64, Expand);
198
199   setOperationAction(ISD::FLOG10, MVT::f32, Expand);
200   setOperationAction(ISD::FLOG10, MVT::f64, Expand);
201
202   setOperationAction(ISD::FPOW, MVT::f32, Expand);
203   setOperationAction(ISD::FPOW, MVT::f64, Expand);
204
205   setOperationAction(ISD::FPOWI, MVT::f32, Expand);
206   setOperationAction(ISD::FPOWI, MVT::f64, Expand);
207
208   setOperationAction(ISD::FREM, MVT::f32, Expand);
209   setOperationAction(ISD::FREM, MVT::f64, Expand);
210
211   setOperationAction(ISD::FSIN, MVT::f32, Expand);
212   setOperationAction(ISD::FSIN, MVT::f64, Expand);
213
214
215   // Virtually no operation on f128 is legal, but LLVM can't expand them when
216   // there's a valid register class, so we need custom operations in most cases.
217   setOperationAction(ISD::FABS,       MVT::f128, Expand);
218   setOperationAction(ISD::FADD,       MVT::f128, Custom);
219   setOperationAction(ISD::FCOPYSIGN,  MVT::f128, Expand);
220   setOperationAction(ISD::FCOS,       MVT::f128, Expand);
221   setOperationAction(ISD::FDIV,       MVT::f128, Custom);
222   setOperationAction(ISD::FMA,        MVT::f128, Expand);
223   setOperationAction(ISD::FMUL,       MVT::f128, Custom);
224   setOperationAction(ISD::FNEG,       MVT::f128, Expand);
225   setOperationAction(ISD::FP_EXTEND,  MVT::f128, Expand);
226   setOperationAction(ISD::FP_ROUND,   MVT::f128, Expand);
227   setOperationAction(ISD::FPOW,       MVT::f128, Expand);
228   setOperationAction(ISD::FREM,       MVT::f128, Expand);
229   setOperationAction(ISD::FRINT,      MVT::f128, Expand);
230   setOperationAction(ISD::FSIN,       MVT::f128, Expand);
231   setOperationAction(ISD::FSQRT,      MVT::f128, Expand);
232   setOperationAction(ISD::FSUB,       MVT::f128, Custom);
233   setOperationAction(ISD::FTRUNC,     MVT::f128, Expand);
234   setOperationAction(ISD::SETCC,      MVT::f128, Custom);
235   setOperationAction(ISD::BR_CC,      MVT::f128, Custom);
236   setOperationAction(ISD::SELECT,     MVT::f128, Expand);
237   setOperationAction(ISD::SELECT_CC,  MVT::f128, Custom);
238   setOperationAction(ISD::FP_EXTEND,  MVT::f128, Custom);
239
240   // Lowering for many of the conversions is actually specified by the non-f128
241   // type. The LowerXXX function will be trivial when f128 isn't involved.
242   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
243   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
244   setOperationAction(ISD::FP_TO_SINT, MVT::i128, Custom);
245   setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
246   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
247   setOperationAction(ISD::FP_TO_UINT, MVT::i128, Custom);
248   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
249   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
250   setOperationAction(ISD::SINT_TO_FP, MVT::i128, Custom);
251   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
252   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
253   setOperationAction(ISD::UINT_TO_FP, MVT::i128, Custom);
254   setOperationAction(ISD::FP_ROUND,  MVT::f32, Custom);
255   setOperationAction(ISD::FP_ROUND,  MVT::f64, Custom);
256
257   // This prevents LLVM trying to compress double constants into a floating
258   // constant-pool entry and trying to load from there. It's of doubtful benefit
259   // for A64: we'd need LDR followed by FCVT, I believe.
260   setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand);
261   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
262   setLoadExtAction(ISD::EXTLOAD, MVT::f16, Expand);
263
264   setTruncStoreAction(MVT::f128, MVT::f64, Expand);
265   setTruncStoreAction(MVT::f128, MVT::f32, Expand);
266   setTruncStoreAction(MVT::f128, MVT::f16, Expand);
267   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
268   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
269   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
270
271   setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
272   setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
273
274   setExceptionPointerRegister(AArch64::X0);
275   setExceptionSelectorRegister(AArch64::X1);
276 }
277
278 EVT AArch64TargetLowering::getSetCCResultType(EVT VT) const {
279   // It's reasonably important that this value matches the "natural" legal
280   // promotion from i1 for scalar types. Otherwise LegalizeTypes can get itself
281   // in a twist (e.g. inserting an any_extend which then becomes i64 -> i64).
282   if (!VT.isVector()) return MVT::i32;
283   return VT.changeVectorElementTypeToInteger();
284 }
285
286 static void getExclusiveOperation(unsigned Size, unsigned &ldrOpc,
287                                   unsigned &strOpc) {
288   switch (Size) {
289   default: llvm_unreachable("unsupported size for atomic binary op!");
290   case 1:
291     ldrOpc = AArch64::LDXR_byte;
292     strOpc = AArch64::STXR_byte;
293     break;
294   case 2:
295     ldrOpc = AArch64::LDXR_hword;
296     strOpc = AArch64::STXR_hword;
297     break;
298   case 4:
299     ldrOpc = AArch64::LDXR_word;
300     strOpc = AArch64::STXR_word;
301     break;
302   case 8:
303     ldrOpc = AArch64::LDXR_dword;
304     strOpc = AArch64::STXR_dword;
305     break;
306   }
307 }
308
309 MachineBasicBlock *
310 AArch64TargetLowering::emitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
311                                         unsigned Size,
312                                         unsigned BinOpcode) const {
313   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
314   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
315
316   const BasicBlock *LLVM_BB = BB->getBasicBlock();
317   MachineFunction *MF = BB->getParent();
318   MachineFunction::iterator It = BB;
319   ++It;
320
321   unsigned dest = MI->getOperand(0).getReg();
322   unsigned ptr = MI->getOperand(1).getReg();
323   unsigned incr = MI->getOperand(2).getReg();
324   DebugLoc dl = MI->getDebugLoc();
325
326   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
327
328   unsigned ldrOpc, strOpc;
329   getExclusiveOperation(Size, ldrOpc, strOpc);
330
331   MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
332   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
333   MF->insert(It, loopMBB);
334   MF->insert(It, exitMBB);
335
336   // Transfer the remainder of BB and its successor edges to exitMBB.
337   exitMBB->splice(exitMBB->begin(), BB,
338                   llvm::next(MachineBasicBlock::iterator(MI)),
339                   BB->end());
340   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
341
342   const TargetRegisterClass *TRC
343     = Size == 8 ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
344   unsigned scratch = (!BinOpcode) ? incr : MRI.createVirtualRegister(TRC);
345
346   //  thisMBB:
347   //   ...
348   //   fallthrough --> loopMBB
349   BB->addSuccessor(loopMBB);
350
351   //  loopMBB:
352   //   ldxr dest, ptr
353   //   <binop> scratch, dest, incr
354   //   stxr stxr_status, scratch, ptr
355   //   cmp stxr_status, #0
356   //   b.ne loopMBB
357   //   fallthrough --> exitMBB
358   BB = loopMBB;
359   BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr);
360   if (BinOpcode) {
361     // All arithmetic operations we'll be creating are designed to take an extra
362     // shift or extend operand, which we can conveniently set to zero.
363
364     // Operand order needs to go the other way for NAND.
365     if (BinOpcode == AArch64::BICwww_lsl || BinOpcode == AArch64::BICxxx_lsl)
366       BuildMI(BB, dl, TII->get(BinOpcode), scratch)
367         .addReg(incr).addReg(dest).addImm(0);
368     else
369       BuildMI(BB, dl, TII->get(BinOpcode), scratch)
370         .addReg(dest).addReg(incr).addImm(0);
371   }
372
373   // From the stxr, the register is GPR32; from the cmp it's GPR32wsp
374   unsigned stxr_status = MRI.createVirtualRegister(&AArch64::GPR32RegClass);
375   MRI.constrainRegClass(stxr_status, &AArch64::GPR32wspRegClass);
376
377   BuildMI(BB, dl, TII->get(strOpc), stxr_status).addReg(scratch).addReg(ptr);
378   BuildMI(BB, dl, TII->get(AArch64::SUBwwi_lsl0_cmp))
379     .addReg(stxr_status).addImm(0);
380   BuildMI(BB, dl, TII->get(AArch64::Bcc))
381     .addImm(A64CC::NE).addMBB(loopMBB);
382
383   BB->addSuccessor(loopMBB);
384   BB->addSuccessor(exitMBB);
385
386   //  exitMBB:
387   //   ...
388   BB = exitMBB;
389
390   MI->eraseFromParent();   // The instruction is gone now.
391
392   return BB;
393 }
394
395 MachineBasicBlock *
396 AArch64TargetLowering::emitAtomicBinaryMinMax(MachineInstr *MI,
397                                               MachineBasicBlock *BB,
398                                               unsigned Size,
399                                               unsigned CmpOp,
400                                               A64CC::CondCodes Cond) const {
401   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
402
403   const BasicBlock *LLVM_BB = BB->getBasicBlock();
404   MachineFunction *MF = BB->getParent();
405   MachineFunction::iterator It = BB;
406   ++It;
407
408   unsigned dest = MI->getOperand(0).getReg();
409   unsigned ptr = MI->getOperand(1).getReg();
410   unsigned incr = MI->getOperand(2).getReg();
411   unsigned oldval = dest;
412   DebugLoc dl = MI->getDebugLoc();
413
414   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
415   const TargetRegisterClass *TRC, *TRCsp;
416   if (Size == 8) {
417     TRC = &AArch64::GPR64RegClass;
418     TRCsp = &AArch64::GPR64xspRegClass;
419   } else {
420     TRC = &AArch64::GPR32RegClass;
421     TRCsp = &AArch64::GPR32wspRegClass;
422   }
423
424   unsigned ldrOpc, strOpc;
425   getExclusiveOperation(Size, ldrOpc, strOpc);
426
427   MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
428   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
429   MF->insert(It, loopMBB);
430   MF->insert(It, exitMBB);
431
432   // Transfer the remainder of BB and its successor edges to exitMBB.
433   exitMBB->splice(exitMBB->begin(), BB,
434                   llvm::next(MachineBasicBlock::iterator(MI)),
435                   BB->end());
436   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
437
438   unsigned scratch = MRI.createVirtualRegister(TRC);
439   MRI.constrainRegClass(scratch, TRCsp);
440
441   //  thisMBB:
442   //   ...
443   //   fallthrough --> loopMBB
444   BB->addSuccessor(loopMBB);
445
446   //  loopMBB:
447   //   ldxr dest, ptr
448   //   cmp incr, dest (, sign extend if necessary)
449   //   csel scratch, dest, incr, cond
450   //   stxr stxr_status, scratch, ptr
451   //   cmp stxr_status, #0
452   //   b.ne loopMBB
453   //   fallthrough --> exitMBB
454   BB = loopMBB;
455   BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr);
456
457   // Build compare and cmov instructions.
458   MRI.constrainRegClass(incr, TRCsp);
459   BuildMI(BB, dl, TII->get(CmpOp))
460     .addReg(incr).addReg(oldval).addImm(0);
461
462   BuildMI(BB, dl, TII->get(Size == 8 ? AArch64::CSELxxxc : AArch64::CSELwwwc),
463           scratch)
464     .addReg(oldval).addReg(incr).addImm(Cond);
465
466   unsigned stxr_status = MRI.createVirtualRegister(&AArch64::GPR32RegClass);
467   MRI.constrainRegClass(stxr_status, &AArch64::GPR32wspRegClass);
468
469   BuildMI(BB, dl, TII->get(strOpc), stxr_status)
470     .addReg(scratch).addReg(ptr);
471   BuildMI(BB, dl, TII->get(AArch64::SUBwwi_lsl0_cmp))
472     .addReg(stxr_status).addImm(0);
473   BuildMI(BB, dl, TII->get(AArch64::Bcc))
474     .addImm(A64CC::NE).addMBB(loopMBB);
475
476   BB->addSuccessor(loopMBB);
477   BB->addSuccessor(exitMBB);
478
479   //  exitMBB:
480   //   ...
481   BB = exitMBB;
482
483   MI->eraseFromParent();   // The instruction is gone now.
484
485   return BB;
486 }
487
488 MachineBasicBlock *
489 AArch64TargetLowering::emitAtomicCmpSwap(MachineInstr *MI,
490                                          MachineBasicBlock *BB,
491                                          unsigned Size) const {
492   unsigned dest    = MI->getOperand(0).getReg();
493   unsigned ptr     = MI->getOperand(1).getReg();
494   unsigned oldval  = MI->getOperand(2).getReg();
495   unsigned newval  = MI->getOperand(3).getReg();
496   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
497   DebugLoc dl = MI->getDebugLoc();
498
499   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
500   const TargetRegisterClass *TRCsp;
501   TRCsp = Size == 8 ? &AArch64::GPR64xspRegClass : &AArch64::GPR32wspRegClass;
502
503   unsigned ldrOpc, strOpc;
504   getExclusiveOperation(Size, ldrOpc, strOpc);
505
506   MachineFunction *MF = BB->getParent();
507   const BasicBlock *LLVM_BB = BB->getBasicBlock();
508   MachineFunction::iterator It = BB;
509   ++It; // insert the new blocks after the current block
510
511   MachineBasicBlock *loop1MBB = MF->CreateMachineBasicBlock(LLVM_BB);
512   MachineBasicBlock *loop2MBB = MF->CreateMachineBasicBlock(LLVM_BB);
513   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
514   MF->insert(It, loop1MBB);
515   MF->insert(It, loop2MBB);
516   MF->insert(It, exitMBB);
517
518   // Transfer the remainder of BB and its successor edges to exitMBB.
519   exitMBB->splice(exitMBB->begin(), BB,
520                   llvm::next(MachineBasicBlock::iterator(MI)),
521                   BB->end());
522   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
523
524   //  thisMBB:
525   //   ...
526   //   fallthrough --> loop1MBB
527   BB->addSuccessor(loop1MBB);
528
529   // loop1MBB:
530   //   ldxr dest, [ptr]
531   //   cmp dest, oldval
532   //   b.ne exitMBB
533   BB = loop1MBB;
534   BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr);
535
536   unsigned CmpOp = Size == 8 ? AArch64::CMPxx_lsl : AArch64::CMPww_lsl;
537   MRI.constrainRegClass(dest, TRCsp);
538   BuildMI(BB, dl, TII->get(CmpOp))
539     .addReg(dest).addReg(oldval).addImm(0);
540   BuildMI(BB, dl, TII->get(AArch64::Bcc))
541     .addImm(A64CC::NE).addMBB(exitMBB);
542   BB->addSuccessor(loop2MBB);
543   BB->addSuccessor(exitMBB);
544
545   // loop2MBB:
546   //   strex stxr_status, newval, [ptr]
547   //   cmp stxr_status, #0
548   //   b.ne loop1MBB
549   BB = loop2MBB;
550   unsigned stxr_status = MRI.createVirtualRegister(&AArch64::GPR32RegClass);
551   MRI.constrainRegClass(stxr_status, &AArch64::GPR32wspRegClass);
552
553   BuildMI(BB, dl, TII->get(strOpc), stxr_status).addReg(newval).addReg(ptr);
554   BuildMI(BB, dl, TII->get(AArch64::SUBwwi_lsl0_cmp))
555     .addReg(stxr_status).addImm(0);
556   BuildMI(BB, dl, TII->get(AArch64::Bcc))
557     .addImm(A64CC::NE).addMBB(loop1MBB);
558   BB->addSuccessor(loop1MBB);
559   BB->addSuccessor(exitMBB);
560
561   //  exitMBB:
562   //   ...
563   BB = exitMBB;
564
565   MI->eraseFromParent();   // The instruction is gone now.
566
567   return BB;
568 }
569
570 MachineBasicBlock *
571 AArch64TargetLowering::EmitF128CSEL(MachineInstr *MI,
572                                     MachineBasicBlock *MBB) const {
573   // We materialise the F128CSEL pseudo-instruction using conditional branches
574   // and loads, giving an instruciton sequence like:
575   //     str q0, [sp]
576   //     b.ne IfTrue
577   //     b Finish
578   // IfTrue:
579   //     str q1, [sp]
580   // Finish:
581   //     ldr q0, [sp]
582   //
583   // Using virtual registers would probably not be beneficial since COPY
584   // instructions are expensive for f128 (there's no actual instruction to
585   // implement them).
586   //
587   // An alternative would be to do an integer-CSEL on some address. E.g.:
588   //     mov x0, sp
589   //     add x1, sp, #16
590   //     str q0, [x0]
591   //     str q1, [x1]
592   //     csel x0, x0, x1, ne
593   //     ldr q0, [x0]
594   //
595   // It's unclear which approach is actually optimal.
596   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
597   MachineFunction *MF = MBB->getParent();
598   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
599   DebugLoc DL = MI->getDebugLoc();
600   MachineFunction::iterator It = MBB;
601   ++It;
602
603   unsigned DestReg = MI->getOperand(0).getReg();
604   unsigned IfTrueReg = MI->getOperand(1).getReg();
605   unsigned IfFalseReg = MI->getOperand(2).getReg();
606   unsigned CondCode = MI->getOperand(3).getImm();
607   bool NZCVKilled = MI->getOperand(4).isKill();
608
609   MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB);
610   MachineBasicBlock *EndBB = MF->CreateMachineBasicBlock(LLVM_BB);
611   MF->insert(It, TrueBB);
612   MF->insert(It, EndBB);
613
614   // Transfer rest of current basic-block to EndBB
615   EndBB->splice(EndBB->begin(), MBB,
616                 llvm::next(MachineBasicBlock::iterator(MI)),
617                 MBB->end());
618   EndBB->transferSuccessorsAndUpdatePHIs(MBB);
619
620   // We need somewhere to store the f128 value needed.
621   int ScratchFI = MF->getFrameInfo()->CreateSpillStackObject(16, 16);
622
623   //     [... start of incoming MBB ...]
624   //     str qIFFALSE, [sp]
625   //     b.cc IfTrue
626   //     b Done
627   BuildMI(MBB, DL, TII->get(AArch64::LSFP128_STR))
628     .addReg(IfFalseReg)
629     .addFrameIndex(ScratchFI)
630     .addImm(0);
631   BuildMI(MBB, DL, TII->get(AArch64::Bcc))
632     .addImm(CondCode)
633     .addMBB(TrueBB);
634   BuildMI(MBB, DL, TII->get(AArch64::Bimm))
635     .addMBB(EndBB);
636   MBB->addSuccessor(TrueBB);
637   MBB->addSuccessor(EndBB);
638
639   // IfTrue:
640   //     str qIFTRUE, [sp]
641   BuildMI(TrueBB, DL, TII->get(AArch64::LSFP128_STR))
642     .addReg(IfTrueReg)
643     .addFrameIndex(ScratchFI)
644     .addImm(0);
645
646   // Note: fallthrough. We can rely on LLVM adding a branch if it reorders the
647   // blocks.
648   TrueBB->addSuccessor(EndBB);
649
650   // Done:
651   //     ldr qDEST, [sp]
652   //     [... rest of incoming MBB ...]
653   if (!NZCVKilled)
654     EndBB->addLiveIn(AArch64::NZCV);
655   MachineInstr *StartOfEnd = EndBB->begin();
656   BuildMI(*EndBB, StartOfEnd, DL, TII->get(AArch64::LSFP128_LDR), DestReg)
657     .addFrameIndex(ScratchFI)
658     .addImm(0);
659
660   MI->eraseFromParent();
661   return EndBB;
662 }
663
664 MachineBasicBlock *
665 AArch64TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
666                                                  MachineBasicBlock *MBB) const {
667   switch (MI->getOpcode()) {
668   default: llvm_unreachable("Unhandled instruction with custom inserter");
669   case AArch64::F128CSEL:
670     return EmitF128CSEL(MI, MBB);
671   case AArch64::ATOMIC_LOAD_ADD_I8:
672     return emitAtomicBinary(MI, MBB, 1, AArch64::ADDwww_lsl);
673   case AArch64::ATOMIC_LOAD_ADD_I16:
674     return emitAtomicBinary(MI, MBB, 2, AArch64::ADDwww_lsl);
675   case AArch64::ATOMIC_LOAD_ADD_I32:
676     return emitAtomicBinary(MI, MBB, 4, AArch64::ADDwww_lsl);
677   case AArch64::ATOMIC_LOAD_ADD_I64:
678     return emitAtomicBinary(MI, MBB, 8, AArch64::ADDxxx_lsl);
679
680   case AArch64::ATOMIC_LOAD_SUB_I8:
681     return emitAtomicBinary(MI, MBB, 1, AArch64::SUBwww_lsl);
682   case AArch64::ATOMIC_LOAD_SUB_I16:
683     return emitAtomicBinary(MI, MBB, 2, AArch64::SUBwww_lsl);
684   case AArch64::ATOMIC_LOAD_SUB_I32:
685     return emitAtomicBinary(MI, MBB, 4, AArch64::SUBwww_lsl);
686   case AArch64::ATOMIC_LOAD_SUB_I64:
687     return emitAtomicBinary(MI, MBB, 8, AArch64::SUBxxx_lsl);
688
689   case AArch64::ATOMIC_LOAD_AND_I8:
690     return emitAtomicBinary(MI, MBB, 1, AArch64::ANDwww_lsl);
691   case AArch64::ATOMIC_LOAD_AND_I16:
692     return emitAtomicBinary(MI, MBB, 2, AArch64::ANDwww_lsl);
693   case AArch64::ATOMIC_LOAD_AND_I32:
694     return emitAtomicBinary(MI, MBB, 4, AArch64::ANDwww_lsl);
695   case AArch64::ATOMIC_LOAD_AND_I64:
696     return emitAtomicBinary(MI, MBB, 8, AArch64::ANDxxx_lsl);
697
698   case AArch64::ATOMIC_LOAD_OR_I8:
699     return emitAtomicBinary(MI, MBB, 1, AArch64::ORRwww_lsl);
700   case AArch64::ATOMIC_LOAD_OR_I16:
701     return emitAtomicBinary(MI, MBB, 2, AArch64::ORRwww_lsl);
702   case AArch64::ATOMIC_LOAD_OR_I32:
703     return emitAtomicBinary(MI, MBB, 4, AArch64::ORRwww_lsl);
704   case AArch64::ATOMIC_LOAD_OR_I64:
705     return emitAtomicBinary(MI, MBB, 8, AArch64::ORRxxx_lsl);
706
707   case AArch64::ATOMIC_LOAD_XOR_I8:
708     return emitAtomicBinary(MI, MBB, 1, AArch64::EORwww_lsl);
709   case AArch64::ATOMIC_LOAD_XOR_I16:
710     return emitAtomicBinary(MI, MBB, 2, AArch64::EORwww_lsl);
711   case AArch64::ATOMIC_LOAD_XOR_I32:
712     return emitAtomicBinary(MI, MBB, 4, AArch64::EORwww_lsl);
713   case AArch64::ATOMIC_LOAD_XOR_I64:
714     return emitAtomicBinary(MI, MBB, 8, AArch64::EORxxx_lsl);
715
716   case AArch64::ATOMIC_LOAD_NAND_I8:
717     return emitAtomicBinary(MI, MBB, 1, AArch64::BICwww_lsl);
718   case AArch64::ATOMIC_LOAD_NAND_I16:
719     return emitAtomicBinary(MI, MBB, 2, AArch64::BICwww_lsl);
720   case AArch64::ATOMIC_LOAD_NAND_I32:
721     return emitAtomicBinary(MI, MBB, 4, AArch64::BICwww_lsl);
722   case AArch64::ATOMIC_LOAD_NAND_I64:
723     return emitAtomicBinary(MI, MBB, 8, AArch64::BICxxx_lsl);
724
725   case AArch64::ATOMIC_LOAD_MIN_I8:
726     return emitAtomicBinaryMinMax(MI, MBB, 1, AArch64::CMPww_sxtb, A64CC::GT);
727   case AArch64::ATOMIC_LOAD_MIN_I16:
728     return emitAtomicBinaryMinMax(MI, MBB, 2, AArch64::CMPww_sxth, A64CC::GT);
729   case AArch64::ATOMIC_LOAD_MIN_I32:
730     return emitAtomicBinaryMinMax(MI, MBB, 4, AArch64::CMPww_lsl, A64CC::GT);
731   case AArch64::ATOMIC_LOAD_MIN_I64:
732     return emitAtomicBinaryMinMax(MI, MBB, 8, AArch64::CMPxx_lsl, A64CC::GT);
733
734   case AArch64::ATOMIC_LOAD_MAX_I8:
735     return emitAtomicBinaryMinMax(MI, MBB, 1, AArch64::CMPww_sxtb, A64CC::LT);
736   case AArch64::ATOMIC_LOAD_MAX_I16:
737     return emitAtomicBinaryMinMax(MI, MBB, 2, AArch64::CMPww_sxth, A64CC::LT);
738   case AArch64::ATOMIC_LOAD_MAX_I32:
739     return emitAtomicBinaryMinMax(MI, MBB, 4, AArch64::CMPww_lsl, A64CC::LT);
740   case AArch64::ATOMIC_LOAD_MAX_I64:
741     return emitAtomicBinaryMinMax(MI, MBB, 8, AArch64::CMPxx_lsl, A64CC::LT);
742
743   case AArch64::ATOMIC_LOAD_UMIN_I8:
744     return emitAtomicBinaryMinMax(MI, MBB, 1, AArch64::CMPww_uxtb, A64CC::HI);
745   case AArch64::ATOMIC_LOAD_UMIN_I16:
746     return emitAtomicBinaryMinMax(MI, MBB, 2, AArch64::CMPww_uxth, A64CC::HI);
747   case AArch64::ATOMIC_LOAD_UMIN_I32:
748     return emitAtomicBinaryMinMax(MI, MBB, 4, AArch64::CMPww_lsl, A64CC::HI);
749   case AArch64::ATOMIC_LOAD_UMIN_I64:
750     return emitAtomicBinaryMinMax(MI, MBB, 8, AArch64::CMPxx_lsl, A64CC::HI);
751
752   case AArch64::ATOMIC_LOAD_UMAX_I8:
753     return emitAtomicBinaryMinMax(MI, MBB, 1, AArch64::CMPww_uxtb, A64CC::LO);
754   case AArch64::ATOMIC_LOAD_UMAX_I16:
755     return emitAtomicBinaryMinMax(MI, MBB, 2, AArch64::CMPww_uxth, A64CC::LO);
756   case AArch64::ATOMIC_LOAD_UMAX_I32:
757     return emitAtomicBinaryMinMax(MI, MBB, 4, AArch64::CMPww_lsl, A64CC::LO);
758   case AArch64::ATOMIC_LOAD_UMAX_I64:
759     return emitAtomicBinaryMinMax(MI, MBB, 8, AArch64::CMPxx_lsl, A64CC::LO);
760
761   case AArch64::ATOMIC_SWAP_I8:
762     return emitAtomicBinary(MI, MBB, 1, 0);
763   case AArch64::ATOMIC_SWAP_I16:
764     return emitAtomicBinary(MI, MBB, 2, 0);
765   case AArch64::ATOMIC_SWAP_I32:
766     return emitAtomicBinary(MI, MBB, 4, 0);
767   case AArch64::ATOMIC_SWAP_I64:
768     return emitAtomicBinary(MI, MBB, 8, 0);
769
770   case AArch64::ATOMIC_CMP_SWAP_I8:
771     return emitAtomicCmpSwap(MI, MBB, 1);
772   case AArch64::ATOMIC_CMP_SWAP_I16:
773     return emitAtomicCmpSwap(MI, MBB, 2);
774   case AArch64::ATOMIC_CMP_SWAP_I32:
775     return emitAtomicCmpSwap(MI, MBB, 4);
776   case AArch64::ATOMIC_CMP_SWAP_I64:
777     return emitAtomicCmpSwap(MI, MBB, 8);
778   }
779 }
780
781
782 const char *AArch64TargetLowering::getTargetNodeName(unsigned Opcode) const {
783   switch (Opcode) {
784   case AArch64ISD::BR_CC:          return "AArch64ISD::BR_CC";
785   case AArch64ISD::Call:           return "AArch64ISD::Call";
786   case AArch64ISD::FPMOV:          return "AArch64ISD::FPMOV";
787   case AArch64ISD::GOTLoad:        return "AArch64ISD::GOTLoad";
788   case AArch64ISD::BFI:            return "AArch64ISD::BFI";
789   case AArch64ISD::EXTR:           return "AArch64ISD::EXTR";
790   case AArch64ISD::Ret:            return "AArch64ISD::Ret";
791   case AArch64ISD::SBFX:           return "AArch64ISD::SBFX";
792   case AArch64ISD::SELECT_CC:      return "AArch64ISD::SELECT_CC";
793   case AArch64ISD::SETCC:          return "AArch64ISD::SETCC";
794   case AArch64ISD::TC_RETURN:      return "AArch64ISD::TC_RETURN";
795   case AArch64ISD::THREAD_POINTER: return "AArch64ISD::THREAD_POINTER";
796   case AArch64ISD::TLSDESCCALL:    return "AArch64ISD::TLSDESCCALL";
797   case AArch64ISD::WrapperSmall:   return "AArch64ISD::WrapperSmall";
798
799   default:                       return NULL;
800   }
801 }
802
803 static const uint16_t AArch64FPRArgRegs[] = {
804   AArch64::Q0, AArch64::Q1, AArch64::Q2, AArch64::Q3,
805   AArch64::Q4, AArch64::Q5, AArch64::Q6, AArch64::Q7
806 };
807 static const unsigned NumFPRArgRegs = llvm::array_lengthof(AArch64FPRArgRegs);
808
809 static const uint16_t AArch64ArgRegs[] = {
810   AArch64::X0, AArch64::X1, AArch64::X2, AArch64::X3,
811   AArch64::X4, AArch64::X5, AArch64::X6, AArch64::X7
812 };
813 static const unsigned NumArgRegs = llvm::array_lengthof(AArch64ArgRegs);
814
815 static bool CC_AArch64NoMoreRegs(unsigned ValNo, MVT ValVT, MVT LocVT,
816                                  CCValAssign::LocInfo LocInfo,
817                                  ISD::ArgFlagsTy ArgFlags, CCState &State) {
818   // Mark all remaining general purpose registers as allocated. We don't
819   // backtrack: if (for example) an i128 gets put on the stack, no subsequent
820   // i64 will go in registers (C.11).
821   for (unsigned i = 0; i < NumArgRegs; ++i)
822     State.AllocateReg(AArch64ArgRegs[i]);
823
824   return false;
825 }
826
827 #include "AArch64GenCallingConv.inc"
828
829 CCAssignFn *AArch64TargetLowering::CCAssignFnForNode(CallingConv::ID CC) const {
830
831   switch(CC) {
832   default: llvm_unreachable("Unsupported calling convention");
833   case CallingConv::Fast:
834   case CallingConv::C:
835     return CC_A64_APCS;
836   }
837 }
838
839 void
840 AArch64TargetLowering::SaveVarArgRegisters(CCState &CCInfo, SelectionDAG &DAG,
841                                            DebugLoc DL, SDValue &Chain) const {
842   MachineFunction &MF = DAG.getMachineFunction();
843   MachineFrameInfo *MFI = MF.getFrameInfo();
844   AArch64MachineFunctionInfo *FuncInfo = MF.getInfo<AArch64MachineFunctionInfo>();
845
846   SmallVector<SDValue, 8> MemOps;
847
848   unsigned FirstVariadicGPR = CCInfo.getFirstUnallocated(AArch64ArgRegs,
849                                                          NumArgRegs);
850   unsigned FirstVariadicFPR = CCInfo.getFirstUnallocated(AArch64FPRArgRegs,
851                                                          NumFPRArgRegs);
852
853   unsigned GPRSaveSize = 8 * (NumArgRegs - FirstVariadicGPR);
854   int GPRIdx = 0;
855   if (GPRSaveSize != 0) {
856     GPRIdx = MFI->CreateStackObject(GPRSaveSize, 8, false);
857
858     SDValue FIN = DAG.getFrameIndex(GPRIdx, getPointerTy());
859
860     for (unsigned i = FirstVariadicGPR; i < NumArgRegs; ++i) {
861       unsigned VReg = MF.addLiveIn(AArch64ArgRegs[i], &AArch64::GPR64RegClass);
862       SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::i64);
863       SDValue Store = DAG.getStore(Val.getValue(1), DL, Val, FIN,
864                                    MachinePointerInfo::getStack(i * 8),
865                                    false, false, 0);
866       MemOps.push_back(Store);
867       FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), FIN,
868                         DAG.getConstant(8, getPointerTy()));
869     }
870   }
871
872   unsigned FPRSaveSize = 16 * (NumFPRArgRegs - FirstVariadicFPR);
873   int FPRIdx = 0;
874   if (FPRSaveSize != 0) {
875     FPRIdx = MFI->CreateStackObject(FPRSaveSize, 16, false);
876
877     SDValue FIN = DAG.getFrameIndex(FPRIdx, getPointerTy());
878
879     for (unsigned i = FirstVariadicFPR; i < NumFPRArgRegs; ++i) {
880       unsigned VReg = MF.addLiveIn(AArch64FPRArgRegs[i],
881                                    &AArch64::FPR128RegClass);
882       SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::f128);
883       SDValue Store = DAG.getStore(Val.getValue(1), DL, Val, FIN,
884                                    MachinePointerInfo::getStack(i * 16),
885                                    false, false, 0);
886       MemOps.push_back(Store);
887       FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), FIN,
888                         DAG.getConstant(16, getPointerTy()));
889     }
890   }
891
892   int StackIdx = MFI->CreateFixedObject(8, CCInfo.getNextStackOffset(), true);
893
894   FuncInfo->setVariadicStackIdx(StackIdx);
895   FuncInfo->setVariadicGPRIdx(GPRIdx);
896   FuncInfo->setVariadicGPRSize(GPRSaveSize);
897   FuncInfo->setVariadicFPRIdx(FPRIdx);
898   FuncInfo->setVariadicFPRSize(FPRSaveSize);
899
900   if (!MemOps.empty()) {
901     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, &MemOps[0],
902                         MemOps.size());
903   }
904 }
905
906
907 SDValue
908 AArch64TargetLowering::LowerFormalArguments(SDValue Chain,
909                                       CallingConv::ID CallConv, bool isVarArg,
910                                       const SmallVectorImpl<ISD::InputArg> &Ins,
911                                       DebugLoc dl, SelectionDAG &DAG,
912                                       SmallVectorImpl<SDValue> &InVals) const {
913   MachineFunction &MF = DAG.getMachineFunction();
914   AArch64MachineFunctionInfo *FuncInfo
915     = MF.getInfo<AArch64MachineFunctionInfo>();
916   MachineFrameInfo *MFI = MF.getFrameInfo();
917   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
918
919   SmallVector<CCValAssign, 16> ArgLocs;
920   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
921                  getTargetMachine(), ArgLocs, *DAG.getContext());
922   CCInfo.AnalyzeFormalArguments(Ins, CCAssignFnForNode(CallConv));
923
924   SmallVector<SDValue, 16> ArgValues;
925
926   SDValue ArgValue;
927   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
928     CCValAssign &VA = ArgLocs[i];
929     ISD::ArgFlagsTy Flags = Ins[i].Flags;
930
931     if (Flags.isByVal()) {
932       // Byval is used for small structs and HFAs in the PCS, but the system
933       // should work in a non-compliant manner for larger structs.
934       EVT PtrTy = getPointerTy();
935       int Size = Flags.getByValSize();
936       unsigned NumRegs = (Size + 7) / 8;
937
938       unsigned FrameIdx = MFI->CreateFixedObject(8 * NumRegs,
939                                                  VA.getLocMemOffset(),
940                                                  false);
941       SDValue FrameIdxN = DAG.getFrameIndex(FrameIdx, PtrTy);
942       InVals.push_back(FrameIdxN);
943
944       continue;
945     } else if (VA.isRegLoc()) {
946       MVT RegVT = VA.getLocVT();
947       const TargetRegisterClass *RC = getRegClassFor(RegVT);
948       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
949
950       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
951     } else { // VA.isRegLoc()
952       assert(VA.isMemLoc());
953
954       int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
955                                       VA.getLocMemOffset(), true);
956
957       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
958       ArgValue = DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
959                              MachinePointerInfo::getFixedStack(FI),
960                              false, false, false, 0);
961
962
963     }
964
965     switch (VA.getLocInfo()) {
966     default: llvm_unreachable("Unknown loc info!");
967     case CCValAssign::Full: break;
968     case CCValAssign::BCvt:
969       ArgValue = DAG.getNode(ISD::BITCAST,dl, VA.getValVT(), ArgValue);
970       break;
971     case CCValAssign::SExt:
972     case CCValAssign::ZExt:
973     case CCValAssign::AExt: {
974       unsigned DestSize = VA.getValVT().getSizeInBits();
975       unsigned DestSubReg;
976
977       switch (DestSize) {
978       case 8: DestSubReg = AArch64::sub_8; break;
979       case 16: DestSubReg = AArch64::sub_16; break;
980       case 32: DestSubReg = AArch64::sub_32; break;
981       case 64: DestSubReg = AArch64::sub_64; break;
982       default: llvm_unreachable("Unexpected argument promotion");
983       }
984
985       ArgValue = SDValue(DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, dl,
986                                    VA.getValVT(), ArgValue,
987                                    DAG.getTargetConstant(DestSubReg, MVT::i32)),
988                          0);
989       break;
990     }
991     }
992
993     InVals.push_back(ArgValue);
994   }
995
996   if (isVarArg)
997     SaveVarArgRegisters(CCInfo, DAG, dl, Chain);
998
999   unsigned StackArgSize = CCInfo.getNextStackOffset();
1000   if (DoesCalleeRestoreStack(CallConv, TailCallOpt)) {
1001     // This is a non-standard ABI so by fiat I say we're allowed to make full
1002     // use of the stack area to be popped, which must be aligned to 16 bytes in
1003     // any case:
1004     StackArgSize = RoundUpToAlignment(StackArgSize, 16);
1005
1006     // If we're expected to restore the stack (e.g. fastcc) then we'll be adding
1007     // a multiple of 16.
1008     FuncInfo->setArgumentStackToRestore(StackArgSize);
1009
1010     // This realignment carries over to the available bytes below. Our own
1011     // callers will guarantee the space is free by giving an aligned value to
1012     // CALLSEQ_START.
1013   }
1014   // Even if we're not expected to free up the space, it's useful to know how
1015   // much is there while considering tail calls (because we can reuse it).
1016   FuncInfo->setBytesInStackArgArea(StackArgSize);
1017
1018   return Chain;
1019 }
1020
1021 SDValue
1022 AArch64TargetLowering::LowerReturn(SDValue Chain,
1023                                    CallingConv::ID CallConv, bool isVarArg,
1024                                    const SmallVectorImpl<ISD::OutputArg> &Outs,
1025                                    const SmallVectorImpl<SDValue> &OutVals,
1026                                    DebugLoc dl, SelectionDAG &DAG) const {
1027   // CCValAssign - represent the assignment of the return value to a location.
1028   SmallVector<CCValAssign, 16> RVLocs;
1029
1030   // CCState - Info about the registers and stack slots.
1031   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1032                  getTargetMachine(), RVLocs, *DAG.getContext());
1033
1034   // Analyze outgoing return values.
1035   CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv));
1036
1037   // If this is the first return lowered for this function, add
1038   // the regs to the liveout set for the function.
1039   if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
1040     for (unsigned i = 0; i != RVLocs.size(); ++i)
1041       if (RVLocs[i].isRegLoc())
1042         DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
1043   }
1044
1045   SDValue Flag;
1046
1047   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1048     // PCS: "If the type, T, of the result of a function is such that void func(T
1049     // arg) would require that arg be passed as a value in a register (or set of
1050     // registers) according to the rules in 5.4, then the result is returned in
1051     // the same registers as would be used for such an argument.
1052     //
1053     // Otherwise, the caller shall reserve a block of memory of sufficient
1054     // size and alignment to hold the result. The address of the memory block
1055     // shall be passed as an additional argument to the function in x8."
1056     //
1057     // This is implemented in two places. The register-return values are dealt
1058     // with here, more complex returns are passed as an sret parameter, which
1059     // means we don't have to worry about it during actual return.
1060     CCValAssign &VA = RVLocs[i];
1061     assert(VA.isRegLoc() && "Only register-returns should be created by PCS");
1062
1063
1064     SDValue Arg = OutVals[i];
1065
1066     // There's no convenient note in the ABI about this as there is for normal
1067     // arguments, but it says return values are passed in the same registers as
1068     // an argument would be. I believe that includes the comments about
1069     // unspecified higher bits, putting the burden of widening on the *caller*
1070     // for return values.
1071     switch (VA.getLocInfo()) {
1072     default: llvm_unreachable("Unknown loc info");
1073     case CCValAssign::Full: break;
1074     case CCValAssign::SExt:
1075     case CCValAssign::ZExt:
1076     case CCValAssign::AExt:
1077       // Floating-point values should only be extended when they're going into
1078       // memory, which can't happen here so an integer extend is acceptable.
1079       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1080       break;
1081     case CCValAssign::BCvt:
1082       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
1083       break;
1084     }
1085
1086     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
1087     Flag = Chain.getValue(1);
1088   }
1089
1090   if (Flag.getNode()) {
1091     return DAG.getNode(AArch64ISD::Ret, dl, MVT::Other, Chain, Flag);
1092   } else {
1093     return DAG.getNode(AArch64ISD::Ret, dl, MVT::Other, Chain);
1094   }
1095 }
1096
1097 SDValue
1098 AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
1099                                  SmallVectorImpl<SDValue> &InVals) const {
1100   SelectionDAG &DAG                     = CLI.DAG;
1101   DebugLoc &dl                          = CLI.DL;
1102   SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
1103   SmallVector<SDValue, 32> &OutVals     = CLI.OutVals;
1104   SmallVector<ISD::InputArg, 32> &Ins   = CLI.Ins;
1105   SDValue Chain                         = CLI.Chain;
1106   SDValue Callee                        = CLI.Callee;
1107   bool &IsTailCall                      = CLI.IsTailCall;
1108   CallingConv::ID CallConv              = CLI.CallConv;
1109   bool IsVarArg                         = CLI.IsVarArg;
1110
1111   MachineFunction &MF = DAG.getMachineFunction();
1112   AArch64MachineFunctionInfo *FuncInfo
1113     = MF.getInfo<AArch64MachineFunctionInfo>();
1114   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
1115   bool IsStructRet = !Outs.empty() && Outs[0].Flags.isSRet();
1116   bool IsSibCall = false;
1117
1118   if (IsTailCall) {
1119     IsTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1120                     IsVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
1121                                                    Outs, OutVals, Ins, DAG);
1122
1123     // A sibling call is one where we're under the usual C ABI and not planning
1124     // to change that but can still do a tail call:
1125     if (!TailCallOpt && IsTailCall)
1126       IsSibCall = true;
1127   }
1128
1129   SmallVector<CCValAssign, 16> ArgLocs;
1130   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(),
1131                  getTargetMachine(), ArgLocs, *DAG.getContext());
1132   CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CallConv));
1133
1134   // On AArch64 (and all other architectures I'm aware of) the most this has to
1135   // do is adjust the stack pointer.
1136   unsigned NumBytes = RoundUpToAlignment(CCInfo.getNextStackOffset(), 16);
1137   if (IsSibCall) {
1138     // Since we're not changing the ABI to make this a tail call, the memory
1139     // operands are already available in the caller's incoming argument space.
1140     NumBytes = 0;
1141   }
1142
1143   // FPDiff is the byte offset of the call's argument area from the callee's.
1144   // Stores to callee stack arguments will be placed in FixedStackSlots offset
1145   // by this amount for a tail call. In a sibling call it must be 0 because the
1146   // caller will deallocate the entire stack and the callee still expects its
1147   // arguments to begin at SP+0. Completely unused for non-tail calls.
1148   int FPDiff = 0;
1149
1150   if (IsTailCall && !IsSibCall) {
1151     unsigned NumReusableBytes = FuncInfo->getBytesInStackArgArea();
1152
1153     // FPDiff will be negative if this tail call requires more space than we
1154     // would automatically have in our incoming argument space. Positive if we
1155     // can actually shrink the stack.
1156     FPDiff = NumReusableBytes - NumBytes;
1157
1158     // The stack pointer must be 16-byte aligned at all times it's used for a
1159     // memory operation, which in practice means at *all* times and in
1160     // particular across call boundaries. Therefore our own arguments started at
1161     // a 16-byte aligned SP and the delta applied for the tail call should
1162     // satisfy the same constraint.
1163     assert(FPDiff % 16 == 0 && "unaligned stack on tail call");
1164   }
1165
1166   if (!IsSibCall)
1167     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
1168
1169   SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, AArch64::XSP, getPointerTy());
1170
1171   SmallVector<SDValue, 8> MemOpChains;
1172   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1173
1174   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1175     CCValAssign &VA = ArgLocs[i];
1176     ISD::ArgFlagsTy Flags = Outs[i].Flags;
1177     SDValue Arg = OutVals[i];
1178
1179     // Callee does the actual widening, so all extensions just use an implicit
1180     // definition of the rest of the Loc. Aesthetically, this would be nicer as
1181     // an ANY_EXTEND, but that isn't valid for floating-point types and this
1182     // alternative works on integer types too.
1183     switch (VA.getLocInfo()) {
1184     default: llvm_unreachable("Unknown loc info!");
1185     case CCValAssign::Full: break;
1186     case CCValAssign::SExt:
1187     case CCValAssign::ZExt:
1188     case CCValAssign::AExt: {
1189       unsigned SrcSize = VA.getValVT().getSizeInBits();
1190       unsigned SrcSubReg;
1191
1192       switch (SrcSize) {
1193       case 8: SrcSubReg = AArch64::sub_8; break;
1194       case 16: SrcSubReg = AArch64::sub_16; break;
1195       case 32: SrcSubReg = AArch64::sub_32; break;
1196       case 64: SrcSubReg = AArch64::sub_64; break;
1197       default: llvm_unreachable("Unexpected argument promotion");
1198       }
1199
1200       Arg = SDValue(DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, dl,
1201                                     VA.getLocVT(),
1202                                     DAG.getUNDEF(VA.getLocVT()),
1203                                     Arg,
1204                                     DAG.getTargetConstant(SrcSubReg, MVT::i32)),
1205                     0);
1206
1207       break;
1208     }
1209     case CCValAssign::BCvt:
1210       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
1211       break;
1212     }
1213
1214     if (VA.isRegLoc()) {
1215       // A normal register (sub-) argument. For now we just note it down because
1216       // we want to copy things into registers as late as possible to avoid
1217       // register-pressure (and possibly worse).
1218       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1219       continue;
1220     }
1221
1222     assert(VA.isMemLoc() && "unexpected argument location");
1223
1224     SDValue DstAddr;
1225     MachinePointerInfo DstInfo;
1226     if (IsTailCall) {
1227       uint32_t OpSize = Flags.isByVal() ? Flags.getByValSize() :
1228                                           VA.getLocVT().getSizeInBits();
1229       OpSize = (OpSize + 7) / 8;
1230       int32_t Offset = VA.getLocMemOffset() + FPDiff;
1231       int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
1232
1233       DstAddr = DAG.getFrameIndex(FI, getPointerTy());
1234       DstInfo = MachinePointerInfo::getFixedStack(FI);
1235
1236       // Make sure any stack arguments overlapping with where we're storing are
1237       // loaded before this eventual operation. Otherwise they'll be clobbered.
1238       Chain = addTokenForArgument(Chain, DAG, MF.getFrameInfo(), FI);
1239     } else {
1240       SDValue PtrOff = DAG.getIntPtrConstant(VA.getLocMemOffset());
1241
1242       DstAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
1243       DstInfo = MachinePointerInfo::getStack(VA.getLocMemOffset());
1244     }
1245
1246     if (Flags.isByVal()) {
1247       SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i64);
1248       SDValue Cpy = DAG.getMemcpy(Chain, dl, DstAddr, Arg, SizeNode,
1249                                   Flags.getByValAlign(),
1250                                   /*isVolatile = */ false,
1251                                   /*alwaysInline = */ false,
1252                                   DstInfo, MachinePointerInfo(0));
1253       MemOpChains.push_back(Cpy);
1254     } else {
1255       // Normal stack argument, put it where it's needed.
1256       SDValue Store = DAG.getStore(Chain, dl, Arg, DstAddr, DstInfo,
1257                                    false, false, 0);
1258       MemOpChains.push_back(Store);
1259     }
1260   }
1261
1262   // The loads and stores generated above shouldn't clash with each
1263   // other. Combining them with this TokenFactor notes that fact for the rest of
1264   // the backend.
1265   if (!MemOpChains.empty())
1266     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1267                         &MemOpChains[0], MemOpChains.size());
1268
1269   // Most of the rest of the instructions need to be glued together; we don't
1270   // want assignments to actual registers used by a call to be rearranged by a
1271   // well-meaning scheduler.
1272   SDValue InFlag;
1273
1274   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1275     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1276                              RegsToPass[i].second, InFlag);
1277     InFlag = Chain.getValue(1);
1278   }
1279
1280   // The linker is responsible for inserting veneers when necessary to put a
1281   // function call destination in range, so we don't need to bother with a
1282   // wrapper here.
1283   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1284     const GlobalValue *GV = G->getGlobal();
1285     Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy());
1286   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1287     const char *Sym = S->getSymbol();
1288     Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy());
1289   }
1290
1291   // We don't usually want to end the call-sequence here because we would tidy
1292   // the frame up *after* the call, however in the ABI-changing tail-call case
1293   // we've carefully laid out the parameters so that when sp is reset they'll be
1294   // in the correct location.
1295   if (IsTailCall && !IsSibCall) {
1296     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1297                                DAG.getIntPtrConstant(0, true), InFlag);
1298     InFlag = Chain.getValue(1);
1299   }
1300
1301   // We produce the following DAG scheme for the actual call instruction:
1302   //     (AArch64Call Chain, Callee, reg1, ..., regn, preserveMask, inflag?
1303   //
1304   // Most arguments aren't going to be used and just keep the values live as
1305   // far as LLVM is concerned. It's expected to be selected as simply "bl
1306   // callee" (for a direct, non-tail call).
1307   std::vector<SDValue> Ops;
1308   Ops.push_back(Chain);
1309   Ops.push_back(Callee);
1310
1311   if (IsTailCall) {
1312     // Each tail call may have to adjust the stack by a different amount, so
1313     // this information must travel along with the operation for eventual
1314     // consumption by emitEpilogue.
1315     Ops.push_back(DAG.getTargetConstant(FPDiff, MVT::i32));
1316   }
1317
1318   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1319     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1320                                   RegsToPass[i].second.getValueType()));
1321
1322
1323   // Add a register mask operand representing the call-preserved registers. This
1324   // is used later in codegen to constrain register-allocation.
1325   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
1326   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
1327   assert(Mask && "Missing call preserved mask for calling convention");
1328   Ops.push_back(DAG.getRegisterMask(Mask));
1329
1330   // If we needed glue, put it in as the last argument.
1331   if (InFlag.getNode())
1332     Ops.push_back(InFlag);
1333
1334   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1335
1336   if (IsTailCall) {
1337     return DAG.getNode(AArch64ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
1338   }
1339
1340   Chain = DAG.getNode(AArch64ISD::Call, dl, NodeTys, &Ops[0], Ops.size());
1341   InFlag = Chain.getValue(1);
1342
1343   // Now we can reclaim the stack, just as well do it before working out where
1344   // our return value is.
1345   if (!IsSibCall) {
1346     uint64_t CalleePopBytes
1347       = DoesCalleeRestoreStack(CallConv, TailCallOpt) ? NumBytes : 0;
1348
1349     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1350                                DAG.getIntPtrConstant(CalleePopBytes, true),
1351                                InFlag);
1352     InFlag = Chain.getValue(1);
1353   }
1354
1355   return LowerCallResult(Chain, InFlag, CallConv,
1356                          IsVarArg, Ins, dl, DAG, InVals);
1357 }
1358
1359 SDValue
1360 AArch64TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1361                                       CallingConv::ID CallConv, bool IsVarArg,
1362                                       const SmallVectorImpl<ISD::InputArg> &Ins,
1363                                       DebugLoc dl, SelectionDAG &DAG,
1364                                       SmallVectorImpl<SDValue> &InVals) const {
1365   // Assign locations to each value returned by this call.
1366   SmallVector<CCValAssign, 16> RVLocs;
1367   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(),
1368                  getTargetMachine(), RVLocs, *DAG.getContext());
1369   CCInfo.AnalyzeCallResult(Ins, CCAssignFnForNode(CallConv));
1370
1371   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1372     CCValAssign VA = RVLocs[i];
1373
1374     // Return values that are too big to fit into registers should use an sret
1375     // pointer, so this can be a lot simpler than the main argument code.
1376     assert(VA.isRegLoc() && "Memory locations not expected for call return");
1377
1378     SDValue Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1379                                      InFlag);
1380     Chain = Val.getValue(1);
1381     InFlag = Val.getValue(2);
1382
1383     switch (VA.getLocInfo()) {
1384     default: llvm_unreachable("Unknown loc info!");
1385     case CCValAssign::Full: break;
1386     case CCValAssign::BCvt:
1387       Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
1388       break;
1389     case CCValAssign::ZExt:
1390     case CCValAssign::SExt:
1391     case CCValAssign::AExt:
1392       // Floating-point arguments only get extended/truncated if they're going
1393       // in memory, so using the integer operation is acceptable here.
1394       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
1395       break;
1396     }
1397
1398     InVals.push_back(Val);
1399   }
1400
1401   return Chain;
1402 }
1403
1404 bool
1405 AArch64TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1406                                     CallingConv::ID CalleeCC,
1407                                     bool IsVarArg,
1408                                     bool IsCalleeStructRet,
1409                                     bool IsCallerStructRet,
1410                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
1411                                     const SmallVectorImpl<SDValue> &OutVals,
1412                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1413                                     SelectionDAG& DAG) const {
1414
1415   // For CallingConv::C this function knows whether the ABI needs
1416   // changing. That's not true for other conventions so they will have to opt in
1417   // manually.
1418   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1419     return false;
1420
1421   const MachineFunction &MF = DAG.getMachineFunction();
1422   const Function *CallerF = MF.getFunction();
1423   CallingConv::ID CallerCC = CallerF->getCallingConv();
1424   bool CCMatch = CallerCC == CalleeCC;
1425
1426   // Byval parameters hand the function a pointer directly into the stack area
1427   // we want to reuse during a tail call. Working around this *is* possible (see
1428   // X86) but less efficient and uglier in LowerCall.
1429   for (Function::const_arg_iterator i = CallerF->arg_begin(),
1430          e = CallerF->arg_end(); i != e; ++i)
1431     if (i->hasByValAttr())
1432       return false;
1433
1434   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
1435     if (IsTailCallConvention(CalleeCC) && CCMatch)
1436       return true;
1437     return false;
1438   }
1439
1440   // Now we search for cases where we can use a tail call without changing the
1441   // ABI. Sibcall is used in some places (particularly gcc) to refer to this
1442   // concept.
1443
1444   // I want anyone implementing a new calling convention to think long and hard
1445   // about this assert.
1446   assert((!IsVarArg || CalleeCC == CallingConv::C)
1447          && "Unexpected variadic calling convention");
1448
1449   if (IsVarArg && !Outs.empty()) {
1450     // At least two cases here: if caller is fastcc then we can't have any
1451     // memory arguments (we'd be expected to clean up the stack afterwards). If
1452     // caller is C then we could potentially use its argument area.
1453
1454     // FIXME: for now we take the most conservative of these in both cases:
1455     // disallow all variadic memory operands.
1456     SmallVector<CCValAssign, 16> ArgLocs;
1457     CCState CCInfo(CalleeCC, IsVarArg, DAG.getMachineFunction(),
1458                    getTargetMachine(), ArgLocs, *DAG.getContext());
1459
1460     CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CalleeCC));
1461     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
1462       if (!ArgLocs[i].isRegLoc())
1463         return false;
1464   }
1465
1466   // If the calling conventions do not match, then we'd better make sure the
1467   // results are returned in the same way as what the caller expects.
1468   if (!CCMatch) {
1469     SmallVector<CCValAssign, 16> RVLocs1;
1470     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
1471                     getTargetMachine(), RVLocs1, *DAG.getContext());
1472     CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC));
1473
1474     SmallVector<CCValAssign, 16> RVLocs2;
1475     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
1476                     getTargetMachine(), RVLocs2, *DAG.getContext());
1477     CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC));
1478
1479     if (RVLocs1.size() != RVLocs2.size())
1480       return false;
1481     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
1482       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
1483         return false;
1484       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
1485         return false;
1486       if (RVLocs1[i].isRegLoc()) {
1487         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
1488           return false;
1489       } else {
1490         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
1491           return false;
1492       }
1493     }
1494   }
1495
1496   // Nothing more to check if the callee is taking no arguments
1497   if (Outs.empty())
1498     return true;
1499
1500   SmallVector<CCValAssign, 16> ArgLocs;
1501   CCState CCInfo(CalleeCC, IsVarArg, DAG.getMachineFunction(),
1502                  getTargetMachine(), ArgLocs, *DAG.getContext());
1503
1504   CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CalleeCC));
1505
1506   const AArch64MachineFunctionInfo *FuncInfo
1507     = MF.getInfo<AArch64MachineFunctionInfo>();
1508
1509   // If the stack arguments for this call would fit into our own save area then
1510   // the call can be made tail.
1511   return CCInfo.getNextStackOffset() <= FuncInfo->getBytesInStackArgArea();
1512 }
1513
1514 bool AArch64TargetLowering::DoesCalleeRestoreStack(CallingConv::ID CallCC,
1515                                                    bool TailCallOpt) const {
1516   return CallCC == CallingConv::Fast && TailCallOpt;
1517 }
1518
1519 bool AArch64TargetLowering::IsTailCallConvention(CallingConv::ID CallCC) const {
1520   return CallCC == CallingConv::Fast;
1521 }
1522
1523 SDValue AArch64TargetLowering::addTokenForArgument(SDValue Chain,
1524                                                    SelectionDAG &DAG,
1525                                                    MachineFrameInfo *MFI,
1526                                                    int ClobberedFI) const {
1527   SmallVector<SDValue, 8> ArgChains;
1528   int64_t FirstByte = MFI->getObjectOffset(ClobberedFI);
1529   int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1;
1530
1531   // Include the original chain at the beginning of the list. When this is
1532   // used by target LowerCall hooks, this helps legalize find the
1533   // CALLSEQ_BEGIN node.
1534   ArgChains.push_back(Chain);
1535
1536   // Add a chain value for each stack argument corresponding
1537   for (SDNode::use_iterator U = DAG.getEntryNode().getNode()->use_begin(),
1538          UE = DAG.getEntryNode().getNode()->use_end(); U != UE; ++U)
1539     if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
1540       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
1541         if (FI->getIndex() < 0) {
1542           int64_t InFirstByte = MFI->getObjectOffset(FI->getIndex());
1543           int64_t InLastByte = InFirstByte;
1544           InLastByte += MFI->getObjectSize(FI->getIndex()) - 1;
1545
1546           if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
1547               (FirstByte <= InFirstByte && InFirstByte <= LastByte))
1548             ArgChains.push_back(SDValue(L, 1));
1549         }
1550
1551    // Build a tokenfactor for all the chains.
1552    return DAG.getNode(ISD::TokenFactor, Chain.getDebugLoc(), MVT::Other,
1553                       &ArgChains[0], ArgChains.size());
1554 }
1555
1556 static A64CC::CondCodes IntCCToA64CC(ISD::CondCode CC) {
1557   switch (CC) {
1558   case ISD::SETEQ:  return A64CC::EQ;
1559   case ISD::SETGT:  return A64CC::GT;
1560   case ISD::SETGE:  return A64CC::GE;
1561   case ISD::SETLT:  return A64CC::LT;
1562   case ISD::SETLE:  return A64CC::LE;
1563   case ISD::SETNE:  return A64CC::NE;
1564   case ISD::SETUGT: return A64CC::HI;
1565   case ISD::SETUGE: return A64CC::HS;
1566   case ISD::SETULT: return A64CC::LO;
1567   case ISD::SETULE: return A64CC::LS;
1568   default: llvm_unreachable("Unexpected condition code");
1569   }
1570 }
1571
1572 bool AArch64TargetLowering::isLegalICmpImmediate(int64_t Val) const {
1573   // icmp is implemented using adds/subs immediate, which take an unsigned
1574   // 12-bit immediate, optionally shifted left by 12 bits.
1575
1576   // Symmetric by using adds/subs
1577   if (Val < 0)
1578     Val = -Val;
1579
1580   return (Val & ~0xfff) == 0 || (Val & ~0xfff000) == 0;
1581 }
1582
1583 SDValue AArch64TargetLowering::getSelectableIntSetCC(SDValue LHS, SDValue RHS,
1584                                         ISD::CondCode CC, SDValue &A64cc,
1585                                         SelectionDAG &DAG, DebugLoc &dl) const {
1586   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1587     int64_t C = 0;
1588     EVT VT = RHSC->getValueType(0);
1589     bool knownInvalid = false;
1590
1591     // I'm not convinced the rest of LLVM handles these edge cases properly, but
1592     // we can at least get it right.
1593     if (isSignedIntSetCC(CC)) {
1594       C = RHSC->getSExtValue();
1595     } else if (RHSC->getZExtValue() > INT64_MAX) {
1596       // A 64-bit constant not representable by a signed 64-bit integer is far
1597       // too big to fit into a SUBS immediate anyway.
1598       knownInvalid = true;
1599     } else {
1600       C = RHSC->getZExtValue();
1601     }
1602
1603     if (!knownInvalid && !isLegalICmpImmediate(C)) {
1604       // Constant does not fit, try adjusting it by one?
1605       switch (CC) {
1606       default: break;
1607       case ISD::SETLT:
1608       case ISD::SETGE:
1609         if (isLegalICmpImmediate(C-1)) {
1610           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1611           RHS = DAG.getConstant(C-1, VT);
1612         }
1613         break;
1614       case ISD::SETULT:
1615       case ISD::SETUGE:
1616         if (isLegalICmpImmediate(C-1)) {
1617           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
1618           RHS = DAG.getConstant(C-1, VT);
1619         }
1620         break;
1621       case ISD::SETLE:
1622       case ISD::SETGT:
1623         if (isLegalICmpImmediate(C+1)) {
1624           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1625           RHS = DAG.getConstant(C+1, VT);
1626         }
1627         break;
1628       case ISD::SETULE:
1629       case ISD::SETUGT:
1630         if (isLegalICmpImmediate(C+1)) {
1631           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
1632           RHS = DAG.getConstant(C+1, VT);
1633         }
1634         break;
1635       }
1636     }
1637   }
1638
1639   A64CC::CondCodes CondCode = IntCCToA64CC(CC);
1640   A64cc = DAG.getConstant(CondCode, MVT::i32);
1641   return DAG.getNode(AArch64ISD::SETCC, dl, MVT::i32, LHS, RHS,
1642                      DAG.getCondCode(CC));
1643 }
1644
1645 static A64CC::CondCodes FPCCToA64CC(ISD::CondCode CC,
1646                                     A64CC::CondCodes &Alternative) {
1647   A64CC::CondCodes CondCode = A64CC::Invalid;
1648   Alternative = A64CC::Invalid;
1649
1650   switch (CC) {
1651   default: llvm_unreachable("Unknown FP condition!");
1652   case ISD::SETEQ:
1653   case ISD::SETOEQ: CondCode = A64CC::EQ; break;
1654   case ISD::SETGT:
1655   case ISD::SETOGT: CondCode = A64CC::GT; break;
1656   case ISD::SETGE:
1657   case ISD::SETOGE: CondCode = A64CC::GE; break;
1658   case ISD::SETOLT: CondCode = A64CC::MI; break;
1659   case ISD::SETOLE: CondCode = A64CC::LS; break;
1660   case ISD::SETONE: CondCode = A64CC::MI; Alternative = A64CC::GT; break;
1661   case ISD::SETO:   CondCode = A64CC::VC; break;
1662   case ISD::SETUO:  CondCode = A64CC::VS; break;
1663   case ISD::SETUEQ: CondCode = A64CC::EQ; Alternative = A64CC::VS; break;
1664   case ISD::SETUGT: CondCode = A64CC::HI; break;
1665   case ISD::SETUGE: CondCode = A64CC::PL; break;
1666   case ISD::SETLT:
1667   case ISD::SETULT: CondCode = A64CC::LT; break;
1668   case ISD::SETLE:
1669   case ISD::SETULE: CondCode = A64CC::LE; break;
1670   case ISD::SETNE:
1671   case ISD::SETUNE: CondCode = A64CC::NE; break;
1672   }
1673   return CondCode;
1674 }
1675
1676 SDValue
1677 AArch64TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
1678   DebugLoc DL = Op.getDebugLoc();
1679   EVT PtrVT = getPointerTy();
1680   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
1681
1682   assert(getTargetMachine().getCodeModel() == CodeModel::Small
1683          && "Only small code model supported at the moment");
1684
1685   // The most efficient code is PC-relative anyway for the small memory model,
1686   // so we don't need to worry about relocation model.
1687   return DAG.getNode(AArch64ISD::WrapperSmall, DL, PtrVT,
1688                      DAG.getTargetBlockAddress(BA, PtrVT, 0,
1689                                                AArch64II::MO_NO_FLAG),
1690                      DAG.getTargetBlockAddress(BA, PtrVT, 0,
1691                                                AArch64II::MO_LO12),
1692                      DAG.getConstant(/*Alignment=*/ 4, MVT::i32));
1693 }
1694
1695
1696 // (BRCOND chain, val, dest)
1697 SDValue
1698 AArch64TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
1699   DebugLoc dl = Op.getDebugLoc();
1700   SDValue Chain = Op.getOperand(0);
1701   SDValue TheBit = Op.getOperand(1);
1702   SDValue DestBB = Op.getOperand(2);
1703
1704   // AArch64 BooleanContents is the default UndefinedBooleanContent, which means
1705   // that as the consumer we are responsible for ignoring rubbish in higher
1706   // bits.
1707   TheBit = DAG.getNode(ISD::AND, dl, MVT::i32, TheBit,
1708                        DAG.getConstant(1, MVT::i32));
1709
1710   SDValue A64CMP = DAG.getNode(AArch64ISD::SETCC, dl, MVT::i32, TheBit,
1711                                DAG.getConstant(0, TheBit.getValueType()),
1712                                DAG.getCondCode(ISD::SETNE));
1713
1714   return DAG.getNode(AArch64ISD::BR_CC, dl, MVT::Other, Chain,
1715                      A64CMP, DAG.getConstant(A64CC::NE, MVT::i32),
1716                      DestBB);
1717 }
1718
1719 // (BR_CC chain, condcode, lhs, rhs, dest)
1720 SDValue
1721 AArch64TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
1722   DebugLoc dl = Op.getDebugLoc();
1723   SDValue Chain = Op.getOperand(0);
1724   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
1725   SDValue LHS = Op.getOperand(2);
1726   SDValue RHS = Op.getOperand(3);
1727   SDValue DestBB = Op.getOperand(4);
1728
1729   if (LHS.getValueType() == MVT::f128) {
1730     // f128 comparisons are lowered to runtime calls by a routine which sets
1731     // LHS, RHS and CC appropriately for the rest of this function to continue.
1732     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
1733
1734     // If softenSetCCOperands returned a scalar, we need to compare the result
1735     // against zero to select between true and false values.
1736     if (RHS.getNode() == 0) {
1737       RHS = DAG.getConstant(0, LHS.getValueType());
1738       CC = ISD::SETNE;
1739     }
1740   }
1741
1742   if (LHS.getValueType().isInteger()) {
1743     SDValue A64cc;
1744
1745     // Integers are handled in a separate function because the combinations of
1746     // immediates and tests can get hairy and we may want to fiddle things.
1747     SDValue CmpOp = getSelectableIntSetCC(LHS, RHS, CC, A64cc, DAG, dl);
1748
1749     return DAG.getNode(AArch64ISD::BR_CC, dl, MVT::Other,
1750                        Chain, CmpOp, A64cc, DestBB);
1751   }
1752
1753   // Note that some LLVM floating-point CondCodes can't be lowered to a single
1754   // conditional branch, hence FPCCToA64CC can set a second test, where either
1755   // passing is sufficient.
1756   A64CC::CondCodes CondCode, Alternative = A64CC::Invalid;
1757   CondCode = FPCCToA64CC(CC, Alternative);
1758   SDValue A64cc = DAG.getConstant(CondCode, MVT::i32);
1759   SDValue SetCC = DAG.getNode(AArch64ISD::SETCC, dl, MVT::i32, LHS, RHS,
1760                               DAG.getCondCode(CC));
1761   SDValue A64BR_CC = DAG.getNode(AArch64ISD::BR_CC, dl, MVT::Other,
1762                                  Chain, SetCC, A64cc, DestBB);
1763
1764   if (Alternative != A64CC::Invalid) {
1765     A64cc = DAG.getConstant(Alternative, MVT::i32);
1766     A64BR_CC = DAG.getNode(AArch64ISD::BR_CC, dl, MVT::Other,
1767                            A64BR_CC, SetCC, A64cc, DestBB);
1768
1769   }
1770
1771   return A64BR_CC;
1772 }
1773
1774 SDValue
1775 AArch64TargetLowering::LowerF128ToCall(SDValue Op, SelectionDAG &DAG,
1776                                        RTLIB::Libcall Call) const {
1777   ArgListTy Args;
1778   ArgListEntry Entry;
1779   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
1780     EVT ArgVT = Op.getOperand(i).getValueType();
1781     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
1782     Entry.Node = Op.getOperand(i); Entry.Ty = ArgTy;
1783     Entry.isSExt = false;
1784     Entry.isZExt = false;
1785     Args.push_back(Entry);
1786   }
1787   SDValue Callee = DAG.getExternalSymbol(getLibcallName(Call), getPointerTy());
1788
1789   Type *RetTy = Op.getValueType().getTypeForEVT(*DAG.getContext());
1790
1791   // By default, the input chain to this libcall is the entry node of the
1792   // function. If the libcall is going to be emitted as a tail call then
1793   // isUsedByReturnOnly will change it to the right chain if the return
1794   // node which is being folded has a non-entry input chain.
1795   SDValue InChain = DAG.getEntryNode();
1796
1797   // isTailCall may be true since the callee does not reference caller stack
1798   // frame. Check if it's in the right position.
1799   SDValue TCChain = InChain;
1800   bool isTailCall = isInTailCallPosition(DAG, Op.getNode(), TCChain);
1801   if (isTailCall)
1802     InChain = TCChain;
1803
1804   TargetLowering::
1805   CallLoweringInfo CLI(InChain, RetTy, false, false, false, false,
1806                     0, getLibcallCallingConv(Call), isTailCall,
1807                     /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
1808                     Callee, Args, DAG, Op->getDebugLoc());
1809   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
1810
1811   if (!CallInfo.second.getNode())
1812     // It's a tailcall, return the chain (which is the DAG root).
1813     return DAG.getRoot();
1814
1815   return CallInfo.first;
1816 }
1817
1818 SDValue
1819 AArch64TargetLowering::LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const {
1820   if (Op.getOperand(0).getValueType() != MVT::f128) {
1821     // It's legal except when f128 is involved
1822     return Op;
1823   }
1824
1825   RTLIB::Libcall LC;
1826   LC  = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
1827
1828   SDValue SrcVal = Op.getOperand(0);
1829   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
1830                      /*isSigned*/ false, Op.getDebugLoc());
1831 }
1832
1833 SDValue
1834 AArch64TargetLowering::LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const {
1835   assert(Op.getValueType() == MVT::f128 && "Unexpected lowering");
1836
1837   RTLIB::Libcall LC;
1838   LC  = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
1839
1840   return LowerF128ToCall(Op, DAG, LC);
1841 }
1842
1843 SDValue
1844 AArch64TargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
1845                                       bool IsSigned) const {
1846   if (Op.getOperand(0).getValueType() != MVT::f128) {
1847     // It's legal except when f128 is involved
1848     return Op;
1849   }
1850
1851   RTLIB::Libcall LC;
1852   if (IsSigned)
1853     LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(), Op.getValueType());
1854   else
1855     LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(), Op.getValueType());
1856
1857   return LowerF128ToCall(Op, DAG, LC);
1858 }
1859
1860 SDValue
1861 AArch64TargetLowering::LowerGlobalAddressELF(SDValue Op,
1862                                              SelectionDAG &DAG) const {
1863   // TableGen doesn't have easy access to the CodeModel or RelocationModel, so
1864   // we make that distinction here.
1865
1866   // We support the static, small memory model for now.
1867   assert(getTargetMachine().getCodeModel() == CodeModel::Small);
1868
1869   EVT PtrVT = getPointerTy();
1870   DebugLoc dl = Op.getDebugLoc();
1871   const GlobalAddressSDNode *GN = cast<GlobalAddressSDNode>(Op);
1872   const GlobalValue *GV = GN->getGlobal();
1873   unsigned Alignment = GV->getAlignment();
1874
1875   if (Alignment == 0) {
1876     const PointerType *GVPtrTy = cast<PointerType>(GV->getType());
1877     if (GVPtrTy->getElementType()->isSized())
1878       Alignment = getDataLayout()->getABITypeAlignment(GVPtrTy->getElementType());
1879     else {
1880       // Be conservative if we can't guess, not that it really matters:
1881       // functions and labels aren't valid for loads, and the methods used to
1882       // actually calculate an address work with any alignment.
1883       Alignment = 1;
1884     }
1885   }
1886
1887   unsigned char HiFixup, LoFixup;
1888   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
1889   bool UseGOT = Subtarget->GVIsIndirectSymbol(GV, RelocM);
1890
1891   if (UseGOT) {
1892     HiFixup = AArch64II::MO_GOT;
1893     LoFixup = AArch64II::MO_GOT_LO12;
1894     Alignment = 8;
1895   } else {
1896     HiFixup = AArch64II::MO_NO_FLAG;
1897     LoFixup = AArch64II::MO_LO12;
1898   }
1899
1900   // AArch64's small model demands the following sequence:
1901   // ADRP x0, somewhere
1902   // ADD x0, x0, #:lo12:somewhere ; (or LDR directly).
1903   SDValue GlobalRef = DAG.getNode(AArch64ISD::WrapperSmall, dl, PtrVT,
1904                                   DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1905                                                              HiFixup),
1906                                   DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1907                                                              LoFixup),
1908                                   DAG.getConstant(Alignment, MVT::i32));
1909
1910   if (UseGOT) {
1911     GlobalRef = DAG.getNode(AArch64ISD::GOTLoad, dl, PtrVT, DAG.getEntryNode(),
1912                             GlobalRef);
1913   }
1914
1915   if (GN->getOffset() != 0)
1916     return DAG.getNode(ISD::ADD, dl, PtrVT, GlobalRef,
1917                        DAG.getConstant(GN->getOffset(), PtrVT));
1918
1919   return GlobalRef;
1920 }
1921
1922 SDValue AArch64TargetLowering::LowerTLSDescCall(SDValue SymAddr,
1923                                                 SDValue DescAddr,
1924                                                 DebugLoc DL,
1925                                                 SelectionDAG &DAG) const {
1926   EVT PtrVT = getPointerTy();
1927
1928   // The function we need to call is simply the first entry in the GOT for this
1929   // descriptor, load it in preparation.
1930   SDValue Func, Chain;
1931   Func = DAG.getNode(AArch64ISD::GOTLoad, DL, PtrVT, DAG.getEntryNode(),
1932                      DescAddr);
1933
1934   // The function takes only one argument: the address of the descriptor itself
1935   // in X0.
1936   SDValue Glue;
1937   Chain = DAG.getCopyToReg(DAG.getEntryNode(), DL, AArch64::X0, DescAddr, Glue);
1938   Glue = Chain.getValue(1);
1939
1940   // Finally, there's a special calling-convention which means that the lookup
1941   // must preserve all registers (except X0, obviously).
1942   const TargetRegisterInfo *TRI  = getTargetMachine().getRegisterInfo();
1943   const AArch64RegisterInfo *A64RI
1944     = static_cast<const AArch64RegisterInfo *>(TRI);
1945   const uint32_t *Mask = A64RI->getTLSDescCallPreservedMask();
1946
1947   // We're now ready to populate the argument list, as with a normal call:
1948   std::vector<SDValue> Ops;
1949   Ops.push_back(Chain);
1950   Ops.push_back(Func);
1951   Ops.push_back(SymAddr);
1952   Ops.push_back(DAG.getRegister(AArch64::X0, PtrVT));
1953   Ops.push_back(DAG.getRegisterMask(Mask));
1954   Ops.push_back(Glue);
1955
1956   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1957   Chain = DAG.getNode(AArch64ISD::TLSDESCCALL, DL, NodeTys, &Ops[0], Ops.size());
1958   Glue = Chain.getValue(1);
1959
1960   // After the call, the offset from TPIDR_EL0 is in X0, copy it out and pass it
1961   // back to the generic handling code.
1962   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Glue);
1963 }
1964
1965 SDValue
1966 AArch64TargetLowering::LowerGlobalTLSAddress(SDValue Op,
1967                                              SelectionDAG &DAG) const {
1968   assert(Subtarget->isTargetELF() &&
1969          "TLS not implemented for non-ELF targets");
1970   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1971
1972   TLSModel::Model Model = getTargetMachine().getTLSModel(GA->getGlobal());
1973
1974   SDValue TPOff;
1975   EVT PtrVT = getPointerTy();
1976   DebugLoc DL = Op.getDebugLoc();
1977   const GlobalValue *GV = GA->getGlobal();
1978
1979   SDValue ThreadBase = DAG.getNode(AArch64ISD::THREAD_POINTER, DL, PtrVT);
1980
1981   if (Model == TLSModel::InitialExec) {
1982     TPOff = DAG.getNode(AArch64ISD::WrapperSmall, DL, PtrVT,
1983                         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0,
1984                                                    AArch64II::MO_GOTTPREL),
1985                         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0,
1986                                                    AArch64II::MO_GOTTPREL_LO12),
1987                         DAG.getConstant(8, MVT::i32));
1988     TPOff = DAG.getNode(AArch64ISD::GOTLoad, DL, PtrVT, DAG.getEntryNode(),
1989                         TPOff);
1990   } else if (Model == TLSModel::LocalExec) {
1991     SDValue HiVar = DAG.getTargetGlobalAddress(GV, DL, MVT::i64, 0,
1992                                                AArch64II::MO_TPREL_G1);
1993     SDValue LoVar = DAG.getTargetGlobalAddress(GV, DL, MVT::i64, 0,
1994                                                AArch64II::MO_TPREL_G0_NC);
1995
1996     TPOff = SDValue(DAG.getMachineNode(AArch64::MOVZxii, DL, PtrVT, HiVar,
1997                                        DAG.getTargetConstant(0, MVT::i32)), 0);
1998     TPOff = SDValue(DAG.getMachineNode(AArch64::MOVKxii, DL, PtrVT, TPOff, LoVar,
1999                                        DAG.getTargetConstant(0, MVT::i32)), 0);
2000   } else if (Model == TLSModel::GeneralDynamic) {
2001     // Accesses used in this sequence go via the TLS descriptor which lives in
2002     // the GOT. Prepare an address we can use to handle this.
2003     SDValue HiDesc = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0,
2004                                                 AArch64II::MO_TLSDESC);
2005     SDValue LoDesc = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0,
2006                                                 AArch64II::MO_TLSDESC_LO12);
2007     SDValue DescAddr = DAG.getNode(AArch64ISD::WrapperSmall, DL, PtrVT,
2008                                    HiDesc, LoDesc, DAG.getConstant(8, MVT::i32));
2009     SDValue SymAddr = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0);
2010
2011     TPOff = LowerTLSDescCall(SymAddr, DescAddr, DL, DAG);
2012   } else if (Model == TLSModel::LocalDynamic) {
2013     // Local-dynamic accesses proceed in two phases. A general-dynamic TLS
2014     // descriptor call against the special symbol _TLS_MODULE_BASE_ to calculate
2015     // the beginning of the module's TLS region, followed by a DTPREL offset
2016     // calculation.
2017
2018     // These accesses will need deduplicating if there's more than one.
2019     AArch64MachineFunctionInfo* MFI = DAG.getMachineFunction()
2020       .getInfo<AArch64MachineFunctionInfo>();
2021     MFI->incNumLocalDynamicTLSAccesses();
2022
2023
2024     // Get the location of _TLS_MODULE_BASE_:
2025     SDValue HiDesc = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT,
2026                                                 AArch64II::MO_TLSDESC);
2027     SDValue LoDesc = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT,
2028                                                 AArch64II::MO_TLSDESC_LO12);
2029     SDValue DescAddr = DAG.getNode(AArch64ISD::WrapperSmall, DL, PtrVT,
2030                                    HiDesc, LoDesc, DAG.getConstant(8, MVT::i32));
2031     SDValue SymAddr = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT);
2032
2033     ThreadBase = LowerTLSDescCall(SymAddr, DescAddr, DL, DAG);
2034
2035     // Get the variable's offset from _TLS_MODULE_BASE_
2036     SDValue HiVar = DAG.getTargetGlobalAddress(GV, DL, MVT::i64, 0,
2037                                                AArch64II::MO_DTPREL_G1);
2038     SDValue LoVar = DAG.getTargetGlobalAddress(GV, DL, MVT::i64, 0,
2039                                                AArch64II::MO_DTPREL_G0_NC);
2040
2041     TPOff = SDValue(DAG.getMachineNode(AArch64::MOVZxii, DL, PtrVT, HiVar,
2042                                        DAG.getTargetConstant(0, MVT::i32)), 0);
2043     TPOff = SDValue(DAG.getMachineNode(AArch64::MOVKxii, DL, PtrVT, TPOff, LoVar,
2044                                        DAG.getTargetConstant(0, MVT::i32)), 0);
2045   } else
2046       llvm_unreachable("Unsupported TLS access model");
2047
2048
2049   return DAG.getNode(ISD::ADD, DL, PtrVT, ThreadBase, TPOff);
2050 }
2051
2052 SDValue
2053 AArch64TargetLowering::LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG,
2054                                       bool IsSigned) const {
2055   if (Op.getValueType() != MVT::f128) {
2056     // Legal for everything except f128.
2057     return Op;
2058   }
2059
2060   RTLIB::Libcall LC;
2061   if (IsSigned)
2062     LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
2063   else
2064     LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
2065
2066   return LowerF128ToCall(Op, DAG, LC);
2067 }
2068
2069
2070 SDValue
2071 AArch64TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
2072   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
2073   DebugLoc dl = JT->getDebugLoc();
2074
2075   // When compiling PIC, jump tables get put in the code section so a static
2076   // relocation-style is acceptable for both cases.
2077   return DAG.getNode(AArch64ISD::WrapperSmall, dl, getPointerTy(),
2078                      DAG.getTargetJumpTable(JT->getIndex(), getPointerTy()),
2079                      DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
2080                                             AArch64II::MO_LO12),
2081                      DAG.getConstant(1, MVT::i32));
2082 }
2083
2084 // (SELECT_CC lhs, rhs, iftrue, iffalse, condcode)
2085 SDValue
2086 AArch64TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
2087   DebugLoc dl = Op.getDebugLoc();
2088   SDValue LHS = Op.getOperand(0);
2089   SDValue RHS = Op.getOperand(1);
2090   SDValue IfTrue = Op.getOperand(2);
2091   SDValue IfFalse = Op.getOperand(3);
2092   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
2093
2094   if (LHS.getValueType() == MVT::f128) {
2095     // f128 comparisons are lowered to libcalls, but slot in nicely here
2096     // afterwards.
2097     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
2098
2099     // If softenSetCCOperands returned a scalar, we need to compare the result
2100     // against zero to select between true and false values.
2101     if (RHS.getNode() == 0) {
2102       RHS = DAG.getConstant(0, LHS.getValueType());
2103       CC = ISD::SETNE;
2104     }
2105   }
2106
2107   if (LHS.getValueType().isInteger()) {
2108     SDValue A64cc;
2109
2110     // Integers are handled in a separate function because the combinations of
2111     // immediates and tests can get hairy and we may want to fiddle things.
2112     SDValue CmpOp = getSelectableIntSetCC(LHS, RHS, CC, A64cc, DAG, dl);
2113
2114     return DAG.getNode(AArch64ISD::SELECT_CC, dl, Op.getValueType(),
2115                        CmpOp, IfTrue, IfFalse, A64cc);
2116   }
2117
2118   // Note that some LLVM floating-point CondCodes can't be lowered to a single
2119   // conditional branch, hence FPCCToA64CC can set a second test, where either
2120   // passing is sufficient.
2121   A64CC::CondCodes CondCode, Alternative = A64CC::Invalid;
2122   CondCode = FPCCToA64CC(CC, Alternative);
2123   SDValue A64cc = DAG.getConstant(CondCode, MVT::i32);
2124   SDValue SetCC = DAG.getNode(AArch64ISD::SETCC, dl, MVT::i32, LHS, RHS,
2125                               DAG.getCondCode(CC));
2126   SDValue A64SELECT_CC = DAG.getNode(AArch64ISD::SELECT_CC, dl, Op.getValueType(),
2127                                      SetCC, IfTrue, IfFalse, A64cc);
2128
2129   if (Alternative != A64CC::Invalid) {
2130     A64cc = DAG.getConstant(Alternative, MVT::i32);
2131     A64SELECT_CC = DAG.getNode(AArch64ISD::SELECT_CC, dl, Op.getValueType(),
2132                                SetCC, IfTrue, A64SELECT_CC, A64cc);
2133
2134   }
2135
2136   return A64SELECT_CC;
2137 }
2138
2139 // (SELECT testbit, iftrue, iffalse)
2140 SDValue
2141 AArch64TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
2142   DebugLoc dl = Op.getDebugLoc();
2143   SDValue TheBit = Op.getOperand(0);
2144   SDValue IfTrue = Op.getOperand(1);
2145   SDValue IfFalse = Op.getOperand(2);
2146
2147   // AArch64 BooleanContents is the default UndefinedBooleanContent, which means
2148   // that as the consumer we are responsible for ignoring rubbish in higher
2149   // bits.
2150   TheBit = DAG.getNode(ISD::AND, dl, MVT::i32, TheBit,
2151                        DAG.getConstant(1, MVT::i32));
2152   SDValue A64CMP = DAG.getNode(AArch64ISD::SETCC, dl, MVT::i32, TheBit,
2153                                DAG.getConstant(0, TheBit.getValueType()),
2154                                DAG.getCondCode(ISD::SETNE));
2155
2156   return DAG.getNode(AArch64ISD::SELECT_CC, dl, Op.getValueType(),
2157                      A64CMP, IfTrue, IfFalse,
2158                      DAG.getConstant(A64CC::NE, MVT::i32));
2159 }
2160
2161 // (SETCC lhs, rhs, condcode)
2162 SDValue
2163 AArch64TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
2164   DebugLoc dl = Op.getDebugLoc();
2165   SDValue LHS = Op.getOperand(0);
2166   SDValue RHS = Op.getOperand(1);
2167   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
2168   EVT VT = Op.getValueType();
2169
2170   if (LHS.getValueType() == MVT::f128) {
2171     // f128 comparisons will be lowered to libcalls giving a valid LHS and RHS
2172     // for the rest of the function (some i32 or i64 values).
2173     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
2174
2175     // If softenSetCCOperands returned a scalar, use it.
2176     if (RHS.getNode() == 0) {
2177       assert(LHS.getValueType() == Op.getValueType() &&
2178              "Unexpected setcc expansion!");
2179       return LHS;
2180     }
2181   }
2182
2183   if (LHS.getValueType().isInteger()) {
2184     SDValue A64cc;
2185
2186     // Integers are handled in a separate function because the combinations of
2187     // immediates and tests can get hairy and we may want to fiddle things.
2188     SDValue CmpOp = getSelectableIntSetCC(LHS, RHS, CC, A64cc, DAG, dl);
2189
2190     return DAG.getNode(AArch64ISD::SELECT_CC, dl, VT,
2191                        CmpOp, DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2192                        A64cc);
2193   }
2194
2195   // Note that some LLVM floating-point CondCodes can't be lowered to a single
2196   // conditional branch, hence FPCCToA64CC can set a second test, where either
2197   // passing is sufficient.
2198   A64CC::CondCodes CondCode, Alternative = A64CC::Invalid;
2199   CondCode = FPCCToA64CC(CC, Alternative);
2200   SDValue A64cc = DAG.getConstant(CondCode, MVT::i32);
2201   SDValue CmpOp = DAG.getNode(AArch64ISD::SETCC, dl, MVT::i32, LHS, RHS,
2202                               DAG.getCondCode(CC));
2203   SDValue A64SELECT_CC = DAG.getNode(AArch64ISD::SELECT_CC, dl, VT,
2204                                      CmpOp, DAG.getConstant(1, VT),
2205                                      DAG.getConstant(0, VT), A64cc);
2206
2207   if (Alternative != A64CC::Invalid) {
2208     A64cc = DAG.getConstant(Alternative, MVT::i32);
2209     A64SELECT_CC = DAG.getNode(AArch64ISD::SELECT_CC, dl, VT, CmpOp,
2210                                DAG.getConstant(1, VT), A64SELECT_CC, A64cc);
2211   }
2212
2213   return A64SELECT_CC;
2214 }
2215
2216 SDValue
2217 AArch64TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
2218   const Value *DestSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
2219   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
2220
2221   // We have to make sure we copy the entire structure: 8+8+8+4+4 = 32 bytes
2222   // rather than just 8.
2223   return DAG.getMemcpy(Op.getOperand(0), Op.getDebugLoc(),
2224                        Op.getOperand(1), Op.getOperand(2),
2225                        DAG.getConstant(32, MVT::i32), 8, false, false,
2226                        MachinePointerInfo(DestSV), MachinePointerInfo(SrcSV));
2227 }
2228
2229 SDValue
2230 AArch64TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
2231   // The layout of the va_list struct is specified in the AArch64 Procedure Call
2232   // Standard, section B.3.
2233   MachineFunction &MF = DAG.getMachineFunction();
2234   AArch64MachineFunctionInfo *FuncInfo = MF.getInfo<AArch64MachineFunctionInfo>();
2235   DebugLoc DL = Op.getDebugLoc();
2236
2237   SDValue Chain = Op.getOperand(0);
2238   SDValue VAList = Op.getOperand(1);
2239   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2240   SmallVector<SDValue, 4> MemOps;
2241
2242   // void *__stack at offset 0
2243   SDValue Stack = DAG.getFrameIndex(FuncInfo->getVariadicStackIdx(),
2244                                     getPointerTy());
2245   MemOps.push_back(DAG.getStore(Chain, DL, Stack, VAList,
2246                                 MachinePointerInfo(SV), false, false, 0));
2247
2248   // void *__gr_top at offset 8
2249   int GPRSize = FuncInfo->getVariadicGPRSize();
2250   if (GPRSize > 0) {
2251     SDValue GRTop, GRTopAddr;
2252
2253     GRTopAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
2254                             DAG.getConstant(8, getPointerTy()));
2255
2256     GRTop = DAG.getFrameIndex(FuncInfo->getVariadicGPRIdx(), getPointerTy());
2257     GRTop = DAG.getNode(ISD::ADD, DL, getPointerTy(), GRTop,
2258                         DAG.getConstant(GPRSize, getPointerTy()));
2259
2260     MemOps.push_back(DAG.getStore(Chain, DL, GRTop, GRTopAddr,
2261                                   MachinePointerInfo(SV, 8),
2262                                   false, false, 0));
2263   }
2264
2265   // void *__vr_top at offset 16
2266   int FPRSize = FuncInfo->getVariadicFPRSize();
2267   if (FPRSize > 0) {
2268     SDValue VRTop, VRTopAddr;
2269     VRTopAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
2270                             DAG.getConstant(16, getPointerTy()));
2271
2272     VRTop = DAG.getFrameIndex(FuncInfo->getVariadicFPRIdx(), getPointerTy());
2273     VRTop = DAG.getNode(ISD::ADD, DL, getPointerTy(), VRTop,
2274                         DAG.getConstant(FPRSize, getPointerTy()));
2275
2276     MemOps.push_back(DAG.getStore(Chain, DL, VRTop, VRTopAddr,
2277                                   MachinePointerInfo(SV, 16),
2278                                   false, false, 0));
2279   }
2280
2281   // int __gr_offs at offset 24
2282   SDValue GROffsAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
2283                                    DAG.getConstant(24, getPointerTy()));
2284   MemOps.push_back(DAG.getStore(Chain, DL, DAG.getConstant(-GPRSize, MVT::i32),
2285                                 GROffsAddr, MachinePointerInfo(SV, 24),
2286                                 false, false, 0));
2287
2288   // int __vr_offs at offset 28
2289   SDValue VROffsAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
2290                                    DAG.getConstant(28, getPointerTy()));
2291   MemOps.push_back(DAG.getStore(Chain, DL, DAG.getConstant(-FPRSize, MVT::i32),
2292                                 VROffsAddr, MachinePointerInfo(SV, 28),
2293                                 false, false, 0));
2294
2295   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, &MemOps[0],
2296                      MemOps.size());
2297 }
2298
2299 SDValue
2300 AArch64TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
2301   switch (Op.getOpcode()) {
2302   default: llvm_unreachable("Don't know how to custom lower this!");
2303   case ISD::FADD: return LowerF128ToCall(Op, DAG, RTLIB::ADD_F128);
2304   case ISD::FSUB: return LowerF128ToCall(Op, DAG, RTLIB::SUB_F128);
2305   case ISD::FMUL: return LowerF128ToCall(Op, DAG, RTLIB::MUL_F128);
2306   case ISD::FDIV: return LowerF128ToCall(Op, DAG, RTLIB::DIV_F128);
2307   case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG, true);
2308   case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG, false);
2309   case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG, true);
2310   case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG, false);
2311   case ISD::FP_ROUND: return LowerFP_ROUND(Op, DAG);
2312   case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
2313
2314   case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
2315   case ISD::BRCOND: return LowerBRCOND(Op, DAG);
2316   case ISD::BR_CC: return LowerBR_CC(Op, DAG);
2317   case ISD::GlobalAddress: return LowerGlobalAddressELF(Op, DAG);
2318   case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
2319   case ISD::JumpTable: return LowerJumpTable(Op, DAG);
2320   case ISD::SELECT: return LowerSELECT(Op, DAG);
2321   case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
2322   case ISD::SETCC: return LowerSETCC(Op, DAG);
2323   case ISD::VACOPY: return LowerVACOPY(Op, DAG);
2324   case ISD::VASTART: return LowerVASTART(Op, DAG);
2325   }
2326
2327   return SDValue();
2328 }
2329
2330 static SDValue PerformANDCombine(SDNode *N,
2331                                  TargetLowering::DAGCombinerInfo &DCI) {
2332
2333   SelectionDAG &DAG = DCI.DAG;
2334   DebugLoc DL = N->getDebugLoc();
2335   EVT VT = N->getValueType(0);
2336
2337   // We're looking for an SRA/SHL pair which form an SBFX.
2338
2339   if (VT != MVT::i32 && VT != MVT::i64)
2340     return SDValue();
2341
2342   if (!isa<ConstantSDNode>(N->getOperand(1)))
2343     return SDValue();
2344
2345   uint64_t TruncMask = N->getConstantOperandVal(1);
2346   if (!isMask_64(TruncMask))
2347     return SDValue();
2348
2349   uint64_t Width = CountPopulation_64(TruncMask);
2350   SDValue Shift = N->getOperand(0);
2351
2352   if (Shift.getOpcode() != ISD::SRL)
2353     return SDValue();
2354
2355   if (!isa<ConstantSDNode>(Shift->getOperand(1)))
2356     return SDValue();
2357   uint64_t LSB = Shift->getConstantOperandVal(1);
2358
2359   if (LSB > VT.getSizeInBits() || Width > VT.getSizeInBits())
2360     return SDValue();
2361
2362   return DAG.getNode(AArch64ISD::UBFX, DL, VT, Shift.getOperand(0),
2363                      DAG.getConstant(LSB, MVT::i64),
2364                      DAG.getConstant(LSB + Width - 1, MVT::i64));
2365 }
2366
2367 static SDValue PerformATOMIC_FENCECombine(SDNode *FenceNode,
2368                                           TargetLowering::DAGCombinerInfo &DCI) {
2369   // An atomic operation followed by an acquiring atomic fence can be reduced to
2370   // an acquiring load. The atomic operation provides a convenient pointer to
2371   // load from. If the original operation was a load anyway we can actually
2372   // combine the two operations into an acquiring load.
2373   SelectionDAG &DAG = DCI.DAG;
2374   SDValue AtomicOp = FenceNode->getOperand(0);
2375   AtomicSDNode *AtomicNode = dyn_cast<AtomicSDNode>(AtomicOp);
2376
2377   // A fence on its own can't be optimised
2378   if (!AtomicNode)
2379     return SDValue();
2380
2381   uint64_t FenceOrder = FenceNode->getConstantOperandVal(1);
2382   uint64_t FenceScope = FenceNode->getConstantOperandVal(2);
2383
2384   if (FenceOrder != Acquire || FenceScope != AtomicNode->getSynchScope())
2385     return SDValue();
2386
2387   // If the original operation was an ATOMIC_LOAD then we'll be replacing it, so
2388   // the chain we use should be its input, otherwise we'll put our store after
2389   // it so we use its output chain.
2390   SDValue Chain = AtomicNode->getOpcode() == ISD::ATOMIC_LOAD ?
2391     AtomicNode->getChain() : AtomicOp;
2392
2393   // We have an acquire fence with a handy atomic operation nearby, we can
2394   // convert the fence into a load-acquire, discarding the result.
2395   DebugLoc DL = FenceNode->getDebugLoc();
2396   SDValue Op = DAG.getAtomic(ISD::ATOMIC_LOAD, DL, AtomicNode->getMemoryVT(),
2397                              AtomicNode->getValueType(0),
2398                              Chain,                  // Chain
2399                              AtomicOp.getOperand(1), // Pointer
2400                              AtomicNode->getMemOperand(), Acquire,
2401                              static_cast<SynchronizationScope>(FenceScope));
2402
2403   if (AtomicNode->getOpcode() == ISD::ATOMIC_LOAD)
2404     DAG.ReplaceAllUsesWith(AtomicNode, Op.getNode());
2405
2406   return Op.getValue(1);
2407 }
2408
2409 static SDValue PerformATOMIC_STORECombine(SDNode *N,
2410                                           TargetLowering::DAGCombinerInfo &DCI) {
2411   // A releasing atomic fence followed by an atomic store can be combined into a
2412   // single store operation.
2413   SelectionDAG &DAG = DCI.DAG;
2414   AtomicSDNode *AtomicNode = cast<AtomicSDNode>(N);
2415   SDValue FenceOp = AtomicNode->getOperand(0);
2416
2417   if (FenceOp.getOpcode() != ISD::ATOMIC_FENCE)
2418     return SDValue();
2419
2420   uint64_t FenceOrder
2421     = cast<ConstantSDNode>(FenceOp.getOperand(1))->getZExtValue();
2422   uint64_t FenceScope
2423     = cast<ConstantSDNode>(FenceOp.getOperand(2))->getZExtValue();
2424
2425   if (FenceOrder != Release || FenceScope != AtomicNode->getSynchScope())
2426     return SDValue();
2427
2428   DebugLoc DL = AtomicNode->getDebugLoc();
2429   return DAG.getAtomic(ISD::ATOMIC_STORE, DL, AtomicNode->getMemoryVT(),
2430                        FenceOp.getOperand(0),  // Chain
2431                        AtomicNode->getOperand(1),       // Pointer
2432                        AtomicNode->getOperand(2),       // Value
2433                        AtomicNode->getMemOperand(), Release,
2434                        static_cast<SynchronizationScope>(FenceScope));
2435 }
2436
2437 /// For a true bitfield insert, the bits getting into that contiguous mask
2438 /// should come from the low part of an existing value: they must be formed from
2439 /// a compatible SHL operation (unless they're already low). This function
2440 /// checks that condition and returns the least-significant bit that's
2441 /// intended. If the operation not a field preparation, -1 is returned.
2442 static int32_t getLSBForBFI(SelectionDAG &DAG, DebugLoc DL, EVT VT,
2443                             SDValue &MaskedVal, uint64_t Mask) {
2444   if (!isShiftedMask_64(Mask))
2445     return -1;
2446
2447   // Now we need to alter MaskedVal so that it is an appropriate input for a BFI
2448   // instruction. BFI will do a left-shift by LSB before applying the mask we've
2449   // spotted, so in general we should pre-emptively "undo" that by making sure
2450   // the incoming bits have had a right-shift applied to them.
2451   //
2452   // This right shift, however, will combine with existing left/right shifts. In
2453   // the simplest case of a completely straight bitfield operation, it will be
2454   // expected to completely cancel out with an existing SHL. More complicated
2455   // cases (e.g. bitfield to bitfield copy) may still need a real shift before
2456   // the BFI.
2457
2458   uint64_t LSB = CountTrailingZeros_64(Mask);
2459   int64_t ShiftRightRequired = LSB;
2460   if (MaskedVal.getOpcode() == ISD::SHL &&
2461       isa<ConstantSDNode>(MaskedVal.getOperand(1))) {
2462     ShiftRightRequired -= MaskedVal.getConstantOperandVal(1);
2463     MaskedVal = MaskedVal.getOperand(0);
2464   } else if (MaskedVal.getOpcode() == ISD::SRL &&
2465              isa<ConstantSDNode>(MaskedVal.getOperand(1))) {
2466     ShiftRightRequired += MaskedVal.getConstantOperandVal(1);
2467     MaskedVal = MaskedVal.getOperand(0);
2468   }
2469
2470   if (ShiftRightRequired > 0)
2471     MaskedVal = DAG.getNode(ISD::SRL, DL, VT, MaskedVal,
2472                             DAG.getConstant(ShiftRightRequired, MVT::i64));
2473   else if (ShiftRightRequired < 0) {
2474     // We could actually end up with a residual left shift, for example with
2475     // "struc.bitfield = val << 1".
2476     MaskedVal = DAG.getNode(ISD::SHL, DL, VT, MaskedVal,
2477                             DAG.getConstant(-ShiftRightRequired, MVT::i64));
2478   }
2479
2480   return LSB;
2481 }
2482
2483 /// Searches from N for an existing AArch64ISD::BFI node, possibly surrounded by
2484 /// a mask and an extension. Returns true if a BFI was found and provides
2485 /// information on its surroundings.
2486 static bool findMaskedBFI(SDValue N, SDValue &BFI, uint64_t &Mask,
2487                           bool &Extended) {
2488   Extended = false;
2489   if (N.getOpcode() == ISD::ZERO_EXTEND) {
2490     Extended = true;
2491     N = N.getOperand(0);
2492   }
2493
2494   if (N.getOpcode() == ISD::AND && isa<ConstantSDNode>(N.getOperand(1))) {
2495     Mask = N->getConstantOperandVal(1);
2496     N = N.getOperand(0);
2497   } else {
2498     // Mask is the whole width.
2499     Mask = (1ULL << N.getValueType().getSizeInBits()) - 1;
2500   }
2501
2502   if (N.getOpcode() == AArch64ISD::BFI) {
2503     BFI = N;
2504     return true;
2505   }
2506
2507   return false;
2508 }
2509
2510 /// Try to combine a subtree (rooted at an OR) into a "masked BFI" node, which
2511 /// is roughly equivalent to (and (BFI ...), mask). This form is used because it
2512 /// can often be further combined with a larger mask. Ultimately, we want mask
2513 /// to be 2^32-1 or 2^64-1 so the AND can be skipped.
2514 static SDValue tryCombineToBFI(SDNode *N,
2515                                TargetLowering::DAGCombinerInfo &DCI,
2516                                const AArch64Subtarget *Subtarget) {
2517   SelectionDAG &DAG = DCI.DAG;
2518   DebugLoc DL = N->getDebugLoc();
2519   EVT VT = N->getValueType(0);
2520
2521   assert(N->getOpcode() == ISD::OR && "Unexpected root");
2522
2523   // We need the LHS to be (and SOMETHING, MASK). Find out what that mask is or
2524   // abandon the effort.
2525   SDValue LHS = N->getOperand(0);
2526   if (LHS.getOpcode() != ISD::AND)
2527     return SDValue();
2528
2529   uint64_t LHSMask;
2530   if (isa<ConstantSDNode>(LHS.getOperand(1)))
2531     LHSMask = LHS->getConstantOperandVal(1);
2532   else
2533     return SDValue();
2534
2535   // We also need the RHS to be (and SOMETHING, MASK). Find out what that mask
2536   // is or abandon the effort.
2537   SDValue RHS = N->getOperand(1);
2538   if (RHS.getOpcode() != ISD::AND)
2539     return SDValue();
2540
2541   uint64_t RHSMask;
2542   if (isa<ConstantSDNode>(RHS.getOperand(1)))
2543     RHSMask = RHS->getConstantOperandVal(1);
2544   else
2545     return SDValue();
2546
2547   // Can't do anything if the masks are incompatible.
2548   if (LHSMask & RHSMask)
2549     return SDValue();
2550
2551   // Now we need one of the masks to be a contiguous field. Without loss of
2552   // generality that should be the RHS one.
2553   SDValue Bitfield = LHS.getOperand(0);
2554   if (getLSBForBFI(DAG, DL, VT, Bitfield, LHSMask) != -1) {
2555     // We know that LHS is a candidate new value, and RHS isn't already a better
2556     // one.
2557     std::swap(LHS, RHS);
2558     std::swap(LHSMask, RHSMask);
2559   }
2560
2561   // We've done our best to put the right operands in the right places, all we
2562   // can do now is check whether a BFI exists.
2563   Bitfield = RHS.getOperand(0);
2564   int32_t LSB = getLSBForBFI(DAG, DL, VT, Bitfield, RHSMask);
2565   if (LSB == -1)
2566     return SDValue();
2567
2568   uint32_t Width = CountPopulation_64(RHSMask);
2569   assert(Width && "Expected non-zero bitfield width");
2570
2571   SDValue BFI = DAG.getNode(AArch64ISD::BFI, DL, VT,
2572                             LHS.getOperand(0), Bitfield,
2573                             DAG.getConstant(LSB, MVT::i64),
2574                             DAG.getConstant(Width, MVT::i64));
2575
2576   // Mask is trivial
2577   if ((LHSMask | RHSMask) == (1ULL << VT.getSizeInBits()) - 1)
2578     return BFI;
2579
2580   return DAG.getNode(ISD::AND, DL, VT, BFI,
2581                      DAG.getConstant(LHSMask | RHSMask, VT));
2582 }
2583
2584 /// Search for the bitwise combining (with careful masks) of a MaskedBFI and its
2585 /// original input. This is surprisingly common because SROA splits things up
2586 /// into i8 chunks, so the originally detected MaskedBFI may actually only act
2587 /// on the low (say) byte of a word. This is then orred into the rest of the
2588 /// word afterwards.
2589 ///
2590 /// Basic input: (or (and OLDFIELD, MASK1), (MaskedBFI MASK2, OLDFIELD, ...)).
2591 ///
2592 /// If MASK1 and MASK2 are compatible, we can fold the whole thing into the
2593 /// MaskedBFI. We can also deal with a certain amount of extend/truncate being
2594 /// involved.
2595 static SDValue tryCombineToLargerBFI(SDNode *N,
2596                                      TargetLowering::DAGCombinerInfo &DCI,
2597                                      const AArch64Subtarget *Subtarget) {
2598   SelectionDAG &DAG = DCI.DAG;
2599   DebugLoc DL = N->getDebugLoc();
2600   EVT VT = N->getValueType(0);
2601
2602   // First job is to hunt for a MaskedBFI on either the left or right. Swap
2603   // operands if it's actually on the right.
2604   SDValue BFI;
2605   SDValue PossExtraMask;
2606   uint64_t ExistingMask = 0;
2607   bool Extended = false;
2608   if (findMaskedBFI(N->getOperand(0), BFI, ExistingMask, Extended))
2609     PossExtraMask = N->getOperand(1);
2610   else if (findMaskedBFI(N->getOperand(1), BFI, ExistingMask, Extended))
2611     PossExtraMask = N->getOperand(0);
2612   else
2613     return SDValue();
2614
2615   // We can only combine a BFI with another compatible mask.
2616   if (PossExtraMask.getOpcode() != ISD::AND ||
2617       !isa<ConstantSDNode>(PossExtraMask.getOperand(1)))
2618     return SDValue();
2619
2620   uint64_t ExtraMask = PossExtraMask->getConstantOperandVal(1);
2621
2622   // Masks must be compatible.
2623   if (ExtraMask & ExistingMask)
2624     return SDValue();
2625
2626   SDValue OldBFIVal = BFI.getOperand(0);
2627   SDValue NewBFIVal = BFI.getOperand(1);
2628   if (Extended) {
2629     // We skipped a ZERO_EXTEND above, so the input to the MaskedBFIs should be
2630     // 32-bit and we'll be forming a 64-bit MaskedBFI. The MaskedBFI arguments
2631     // need to be made compatible.
2632     assert(VT == MVT::i64 && BFI.getValueType() == MVT::i32
2633            && "Invalid types for BFI");
2634     OldBFIVal = DAG.getNode(ISD::ANY_EXTEND, DL, VT, OldBFIVal);
2635     NewBFIVal = DAG.getNode(ISD::ANY_EXTEND, DL, VT, NewBFIVal);
2636   }
2637
2638   // We need the MaskedBFI to be combined with a mask of the *same* value.
2639   if (PossExtraMask.getOperand(0) != OldBFIVal)
2640     return SDValue();
2641
2642   BFI = DAG.getNode(AArch64ISD::BFI, DL, VT,
2643                     OldBFIVal, NewBFIVal,
2644                     BFI.getOperand(2), BFI.getOperand(3));
2645
2646   // If the masking is trivial, we don't need to create it.
2647   if ((ExtraMask | ExistingMask) == (1ULL << VT.getSizeInBits()) - 1)
2648     return BFI;
2649
2650   return DAG.getNode(ISD::AND, DL, VT, BFI,
2651                      DAG.getConstant(ExtraMask | ExistingMask, VT));
2652 }
2653
2654 /// An EXTR instruction is made up of two shifts, ORed together. This helper
2655 /// searches for and classifies those shifts.
2656 static bool findEXTRHalf(SDValue N, SDValue &Src, uint32_t &ShiftAmount,
2657                          bool &FromHi) {
2658   if (N.getOpcode() == ISD::SHL)
2659     FromHi = false;
2660   else if (N.getOpcode() == ISD::SRL)
2661     FromHi = true;
2662   else
2663     return false;
2664
2665   if (!isa<ConstantSDNode>(N.getOperand(1)))
2666     return false;
2667
2668   ShiftAmount = N->getConstantOperandVal(1);
2669   Src = N->getOperand(0);
2670   return true;
2671 }
2672
2673 /// EXTR instruciton extracts a contiguous chunk of bits from two existing
2674 /// registers viewed as a high/low pair. This function looks for the pattern:
2675 /// (or (shl VAL1, #N), (srl VAL2, #RegWidth-N)) and replaces it with an
2676 /// EXTR. Can't quite be done in TableGen because the two immediates aren't
2677 /// independent.
2678 static SDValue tryCombineToEXTR(SDNode *N,
2679                                 TargetLowering::DAGCombinerInfo &DCI) {
2680   SelectionDAG &DAG = DCI.DAG;
2681   DebugLoc DL = N->getDebugLoc();
2682   EVT VT = N->getValueType(0);
2683
2684   assert(N->getOpcode() == ISD::OR && "Unexpected root");
2685
2686   if (VT != MVT::i32 && VT != MVT::i64)
2687     return SDValue();
2688
2689   SDValue LHS;
2690   uint32_t ShiftLHS = 0;
2691   bool LHSFromHi = 0;
2692   if (!findEXTRHalf(N->getOperand(0), LHS, ShiftLHS, LHSFromHi))
2693     return SDValue();
2694
2695   SDValue RHS;
2696   uint32_t ShiftRHS = 0;
2697   bool RHSFromHi = 0;
2698   if (!findEXTRHalf(N->getOperand(1), RHS, ShiftRHS, RHSFromHi))
2699     return SDValue();
2700
2701   // If they're both trying to come from the high part of the register, they're
2702   // not really an EXTR.
2703   if (LHSFromHi == RHSFromHi)
2704     return SDValue();
2705
2706   if (ShiftLHS + ShiftRHS != VT.getSizeInBits())
2707     return SDValue();
2708
2709   if (LHSFromHi) {
2710     std::swap(LHS, RHS);
2711     std::swap(ShiftLHS, ShiftRHS);
2712   }
2713
2714   return DAG.getNode(AArch64ISD::EXTR, DL, VT,
2715                      LHS, RHS,
2716                      DAG.getConstant(ShiftRHS, MVT::i64));
2717 }
2718
2719 /// Target-specific dag combine xforms for ISD::OR
2720 static SDValue PerformORCombine(SDNode *N,
2721                                 TargetLowering::DAGCombinerInfo &DCI,
2722                                 const AArch64Subtarget *Subtarget) {
2723
2724   SelectionDAG &DAG = DCI.DAG;
2725   EVT VT = N->getValueType(0);
2726
2727   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
2728     return SDValue();
2729
2730   // Attempt to recognise bitfield-insert operations.
2731   SDValue Res = tryCombineToBFI(N, DCI, Subtarget);
2732   if (Res.getNode())
2733     return Res;
2734
2735   // Attempt to combine an existing MaskedBFI operation into one with a larger
2736   // mask.
2737   Res = tryCombineToLargerBFI(N, DCI, Subtarget);
2738   if (Res.getNode())
2739     return Res;
2740
2741   Res = tryCombineToEXTR(N, DCI);
2742   if (Res.getNode())
2743     return Res;
2744
2745   return SDValue();
2746 }
2747
2748 /// Target-specific dag combine xforms for ISD::SRA
2749 static SDValue PerformSRACombine(SDNode *N,
2750                                  TargetLowering::DAGCombinerInfo &DCI) {
2751
2752   SelectionDAG &DAG = DCI.DAG;
2753   DebugLoc DL = N->getDebugLoc();
2754   EVT VT = N->getValueType(0);
2755
2756   // We're looking for an SRA/SHL pair which form an SBFX.
2757
2758   if (VT != MVT::i32 && VT != MVT::i64)
2759     return SDValue();
2760
2761   if (!isa<ConstantSDNode>(N->getOperand(1)))
2762     return SDValue();
2763
2764   uint64_t ExtraSignBits = N->getConstantOperandVal(1);
2765   SDValue Shift = N->getOperand(0);
2766
2767   if (Shift.getOpcode() != ISD::SHL)
2768     return SDValue();
2769
2770   if (!isa<ConstantSDNode>(Shift->getOperand(1)))
2771     return SDValue();
2772
2773   uint64_t BitsOnLeft = Shift->getConstantOperandVal(1);
2774   uint64_t Width = VT.getSizeInBits() - ExtraSignBits;
2775   uint64_t LSB = VT.getSizeInBits() - Width - BitsOnLeft;
2776
2777   if (LSB > VT.getSizeInBits() || Width > VT.getSizeInBits())
2778     return SDValue();
2779
2780   return DAG.getNode(AArch64ISD::SBFX, DL, VT, Shift.getOperand(0),
2781                      DAG.getConstant(LSB, MVT::i64),
2782                      DAG.getConstant(LSB + Width - 1, MVT::i64));
2783 }
2784
2785
2786 SDValue
2787 AArch64TargetLowering::PerformDAGCombine(SDNode *N,
2788                                          DAGCombinerInfo &DCI) const {
2789   switch (N->getOpcode()) {
2790   default: break;
2791   case ISD::AND: return PerformANDCombine(N, DCI);
2792   case ISD::ATOMIC_FENCE: return PerformATOMIC_FENCECombine(N, DCI);
2793   case ISD::ATOMIC_STORE: return PerformATOMIC_STORECombine(N, DCI);
2794   case ISD::OR: return PerformORCombine(N, DCI, Subtarget);
2795   case ISD::SRA: return PerformSRACombine(N, DCI);
2796   }
2797   return SDValue();
2798 }
2799
2800 AArch64TargetLowering::ConstraintType
2801 AArch64TargetLowering::getConstraintType(const std::string &Constraint) const {
2802   if (Constraint.size() == 1) {
2803     switch (Constraint[0]) {
2804     default: break;
2805     case 'w': // An FP/SIMD vector register
2806       return C_RegisterClass;
2807     case 'I': // Constant that can be used with an ADD instruction
2808     case 'J': // Constant that can be used with a SUB instruction
2809     case 'K': // Constant that can be used with a 32-bit logical instruction
2810     case 'L': // Constant that can be used with a 64-bit logical instruction
2811     case 'M': // Constant that can be used as a 32-bit MOV immediate
2812     case 'N': // Constant that can be used as a 64-bit MOV immediate
2813     case 'Y': // Floating point constant zero
2814     case 'Z': // Integer constant zero
2815       return C_Other;
2816     case 'Q': // A memory reference with base register and no offset
2817       return C_Memory;
2818     case 'S': // A symbolic address
2819       return C_Other;
2820     }
2821   }
2822
2823   // FIXME: Ump, Utf, Usa, Ush
2824   // Ump: A memory address suitable for ldp/stp in SI, DI, SF and DF modes, whatever they may be
2825   // Utf: A memory address suitable for ldp/stp in TF mode, whatever it may be
2826   // Usa: An absolute symbolic address
2827   // Ush: The high part (bits 32:12) of a pc-relative symbolic address
2828   assert(Constraint != "Ump" && Constraint != "Utf" && Constraint != "Usa"
2829          && Constraint != "Ush" && "Unimplemented constraints");
2830
2831   return TargetLowering::getConstraintType(Constraint);
2832 }
2833
2834 TargetLowering::ConstraintWeight
2835 AArch64TargetLowering::getSingleConstraintMatchWeight(AsmOperandInfo &Info,
2836                                                 const char *Constraint) const {
2837
2838   llvm_unreachable("Constraint weight unimplemented");
2839 }
2840
2841 void
2842 AArch64TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
2843                                                     std::string &Constraint,
2844                                                     std::vector<SDValue> &Ops,
2845                                                     SelectionDAG &DAG) const {
2846   SDValue Result(0, 0);
2847
2848   // Only length 1 constraints are C_Other.
2849   if (Constraint.size() != 1) return;
2850
2851   // Only C_Other constraints get lowered like this. That means constants for us
2852   // so return early if there's no hope the constraint can be lowered.
2853
2854   switch(Constraint[0]) {
2855   default: break;
2856   case 'I': case 'J': case 'K': case 'L':
2857   case 'M': case 'N': case 'Z': {
2858     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2859     if (!C)
2860       return;
2861
2862     uint64_t CVal = C->getZExtValue();
2863     uint32_t Bits;
2864
2865     switch (Constraint[0]) {
2866     default:
2867       // FIXME: 'M' and 'N' are MOV pseudo-insts -- unsupported in assembly. 'J'
2868       // is a peculiarly useless SUB constraint.
2869       llvm_unreachable("Unimplemented C_Other constraint");
2870     case 'I':
2871       if (CVal <= 0xfff)
2872         break;
2873       return;
2874     case 'K':
2875       if (A64Imms::isLogicalImm(32, CVal, Bits))
2876         break;
2877       return;
2878     case 'L':
2879       if (A64Imms::isLogicalImm(64, CVal, Bits))
2880         break;
2881       return;
2882     case 'Z':
2883       if (CVal == 0)
2884         break;
2885       return;
2886     }
2887
2888     Result = DAG.getTargetConstant(CVal, Op.getValueType());
2889     break;
2890   }
2891   case 'S': {
2892     // An absolute symbolic address or label reference.
2893     if (const GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op)) {
2894       Result = DAG.getTargetGlobalAddress(GA->getGlobal(), Op.getDebugLoc(),
2895                                           GA->getValueType(0));
2896     } else if (const BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
2897       Result = DAG.getTargetBlockAddress(BA->getBlockAddress(),
2898                                          BA->getValueType(0));
2899     } else if (const ExternalSymbolSDNode *ES
2900                  = dyn_cast<ExternalSymbolSDNode>(Op)) {
2901       Result = DAG.getTargetExternalSymbol(ES->getSymbol(),
2902                                            ES->getValueType(0));
2903     } else
2904       return;
2905     break;
2906   }
2907   case 'Y':
2908     if (const ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op)) {
2909       if (CFP->isExactlyValue(0.0)) {
2910         Result = DAG.getTargetConstantFP(0.0, CFP->getValueType(0));
2911         break;
2912       }
2913     }
2914     return;
2915   }
2916
2917   if (Result.getNode()) {
2918     Ops.push_back(Result);
2919     return;
2920   }
2921
2922   // It's an unknown constraint for us. Let generic code have a go.
2923   TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
2924 }
2925
2926 std::pair<unsigned, const TargetRegisterClass*>
2927 AArch64TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
2928                                                     EVT VT) const {
2929   if (Constraint.size() == 1) {
2930     switch (Constraint[0]) {
2931     case 'r':
2932       if (VT.getSizeInBits() <= 32)
2933         return std::make_pair(0U, &AArch64::GPR32RegClass);
2934       else if (VT == MVT::i64)
2935         return std::make_pair(0U, &AArch64::GPR64RegClass);
2936       break;
2937     case 'w':
2938       if (VT == MVT::f16)
2939         return std::make_pair(0U, &AArch64::FPR16RegClass);
2940       else if (VT == MVT::f32)
2941         return std::make_pair(0U, &AArch64::FPR32RegClass);
2942       else if (VT == MVT::f64)
2943         return std::make_pair(0U, &AArch64::FPR64RegClass);
2944       else if (VT.getSizeInBits() == 64)
2945         return std::make_pair(0U, &AArch64::VPR64RegClass);
2946       else if (VT == MVT::f128)
2947         return std::make_pair(0U, &AArch64::FPR128RegClass);
2948       else if (VT.getSizeInBits() == 128)
2949         return std::make_pair(0U, &AArch64::VPR128RegClass);
2950       break;
2951     }
2952   }
2953
2954   // Use the default implementation in TargetLowering to convert the register
2955   // constraint into a member of a register class.
2956   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
2957 }