Convert some AArch64 code to foreach loops. NFC.
[oota-llvm.git] / lib / Target / AArch64 / AArch64FastISel.cpp
1 //===-- AArch6464FastISel.cpp - AArch64 FastISel 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 AArch64-specific support for the FastISel class. Some
11 // of the target-specific code is generated by tablegen in the file
12 // AArch64GenFastISel.inc, which is #included here.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "AArch64.h"
17 #include "AArch64CallingConvention.h"
18 #include "AArch64Subtarget.h"
19 #include "AArch64TargetMachine.h"
20 #include "MCTargetDesc/AArch64AddressingModes.h"
21 #include "llvm/Analysis/BranchProbabilityInfo.h"
22 #include "llvm/CodeGen/CallingConvLower.h"
23 #include "llvm/CodeGen/FastISel.h"
24 #include "llvm/CodeGen/FunctionLoweringInfo.h"
25 #include "llvm/CodeGen/MachineConstantPool.h"
26 #include "llvm/CodeGen/MachineFrameInfo.h"
27 #include "llvm/CodeGen/MachineInstrBuilder.h"
28 #include "llvm/CodeGen/MachineRegisterInfo.h"
29 #include "llvm/IR/CallingConv.h"
30 #include "llvm/IR/DataLayout.h"
31 #include "llvm/IR/DerivedTypes.h"
32 #include "llvm/IR/Function.h"
33 #include "llvm/IR/GetElementPtrTypeIterator.h"
34 #include "llvm/IR/GlobalAlias.h"
35 #include "llvm/IR/GlobalVariable.h"
36 #include "llvm/IR/Instructions.h"
37 #include "llvm/IR/IntrinsicInst.h"
38 #include "llvm/IR/Operator.h"
39 #include "llvm/MC/MCSymbol.h"
40 #include "llvm/Support/CommandLine.h"
41 using namespace llvm;
42
43 namespace {
44
45 class AArch64FastISel final : public FastISel {
46   class Address {
47   public:
48     typedef enum {
49       RegBase,
50       FrameIndexBase
51     } BaseKind;
52
53   private:
54     BaseKind Kind;
55     AArch64_AM::ShiftExtendType ExtType;
56     union {
57       unsigned Reg;
58       int FI;
59     } Base;
60     unsigned OffsetReg;
61     unsigned Shift;
62     int64_t Offset;
63     const GlobalValue *GV;
64
65   public:
66     Address() : Kind(RegBase), ExtType(AArch64_AM::InvalidShiftExtend),
67       OffsetReg(0), Shift(0), Offset(0), GV(nullptr) { Base.Reg = 0; }
68     void setKind(BaseKind K) { Kind = K; }
69     BaseKind getKind() const { return Kind; }
70     void setExtendType(AArch64_AM::ShiftExtendType E) { ExtType = E; }
71     AArch64_AM::ShiftExtendType getExtendType() const { return ExtType; }
72     bool isRegBase() const { return Kind == RegBase; }
73     bool isFIBase() const { return Kind == FrameIndexBase; }
74     void setReg(unsigned Reg) {
75       assert(isRegBase() && "Invalid base register access!");
76       Base.Reg = Reg;
77     }
78     unsigned getReg() const {
79       assert(isRegBase() && "Invalid base register access!");
80       return Base.Reg;
81     }
82     void setOffsetReg(unsigned Reg) {
83       OffsetReg = Reg;
84     }
85     unsigned getOffsetReg() const {
86       return OffsetReg;
87     }
88     void setFI(unsigned FI) {
89       assert(isFIBase() && "Invalid base frame index  access!");
90       Base.FI = FI;
91     }
92     unsigned getFI() const {
93       assert(isFIBase() && "Invalid base frame index access!");
94       return Base.FI;
95     }
96     void setOffset(int64_t O) { Offset = O; }
97     int64_t getOffset() { return Offset; }
98     void setShift(unsigned S) { Shift = S; }
99     unsigned getShift() { return Shift; }
100
101     void setGlobalValue(const GlobalValue *G) { GV = G; }
102     const GlobalValue *getGlobalValue() { return GV; }
103   };
104
105   /// Subtarget - Keep a pointer to the AArch64Subtarget around so that we can
106   /// make the right decision when generating code for different targets.
107   const AArch64Subtarget *Subtarget;
108   LLVMContext *Context;
109
110   bool fastLowerArguments() override;
111   bool fastLowerCall(CallLoweringInfo &CLI) override;
112   bool fastLowerIntrinsicCall(const IntrinsicInst *II) override;
113
114 private:
115   // Selection routines.
116   bool selectAddSub(const Instruction *I);
117   bool selectLogicalOp(const Instruction *I);
118   bool selectLoad(const Instruction *I);
119   bool selectStore(const Instruction *I);
120   bool selectBranch(const Instruction *I);
121   bool selectIndirectBr(const Instruction *I);
122   bool selectCmp(const Instruction *I);
123   bool selectSelect(const Instruction *I);
124   bool selectFPExt(const Instruction *I);
125   bool selectFPTrunc(const Instruction *I);
126   bool selectFPToInt(const Instruction *I, bool Signed);
127   bool selectIntToFP(const Instruction *I, bool Signed);
128   bool selectRem(const Instruction *I, unsigned ISDOpcode);
129   bool selectRet(const Instruction *I);
130   bool selectTrunc(const Instruction *I);
131   bool selectIntExt(const Instruction *I);
132   bool selectMul(const Instruction *I);
133   bool selectShift(const Instruction *I);
134   bool selectBitCast(const Instruction *I);
135   bool selectFRem(const Instruction *I);
136   bool selectSDiv(const Instruction *I);
137   bool selectGetElementPtr(const Instruction *I);
138
139   // Utility helper routines.
140   bool isTypeLegal(Type *Ty, MVT &VT);
141   bool isTypeSupported(Type *Ty, MVT &VT, bool IsVectorAllowed = false);
142   bool isValueAvailable(const Value *V) const;
143   bool computeAddress(const Value *Obj, Address &Addr, Type *Ty = nullptr);
144   bool computeCallAddress(const Value *V, Address &Addr);
145   bool simplifyAddress(Address &Addr, MVT VT);
146   void addLoadStoreOperands(Address &Addr, const MachineInstrBuilder &MIB,
147                             unsigned Flags, unsigned ScaleFactor,
148                             MachineMemOperand *MMO);
149   bool isMemCpySmall(uint64_t Len, unsigned Alignment);
150   bool tryEmitSmallMemCpy(Address Dest, Address Src, uint64_t Len,
151                           unsigned Alignment);
152   bool foldXALUIntrinsic(AArch64CC::CondCode &CC, const Instruction *I,
153                          const Value *Cond);
154   bool optimizeIntExtLoad(const Instruction *I, MVT RetVT, MVT SrcVT);
155   bool optimizeSelect(const SelectInst *SI);
156   std::pair<unsigned, bool> getRegForGEPIndex(const Value *Idx);
157
158   // Emit helper routines.
159   unsigned emitAddSub(bool UseAdd, MVT RetVT, const Value *LHS,
160                       const Value *RHS, bool SetFlags = false,
161                       bool WantResult = true,  bool IsZExt = false);
162   unsigned emitAddSub_rr(bool UseAdd, MVT RetVT, unsigned LHSReg,
163                          bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
164                          bool SetFlags = false, bool WantResult = true);
165   unsigned emitAddSub_ri(bool UseAdd, MVT RetVT, unsigned LHSReg,
166                          bool LHSIsKill, uint64_t Imm, bool SetFlags = false,
167                          bool WantResult = true);
168   unsigned emitAddSub_rs(bool UseAdd, MVT RetVT, unsigned LHSReg,
169                          bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
170                          AArch64_AM::ShiftExtendType ShiftType,
171                          uint64_t ShiftImm, bool SetFlags = false,
172                          bool WantResult = true);
173   unsigned emitAddSub_rx(bool UseAdd, MVT RetVT, unsigned LHSReg,
174                          bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
175                           AArch64_AM::ShiftExtendType ExtType,
176                           uint64_t ShiftImm, bool SetFlags = false,
177                          bool WantResult = true);
178
179   // Emit functions.
180   bool emitCompareAndBranch(const BranchInst *BI);
181   bool emitCmp(const Value *LHS, const Value *RHS, bool IsZExt);
182   bool emitICmp(MVT RetVT, const Value *LHS, const Value *RHS, bool IsZExt);
183   bool emitICmp_ri(MVT RetVT, unsigned LHSReg, bool LHSIsKill, uint64_t Imm);
184   bool emitFCmp(MVT RetVT, const Value *LHS, const Value *RHS);
185   unsigned emitLoad(MVT VT, MVT ResultVT, Address Addr, bool WantZExt = true,
186                     MachineMemOperand *MMO = nullptr);
187   bool emitStore(MVT VT, unsigned SrcReg, Address Addr,
188                  MachineMemOperand *MMO = nullptr);
189   unsigned emitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, bool isZExt);
190   unsigned emiti1Ext(unsigned SrcReg, MVT DestVT, bool isZExt);
191   unsigned emitAdd(MVT RetVT, const Value *LHS, const Value *RHS,
192                    bool SetFlags = false, bool WantResult = true,
193                    bool IsZExt = false);
194   unsigned emitAdd_ri_(MVT VT, unsigned Op0, bool Op0IsKill, int64_t Imm);
195   unsigned emitSub(MVT RetVT, const Value *LHS, const Value *RHS,
196                    bool SetFlags = false, bool WantResult = true,
197                    bool IsZExt = false);
198   unsigned emitSubs_rr(MVT RetVT, unsigned LHSReg, bool LHSIsKill,
199                        unsigned RHSReg, bool RHSIsKill, bool WantResult = true);
200   unsigned emitSubs_rs(MVT RetVT, unsigned LHSReg, bool LHSIsKill,
201                        unsigned RHSReg, bool RHSIsKill,
202                        AArch64_AM::ShiftExtendType ShiftType, uint64_t ShiftImm,
203                        bool WantResult = true);
204   unsigned emitLogicalOp(unsigned ISDOpc, MVT RetVT, const Value *LHS,
205                          const Value *RHS);
206   unsigned emitLogicalOp_ri(unsigned ISDOpc, MVT RetVT, unsigned LHSReg,
207                             bool LHSIsKill, uint64_t Imm);
208   unsigned emitLogicalOp_rs(unsigned ISDOpc, MVT RetVT, unsigned LHSReg,
209                             bool LHSIsKill, unsigned RHSReg, bool RHSIsKill,
210                             uint64_t ShiftImm);
211   unsigned emitAnd_ri(MVT RetVT, unsigned LHSReg, bool LHSIsKill, uint64_t Imm);
212   unsigned emitMul_rr(MVT RetVT, unsigned Op0, bool Op0IsKill,
213                       unsigned Op1, bool Op1IsKill);
214   unsigned emitSMULL_rr(MVT RetVT, unsigned Op0, bool Op0IsKill,
215                         unsigned Op1, bool Op1IsKill);
216   unsigned emitUMULL_rr(MVT RetVT, unsigned Op0, bool Op0IsKill,
217                         unsigned Op1, bool Op1IsKill);
218   unsigned emitLSL_rr(MVT RetVT, unsigned Op0Reg, bool Op0IsKill,
219                       unsigned Op1Reg, bool Op1IsKill);
220   unsigned emitLSL_ri(MVT RetVT, MVT SrcVT, unsigned Op0Reg, bool Op0IsKill,
221                       uint64_t Imm, bool IsZExt = true);
222   unsigned emitLSR_rr(MVT RetVT, unsigned Op0Reg, bool Op0IsKill,
223                       unsigned Op1Reg, bool Op1IsKill);
224   unsigned emitLSR_ri(MVT RetVT, MVT SrcVT, unsigned Op0Reg, bool Op0IsKill,
225                       uint64_t Imm, bool IsZExt = true);
226   unsigned emitASR_rr(MVT RetVT, unsigned Op0Reg, bool Op0IsKill,
227                       unsigned Op1Reg, bool Op1IsKill);
228   unsigned emitASR_ri(MVT RetVT, MVT SrcVT, unsigned Op0Reg, bool Op0IsKill,
229                       uint64_t Imm, bool IsZExt = false);
230
231   unsigned materializeInt(const ConstantInt *CI, MVT VT);
232   unsigned materializeFP(const ConstantFP *CFP, MVT VT);
233   unsigned materializeGV(const GlobalValue *GV);
234
235   // Call handling routines.
236 private:
237   CCAssignFn *CCAssignFnForCall(CallingConv::ID CC) const;
238   bool processCallArgs(CallLoweringInfo &CLI, SmallVectorImpl<MVT> &ArgVTs,
239                        unsigned &NumBytes);
240   bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes);
241
242 public:
243   // Backend specific FastISel code.
244   unsigned fastMaterializeAlloca(const AllocaInst *AI) override;
245   unsigned fastMaterializeConstant(const Constant *C) override;
246   unsigned fastMaterializeFloatZero(const ConstantFP* CF) override;
247
248   explicit AArch64FastISel(FunctionLoweringInfo &FuncInfo,
249                            const TargetLibraryInfo *LibInfo)
250       : FastISel(FuncInfo, LibInfo, /*SkipTargetIndependentISel=*/true) {
251     Subtarget =
252         &static_cast<const AArch64Subtarget &>(FuncInfo.MF->getSubtarget());
253     Context = &FuncInfo.Fn->getContext();
254   }
255
256   bool fastSelectInstruction(const Instruction *I) override;
257
258 #include "AArch64GenFastISel.inc"
259 };
260
261 } // end anonymous namespace
262
263 #include "AArch64GenCallingConv.inc"
264
265 /// \brief Check if the sign-/zero-extend will be a noop.
266 static bool isIntExtFree(const Instruction *I) {
267   assert((isa<ZExtInst>(I) || isa<SExtInst>(I)) &&
268          "Unexpected integer extend instruction.");
269   assert(!I->getType()->isVectorTy() && I->getType()->isIntegerTy() &&
270          "Unexpected value type.");
271   bool IsZExt = isa<ZExtInst>(I);
272
273   if (const auto *LI = dyn_cast<LoadInst>(I->getOperand(0)))
274     if (LI->hasOneUse())
275       return true;
276
277   if (const auto *Arg = dyn_cast<Argument>(I->getOperand(0)))
278     if ((IsZExt && Arg->hasZExtAttr()) || (!IsZExt && Arg->hasSExtAttr()))
279       return true;
280
281   return false;
282 }
283
284 /// \brief Determine the implicit scale factor that is applied by a memory
285 /// operation for a given value type.
286 static unsigned getImplicitScaleFactor(MVT VT) {
287   switch (VT.SimpleTy) {
288   default:
289     return 0;    // invalid
290   case MVT::i1:  // fall-through
291   case MVT::i8:
292     return 1;
293   case MVT::i16:
294     return 2;
295   case MVT::i32: // fall-through
296   case MVT::f32:
297     return 4;
298   case MVT::i64: // fall-through
299   case MVT::f64:
300     return 8;
301   }
302 }
303
304 CCAssignFn *AArch64FastISel::CCAssignFnForCall(CallingConv::ID CC) const {
305   if (CC == CallingConv::WebKit_JS)
306     return CC_AArch64_WebKit_JS;
307   if (CC == CallingConv::GHC)
308     return CC_AArch64_GHC;
309   return Subtarget->isTargetDarwin() ? CC_AArch64_DarwinPCS : CC_AArch64_AAPCS;
310 }
311
312 unsigned AArch64FastISel::fastMaterializeAlloca(const AllocaInst *AI) {
313   assert(TLI.getValueType(DL, AI->getType(), true) == MVT::i64 &&
314          "Alloca should always return a pointer.");
315
316   // Don't handle dynamic allocas.
317   if (!FuncInfo.StaticAllocaMap.count(AI))
318     return 0;
319
320   DenseMap<const AllocaInst *, int>::iterator SI =
321       FuncInfo.StaticAllocaMap.find(AI);
322
323   if (SI != FuncInfo.StaticAllocaMap.end()) {
324     unsigned ResultReg = createResultReg(&AArch64::GPR64spRegClass);
325     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADDXri),
326             ResultReg)
327         .addFrameIndex(SI->second)
328         .addImm(0)
329         .addImm(0);
330     return ResultReg;
331   }
332
333   return 0;
334 }
335
336 unsigned AArch64FastISel::materializeInt(const ConstantInt *CI, MVT VT) {
337   if (VT > MVT::i64)
338     return 0;
339
340   if (!CI->isZero())
341     return fastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
342
343   // Create a copy from the zero register to materialize a "0" value.
344   const TargetRegisterClass *RC = (VT == MVT::i64) ? &AArch64::GPR64RegClass
345                                                    : &AArch64::GPR32RegClass;
346   unsigned ZeroReg = (VT == MVT::i64) ? AArch64::XZR : AArch64::WZR;
347   unsigned ResultReg = createResultReg(RC);
348   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
349           ResultReg).addReg(ZeroReg, getKillRegState(true));
350   return ResultReg;
351 }
352
353 unsigned AArch64FastISel::materializeFP(const ConstantFP *CFP, MVT VT) {
354   // Positive zero (+0.0) has to be materialized with a fmov from the zero
355   // register, because the immediate version of fmov cannot encode zero.
356   if (CFP->isNullValue())
357     return fastMaterializeFloatZero(CFP);
358
359   if (VT != MVT::f32 && VT != MVT::f64)
360     return 0;
361
362   const APFloat Val = CFP->getValueAPF();
363   bool Is64Bit = (VT == MVT::f64);
364   // This checks to see if we can use FMOV instructions to materialize
365   // a constant, otherwise we have to materialize via the constant pool.
366   if (TLI.isFPImmLegal(Val, VT)) {
367     int Imm =
368         Is64Bit ? AArch64_AM::getFP64Imm(Val) : AArch64_AM::getFP32Imm(Val);
369     assert((Imm != -1) && "Cannot encode floating-point constant.");
370     unsigned Opc = Is64Bit ? AArch64::FMOVDi : AArch64::FMOVSi;
371     return fastEmitInst_i(Opc, TLI.getRegClassFor(VT), Imm);
372   }
373
374   // For the MachO large code model materialize the FP constant in code.
375   if (Subtarget->isTargetMachO() && TM.getCodeModel() == CodeModel::Large) {
376     unsigned Opc1 = Is64Bit ? AArch64::MOVi64imm : AArch64::MOVi32imm;
377     const TargetRegisterClass *RC = Is64Bit ?
378         &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
379
380     unsigned TmpReg = createResultReg(RC);
381     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc1), TmpReg)
382         .addImm(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
383
384     unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
385     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
386             TII.get(TargetOpcode::COPY), ResultReg)
387         .addReg(TmpReg, getKillRegState(true));
388
389     return ResultReg;
390   }
391
392   // Materialize via constant pool.  MachineConstantPool wants an explicit
393   // alignment.
394   unsigned Align = DL.getPrefTypeAlignment(CFP->getType());
395   if (Align == 0)
396     Align = DL.getTypeAllocSize(CFP->getType());
397
398   unsigned CPI = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
399   unsigned ADRPReg = createResultReg(&AArch64::GPR64commonRegClass);
400   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
401           ADRPReg).addConstantPoolIndex(CPI, 0, AArch64II::MO_PAGE);
402
403   unsigned Opc = Is64Bit ? AArch64::LDRDui : AArch64::LDRSui;
404   unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
405   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
406       .addReg(ADRPReg)
407       .addConstantPoolIndex(CPI, 0, AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
408   return ResultReg;
409 }
410
411 unsigned AArch64FastISel::materializeGV(const GlobalValue *GV) {
412   // We can't handle thread-local variables quickly yet.
413   if (GV->isThreadLocal())
414     return 0;
415
416   // MachO still uses GOT for large code-model accesses, but ELF requires
417   // movz/movk sequences, which FastISel doesn't handle yet.
418   if (TM.getCodeModel() != CodeModel::Small && !Subtarget->isTargetMachO())
419     return 0;
420
421   unsigned char OpFlags = Subtarget->ClassifyGlobalReference(GV, TM);
422
423   EVT DestEVT = TLI.getValueType(DL, GV->getType(), true);
424   if (!DestEVT.isSimple())
425     return 0;
426
427   unsigned ADRPReg = createResultReg(&AArch64::GPR64commonRegClass);
428   unsigned ResultReg;
429
430   if (OpFlags & AArch64II::MO_GOT) {
431     // ADRP + LDRX
432     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
433             ADRPReg)
434       .addGlobalAddress(GV, 0, AArch64II::MO_GOT | AArch64II::MO_PAGE);
435
436     ResultReg = createResultReg(&AArch64::GPR64RegClass);
437     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::LDRXui),
438             ResultReg)
439       .addReg(ADRPReg)
440       .addGlobalAddress(GV, 0, AArch64II::MO_GOT | AArch64II::MO_PAGEOFF |
441                         AArch64II::MO_NC);
442   } else if (OpFlags & AArch64II::MO_CONSTPOOL) {
443     // We can't handle addresses loaded from a constant pool quickly yet.
444     return 0;
445   } else {
446     // ADRP + ADDX
447     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
448             ADRPReg)
449       .addGlobalAddress(GV, 0, AArch64II::MO_PAGE);
450
451     ResultReg = createResultReg(&AArch64::GPR64spRegClass);
452     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADDXri),
453             ResultReg)
454       .addReg(ADRPReg)
455       .addGlobalAddress(GV, 0, AArch64II::MO_PAGEOFF | AArch64II::MO_NC)
456       .addImm(0);
457   }
458   return ResultReg;
459 }
460
461 unsigned AArch64FastISel::fastMaterializeConstant(const Constant *C) {
462   EVT CEVT = TLI.getValueType(DL, C->getType(), true);
463
464   // Only handle simple types.
465   if (!CEVT.isSimple())
466     return 0;
467   MVT VT = CEVT.getSimpleVT();
468
469   if (const auto *CI = dyn_cast<ConstantInt>(C))
470     return materializeInt(CI, VT);
471   else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
472     return materializeFP(CFP, VT);
473   else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
474     return materializeGV(GV);
475
476   return 0;
477 }
478
479 unsigned AArch64FastISel::fastMaterializeFloatZero(const ConstantFP* CFP) {
480   assert(CFP->isNullValue() &&
481          "Floating-point constant is not a positive zero.");
482   MVT VT;
483   if (!isTypeLegal(CFP->getType(), VT))
484     return 0;
485
486   if (VT != MVT::f32 && VT != MVT::f64)
487     return 0;
488
489   bool Is64Bit = (VT == MVT::f64);
490   unsigned ZReg = Is64Bit ? AArch64::XZR : AArch64::WZR;
491   unsigned Opc = Is64Bit ? AArch64::FMOVXDr : AArch64::FMOVWSr;
492   return fastEmitInst_r(Opc, TLI.getRegClassFor(VT), ZReg, /*IsKill=*/true);
493 }
494
495 /// \brief Check if the multiply is by a power-of-2 constant.
496 static bool isMulPowOf2(const Value *I) {
497   if (const auto *MI = dyn_cast<MulOperator>(I)) {
498     if (const auto *C = dyn_cast<ConstantInt>(MI->getOperand(0)))
499       if (C->getValue().isPowerOf2())
500         return true;
501     if (const auto *C = dyn_cast<ConstantInt>(MI->getOperand(1)))
502       if (C->getValue().isPowerOf2())
503         return true;
504   }
505   return false;
506 }
507
508 // Computes the address to get to an object.
509 bool AArch64FastISel::computeAddress(const Value *Obj, Address &Addr, Type *Ty)
510 {
511   const User *U = nullptr;
512   unsigned Opcode = Instruction::UserOp1;
513   if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
514     // Don't walk into other basic blocks unless the object is an alloca from
515     // another block, otherwise it may not have a virtual register assigned.
516     if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
517         FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
518       Opcode = I->getOpcode();
519       U = I;
520     }
521   } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
522     Opcode = C->getOpcode();
523     U = C;
524   }
525
526   if (auto *Ty = dyn_cast<PointerType>(Obj->getType()))
527     if (Ty->getAddressSpace() > 255)
528       // Fast instruction selection doesn't support the special
529       // address spaces.
530       return false;
531
532   switch (Opcode) {
533   default:
534     break;
535   case Instruction::BitCast: {
536     // Look through bitcasts.
537     return computeAddress(U->getOperand(0), Addr, Ty);
538   }
539   case Instruction::IntToPtr: {
540     // Look past no-op inttoptrs.
541     if (TLI.getValueType(DL, U->getOperand(0)->getType()) ==
542         TLI.getPointerTy(DL))
543       return computeAddress(U->getOperand(0), Addr, Ty);
544     break;
545   }
546   case Instruction::PtrToInt: {
547     // Look past no-op ptrtoints.
548     if (TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL))
549       return computeAddress(U->getOperand(0), Addr, Ty);
550     break;
551   }
552   case Instruction::GetElementPtr: {
553     Address SavedAddr = Addr;
554     uint64_t TmpOffset = Addr.getOffset();
555
556     // Iterate through the GEP folding the constants into offsets where
557     // we can.
558     gep_type_iterator GTI = gep_type_begin(U);
559     for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end(); i != e;
560          ++i, ++GTI) {
561       const Value *Op = *i;
562       if (StructType *STy = dyn_cast<StructType>(*GTI)) {
563         const StructLayout *SL = DL.getStructLayout(STy);
564         unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
565         TmpOffset += SL->getElementOffset(Idx);
566       } else {
567         uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
568         for (;;) {
569           if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
570             // Constant-offset addressing.
571             TmpOffset += CI->getSExtValue() * S;
572             break;
573           }
574           if (canFoldAddIntoGEP(U, Op)) {
575             // A compatible add with a constant operand. Fold the constant.
576             ConstantInt *CI =
577                 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
578             TmpOffset += CI->getSExtValue() * S;
579             // Iterate on the other operand.
580             Op = cast<AddOperator>(Op)->getOperand(0);
581             continue;
582           }
583           // Unsupported
584           goto unsupported_gep;
585         }
586       }
587     }
588
589     // Try to grab the base operand now.
590     Addr.setOffset(TmpOffset);
591     if (computeAddress(U->getOperand(0), Addr, Ty))
592       return true;
593
594     // We failed, restore everything and try the other options.
595     Addr = SavedAddr;
596
597   unsupported_gep:
598     break;
599   }
600   case Instruction::Alloca: {
601     const AllocaInst *AI = cast<AllocaInst>(Obj);
602     DenseMap<const AllocaInst *, int>::iterator SI =
603         FuncInfo.StaticAllocaMap.find(AI);
604     if (SI != FuncInfo.StaticAllocaMap.end()) {
605       Addr.setKind(Address::FrameIndexBase);
606       Addr.setFI(SI->second);
607       return true;
608     }
609     break;
610   }
611   case Instruction::Add: {
612     // Adds of constants are common and easy enough.
613     const Value *LHS = U->getOperand(0);
614     const Value *RHS = U->getOperand(1);
615
616     if (isa<ConstantInt>(LHS))
617       std::swap(LHS, RHS);
618
619     if (const ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
620       Addr.setOffset(Addr.getOffset() + CI->getSExtValue());
621       return computeAddress(LHS, Addr, Ty);
622     }
623
624     Address Backup = Addr;
625     if (computeAddress(LHS, Addr, Ty) && computeAddress(RHS, Addr, Ty))
626       return true;
627     Addr = Backup;
628
629     break;
630   }
631   case Instruction::Sub: {
632     // Subs of constants are common and easy enough.
633     const Value *LHS = U->getOperand(0);
634     const Value *RHS = U->getOperand(1);
635
636     if (const ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
637       Addr.setOffset(Addr.getOffset() - CI->getSExtValue());
638       return computeAddress(LHS, Addr, Ty);
639     }
640     break;
641   }
642   case Instruction::Shl: {
643     if (Addr.getOffsetReg())
644       break;
645
646     const auto *CI = dyn_cast<ConstantInt>(U->getOperand(1));
647     if (!CI)
648       break;
649
650     unsigned Val = CI->getZExtValue();
651     if (Val < 1 || Val > 3)
652       break;
653
654     uint64_t NumBytes = 0;
655     if (Ty && Ty->isSized()) {
656       uint64_t NumBits = DL.getTypeSizeInBits(Ty);
657       NumBytes = NumBits / 8;
658       if (!isPowerOf2_64(NumBits))
659         NumBytes = 0;
660     }
661
662     if (NumBytes != (1ULL << Val))
663       break;
664
665     Addr.setShift(Val);
666     Addr.setExtendType(AArch64_AM::LSL);
667
668     const Value *Src = U->getOperand(0);
669     if (const auto *I = dyn_cast<Instruction>(Src)) {
670       if (FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
671         // Fold the zext or sext when it won't become a noop.
672         if (const auto *ZE = dyn_cast<ZExtInst>(I)) {
673           if (!isIntExtFree(ZE) &&
674               ZE->getOperand(0)->getType()->isIntegerTy(32)) {
675             Addr.setExtendType(AArch64_AM::UXTW);
676             Src = ZE->getOperand(0);
677           }
678         } else if (const auto *SE = dyn_cast<SExtInst>(I)) {
679           if (!isIntExtFree(SE) &&
680               SE->getOperand(0)->getType()->isIntegerTy(32)) {
681             Addr.setExtendType(AArch64_AM::SXTW);
682             Src = SE->getOperand(0);
683           }
684         }
685       }
686     }
687
688     if (const auto *AI = dyn_cast<BinaryOperator>(Src))
689       if (AI->getOpcode() == Instruction::And) {
690         const Value *LHS = AI->getOperand(0);
691         const Value *RHS = AI->getOperand(1);
692
693         if (const auto *C = dyn_cast<ConstantInt>(LHS))
694           if (C->getValue() == 0xffffffff)
695             std::swap(LHS, RHS);
696
697         if (const auto *C = dyn_cast<ConstantInt>(RHS))
698           if (C->getValue() == 0xffffffff) {
699             Addr.setExtendType(AArch64_AM::UXTW);
700             unsigned Reg = getRegForValue(LHS);
701             if (!Reg)
702               return false;
703             bool RegIsKill = hasTrivialKill(LHS);
704             Reg = fastEmitInst_extractsubreg(MVT::i32, Reg, RegIsKill,
705                                              AArch64::sub_32);
706             Addr.setOffsetReg(Reg);
707             return true;
708           }
709       }
710
711     unsigned Reg = getRegForValue(Src);
712     if (!Reg)
713       return false;
714     Addr.setOffsetReg(Reg);
715     return true;
716   }
717   case Instruction::Mul: {
718     if (Addr.getOffsetReg())
719       break;
720
721     if (!isMulPowOf2(U))
722       break;
723
724     const Value *LHS = U->getOperand(0);
725     const Value *RHS = U->getOperand(1);
726
727     // Canonicalize power-of-2 value to the RHS.
728     if (const auto *C = dyn_cast<ConstantInt>(LHS))
729       if (C->getValue().isPowerOf2())
730         std::swap(LHS, RHS);
731
732     assert(isa<ConstantInt>(RHS) && "Expected an ConstantInt.");
733     const auto *C = cast<ConstantInt>(RHS);
734     unsigned Val = C->getValue().logBase2();
735     if (Val < 1 || Val > 3)
736       break;
737
738     uint64_t NumBytes = 0;
739     if (Ty && Ty->isSized()) {
740       uint64_t NumBits = DL.getTypeSizeInBits(Ty);
741       NumBytes = NumBits / 8;
742       if (!isPowerOf2_64(NumBits))
743         NumBytes = 0;
744     }
745
746     if (NumBytes != (1ULL << Val))
747       break;
748
749     Addr.setShift(Val);
750     Addr.setExtendType(AArch64_AM::LSL);
751
752     const Value *Src = LHS;
753     if (const auto *I = dyn_cast<Instruction>(Src)) {
754       if (FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
755         // Fold the zext or sext when it won't become a noop.
756         if (const auto *ZE = dyn_cast<ZExtInst>(I)) {
757           if (!isIntExtFree(ZE) &&
758               ZE->getOperand(0)->getType()->isIntegerTy(32)) {
759             Addr.setExtendType(AArch64_AM::UXTW);
760             Src = ZE->getOperand(0);
761           }
762         } else if (const auto *SE = dyn_cast<SExtInst>(I)) {
763           if (!isIntExtFree(SE) &&
764               SE->getOperand(0)->getType()->isIntegerTy(32)) {
765             Addr.setExtendType(AArch64_AM::SXTW);
766             Src = SE->getOperand(0);
767           }
768         }
769       }
770     }
771
772     unsigned Reg = getRegForValue(Src);
773     if (!Reg)
774       return false;
775     Addr.setOffsetReg(Reg);
776     return true;
777   }
778   case Instruction::And: {
779     if (Addr.getOffsetReg())
780       break;
781
782     if (!Ty || DL.getTypeSizeInBits(Ty) != 8)
783       break;
784
785     const Value *LHS = U->getOperand(0);
786     const Value *RHS = U->getOperand(1);
787
788     if (const auto *C = dyn_cast<ConstantInt>(LHS))
789       if (C->getValue() == 0xffffffff)
790         std::swap(LHS, RHS);
791
792     if (const auto *C = dyn_cast<ConstantInt>(RHS))
793       if (C->getValue() == 0xffffffff) {
794         Addr.setShift(0);
795         Addr.setExtendType(AArch64_AM::LSL);
796         Addr.setExtendType(AArch64_AM::UXTW);
797
798         unsigned Reg = getRegForValue(LHS);
799         if (!Reg)
800           return false;
801         bool RegIsKill = hasTrivialKill(LHS);
802         Reg = fastEmitInst_extractsubreg(MVT::i32, Reg, RegIsKill,
803                                          AArch64::sub_32);
804         Addr.setOffsetReg(Reg);
805         return true;
806       }
807     break;
808   }
809   case Instruction::SExt:
810   case Instruction::ZExt: {
811     if (!Addr.getReg() || Addr.getOffsetReg())
812       break;
813
814     const Value *Src = nullptr;
815     // Fold the zext or sext when it won't become a noop.
816     if (const auto *ZE = dyn_cast<ZExtInst>(U)) {
817       if (!isIntExtFree(ZE) && ZE->getOperand(0)->getType()->isIntegerTy(32)) {
818         Addr.setExtendType(AArch64_AM::UXTW);
819         Src = ZE->getOperand(0);
820       }
821     } else if (const auto *SE = dyn_cast<SExtInst>(U)) {
822       if (!isIntExtFree(SE) && SE->getOperand(0)->getType()->isIntegerTy(32)) {
823         Addr.setExtendType(AArch64_AM::SXTW);
824         Src = SE->getOperand(0);
825       }
826     }
827
828     if (!Src)
829       break;
830
831     Addr.setShift(0);
832     unsigned Reg = getRegForValue(Src);
833     if (!Reg)
834       return false;
835     Addr.setOffsetReg(Reg);
836     return true;
837   }
838   } // end switch
839
840   if (Addr.isRegBase() && !Addr.getReg()) {
841     unsigned Reg = getRegForValue(Obj);
842     if (!Reg)
843       return false;
844     Addr.setReg(Reg);
845     return true;
846   }
847
848   if (!Addr.getOffsetReg()) {
849     unsigned Reg = getRegForValue(Obj);
850     if (!Reg)
851       return false;
852     Addr.setOffsetReg(Reg);
853     return true;
854   }
855
856   return false;
857 }
858
859 bool AArch64FastISel::computeCallAddress(const Value *V, Address &Addr) {
860   const User *U = nullptr;
861   unsigned Opcode = Instruction::UserOp1;
862   bool InMBB = true;
863
864   if (const auto *I = dyn_cast<Instruction>(V)) {
865     Opcode = I->getOpcode();
866     U = I;
867     InMBB = I->getParent() == FuncInfo.MBB->getBasicBlock();
868   } else if (const auto *C = dyn_cast<ConstantExpr>(V)) {
869     Opcode = C->getOpcode();
870     U = C;
871   }
872
873   switch (Opcode) {
874   default: break;
875   case Instruction::BitCast:
876     // Look past bitcasts if its operand is in the same BB.
877     if (InMBB)
878       return computeCallAddress(U->getOperand(0), Addr);
879     break;
880   case Instruction::IntToPtr:
881     // Look past no-op inttoptrs if its operand is in the same BB.
882     if (InMBB &&
883         TLI.getValueType(DL, U->getOperand(0)->getType()) ==
884             TLI.getPointerTy(DL))
885       return computeCallAddress(U->getOperand(0), Addr);
886     break;
887   case Instruction::PtrToInt:
888     // Look past no-op ptrtoints if its operand is in the same BB.
889     if (InMBB && TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL))
890       return computeCallAddress(U->getOperand(0), Addr);
891     break;
892   }
893
894   if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
895     Addr.setGlobalValue(GV);
896     return true;
897   }
898
899   // If all else fails, try to materialize the value in a register.
900   if (!Addr.getGlobalValue()) {
901     Addr.setReg(getRegForValue(V));
902     return Addr.getReg() != 0;
903   }
904
905   return false;
906 }
907
908
909 bool AArch64FastISel::isTypeLegal(Type *Ty, MVT &VT) {
910   EVT evt = TLI.getValueType(DL, Ty, true);
911
912   // Only handle simple types.
913   if (evt == MVT::Other || !evt.isSimple())
914     return false;
915   VT = evt.getSimpleVT();
916
917   // This is a legal type, but it's not something we handle in fast-isel.
918   if (VT == MVT::f128)
919     return false;
920
921   // Handle all other legal types, i.e. a register that will directly hold this
922   // value.
923   return TLI.isTypeLegal(VT);
924 }
925
926 /// \brief Determine if the value type is supported by FastISel.
927 ///
928 /// FastISel for AArch64 can handle more value types than are legal. This adds
929 /// simple value type such as i1, i8, and i16.
930 bool AArch64FastISel::isTypeSupported(Type *Ty, MVT &VT, bool IsVectorAllowed) {
931   if (Ty->isVectorTy() && !IsVectorAllowed)
932     return false;
933
934   if (isTypeLegal(Ty, VT))
935     return true;
936
937   // If this is a type than can be sign or zero-extended to a basic operation
938   // go ahead and accept it now.
939   if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
940     return true;
941
942   return false;
943 }
944
945 bool AArch64FastISel::isValueAvailable(const Value *V) const {
946   if (!isa<Instruction>(V))
947     return true;
948
949   const auto *I = cast<Instruction>(V);
950   if (FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB)
951     return true;
952
953   return false;
954 }
955
956 bool AArch64FastISel::simplifyAddress(Address &Addr, MVT VT) {
957   unsigned ScaleFactor = getImplicitScaleFactor(VT);
958   if (!ScaleFactor)
959     return false;
960
961   bool ImmediateOffsetNeedsLowering = false;
962   bool RegisterOffsetNeedsLowering = false;
963   int64_t Offset = Addr.getOffset();
964   if (((Offset < 0) || (Offset & (ScaleFactor - 1))) && !isInt<9>(Offset))
965     ImmediateOffsetNeedsLowering = true;
966   else if (Offset > 0 && !(Offset & (ScaleFactor - 1)) &&
967            !isUInt<12>(Offset / ScaleFactor))
968     ImmediateOffsetNeedsLowering = true;
969
970   // Cannot encode an offset register and an immediate offset in the same
971   // instruction. Fold the immediate offset into the load/store instruction and
972   // emit an additonal add to take care of the offset register.
973   if (!ImmediateOffsetNeedsLowering && Addr.getOffset() && Addr.getOffsetReg())
974     RegisterOffsetNeedsLowering = true;
975
976   // Cannot encode zero register as base.
977   if (Addr.isRegBase() && Addr.getOffsetReg() && !Addr.getReg())
978     RegisterOffsetNeedsLowering = true;
979
980   // If this is a stack pointer and the offset needs to be simplified then put
981   // the alloca address into a register, set the base type back to register and
982   // continue. This should almost never happen.
983   if ((ImmediateOffsetNeedsLowering || Addr.getOffsetReg()) && Addr.isFIBase())
984   {
985     unsigned ResultReg = createResultReg(&AArch64::GPR64spRegClass);
986     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADDXri),
987             ResultReg)
988       .addFrameIndex(Addr.getFI())
989       .addImm(0)
990       .addImm(0);
991     Addr.setKind(Address::RegBase);
992     Addr.setReg(ResultReg);
993   }
994
995   if (RegisterOffsetNeedsLowering) {
996     unsigned ResultReg = 0;
997     if (Addr.getReg()) {
998       if (Addr.getExtendType() == AArch64_AM::SXTW ||
999           Addr.getExtendType() == AArch64_AM::UXTW   )
1000         ResultReg = emitAddSub_rx(/*UseAdd=*/true, MVT::i64, Addr.getReg(),
1001                                   /*TODO:IsKill=*/false, Addr.getOffsetReg(),
1002                                   /*TODO:IsKill=*/false, Addr.getExtendType(),
1003                                   Addr.getShift());
1004       else
1005         ResultReg = emitAddSub_rs(/*UseAdd=*/true, MVT::i64, Addr.getReg(),
1006                                   /*TODO:IsKill=*/false, Addr.getOffsetReg(),
1007                                   /*TODO:IsKill=*/false, AArch64_AM::LSL,
1008                                   Addr.getShift());
1009     } else {
1010       if (Addr.getExtendType() == AArch64_AM::UXTW)
1011         ResultReg = emitLSL_ri(MVT::i64, MVT::i32, Addr.getOffsetReg(),
1012                                /*Op0IsKill=*/false, Addr.getShift(),
1013                                /*IsZExt=*/true);
1014       else if (Addr.getExtendType() == AArch64_AM::SXTW)
1015         ResultReg = emitLSL_ri(MVT::i64, MVT::i32, Addr.getOffsetReg(),
1016                                /*Op0IsKill=*/false, Addr.getShift(),
1017                                /*IsZExt=*/false);
1018       else
1019         ResultReg = emitLSL_ri(MVT::i64, MVT::i64, Addr.getOffsetReg(),
1020                                /*Op0IsKill=*/false, Addr.getShift());
1021     }
1022     if (!ResultReg)
1023       return false;
1024
1025     Addr.setReg(ResultReg);
1026     Addr.setOffsetReg(0);
1027     Addr.setShift(0);
1028     Addr.setExtendType(AArch64_AM::InvalidShiftExtend);
1029   }
1030
1031   // Since the offset is too large for the load/store instruction get the
1032   // reg+offset into a register.
1033   if (ImmediateOffsetNeedsLowering) {
1034     unsigned ResultReg;
1035     if (Addr.getReg())
1036       // Try to fold the immediate into the add instruction.
1037       ResultReg = emitAdd_ri_(MVT::i64, Addr.getReg(), /*IsKill=*/false, Offset);
1038     else
1039       ResultReg = fastEmit_i(MVT::i64, MVT::i64, ISD::Constant, Offset);
1040
1041     if (!ResultReg)
1042       return false;
1043     Addr.setReg(ResultReg);
1044     Addr.setOffset(0);
1045   }
1046   return true;
1047 }
1048
1049 void AArch64FastISel::addLoadStoreOperands(Address &Addr,
1050                                            const MachineInstrBuilder &MIB,
1051                                            unsigned Flags,
1052                                            unsigned ScaleFactor,
1053                                            MachineMemOperand *MMO) {
1054   int64_t Offset = Addr.getOffset() / ScaleFactor;
1055   // Frame base works a bit differently. Handle it separately.
1056   if (Addr.isFIBase()) {
1057     int FI = Addr.getFI();
1058     // FIXME: We shouldn't be using getObjectSize/getObjectAlignment.  The size
1059     // and alignment should be based on the VT.
1060     MMO = FuncInfo.MF->getMachineMemOperand(
1061       MachinePointerInfo::getFixedStack(FI, Offset), Flags,
1062       MFI.getObjectSize(FI), MFI.getObjectAlignment(FI));
1063     // Now add the rest of the operands.
1064     MIB.addFrameIndex(FI).addImm(Offset);
1065   } else {
1066     assert(Addr.isRegBase() && "Unexpected address kind.");
1067     const MCInstrDesc &II = MIB->getDesc();
1068     unsigned Idx = (Flags & MachineMemOperand::MOStore) ? 1 : 0;
1069     Addr.setReg(
1070       constrainOperandRegClass(II, Addr.getReg(), II.getNumDefs()+Idx));
1071     Addr.setOffsetReg(
1072       constrainOperandRegClass(II, Addr.getOffsetReg(), II.getNumDefs()+Idx+1));
1073     if (Addr.getOffsetReg()) {
1074       assert(Addr.getOffset() == 0 && "Unexpected offset");
1075       bool IsSigned = Addr.getExtendType() == AArch64_AM::SXTW ||
1076                       Addr.getExtendType() == AArch64_AM::SXTX;
1077       MIB.addReg(Addr.getReg());
1078       MIB.addReg(Addr.getOffsetReg());
1079       MIB.addImm(IsSigned);
1080       MIB.addImm(Addr.getShift() != 0);
1081     } else
1082       MIB.addReg(Addr.getReg()).addImm(Offset);
1083   }
1084
1085   if (MMO)
1086     MIB.addMemOperand(MMO);
1087 }
1088
1089 unsigned AArch64FastISel::emitAddSub(bool UseAdd, MVT RetVT, const Value *LHS,
1090                                      const Value *RHS, bool SetFlags,
1091                                      bool WantResult,  bool IsZExt) {
1092   AArch64_AM::ShiftExtendType ExtendType = AArch64_AM::InvalidShiftExtend;
1093   bool NeedExtend = false;
1094   switch (RetVT.SimpleTy) {
1095   default:
1096     return 0;
1097   case MVT::i1:
1098     NeedExtend = true;
1099     break;
1100   case MVT::i8:
1101     NeedExtend = true;
1102     ExtendType = IsZExt ? AArch64_AM::UXTB : AArch64_AM::SXTB;
1103     break;
1104   case MVT::i16:
1105     NeedExtend = true;
1106     ExtendType = IsZExt ? AArch64_AM::UXTH : AArch64_AM::SXTH;
1107     break;
1108   case MVT::i32:  // fall-through
1109   case MVT::i64:
1110     break;
1111   }
1112   MVT SrcVT = RetVT;
1113   RetVT.SimpleTy = std::max(RetVT.SimpleTy, MVT::i32);
1114
1115   // Canonicalize immediates to the RHS first.
1116   if (UseAdd && isa<Constant>(LHS) && !isa<Constant>(RHS))
1117     std::swap(LHS, RHS);
1118
1119   // Canonicalize mul by power of 2 to the RHS.
1120   if (UseAdd && LHS->hasOneUse() && isValueAvailable(LHS))
1121     if (isMulPowOf2(LHS))
1122       std::swap(LHS, RHS);
1123
1124   // Canonicalize shift immediate to the RHS.
1125   if (UseAdd && LHS->hasOneUse() && isValueAvailable(LHS))
1126     if (const auto *SI = dyn_cast<BinaryOperator>(LHS))
1127       if (isa<ConstantInt>(SI->getOperand(1)))
1128         if (SI->getOpcode() == Instruction::Shl  ||
1129             SI->getOpcode() == Instruction::LShr ||
1130             SI->getOpcode() == Instruction::AShr   )
1131           std::swap(LHS, RHS);
1132
1133   unsigned LHSReg = getRegForValue(LHS);
1134   if (!LHSReg)
1135     return 0;
1136   bool LHSIsKill = hasTrivialKill(LHS);
1137
1138   if (NeedExtend)
1139     LHSReg = emitIntExt(SrcVT, LHSReg, RetVT, IsZExt);
1140
1141   unsigned ResultReg = 0;
1142   if (const auto *C = dyn_cast<ConstantInt>(RHS)) {
1143     uint64_t Imm = IsZExt ? C->getZExtValue() : C->getSExtValue();
1144     if (C->isNegative())
1145       ResultReg = emitAddSub_ri(!UseAdd, RetVT, LHSReg, LHSIsKill, -Imm,
1146                                 SetFlags, WantResult);
1147     else
1148       ResultReg = emitAddSub_ri(UseAdd, RetVT, LHSReg, LHSIsKill, Imm, SetFlags,
1149                                 WantResult);
1150   } else if (const auto *C = dyn_cast<Constant>(RHS))
1151     if (C->isNullValue())
1152       ResultReg = emitAddSub_ri(UseAdd, RetVT, LHSReg, LHSIsKill, 0, SetFlags,
1153                                 WantResult);
1154
1155   if (ResultReg)
1156     return ResultReg;
1157
1158   // Only extend the RHS within the instruction if there is a valid extend type.
1159   if (ExtendType != AArch64_AM::InvalidShiftExtend && RHS->hasOneUse() &&
1160       isValueAvailable(RHS)) {
1161     if (const auto *SI = dyn_cast<BinaryOperator>(RHS))
1162       if (const auto *C = dyn_cast<ConstantInt>(SI->getOperand(1)))
1163         if ((SI->getOpcode() == Instruction::Shl) && (C->getZExtValue() < 4)) {
1164           unsigned RHSReg = getRegForValue(SI->getOperand(0));
1165           if (!RHSReg)
1166             return 0;
1167           bool RHSIsKill = hasTrivialKill(SI->getOperand(0));
1168           return emitAddSub_rx(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg,
1169                                RHSIsKill, ExtendType, C->getZExtValue(),
1170                                SetFlags, WantResult);
1171         }
1172     unsigned RHSReg = getRegForValue(RHS);
1173     if (!RHSReg)
1174       return 0;
1175     bool RHSIsKill = hasTrivialKill(RHS);
1176     return emitAddSub_rx(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, RHSIsKill,
1177                          ExtendType, 0, SetFlags, WantResult);
1178   }
1179
1180   // Check if the mul can be folded into the instruction.
1181   if (RHS->hasOneUse() && isValueAvailable(RHS))
1182     if (isMulPowOf2(RHS)) {
1183       const Value *MulLHS = cast<MulOperator>(RHS)->getOperand(0);
1184       const Value *MulRHS = cast<MulOperator>(RHS)->getOperand(1);
1185
1186       if (const auto *C = dyn_cast<ConstantInt>(MulLHS))
1187         if (C->getValue().isPowerOf2())
1188           std::swap(MulLHS, MulRHS);
1189
1190       assert(isa<ConstantInt>(MulRHS) && "Expected a ConstantInt.");
1191       uint64_t ShiftVal = cast<ConstantInt>(MulRHS)->getValue().logBase2();
1192       unsigned RHSReg = getRegForValue(MulLHS);
1193       if (!RHSReg)
1194         return 0;
1195       bool RHSIsKill = hasTrivialKill(MulLHS);
1196       return emitAddSub_rs(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, RHSIsKill,
1197                            AArch64_AM::LSL, ShiftVal, SetFlags, WantResult);
1198     }
1199
1200   // Check if the shift can be folded into the instruction.
1201   if (RHS->hasOneUse() && isValueAvailable(RHS))
1202     if (const auto *SI = dyn_cast<BinaryOperator>(RHS)) {
1203       if (const auto *C = dyn_cast<ConstantInt>(SI->getOperand(1))) {
1204         AArch64_AM::ShiftExtendType ShiftType = AArch64_AM::InvalidShiftExtend;
1205         switch (SI->getOpcode()) {
1206         default: break;
1207         case Instruction::Shl:  ShiftType = AArch64_AM::LSL; break;
1208         case Instruction::LShr: ShiftType = AArch64_AM::LSR; break;
1209         case Instruction::AShr: ShiftType = AArch64_AM::ASR; break;
1210         }
1211         uint64_t ShiftVal = C->getZExtValue();
1212         if (ShiftType != AArch64_AM::InvalidShiftExtend) {
1213           unsigned RHSReg = getRegForValue(SI->getOperand(0));
1214           if (!RHSReg)
1215             return 0;
1216           bool RHSIsKill = hasTrivialKill(SI->getOperand(0));
1217           return emitAddSub_rs(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg,
1218                                RHSIsKill, ShiftType, ShiftVal, SetFlags,
1219                                WantResult);
1220         }
1221       }
1222     }
1223
1224   unsigned RHSReg = getRegForValue(RHS);
1225   if (!RHSReg)
1226     return 0;
1227   bool RHSIsKill = hasTrivialKill(RHS);
1228
1229   if (NeedExtend)
1230     RHSReg = emitIntExt(SrcVT, RHSReg, RetVT, IsZExt);
1231
1232   return emitAddSub_rr(UseAdd, RetVT, LHSReg, LHSIsKill, RHSReg, RHSIsKill,
1233                        SetFlags, WantResult);
1234 }
1235
1236 unsigned AArch64FastISel::emitAddSub_rr(bool UseAdd, MVT RetVT, unsigned LHSReg,
1237                                         bool LHSIsKill, unsigned RHSReg,
1238                                         bool RHSIsKill, bool SetFlags,
1239                                         bool WantResult) {
1240   assert(LHSReg && RHSReg && "Invalid register number.");
1241
1242   if (RetVT != MVT::i32 && RetVT != MVT::i64)
1243     return 0;
1244
1245   static const unsigned OpcTable[2][2][2] = {
1246     { { AArch64::SUBWrr,  AArch64::SUBXrr  },
1247       { AArch64::ADDWrr,  AArch64::ADDXrr  }  },
1248     { { AArch64::SUBSWrr, AArch64::SUBSXrr },
1249       { AArch64::ADDSWrr, AArch64::ADDSXrr }  }
1250   };
1251   bool Is64Bit = RetVT == MVT::i64;
1252   unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit];
1253   const TargetRegisterClass *RC =
1254       Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
1255   unsigned ResultReg;
1256   if (WantResult)
1257     ResultReg = createResultReg(RC);
1258   else
1259     ResultReg = Is64Bit ? AArch64::XZR : AArch64::WZR;
1260
1261   const MCInstrDesc &II = TII.get(Opc);
1262   LHSReg = constrainOperandRegClass(II, LHSReg, II.getNumDefs());
1263   RHSReg = constrainOperandRegClass(II, RHSReg, II.getNumDefs() + 1);
1264   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1265       .addReg(LHSReg, getKillRegState(LHSIsKill))
1266       .addReg(RHSReg, getKillRegState(RHSIsKill));
1267   return ResultReg;
1268 }
1269
1270 unsigned AArch64FastISel::emitAddSub_ri(bool UseAdd, MVT RetVT, unsigned LHSReg,
1271                                         bool LHSIsKill, uint64_t Imm,
1272                                         bool SetFlags, bool WantResult) {
1273   assert(LHSReg && "Invalid register number.");
1274
1275   if (RetVT != MVT::i32 && RetVT != MVT::i64)
1276     return 0;
1277
1278   unsigned ShiftImm;
1279   if (isUInt<12>(Imm))
1280     ShiftImm = 0;
1281   else if ((Imm & 0xfff000) == Imm) {
1282     ShiftImm = 12;
1283     Imm >>= 12;
1284   } else
1285     return 0;
1286
1287   static const unsigned OpcTable[2][2][2] = {
1288     { { AArch64::SUBWri,  AArch64::SUBXri  },
1289       { AArch64::ADDWri,  AArch64::ADDXri  }  },
1290     { { AArch64::SUBSWri, AArch64::SUBSXri },
1291       { AArch64::ADDSWri, AArch64::ADDSXri }  }
1292   };
1293   bool Is64Bit = RetVT == MVT::i64;
1294   unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit];
1295   const TargetRegisterClass *RC;
1296   if (SetFlags)
1297     RC = Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
1298   else
1299     RC = Is64Bit ? &AArch64::GPR64spRegClass : &AArch64::GPR32spRegClass;
1300   unsigned ResultReg;
1301   if (WantResult)
1302     ResultReg = createResultReg(RC);
1303   else
1304     ResultReg = Is64Bit ? AArch64::XZR : AArch64::WZR;
1305
1306   const MCInstrDesc &II = TII.get(Opc);
1307   LHSReg = constrainOperandRegClass(II, LHSReg, II.getNumDefs());
1308   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1309       .addReg(LHSReg, getKillRegState(LHSIsKill))
1310       .addImm(Imm)
1311       .addImm(getShifterImm(AArch64_AM::LSL, ShiftImm));
1312   return ResultReg;
1313 }
1314
1315 unsigned AArch64FastISel::emitAddSub_rs(bool UseAdd, MVT RetVT, unsigned LHSReg,
1316                                         bool LHSIsKill, unsigned RHSReg,
1317                                         bool RHSIsKill,
1318                                         AArch64_AM::ShiftExtendType ShiftType,
1319                                         uint64_t ShiftImm, bool SetFlags,
1320                                         bool WantResult) {
1321   assert(LHSReg && RHSReg && "Invalid register number.");
1322
1323   if (RetVT != MVT::i32 && RetVT != MVT::i64)
1324     return 0;
1325
1326   static const unsigned OpcTable[2][2][2] = {
1327     { { AArch64::SUBWrs,  AArch64::SUBXrs  },
1328       { AArch64::ADDWrs,  AArch64::ADDXrs  }  },
1329     { { AArch64::SUBSWrs, AArch64::SUBSXrs },
1330       { AArch64::ADDSWrs, AArch64::ADDSXrs }  }
1331   };
1332   bool Is64Bit = RetVT == MVT::i64;
1333   unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit];
1334   const TargetRegisterClass *RC =
1335       Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
1336   unsigned ResultReg;
1337   if (WantResult)
1338     ResultReg = createResultReg(RC);
1339   else
1340     ResultReg = Is64Bit ? AArch64::XZR : AArch64::WZR;
1341
1342   const MCInstrDesc &II = TII.get(Opc);
1343   LHSReg = constrainOperandRegClass(II, LHSReg, II.getNumDefs());
1344   RHSReg = constrainOperandRegClass(II, RHSReg, II.getNumDefs() + 1);
1345   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1346       .addReg(LHSReg, getKillRegState(LHSIsKill))
1347       .addReg(RHSReg, getKillRegState(RHSIsKill))
1348       .addImm(getShifterImm(ShiftType, ShiftImm));
1349   return ResultReg;
1350 }
1351
1352 unsigned AArch64FastISel::emitAddSub_rx(bool UseAdd, MVT RetVT, unsigned LHSReg,
1353                                         bool LHSIsKill, unsigned RHSReg,
1354                                         bool RHSIsKill,
1355                                         AArch64_AM::ShiftExtendType ExtType,
1356                                         uint64_t ShiftImm, bool SetFlags,
1357                                         bool WantResult) {
1358   assert(LHSReg && RHSReg && "Invalid register number.");
1359
1360   if (RetVT != MVT::i32 && RetVT != MVT::i64)
1361     return 0;
1362
1363   static const unsigned OpcTable[2][2][2] = {
1364     { { AArch64::SUBWrx,  AArch64::SUBXrx  },
1365       { AArch64::ADDWrx,  AArch64::ADDXrx  }  },
1366     { { AArch64::SUBSWrx, AArch64::SUBSXrx },
1367       { AArch64::ADDSWrx, AArch64::ADDSXrx }  }
1368   };
1369   bool Is64Bit = RetVT == MVT::i64;
1370   unsigned Opc = OpcTable[SetFlags][UseAdd][Is64Bit];
1371   const TargetRegisterClass *RC = nullptr;
1372   if (SetFlags)
1373     RC = Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
1374   else
1375     RC = Is64Bit ? &AArch64::GPR64spRegClass : &AArch64::GPR32spRegClass;
1376   unsigned ResultReg;
1377   if (WantResult)
1378     ResultReg = createResultReg(RC);
1379   else
1380     ResultReg = Is64Bit ? AArch64::XZR : AArch64::WZR;
1381
1382   const MCInstrDesc &II = TII.get(Opc);
1383   LHSReg = constrainOperandRegClass(II, LHSReg, II.getNumDefs());
1384   RHSReg = constrainOperandRegClass(II, RHSReg, II.getNumDefs() + 1);
1385   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1386       .addReg(LHSReg, getKillRegState(LHSIsKill))
1387       .addReg(RHSReg, getKillRegState(RHSIsKill))
1388       .addImm(getArithExtendImm(ExtType, ShiftImm));
1389   return ResultReg;
1390 }
1391
1392 bool AArch64FastISel::emitCmp(const Value *LHS, const Value *RHS, bool IsZExt) {
1393   Type *Ty = LHS->getType();
1394   EVT EVT = TLI.getValueType(DL, Ty, true);
1395   if (!EVT.isSimple())
1396     return false;
1397   MVT VT = EVT.getSimpleVT();
1398
1399   switch (VT.SimpleTy) {
1400   default:
1401     return false;
1402   case MVT::i1:
1403   case MVT::i8:
1404   case MVT::i16:
1405   case MVT::i32:
1406   case MVT::i64:
1407     return emitICmp(VT, LHS, RHS, IsZExt);
1408   case MVT::f32:
1409   case MVT::f64:
1410     return emitFCmp(VT, LHS, RHS);
1411   }
1412 }
1413
1414 bool AArch64FastISel::emitICmp(MVT RetVT, const Value *LHS, const Value *RHS,
1415                                bool IsZExt) {
1416   return emitSub(RetVT, LHS, RHS, /*SetFlags=*/true, /*WantResult=*/false,
1417                  IsZExt) != 0;
1418 }
1419
1420 bool AArch64FastISel::emitICmp_ri(MVT RetVT, unsigned LHSReg, bool LHSIsKill,
1421                                   uint64_t Imm) {
1422   return emitAddSub_ri(/*UseAdd=*/false, RetVT, LHSReg, LHSIsKill, Imm,
1423                        /*SetFlags=*/true, /*WantResult=*/false) != 0;
1424 }
1425
1426 bool AArch64FastISel::emitFCmp(MVT RetVT, const Value *LHS, const Value *RHS) {
1427   if (RetVT != MVT::f32 && RetVT != MVT::f64)
1428     return false;
1429
1430   // Check to see if the 2nd operand is a constant that we can encode directly
1431   // in the compare.
1432   bool UseImm = false;
1433   if (const auto *CFP = dyn_cast<ConstantFP>(RHS))
1434     if (CFP->isZero() && !CFP->isNegative())
1435       UseImm = true;
1436
1437   unsigned LHSReg = getRegForValue(LHS);
1438   if (!LHSReg)
1439     return false;
1440   bool LHSIsKill = hasTrivialKill(LHS);
1441
1442   if (UseImm) {
1443     unsigned Opc = (RetVT == MVT::f64) ? AArch64::FCMPDri : AArch64::FCMPSri;
1444     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc))
1445         .addReg(LHSReg, getKillRegState(LHSIsKill));
1446     return true;
1447   }
1448
1449   unsigned RHSReg = getRegForValue(RHS);
1450   if (!RHSReg)
1451     return false;
1452   bool RHSIsKill = hasTrivialKill(RHS);
1453
1454   unsigned Opc = (RetVT == MVT::f64) ? AArch64::FCMPDrr : AArch64::FCMPSrr;
1455   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc))
1456       .addReg(LHSReg, getKillRegState(LHSIsKill))
1457       .addReg(RHSReg, getKillRegState(RHSIsKill));
1458   return true;
1459 }
1460
1461 unsigned AArch64FastISel::emitAdd(MVT RetVT, const Value *LHS, const Value *RHS,
1462                                   bool SetFlags, bool WantResult, bool IsZExt) {
1463   return emitAddSub(/*UseAdd=*/true, RetVT, LHS, RHS, SetFlags, WantResult,
1464                     IsZExt);
1465 }
1466
1467 /// \brief This method is a wrapper to simplify add emission.
1468 ///
1469 /// First try to emit an add with an immediate operand using emitAddSub_ri. If
1470 /// that fails, then try to materialize the immediate into a register and use
1471 /// emitAddSub_rr instead.
1472 unsigned AArch64FastISel::emitAdd_ri_(MVT VT, unsigned Op0, bool Op0IsKill,
1473                                       int64_t Imm) {
1474   unsigned ResultReg;
1475   if (Imm < 0)
1476     ResultReg = emitAddSub_ri(false, VT, Op0, Op0IsKill, -Imm);
1477   else
1478     ResultReg = emitAddSub_ri(true, VT, Op0, Op0IsKill, Imm);
1479
1480   if (ResultReg)
1481     return ResultReg;
1482
1483   unsigned CReg = fastEmit_i(VT, VT, ISD::Constant, Imm);
1484   if (!CReg)
1485     return 0;
1486
1487   ResultReg = emitAddSub_rr(true, VT, Op0, Op0IsKill, CReg, true);
1488   return ResultReg;
1489 }
1490
1491 unsigned AArch64FastISel::emitSub(MVT RetVT, const Value *LHS, const Value *RHS,
1492                                   bool SetFlags, bool WantResult, bool IsZExt) {
1493   return emitAddSub(/*UseAdd=*/false, RetVT, LHS, RHS, SetFlags, WantResult,
1494                     IsZExt);
1495 }
1496
1497 unsigned AArch64FastISel::emitSubs_rr(MVT RetVT, unsigned LHSReg,
1498                                       bool LHSIsKill, unsigned RHSReg,
1499                                       bool RHSIsKill, bool WantResult) {
1500   return emitAddSub_rr(/*UseAdd=*/false, RetVT, LHSReg, LHSIsKill, RHSReg,
1501                        RHSIsKill, /*SetFlags=*/true, WantResult);
1502 }
1503
1504 unsigned AArch64FastISel::emitSubs_rs(MVT RetVT, unsigned LHSReg,
1505                                       bool LHSIsKill, unsigned RHSReg,
1506                                       bool RHSIsKill,
1507                                       AArch64_AM::ShiftExtendType ShiftType,
1508                                       uint64_t ShiftImm, bool WantResult) {
1509   return emitAddSub_rs(/*UseAdd=*/false, RetVT, LHSReg, LHSIsKill, RHSReg,
1510                        RHSIsKill, ShiftType, ShiftImm, /*SetFlags=*/true,
1511                        WantResult);
1512 }
1513
1514 unsigned AArch64FastISel::emitLogicalOp(unsigned ISDOpc, MVT RetVT,
1515                                         const Value *LHS, const Value *RHS) {
1516   // Canonicalize immediates to the RHS first.
1517   if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS))
1518     std::swap(LHS, RHS);
1519
1520   // Canonicalize mul by power-of-2 to the RHS.
1521   if (LHS->hasOneUse() && isValueAvailable(LHS))
1522     if (isMulPowOf2(LHS))
1523       std::swap(LHS, RHS);
1524
1525   // Canonicalize shift immediate to the RHS.
1526   if (LHS->hasOneUse() && isValueAvailable(LHS))
1527     if (const auto *SI = dyn_cast<ShlOperator>(LHS))
1528       if (isa<ConstantInt>(SI->getOperand(1)))
1529         std::swap(LHS, RHS);
1530
1531   unsigned LHSReg = getRegForValue(LHS);
1532   if (!LHSReg)
1533     return 0;
1534   bool LHSIsKill = hasTrivialKill(LHS);
1535
1536   unsigned ResultReg = 0;
1537   if (const auto *C = dyn_cast<ConstantInt>(RHS)) {
1538     uint64_t Imm = C->getZExtValue();
1539     ResultReg = emitLogicalOp_ri(ISDOpc, RetVT, LHSReg, LHSIsKill, Imm);
1540   }
1541   if (ResultReg)
1542     return ResultReg;
1543
1544   // Check if the mul can be folded into the instruction.
1545   if (RHS->hasOneUse() && isValueAvailable(RHS))
1546     if (isMulPowOf2(RHS)) {
1547       const Value *MulLHS = cast<MulOperator>(RHS)->getOperand(0);
1548       const Value *MulRHS = cast<MulOperator>(RHS)->getOperand(1);
1549
1550       if (const auto *C = dyn_cast<ConstantInt>(MulLHS))
1551         if (C->getValue().isPowerOf2())
1552           std::swap(MulLHS, MulRHS);
1553
1554       assert(isa<ConstantInt>(MulRHS) && "Expected a ConstantInt.");
1555       uint64_t ShiftVal = cast<ConstantInt>(MulRHS)->getValue().logBase2();
1556
1557       unsigned RHSReg = getRegForValue(MulLHS);
1558       if (!RHSReg)
1559         return 0;
1560       bool RHSIsKill = hasTrivialKill(MulLHS);
1561       return emitLogicalOp_rs(ISDOpc, RetVT, LHSReg, LHSIsKill, RHSReg,
1562                               RHSIsKill, ShiftVal);
1563     }
1564
1565   // Check if the shift can be folded into the instruction.
1566   if (RHS->hasOneUse() && isValueAvailable(RHS))
1567     if (const auto *SI = dyn_cast<ShlOperator>(RHS))
1568       if (const auto *C = dyn_cast<ConstantInt>(SI->getOperand(1))) {
1569         uint64_t ShiftVal = C->getZExtValue();
1570         unsigned RHSReg = getRegForValue(SI->getOperand(0));
1571         if (!RHSReg)
1572           return 0;
1573         bool RHSIsKill = hasTrivialKill(SI->getOperand(0));
1574         return emitLogicalOp_rs(ISDOpc, RetVT, LHSReg, LHSIsKill, RHSReg,
1575                                 RHSIsKill, ShiftVal);
1576       }
1577
1578   unsigned RHSReg = getRegForValue(RHS);
1579   if (!RHSReg)
1580     return 0;
1581   bool RHSIsKill = hasTrivialKill(RHS);
1582
1583   MVT VT = std::max(MVT::i32, RetVT.SimpleTy);
1584   ResultReg = fastEmit_rr(VT, VT, ISDOpc, LHSReg, LHSIsKill, RHSReg, RHSIsKill);
1585   if (RetVT >= MVT::i8 && RetVT <= MVT::i16) {
1586     uint64_t Mask = (RetVT == MVT::i8) ? 0xff : 0xffff;
1587     ResultReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, Mask);
1588   }
1589   return ResultReg;
1590 }
1591
1592 unsigned AArch64FastISel::emitLogicalOp_ri(unsigned ISDOpc, MVT RetVT,
1593                                            unsigned LHSReg, bool LHSIsKill,
1594                                            uint64_t Imm) {
1595   assert((ISD::AND + 1 == ISD::OR) && (ISD::AND + 2 == ISD::XOR) &&
1596          "ISD nodes are not consecutive!");
1597   static const unsigned OpcTable[3][2] = {
1598     { AArch64::ANDWri, AArch64::ANDXri },
1599     { AArch64::ORRWri, AArch64::ORRXri },
1600     { AArch64::EORWri, AArch64::EORXri }
1601   };
1602   const TargetRegisterClass *RC;
1603   unsigned Opc;
1604   unsigned RegSize;
1605   switch (RetVT.SimpleTy) {
1606   default:
1607     return 0;
1608   case MVT::i1:
1609   case MVT::i8:
1610   case MVT::i16:
1611   case MVT::i32: {
1612     unsigned Idx = ISDOpc - ISD::AND;
1613     Opc = OpcTable[Idx][0];
1614     RC = &AArch64::GPR32spRegClass;
1615     RegSize = 32;
1616     break;
1617   }
1618   case MVT::i64:
1619     Opc = OpcTable[ISDOpc - ISD::AND][1];
1620     RC = &AArch64::GPR64spRegClass;
1621     RegSize = 64;
1622     break;
1623   }
1624
1625   if (!AArch64_AM::isLogicalImmediate(Imm, RegSize))
1626     return 0;
1627
1628   unsigned ResultReg =
1629       fastEmitInst_ri(Opc, RC, LHSReg, LHSIsKill,
1630                       AArch64_AM::encodeLogicalImmediate(Imm, RegSize));
1631   if (RetVT >= MVT::i8 && RetVT <= MVT::i16 && ISDOpc != ISD::AND) {
1632     uint64_t Mask = (RetVT == MVT::i8) ? 0xff : 0xffff;
1633     ResultReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, Mask);
1634   }
1635   return ResultReg;
1636 }
1637
1638 unsigned AArch64FastISel::emitLogicalOp_rs(unsigned ISDOpc, MVT RetVT,
1639                                            unsigned LHSReg, bool LHSIsKill,
1640                                            unsigned RHSReg, bool RHSIsKill,
1641                                            uint64_t ShiftImm) {
1642   assert((ISD::AND + 1 == ISD::OR) && (ISD::AND + 2 == ISD::XOR) &&
1643          "ISD nodes are not consecutive!");
1644   static const unsigned OpcTable[3][2] = {
1645     { AArch64::ANDWrs, AArch64::ANDXrs },
1646     { AArch64::ORRWrs, AArch64::ORRXrs },
1647     { AArch64::EORWrs, AArch64::EORXrs }
1648   };
1649   const TargetRegisterClass *RC;
1650   unsigned Opc;
1651   switch (RetVT.SimpleTy) {
1652   default:
1653     return 0;
1654   case MVT::i1:
1655   case MVT::i8:
1656   case MVT::i16:
1657   case MVT::i32:
1658     Opc = OpcTable[ISDOpc - ISD::AND][0];
1659     RC = &AArch64::GPR32RegClass;
1660     break;
1661   case MVT::i64:
1662     Opc = OpcTable[ISDOpc - ISD::AND][1];
1663     RC = &AArch64::GPR64RegClass;
1664     break;
1665   }
1666   unsigned ResultReg =
1667       fastEmitInst_rri(Opc, RC, LHSReg, LHSIsKill, RHSReg, RHSIsKill,
1668                        AArch64_AM::getShifterImm(AArch64_AM::LSL, ShiftImm));
1669   if (RetVT >= MVT::i8 && RetVT <= MVT::i16) {
1670     uint64_t Mask = (RetVT == MVT::i8) ? 0xff : 0xffff;
1671     ResultReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, Mask);
1672   }
1673   return ResultReg;
1674 }
1675
1676 unsigned AArch64FastISel::emitAnd_ri(MVT RetVT, unsigned LHSReg, bool LHSIsKill,
1677                                      uint64_t Imm) {
1678   return emitLogicalOp_ri(ISD::AND, RetVT, LHSReg, LHSIsKill, Imm);
1679 }
1680
1681 unsigned AArch64FastISel::emitLoad(MVT VT, MVT RetVT, Address Addr,
1682                                    bool WantZExt, MachineMemOperand *MMO) {
1683   if (!TLI.allowsMisalignedMemoryAccesses(VT))
1684     return 0;
1685
1686   // Simplify this down to something we can handle.
1687   if (!simplifyAddress(Addr, VT))
1688     return 0;
1689
1690   unsigned ScaleFactor = getImplicitScaleFactor(VT);
1691   if (!ScaleFactor)
1692     llvm_unreachable("Unexpected value type.");
1693
1694   // Negative offsets require unscaled, 9-bit, signed immediate offsets.
1695   // Otherwise, we try using scaled, 12-bit, unsigned immediate offsets.
1696   bool UseScaled = true;
1697   if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) {
1698     UseScaled = false;
1699     ScaleFactor = 1;
1700   }
1701
1702   static const unsigned GPOpcTable[2][8][4] = {
1703     // Sign-extend.
1704     { { AArch64::LDURSBWi,  AArch64::LDURSHWi,  AArch64::LDURWi,
1705         AArch64::LDURXi  },
1706       { AArch64::LDURSBXi,  AArch64::LDURSHXi,  AArch64::LDURSWi,
1707         AArch64::LDURXi  },
1708       { AArch64::LDRSBWui,  AArch64::LDRSHWui,  AArch64::LDRWui,
1709         AArch64::LDRXui  },
1710       { AArch64::LDRSBXui,  AArch64::LDRSHXui,  AArch64::LDRSWui,
1711         AArch64::LDRXui  },
1712       { AArch64::LDRSBWroX, AArch64::LDRSHWroX, AArch64::LDRWroX,
1713         AArch64::LDRXroX },
1714       { AArch64::LDRSBXroX, AArch64::LDRSHXroX, AArch64::LDRSWroX,
1715         AArch64::LDRXroX },
1716       { AArch64::LDRSBWroW, AArch64::LDRSHWroW, AArch64::LDRWroW,
1717         AArch64::LDRXroW },
1718       { AArch64::LDRSBXroW, AArch64::LDRSHXroW, AArch64::LDRSWroW,
1719         AArch64::LDRXroW }
1720     },
1721     // Zero-extend.
1722     { { AArch64::LDURBBi,   AArch64::LDURHHi,   AArch64::LDURWi,
1723         AArch64::LDURXi  },
1724       { AArch64::LDURBBi,   AArch64::LDURHHi,   AArch64::LDURWi,
1725         AArch64::LDURXi  },
1726       { AArch64::LDRBBui,   AArch64::LDRHHui,   AArch64::LDRWui,
1727         AArch64::LDRXui  },
1728       { AArch64::LDRBBui,   AArch64::LDRHHui,   AArch64::LDRWui,
1729         AArch64::LDRXui  },
1730       { AArch64::LDRBBroX,  AArch64::LDRHHroX,  AArch64::LDRWroX,
1731         AArch64::LDRXroX },
1732       { AArch64::LDRBBroX,  AArch64::LDRHHroX,  AArch64::LDRWroX,
1733         AArch64::LDRXroX },
1734       { AArch64::LDRBBroW,  AArch64::LDRHHroW,  AArch64::LDRWroW,
1735         AArch64::LDRXroW },
1736       { AArch64::LDRBBroW,  AArch64::LDRHHroW,  AArch64::LDRWroW,
1737         AArch64::LDRXroW }
1738     }
1739   };
1740
1741   static const unsigned FPOpcTable[4][2] = {
1742     { AArch64::LDURSi,  AArch64::LDURDi  },
1743     { AArch64::LDRSui,  AArch64::LDRDui  },
1744     { AArch64::LDRSroX, AArch64::LDRDroX },
1745     { AArch64::LDRSroW, AArch64::LDRDroW }
1746   };
1747
1748   unsigned Opc;
1749   const TargetRegisterClass *RC;
1750   bool UseRegOffset = Addr.isRegBase() && !Addr.getOffset() && Addr.getReg() &&
1751                       Addr.getOffsetReg();
1752   unsigned Idx = UseRegOffset ? 2 : UseScaled ? 1 : 0;
1753   if (Addr.getExtendType() == AArch64_AM::UXTW ||
1754       Addr.getExtendType() == AArch64_AM::SXTW)
1755     Idx++;
1756
1757   bool IsRet64Bit = RetVT == MVT::i64;
1758   switch (VT.SimpleTy) {
1759   default:
1760     llvm_unreachable("Unexpected value type.");
1761   case MVT::i1: // Intentional fall-through.
1762   case MVT::i8:
1763     Opc = GPOpcTable[WantZExt][2 * Idx + IsRet64Bit][0];
1764     RC = (IsRet64Bit && !WantZExt) ?
1765              &AArch64::GPR64RegClass: &AArch64::GPR32RegClass;
1766     break;
1767   case MVT::i16:
1768     Opc = GPOpcTable[WantZExt][2 * Idx + IsRet64Bit][1];
1769     RC = (IsRet64Bit && !WantZExt) ?
1770              &AArch64::GPR64RegClass: &AArch64::GPR32RegClass;
1771     break;
1772   case MVT::i32:
1773     Opc = GPOpcTable[WantZExt][2 * Idx + IsRet64Bit][2];
1774     RC = (IsRet64Bit && !WantZExt) ?
1775              &AArch64::GPR64RegClass: &AArch64::GPR32RegClass;
1776     break;
1777   case MVT::i64:
1778     Opc = GPOpcTable[WantZExt][2 * Idx + IsRet64Bit][3];
1779     RC = &AArch64::GPR64RegClass;
1780     break;
1781   case MVT::f32:
1782     Opc = FPOpcTable[Idx][0];
1783     RC = &AArch64::FPR32RegClass;
1784     break;
1785   case MVT::f64:
1786     Opc = FPOpcTable[Idx][1];
1787     RC = &AArch64::FPR64RegClass;
1788     break;
1789   }
1790
1791   // Create the base instruction, then add the operands.
1792   unsigned ResultReg = createResultReg(RC);
1793   MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1794                                     TII.get(Opc), ResultReg);
1795   addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOLoad, ScaleFactor, MMO);
1796
1797   // Loading an i1 requires special handling.
1798   if (VT == MVT::i1) {
1799     unsigned ANDReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, 1);
1800     assert(ANDReg && "Unexpected AND instruction emission failure.");
1801     ResultReg = ANDReg;
1802   }
1803
1804   // For zero-extending loads to 64bit we emit a 32bit load and then convert
1805   // the 32bit reg to a 64bit reg.
1806   if (WantZExt && RetVT == MVT::i64 && VT <= MVT::i32) {
1807     unsigned Reg64 = createResultReg(&AArch64::GPR64RegClass);
1808     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1809             TII.get(AArch64::SUBREG_TO_REG), Reg64)
1810         .addImm(0)
1811         .addReg(ResultReg, getKillRegState(true))
1812         .addImm(AArch64::sub_32);
1813     ResultReg = Reg64;
1814   }
1815   return ResultReg;
1816 }
1817
1818 bool AArch64FastISel::selectAddSub(const Instruction *I) {
1819   MVT VT;
1820   if (!isTypeSupported(I->getType(), VT, /*IsVectorAllowed=*/true))
1821     return false;
1822
1823   if (VT.isVector())
1824     return selectOperator(I, I->getOpcode());
1825
1826   unsigned ResultReg;
1827   switch (I->getOpcode()) {
1828   default:
1829     llvm_unreachable("Unexpected instruction.");
1830   case Instruction::Add:
1831     ResultReg = emitAdd(VT, I->getOperand(0), I->getOperand(1));
1832     break;
1833   case Instruction::Sub:
1834     ResultReg = emitSub(VT, I->getOperand(0), I->getOperand(1));
1835     break;
1836   }
1837   if (!ResultReg)
1838     return false;
1839
1840   updateValueMap(I, ResultReg);
1841   return true;
1842 }
1843
1844 bool AArch64FastISel::selectLogicalOp(const Instruction *I) {
1845   MVT VT;
1846   if (!isTypeSupported(I->getType(), VT, /*IsVectorAllowed=*/true))
1847     return false;
1848
1849   if (VT.isVector())
1850     return selectOperator(I, I->getOpcode());
1851
1852   unsigned ResultReg;
1853   switch (I->getOpcode()) {
1854   default:
1855     llvm_unreachable("Unexpected instruction.");
1856   case Instruction::And:
1857     ResultReg = emitLogicalOp(ISD::AND, VT, I->getOperand(0), I->getOperand(1));
1858     break;
1859   case Instruction::Or:
1860     ResultReg = emitLogicalOp(ISD::OR, VT, I->getOperand(0), I->getOperand(1));
1861     break;
1862   case Instruction::Xor:
1863     ResultReg = emitLogicalOp(ISD::XOR, VT, I->getOperand(0), I->getOperand(1));
1864     break;
1865   }
1866   if (!ResultReg)
1867     return false;
1868
1869   updateValueMap(I, ResultReg);
1870   return true;
1871 }
1872
1873 bool AArch64FastISel::selectLoad(const Instruction *I) {
1874   MVT VT;
1875   // Verify we have a legal type before going any further.  Currently, we handle
1876   // simple types that will directly fit in a register (i32/f32/i64/f64) or
1877   // those that can be sign or zero-extended to a basic operation (i1/i8/i16).
1878   if (!isTypeSupported(I->getType(), VT, /*IsVectorAllowed=*/true) ||
1879       cast<LoadInst>(I)->isAtomic())
1880     return false;
1881
1882   // See if we can handle this address.
1883   Address Addr;
1884   if (!computeAddress(I->getOperand(0), Addr, I->getType()))
1885     return false;
1886
1887   // Fold the following sign-/zero-extend into the load instruction.
1888   bool WantZExt = true;
1889   MVT RetVT = VT;
1890   const Value *IntExtVal = nullptr;
1891   if (I->hasOneUse()) {
1892     if (const auto *ZE = dyn_cast<ZExtInst>(I->use_begin()->getUser())) {
1893       if (isTypeSupported(ZE->getType(), RetVT))
1894         IntExtVal = ZE;
1895       else
1896         RetVT = VT;
1897     } else if (const auto *SE = dyn_cast<SExtInst>(I->use_begin()->getUser())) {
1898       if (isTypeSupported(SE->getType(), RetVT))
1899         IntExtVal = SE;
1900       else
1901         RetVT = VT;
1902       WantZExt = false;
1903     }
1904   }
1905
1906   unsigned ResultReg =
1907       emitLoad(VT, RetVT, Addr, WantZExt, createMachineMemOperandFor(I));
1908   if (!ResultReg)
1909     return false;
1910
1911   // There are a few different cases we have to handle, because the load or the
1912   // sign-/zero-extend might not be selected by FastISel if we fall-back to
1913   // SelectionDAG. There is also an ordering issue when both instructions are in
1914   // different basic blocks.
1915   // 1.) The load instruction is selected by FastISel, but the integer extend
1916   //     not. This usually happens when the integer extend is in a different
1917   //     basic block and SelectionDAG took over for that basic block.
1918   // 2.) The load instruction is selected before the integer extend. This only
1919   //     happens when the integer extend is in a different basic block.
1920   // 3.) The load instruction is selected by SelectionDAG and the integer extend
1921   //     by FastISel. This happens if there are instructions between the load
1922   //     and the integer extend that couldn't be selected by FastISel.
1923   if (IntExtVal) {
1924     // The integer extend hasn't been emitted yet. FastISel or SelectionDAG
1925     // could select it. Emit a copy to subreg if necessary. FastISel will remove
1926     // it when it selects the integer extend.
1927     unsigned Reg = lookUpRegForValue(IntExtVal);
1928     auto *MI = MRI.getUniqueVRegDef(Reg);
1929     if (!MI) {
1930       if (RetVT == MVT::i64 && VT <= MVT::i32) {
1931         if (WantZExt) {
1932           // Delete the last emitted instruction from emitLoad (SUBREG_TO_REG).
1933           std::prev(FuncInfo.InsertPt)->eraseFromParent();
1934           ResultReg = std::prev(FuncInfo.InsertPt)->getOperand(0).getReg();
1935         } else
1936           ResultReg = fastEmitInst_extractsubreg(MVT::i32, ResultReg,
1937                                                  /*IsKill=*/true,
1938                                                  AArch64::sub_32);
1939       }
1940       updateValueMap(I, ResultReg);
1941       return true;
1942     }
1943
1944     // The integer extend has already been emitted - delete all the instructions
1945     // that have been emitted by the integer extend lowering code and use the
1946     // result from the load instruction directly.
1947     while (MI) {
1948       Reg = 0;
1949       for (auto &Opnd : MI->uses()) {
1950         if (Opnd.isReg()) {
1951           Reg = Opnd.getReg();
1952           break;
1953         }
1954       }
1955       MI->eraseFromParent();
1956       MI = nullptr;
1957       if (Reg)
1958         MI = MRI.getUniqueVRegDef(Reg);
1959     }
1960     updateValueMap(IntExtVal, ResultReg);
1961     return true;
1962   }
1963
1964   updateValueMap(I, ResultReg);
1965   return true;
1966 }
1967
1968 bool AArch64FastISel::emitStore(MVT VT, unsigned SrcReg, Address Addr,
1969                                 MachineMemOperand *MMO) {
1970   if (!TLI.allowsMisalignedMemoryAccesses(VT))
1971     return false;
1972
1973   // Simplify this down to something we can handle.
1974   if (!simplifyAddress(Addr, VT))
1975     return false;
1976
1977   unsigned ScaleFactor = getImplicitScaleFactor(VT);
1978   if (!ScaleFactor)
1979     llvm_unreachable("Unexpected value type.");
1980
1981   // Negative offsets require unscaled, 9-bit, signed immediate offsets.
1982   // Otherwise, we try using scaled, 12-bit, unsigned immediate offsets.
1983   bool UseScaled = true;
1984   if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) {
1985     UseScaled = false;
1986     ScaleFactor = 1;
1987   }
1988
1989   static const unsigned OpcTable[4][6] = {
1990     { AArch64::STURBBi,  AArch64::STURHHi,  AArch64::STURWi,  AArch64::STURXi,
1991       AArch64::STURSi,   AArch64::STURDi },
1992     { AArch64::STRBBui,  AArch64::STRHHui,  AArch64::STRWui,  AArch64::STRXui,
1993       AArch64::STRSui,   AArch64::STRDui },
1994     { AArch64::STRBBroX, AArch64::STRHHroX, AArch64::STRWroX, AArch64::STRXroX,
1995       AArch64::STRSroX,  AArch64::STRDroX },
1996     { AArch64::STRBBroW, AArch64::STRHHroW, AArch64::STRWroW, AArch64::STRXroW,
1997       AArch64::STRSroW,  AArch64::STRDroW }
1998   };
1999
2000   unsigned Opc;
2001   bool VTIsi1 = false;
2002   bool UseRegOffset = Addr.isRegBase() && !Addr.getOffset() && Addr.getReg() &&
2003                       Addr.getOffsetReg();
2004   unsigned Idx = UseRegOffset ? 2 : UseScaled ? 1 : 0;
2005   if (Addr.getExtendType() == AArch64_AM::UXTW ||
2006       Addr.getExtendType() == AArch64_AM::SXTW)
2007     Idx++;
2008
2009   switch (VT.SimpleTy) {
2010   default: llvm_unreachable("Unexpected value type.");
2011   case MVT::i1:  VTIsi1 = true;
2012   case MVT::i8:  Opc = OpcTable[Idx][0]; break;
2013   case MVT::i16: Opc = OpcTable[Idx][1]; break;
2014   case MVT::i32: Opc = OpcTable[Idx][2]; break;
2015   case MVT::i64: Opc = OpcTable[Idx][3]; break;
2016   case MVT::f32: Opc = OpcTable[Idx][4]; break;
2017   case MVT::f64: Opc = OpcTable[Idx][5]; break;
2018   }
2019
2020   // Storing an i1 requires special handling.
2021   if (VTIsi1 && SrcReg != AArch64::WZR) {
2022     unsigned ANDReg = emitAnd_ri(MVT::i32, SrcReg, /*TODO:IsKill=*/false, 1);
2023     assert(ANDReg && "Unexpected AND instruction emission failure.");
2024     SrcReg = ANDReg;
2025   }
2026   // Create the base instruction, then add the operands.
2027   const MCInstrDesc &II = TII.get(Opc);
2028   SrcReg = constrainOperandRegClass(II, SrcReg, II.getNumDefs());
2029   MachineInstrBuilder MIB =
2030       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addReg(SrcReg);
2031   addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOStore, ScaleFactor, MMO);
2032
2033   return true;
2034 }
2035
2036 bool AArch64FastISel::selectStore(const Instruction *I) {
2037   MVT VT;
2038   const Value *Op0 = I->getOperand(0);
2039   // Verify we have a legal type before going any further.  Currently, we handle
2040   // simple types that will directly fit in a register (i32/f32/i64/f64) or
2041   // those that can be sign or zero-extended to a basic operation (i1/i8/i16).
2042   if (!isTypeSupported(Op0->getType(), VT, /*IsVectorAllowed=*/true) ||
2043       cast<StoreInst>(I)->isAtomic())
2044     return false;
2045
2046   // Get the value to be stored into a register. Use the zero register directly
2047   // when possible to avoid an unnecessary copy and a wasted register.
2048   unsigned SrcReg = 0;
2049   if (const auto *CI = dyn_cast<ConstantInt>(Op0)) {
2050     if (CI->isZero())
2051       SrcReg = (VT == MVT::i64) ? AArch64::XZR : AArch64::WZR;
2052   } else if (const auto *CF = dyn_cast<ConstantFP>(Op0)) {
2053     if (CF->isZero() && !CF->isNegative()) {
2054       VT = MVT::getIntegerVT(VT.getSizeInBits());
2055       SrcReg = (VT == MVT::i64) ? AArch64::XZR : AArch64::WZR;
2056     }
2057   }
2058
2059   if (!SrcReg)
2060     SrcReg = getRegForValue(Op0);
2061
2062   if (!SrcReg)
2063     return false;
2064
2065   // See if we can handle this address.
2066   Address Addr;
2067   if (!computeAddress(I->getOperand(1), Addr, I->getOperand(0)->getType()))
2068     return false;
2069
2070   if (!emitStore(VT, SrcReg, Addr, createMachineMemOperandFor(I)))
2071     return false;
2072   return true;
2073 }
2074
2075 static AArch64CC::CondCode getCompareCC(CmpInst::Predicate Pred) {
2076   switch (Pred) {
2077   case CmpInst::FCMP_ONE:
2078   case CmpInst::FCMP_UEQ:
2079   default:
2080     // AL is our "false" for now. The other two need more compares.
2081     return AArch64CC::AL;
2082   case CmpInst::ICMP_EQ:
2083   case CmpInst::FCMP_OEQ:
2084     return AArch64CC::EQ;
2085   case CmpInst::ICMP_SGT:
2086   case CmpInst::FCMP_OGT:
2087     return AArch64CC::GT;
2088   case CmpInst::ICMP_SGE:
2089   case CmpInst::FCMP_OGE:
2090     return AArch64CC::GE;
2091   case CmpInst::ICMP_UGT:
2092   case CmpInst::FCMP_UGT:
2093     return AArch64CC::HI;
2094   case CmpInst::FCMP_OLT:
2095     return AArch64CC::MI;
2096   case CmpInst::ICMP_ULE:
2097   case CmpInst::FCMP_OLE:
2098     return AArch64CC::LS;
2099   case CmpInst::FCMP_ORD:
2100     return AArch64CC::VC;
2101   case CmpInst::FCMP_UNO:
2102     return AArch64CC::VS;
2103   case CmpInst::FCMP_UGE:
2104     return AArch64CC::PL;
2105   case CmpInst::ICMP_SLT:
2106   case CmpInst::FCMP_ULT:
2107     return AArch64CC::LT;
2108   case CmpInst::ICMP_SLE:
2109   case CmpInst::FCMP_ULE:
2110     return AArch64CC::LE;
2111   case CmpInst::FCMP_UNE:
2112   case CmpInst::ICMP_NE:
2113     return AArch64CC::NE;
2114   case CmpInst::ICMP_UGE:
2115     return AArch64CC::HS;
2116   case CmpInst::ICMP_ULT:
2117     return AArch64CC::LO;
2118   }
2119 }
2120
2121 /// \brief Try to emit a combined compare-and-branch instruction.
2122 bool AArch64FastISel::emitCompareAndBranch(const BranchInst *BI) {
2123   assert(isa<CmpInst>(BI->getCondition()) && "Expected cmp instruction");
2124   const CmpInst *CI = cast<CmpInst>(BI->getCondition());
2125   CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2126
2127   const Value *LHS = CI->getOperand(0);
2128   const Value *RHS = CI->getOperand(1);
2129
2130   MVT VT;
2131   if (!isTypeSupported(LHS->getType(), VT))
2132     return false;
2133
2134   unsigned BW = VT.getSizeInBits();
2135   if (BW > 64)
2136     return false;
2137
2138   MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
2139   MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
2140
2141   // Try to take advantage of fallthrough opportunities.
2142   if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
2143     std::swap(TBB, FBB);
2144     Predicate = CmpInst::getInversePredicate(Predicate);
2145   }
2146
2147   int TestBit = -1;
2148   bool IsCmpNE;
2149   switch (Predicate) {
2150   default:
2151     return false;
2152   case CmpInst::ICMP_EQ:
2153   case CmpInst::ICMP_NE:
2154     if (isa<Constant>(LHS) && cast<Constant>(LHS)->isNullValue())
2155       std::swap(LHS, RHS);
2156
2157     if (!isa<Constant>(RHS) || !cast<Constant>(RHS)->isNullValue())
2158       return false;
2159
2160     if (const auto *AI = dyn_cast<BinaryOperator>(LHS))
2161       if (AI->getOpcode() == Instruction::And && isValueAvailable(AI)) {
2162         const Value *AndLHS = AI->getOperand(0);
2163         const Value *AndRHS = AI->getOperand(1);
2164
2165         if (const auto *C = dyn_cast<ConstantInt>(AndLHS))
2166           if (C->getValue().isPowerOf2())
2167             std::swap(AndLHS, AndRHS);
2168
2169         if (const auto *C = dyn_cast<ConstantInt>(AndRHS))
2170           if (C->getValue().isPowerOf2()) {
2171             TestBit = C->getValue().logBase2();
2172             LHS = AndLHS;
2173           }
2174       }
2175
2176     if (VT == MVT::i1)
2177       TestBit = 0;
2178
2179     IsCmpNE = Predicate == CmpInst::ICMP_NE;
2180     break;
2181   case CmpInst::ICMP_SLT:
2182   case CmpInst::ICMP_SGE:
2183     if (!isa<Constant>(RHS) || !cast<Constant>(RHS)->isNullValue())
2184       return false;
2185
2186     TestBit = BW - 1;
2187     IsCmpNE = Predicate == CmpInst::ICMP_SLT;
2188     break;
2189   case CmpInst::ICMP_SGT:
2190   case CmpInst::ICMP_SLE:
2191     if (!isa<ConstantInt>(RHS))
2192       return false;
2193
2194     if (cast<ConstantInt>(RHS)->getValue() != APInt(BW, -1, true))
2195       return false;
2196
2197     TestBit = BW - 1;
2198     IsCmpNE = Predicate == CmpInst::ICMP_SLE;
2199     break;
2200   } // end switch
2201
2202   static const unsigned OpcTable[2][2][2] = {
2203     { {AArch64::CBZW,  AArch64::CBZX },
2204       {AArch64::CBNZW, AArch64::CBNZX} },
2205     { {AArch64::TBZW,  AArch64::TBZX },
2206       {AArch64::TBNZW, AArch64::TBNZX} }
2207   };
2208
2209   bool IsBitTest = TestBit != -1;
2210   bool Is64Bit = BW == 64;
2211   if (TestBit < 32 && TestBit >= 0)
2212     Is64Bit = false;
2213
2214   unsigned Opc = OpcTable[IsBitTest][IsCmpNE][Is64Bit];
2215   const MCInstrDesc &II = TII.get(Opc);
2216
2217   unsigned SrcReg = getRegForValue(LHS);
2218   if (!SrcReg)
2219     return false;
2220   bool SrcIsKill = hasTrivialKill(LHS);
2221
2222   if (BW == 64 && !Is64Bit)
2223     SrcReg = fastEmitInst_extractsubreg(MVT::i32, SrcReg, SrcIsKill,
2224                                         AArch64::sub_32);
2225
2226   if ((BW < 32) && !IsBitTest)
2227     SrcReg = emitIntExt(VT, SrcReg, MVT::i32, /*IsZExt=*/true);
2228
2229   // Emit the combined compare and branch instruction.
2230   SrcReg = constrainOperandRegClass(II, SrcReg,  II.getNumDefs());
2231   MachineInstrBuilder MIB =
2232       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc))
2233           .addReg(SrcReg, getKillRegState(SrcIsKill));
2234   if (IsBitTest)
2235     MIB.addImm(TestBit);
2236   MIB.addMBB(TBB);
2237
2238   // Obtain the branch weight and add the TrueBB to the successor list.
2239   uint32_t BranchWeight = 0;
2240   if (FuncInfo.BPI)
2241     BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
2242                                                TBB->getBasicBlock());
2243   FuncInfo.MBB->addSuccessor(TBB, BranchWeight);
2244   fastEmitBranch(FBB, DbgLoc);
2245
2246   return true;
2247 }
2248
2249 bool AArch64FastISel::selectBranch(const Instruction *I) {
2250   const BranchInst *BI = cast<BranchInst>(I);
2251   if (BI->isUnconditional()) {
2252     MachineBasicBlock *MSucc = FuncInfo.MBBMap[BI->getSuccessor(0)];
2253     fastEmitBranch(MSucc, BI->getDebugLoc());
2254     return true;
2255   }
2256
2257   MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
2258   MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
2259
2260   AArch64CC::CondCode CC = AArch64CC::NE;
2261   if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
2262     if (CI->hasOneUse() && isValueAvailable(CI)) {
2263       // Try to optimize or fold the cmp.
2264       CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2265       switch (Predicate) {
2266       default:
2267         break;
2268       case CmpInst::FCMP_FALSE:
2269         fastEmitBranch(FBB, DbgLoc);
2270         return true;
2271       case CmpInst::FCMP_TRUE:
2272         fastEmitBranch(TBB, DbgLoc);
2273         return true;
2274       }
2275
2276       // Try to emit a combined compare-and-branch first.
2277       if (emitCompareAndBranch(BI))
2278         return true;
2279
2280       // Try to take advantage of fallthrough opportunities.
2281       if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
2282         std::swap(TBB, FBB);
2283         Predicate = CmpInst::getInversePredicate(Predicate);
2284       }
2285
2286       // Emit the cmp.
2287       if (!emitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
2288         return false;
2289
2290       // FCMP_UEQ and FCMP_ONE cannot be checked with a single branch
2291       // instruction.
2292       CC = getCompareCC(Predicate);
2293       AArch64CC::CondCode ExtraCC = AArch64CC::AL;
2294       switch (Predicate) {
2295       default:
2296         break;
2297       case CmpInst::FCMP_UEQ:
2298         ExtraCC = AArch64CC::EQ;
2299         CC = AArch64CC::VS;
2300         break;
2301       case CmpInst::FCMP_ONE:
2302         ExtraCC = AArch64CC::MI;
2303         CC = AArch64CC::GT;
2304         break;
2305       }
2306       assert((CC != AArch64CC::AL) && "Unexpected condition code.");
2307
2308       // Emit the extra branch for FCMP_UEQ and FCMP_ONE.
2309       if (ExtraCC != AArch64CC::AL) {
2310         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc))
2311             .addImm(ExtraCC)
2312             .addMBB(TBB);
2313       }
2314
2315       // Emit the branch.
2316       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc))
2317           .addImm(CC)
2318           .addMBB(TBB);
2319
2320       // Obtain the branch weight and add the TrueBB to the successor list.
2321       uint32_t BranchWeight = 0;
2322       if (FuncInfo.BPI)
2323         BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
2324                                                   TBB->getBasicBlock());
2325       FuncInfo.MBB->addSuccessor(TBB, BranchWeight);
2326
2327       fastEmitBranch(FBB, DbgLoc);
2328       return true;
2329     }
2330   } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
2331     MVT SrcVT;
2332     if (TI->hasOneUse() && isValueAvailable(TI) &&
2333         isTypeSupported(TI->getOperand(0)->getType(), SrcVT)) {
2334       unsigned CondReg = getRegForValue(TI->getOperand(0));
2335       if (!CondReg)
2336         return false;
2337       bool CondIsKill = hasTrivialKill(TI->getOperand(0));
2338
2339       // Issue an extract_subreg to get the lower 32-bits.
2340       if (SrcVT == MVT::i64) {
2341         CondReg = fastEmitInst_extractsubreg(MVT::i32, CondReg, CondIsKill,
2342                                              AArch64::sub_32);
2343         CondIsKill = true;
2344       }
2345
2346       unsigned ANDReg = emitAnd_ri(MVT::i32, CondReg, CondIsKill, 1);
2347       assert(ANDReg && "Unexpected AND instruction emission failure.");
2348       emitICmp_ri(MVT::i32, ANDReg, /*IsKill=*/true, 0);
2349
2350       if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
2351         std::swap(TBB, FBB);
2352         CC = AArch64CC::EQ;
2353       }
2354       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc))
2355           .addImm(CC)
2356           .addMBB(TBB);
2357
2358       // Obtain the branch weight and add the TrueBB to the successor list.
2359       uint32_t BranchWeight = 0;
2360       if (FuncInfo.BPI)
2361         BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
2362                                                   TBB->getBasicBlock());
2363       FuncInfo.MBB->addSuccessor(TBB, BranchWeight);
2364
2365       fastEmitBranch(FBB, DbgLoc);
2366       return true;
2367     }
2368   } else if (const auto *CI = dyn_cast<ConstantInt>(BI->getCondition())) {
2369     uint64_t Imm = CI->getZExtValue();
2370     MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
2371     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::B))
2372         .addMBB(Target);
2373
2374     // Obtain the branch weight and add the target to the successor list.
2375     uint32_t BranchWeight = 0;
2376     if (FuncInfo.BPI)
2377       BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
2378                                                  Target->getBasicBlock());
2379     FuncInfo.MBB->addSuccessor(Target, BranchWeight);
2380     return true;
2381   } else if (foldXALUIntrinsic(CC, I, BI->getCondition())) {
2382     // Fake request the condition, otherwise the intrinsic might be completely
2383     // optimized away.
2384     unsigned CondReg = getRegForValue(BI->getCondition());
2385     if (!CondReg)
2386       return false;
2387
2388     // Emit the branch.
2389     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc))
2390       .addImm(CC)
2391       .addMBB(TBB);
2392
2393     // Obtain the branch weight and add the TrueBB to the successor list.
2394     uint32_t BranchWeight = 0;
2395     if (FuncInfo.BPI)
2396       BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
2397                                                  TBB->getBasicBlock());
2398     FuncInfo.MBB->addSuccessor(TBB, BranchWeight);
2399
2400     fastEmitBranch(FBB, DbgLoc);
2401     return true;
2402   }
2403
2404   unsigned CondReg = getRegForValue(BI->getCondition());
2405   if (CondReg == 0)
2406     return false;
2407   bool CondRegIsKill = hasTrivialKill(BI->getCondition());
2408
2409   // We've been divorced from our compare!  Our block was split, and
2410   // now our compare lives in a predecessor block.  We musn't
2411   // re-compare here, as the children of the compare aren't guaranteed
2412   // live across the block boundary (we *could* check for this).
2413   // Regardless, the compare has been done in the predecessor block,
2414   // and it left a value for us in a virtual register.  Ergo, we test
2415   // the one-bit value left in the virtual register.
2416   emitICmp_ri(MVT::i32, CondReg, CondRegIsKill, 0);
2417
2418   if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
2419     std::swap(TBB, FBB);
2420     CC = AArch64CC::EQ;
2421   }
2422
2423   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::Bcc))
2424       .addImm(CC)
2425       .addMBB(TBB);
2426
2427   // Obtain the branch weight and add the TrueBB to the successor list.
2428   uint32_t BranchWeight = 0;
2429   if (FuncInfo.BPI)
2430     BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
2431                                                TBB->getBasicBlock());
2432   FuncInfo.MBB->addSuccessor(TBB, BranchWeight);
2433
2434   fastEmitBranch(FBB, DbgLoc);
2435   return true;
2436 }
2437
2438 bool AArch64FastISel::selectIndirectBr(const Instruction *I) {
2439   const IndirectBrInst *BI = cast<IndirectBrInst>(I);
2440   unsigned AddrReg = getRegForValue(BI->getOperand(0));
2441   if (AddrReg == 0)
2442     return false;
2443
2444   // Emit the indirect branch.
2445   const MCInstrDesc &II = TII.get(AArch64::BR);
2446   AddrReg = constrainOperandRegClass(II, AddrReg,  II.getNumDefs());
2447   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addReg(AddrReg);
2448
2449   // Make sure the CFG is up-to-date.
2450   for (unsigned i = 0, e = BI->getNumSuccessors(); i != e; ++i)
2451     FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[BI->getSuccessor(i)]);
2452
2453   return true;
2454 }
2455
2456 bool AArch64FastISel::selectCmp(const Instruction *I) {
2457   const CmpInst *CI = cast<CmpInst>(I);
2458
2459   // Try to optimize or fold the cmp.
2460   CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
2461   unsigned ResultReg = 0;
2462   switch (Predicate) {
2463   default:
2464     break;
2465   case CmpInst::FCMP_FALSE:
2466     ResultReg = createResultReg(&AArch64::GPR32RegClass);
2467     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2468             TII.get(TargetOpcode::COPY), ResultReg)
2469         .addReg(AArch64::WZR, getKillRegState(true));
2470     break;
2471   case CmpInst::FCMP_TRUE:
2472     ResultReg = fastEmit_i(MVT::i32, MVT::i32, ISD::Constant, 1);
2473     break;
2474   }
2475
2476   if (ResultReg) {
2477     updateValueMap(I, ResultReg);
2478     return true;
2479   }
2480
2481   // Emit the cmp.
2482   if (!emitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
2483     return false;
2484
2485   ResultReg = createResultReg(&AArch64::GPR32RegClass);
2486
2487   // FCMP_UEQ and FCMP_ONE cannot be checked with a single instruction. These
2488   // condition codes are inverted, because they are used by CSINC.
2489   static unsigned CondCodeTable[2][2] = {
2490     { AArch64CC::NE, AArch64CC::VC },
2491     { AArch64CC::PL, AArch64CC::LE }
2492   };
2493   unsigned *CondCodes = nullptr;
2494   switch (Predicate) {
2495   default:
2496     break;
2497   case CmpInst::FCMP_UEQ:
2498     CondCodes = &CondCodeTable[0][0];
2499     break;
2500   case CmpInst::FCMP_ONE:
2501     CondCodes = &CondCodeTable[1][0];
2502     break;
2503   }
2504
2505   if (CondCodes) {
2506     unsigned TmpReg1 = createResultReg(&AArch64::GPR32RegClass);
2507     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::CSINCWr),
2508             TmpReg1)
2509         .addReg(AArch64::WZR, getKillRegState(true))
2510         .addReg(AArch64::WZR, getKillRegState(true))
2511         .addImm(CondCodes[0]);
2512     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::CSINCWr),
2513             ResultReg)
2514         .addReg(TmpReg1, getKillRegState(true))
2515         .addReg(AArch64::WZR, getKillRegState(true))
2516         .addImm(CondCodes[1]);
2517
2518     updateValueMap(I, ResultReg);
2519     return true;
2520   }
2521
2522   // Now set a register based on the comparison.
2523   AArch64CC::CondCode CC = getCompareCC(Predicate);
2524   assert((CC != AArch64CC::AL) && "Unexpected condition code.");
2525   AArch64CC::CondCode invertedCC = getInvertedCondCode(CC);
2526   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::CSINCWr),
2527           ResultReg)
2528       .addReg(AArch64::WZR, getKillRegState(true))
2529       .addReg(AArch64::WZR, getKillRegState(true))
2530       .addImm(invertedCC);
2531
2532   updateValueMap(I, ResultReg);
2533   return true;
2534 }
2535
2536 /// \brief Optimize selects of i1 if one of the operands has a 'true' or 'false'
2537 /// value.
2538 bool AArch64FastISel::optimizeSelect(const SelectInst *SI) {
2539   if (!SI->getType()->isIntegerTy(1))
2540     return false;
2541
2542   const Value *Src1Val, *Src2Val;
2543   unsigned Opc = 0;
2544   bool NeedExtraOp = false;
2545   if (auto *CI = dyn_cast<ConstantInt>(SI->getTrueValue())) {
2546     if (CI->isOne()) {
2547       Src1Val = SI->getCondition();
2548       Src2Val = SI->getFalseValue();
2549       Opc = AArch64::ORRWrr;
2550     } else {
2551       assert(CI->isZero());
2552       Src1Val = SI->getFalseValue();
2553       Src2Val = SI->getCondition();
2554       Opc = AArch64::BICWrr;
2555     }
2556   } else if (auto *CI = dyn_cast<ConstantInt>(SI->getFalseValue())) {
2557     if (CI->isOne()) {
2558       Src1Val = SI->getCondition();
2559       Src2Val = SI->getTrueValue();
2560       Opc = AArch64::ORRWrr;
2561       NeedExtraOp = true;
2562     } else {
2563       assert(CI->isZero());
2564       Src1Val = SI->getCondition();
2565       Src2Val = SI->getTrueValue();
2566       Opc = AArch64::ANDWrr;
2567     }
2568   }
2569
2570   if (!Opc)
2571     return false;
2572
2573   unsigned Src1Reg = getRegForValue(Src1Val);
2574   if (!Src1Reg)
2575     return false;
2576   bool Src1IsKill = hasTrivialKill(Src1Val);
2577
2578   unsigned Src2Reg = getRegForValue(Src2Val);
2579   if (!Src2Reg)
2580     return false;
2581   bool Src2IsKill = hasTrivialKill(Src2Val);
2582
2583   if (NeedExtraOp) {
2584     Src1Reg = emitLogicalOp_ri(ISD::XOR, MVT::i32, Src1Reg, Src1IsKill, 1);
2585     Src1IsKill = true;
2586   }
2587   unsigned ResultReg = fastEmitInst_rr(Opc, &AArch64::GPR32RegClass, Src1Reg,
2588                                        Src1IsKill, Src2Reg, Src2IsKill);
2589   updateValueMap(SI, ResultReg);
2590   return true;
2591 }
2592
2593 bool AArch64FastISel::selectSelect(const Instruction *I) {
2594   assert(isa<SelectInst>(I) && "Expected a select instruction.");
2595   MVT VT;
2596   if (!isTypeSupported(I->getType(), VT))
2597     return false;
2598
2599   unsigned Opc;
2600   const TargetRegisterClass *RC;
2601   switch (VT.SimpleTy) {
2602   default:
2603     return false;
2604   case MVT::i1:
2605   case MVT::i8:
2606   case MVT::i16:
2607   case MVT::i32:
2608     Opc = AArch64::CSELWr;
2609     RC = &AArch64::GPR32RegClass;
2610     break;
2611   case MVT::i64:
2612     Opc = AArch64::CSELXr;
2613     RC = &AArch64::GPR64RegClass;
2614     break;
2615   case MVT::f32:
2616     Opc = AArch64::FCSELSrrr;
2617     RC = &AArch64::FPR32RegClass;
2618     break;
2619   case MVT::f64:
2620     Opc = AArch64::FCSELDrrr;
2621     RC = &AArch64::FPR64RegClass;
2622     break;
2623   }
2624
2625   const SelectInst *SI = cast<SelectInst>(I);
2626   const Value *Cond = SI->getCondition();
2627   AArch64CC::CondCode CC = AArch64CC::NE;
2628   AArch64CC::CondCode ExtraCC = AArch64CC::AL;
2629
2630   if (optimizeSelect(SI))
2631     return true;
2632
2633   // Try to pickup the flags, so we don't have to emit another compare.
2634   if (foldXALUIntrinsic(CC, I, Cond)) {
2635     // Fake request the condition to force emission of the XALU intrinsic.
2636     unsigned CondReg = getRegForValue(Cond);
2637     if (!CondReg)
2638       return false;
2639   } else if (isa<CmpInst>(Cond) && cast<CmpInst>(Cond)->hasOneUse() &&
2640              isValueAvailable(Cond)) {
2641     const auto *Cmp = cast<CmpInst>(Cond);
2642     // Try to optimize or fold the cmp.
2643     CmpInst::Predicate Predicate = optimizeCmpPredicate(Cmp);
2644     const Value *FoldSelect = nullptr;
2645     switch (Predicate) {
2646     default:
2647       break;
2648     case CmpInst::FCMP_FALSE:
2649       FoldSelect = SI->getFalseValue();
2650       break;
2651     case CmpInst::FCMP_TRUE:
2652       FoldSelect = SI->getTrueValue();
2653       break;
2654     }
2655
2656     if (FoldSelect) {
2657       unsigned SrcReg = getRegForValue(FoldSelect);
2658       if (!SrcReg)
2659         return false;
2660       unsigned UseReg = lookUpRegForValue(SI);
2661       if (UseReg)
2662         MRI.clearKillFlags(UseReg);
2663
2664       updateValueMap(I, SrcReg);
2665       return true;
2666     }
2667
2668     // Emit the cmp.
2669     if (!emitCmp(Cmp->getOperand(0), Cmp->getOperand(1), Cmp->isUnsigned()))
2670       return false;
2671
2672     // FCMP_UEQ and FCMP_ONE cannot be checked with a single select instruction.
2673     CC = getCompareCC(Predicate);
2674     switch (Predicate) {
2675     default:
2676       break;
2677     case CmpInst::FCMP_UEQ:
2678       ExtraCC = AArch64CC::EQ;
2679       CC = AArch64CC::VS;
2680       break;
2681     case CmpInst::FCMP_ONE:
2682       ExtraCC = AArch64CC::MI;
2683       CC = AArch64CC::GT;
2684       break;
2685     }
2686     assert((CC != AArch64CC::AL) && "Unexpected condition code.");
2687   } else {
2688     unsigned CondReg = getRegForValue(Cond);
2689     if (!CondReg)
2690       return false;
2691     bool CondIsKill = hasTrivialKill(Cond);
2692
2693     const MCInstrDesc &II = TII.get(AArch64::ANDSWri);
2694     CondReg = constrainOperandRegClass(II, CondReg, 1);
2695
2696     // Emit a TST instruction (ANDS wzr, reg, #imm).
2697     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II,
2698             AArch64::WZR)
2699         .addReg(CondReg, getKillRegState(CondIsKill))
2700         .addImm(AArch64_AM::encodeLogicalImmediate(1, 32));
2701   }
2702
2703   unsigned Src1Reg = getRegForValue(SI->getTrueValue());
2704   bool Src1IsKill = hasTrivialKill(SI->getTrueValue());
2705
2706   unsigned Src2Reg = getRegForValue(SI->getFalseValue());
2707   bool Src2IsKill = hasTrivialKill(SI->getFalseValue());
2708
2709   if (!Src1Reg || !Src2Reg)
2710     return false;
2711
2712   if (ExtraCC != AArch64CC::AL) {
2713     Src2Reg = fastEmitInst_rri(Opc, RC, Src1Reg, Src1IsKill, Src2Reg,
2714                                Src2IsKill, ExtraCC);
2715     Src2IsKill = true;
2716   }
2717   unsigned ResultReg = fastEmitInst_rri(Opc, RC, Src1Reg, Src1IsKill, Src2Reg,
2718                                         Src2IsKill, CC);
2719   updateValueMap(I, ResultReg);
2720   return true;
2721 }
2722
2723 bool AArch64FastISel::selectFPExt(const Instruction *I) {
2724   Value *V = I->getOperand(0);
2725   if (!I->getType()->isDoubleTy() || !V->getType()->isFloatTy())
2726     return false;
2727
2728   unsigned Op = getRegForValue(V);
2729   if (Op == 0)
2730     return false;
2731
2732   unsigned ResultReg = createResultReg(&AArch64::FPR64RegClass);
2733   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::FCVTDSr),
2734           ResultReg).addReg(Op);
2735   updateValueMap(I, ResultReg);
2736   return true;
2737 }
2738
2739 bool AArch64FastISel::selectFPTrunc(const Instruction *I) {
2740   Value *V = I->getOperand(0);
2741   if (!I->getType()->isFloatTy() || !V->getType()->isDoubleTy())
2742     return false;
2743
2744   unsigned Op = getRegForValue(V);
2745   if (Op == 0)
2746     return false;
2747
2748   unsigned ResultReg = createResultReg(&AArch64::FPR32RegClass);
2749   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::FCVTSDr),
2750           ResultReg).addReg(Op);
2751   updateValueMap(I, ResultReg);
2752   return true;
2753 }
2754
2755 // FPToUI and FPToSI
2756 bool AArch64FastISel::selectFPToInt(const Instruction *I, bool Signed) {
2757   MVT DestVT;
2758   if (!isTypeLegal(I->getType(), DestVT) || DestVT.isVector())
2759     return false;
2760
2761   unsigned SrcReg = getRegForValue(I->getOperand(0));
2762   if (SrcReg == 0)
2763     return false;
2764
2765   EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType(), true);
2766   if (SrcVT == MVT::f128)
2767     return false;
2768
2769   unsigned Opc;
2770   if (SrcVT == MVT::f64) {
2771     if (Signed)
2772       Opc = (DestVT == MVT::i32) ? AArch64::FCVTZSUWDr : AArch64::FCVTZSUXDr;
2773     else
2774       Opc = (DestVT == MVT::i32) ? AArch64::FCVTZUUWDr : AArch64::FCVTZUUXDr;
2775   } else {
2776     if (Signed)
2777       Opc = (DestVT == MVT::i32) ? AArch64::FCVTZSUWSr : AArch64::FCVTZSUXSr;
2778     else
2779       Opc = (DestVT == MVT::i32) ? AArch64::FCVTZUUWSr : AArch64::FCVTZUUXSr;
2780   }
2781   unsigned ResultReg = createResultReg(
2782       DestVT == MVT::i32 ? &AArch64::GPR32RegClass : &AArch64::GPR64RegClass);
2783   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
2784       .addReg(SrcReg);
2785   updateValueMap(I, ResultReg);
2786   return true;
2787 }
2788
2789 bool AArch64FastISel::selectIntToFP(const Instruction *I, bool Signed) {
2790   MVT DestVT;
2791   if (!isTypeLegal(I->getType(), DestVT) || DestVT.isVector())
2792     return false;
2793   assert ((DestVT == MVT::f32 || DestVT == MVT::f64) &&
2794           "Unexpected value type.");
2795
2796   unsigned SrcReg = getRegForValue(I->getOperand(0));
2797   if (!SrcReg)
2798     return false;
2799   bool SrcIsKill = hasTrivialKill(I->getOperand(0));
2800
2801   EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType(), true);
2802
2803   // Handle sign-extension.
2804   if (SrcVT == MVT::i16 || SrcVT == MVT::i8 || SrcVT == MVT::i1) {
2805     SrcReg =
2806         emitIntExt(SrcVT.getSimpleVT(), SrcReg, MVT::i32, /*isZExt*/ !Signed);
2807     if (!SrcReg)
2808       return false;
2809     SrcIsKill = true;
2810   }
2811
2812   unsigned Opc;
2813   if (SrcVT == MVT::i64) {
2814     if (Signed)
2815       Opc = (DestVT == MVT::f32) ? AArch64::SCVTFUXSri : AArch64::SCVTFUXDri;
2816     else
2817       Opc = (DestVT == MVT::f32) ? AArch64::UCVTFUXSri : AArch64::UCVTFUXDri;
2818   } else {
2819     if (Signed)
2820       Opc = (DestVT == MVT::f32) ? AArch64::SCVTFUWSri : AArch64::SCVTFUWDri;
2821     else
2822       Opc = (DestVT == MVT::f32) ? AArch64::UCVTFUWSri : AArch64::UCVTFUWDri;
2823   }
2824
2825   unsigned ResultReg = fastEmitInst_r(Opc, TLI.getRegClassFor(DestVT), SrcReg,
2826                                       SrcIsKill);
2827   updateValueMap(I, ResultReg);
2828   return true;
2829 }
2830
2831 bool AArch64FastISel::fastLowerArguments() {
2832   if (!FuncInfo.CanLowerReturn)
2833     return false;
2834
2835   const Function *F = FuncInfo.Fn;
2836   if (F->isVarArg())
2837     return false;
2838
2839   CallingConv::ID CC = F->getCallingConv();
2840   if (CC != CallingConv::C)
2841     return false;
2842
2843   // Only handle simple cases of up to 8 GPR and FPR each.
2844   unsigned GPRCnt = 0;
2845   unsigned FPRCnt = 0;
2846   unsigned Idx = 0;
2847   for (auto const &Arg : F->args()) {
2848     // The first argument is at index 1.
2849     ++Idx;
2850     if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) ||
2851         F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
2852         F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
2853         F->getAttributes().hasAttribute(Idx, Attribute::Nest))
2854       return false;
2855
2856     Type *ArgTy = Arg.getType();
2857     if (ArgTy->isStructTy() || ArgTy->isArrayTy())
2858       return false;
2859
2860     EVT ArgVT = TLI.getValueType(DL, ArgTy);
2861     if (!ArgVT.isSimple())
2862       return false;
2863
2864     MVT VT = ArgVT.getSimpleVT().SimpleTy;
2865     if (VT.isFloatingPoint() && !Subtarget->hasFPARMv8())
2866       return false;
2867
2868     if (VT.isVector() &&
2869         (!Subtarget->hasNEON() || !Subtarget->isLittleEndian()))
2870       return false;
2871
2872     if (VT >= MVT::i1 && VT <= MVT::i64)
2873       ++GPRCnt;
2874     else if ((VT >= MVT::f16 && VT <= MVT::f64) || VT.is64BitVector() ||
2875              VT.is128BitVector())
2876       ++FPRCnt;
2877     else
2878       return false;
2879
2880     if (GPRCnt > 8 || FPRCnt > 8)
2881       return false;
2882   }
2883
2884   static const MCPhysReg Registers[6][8] = {
2885     { AArch64::W0, AArch64::W1, AArch64::W2, AArch64::W3, AArch64::W4,
2886       AArch64::W5, AArch64::W6, AArch64::W7 },
2887     { AArch64::X0, AArch64::X1, AArch64::X2, AArch64::X3, AArch64::X4,
2888       AArch64::X5, AArch64::X6, AArch64::X7 },
2889     { AArch64::H0, AArch64::H1, AArch64::H2, AArch64::H3, AArch64::H4,
2890       AArch64::H5, AArch64::H6, AArch64::H7 },
2891     { AArch64::S0, AArch64::S1, AArch64::S2, AArch64::S3, AArch64::S4,
2892       AArch64::S5, AArch64::S6, AArch64::S7 },
2893     { AArch64::D0, AArch64::D1, AArch64::D2, AArch64::D3, AArch64::D4,
2894       AArch64::D5, AArch64::D6, AArch64::D7 },
2895     { AArch64::Q0, AArch64::Q1, AArch64::Q2, AArch64::Q3, AArch64::Q4,
2896       AArch64::Q5, AArch64::Q6, AArch64::Q7 }
2897   };
2898
2899   unsigned GPRIdx = 0;
2900   unsigned FPRIdx = 0;
2901   for (auto const &Arg : F->args()) {
2902     MVT VT = TLI.getSimpleValueType(DL, Arg.getType());
2903     unsigned SrcReg;
2904     const TargetRegisterClass *RC;
2905     if (VT >= MVT::i1 && VT <= MVT::i32) {
2906       SrcReg = Registers[0][GPRIdx++];
2907       RC = &AArch64::GPR32RegClass;
2908       VT = MVT::i32;
2909     } else if (VT == MVT::i64) {
2910       SrcReg = Registers[1][GPRIdx++];
2911       RC = &AArch64::GPR64RegClass;
2912     } else if (VT == MVT::f16) {
2913       SrcReg = Registers[2][FPRIdx++];
2914       RC = &AArch64::FPR16RegClass;
2915     } else if (VT ==  MVT::f32) {
2916       SrcReg = Registers[3][FPRIdx++];
2917       RC = &AArch64::FPR32RegClass;
2918     } else if ((VT == MVT::f64) || VT.is64BitVector()) {
2919       SrcReg = Registers[4][FPRIdx++];
2920       RC = &AArch64::FPR64RegClass;
2921     } else if (VT.is128BitVector()) {
2922       SrcReg = Registers[5][FPRIdx++];
2923       RC = &AArch64::FPR128RegClass;
2924     } else
2925       llvm_unreachable("Unexpected value type.");
2926
2927     unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
2928     // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
2929     // Without this, EmitLiveInCopies may eliminate the livein if its only
2930     // use is a bitcast (which isn't turned into an instruction).
2931     unsigned ResultReg = createResultReg(RC);
2932     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2933             TII.get(TargetOpcode::COPY), ResultReg)
2934         .addReg(DstReg, getKillRegState(true));
2935     updateValueMap(&Arg, ResultReg);
2936   }
2937   return true;
2938 }
2939
2940 bool AArch64FastISel::processCallArgs(CallLoweringInfo &CLI,
2941                                       SmallVectorImpl<MVT> &OutVTs,
2942                                       unsigned &NumBytes) {
2943   CallingConv::ID CC = CLI.CallConv;
2944   SmallVector<CCValAssign, 16> ArgLocs;
2945   CCState CCInfo(CC, false, *FuncInfo.MF, ArgLocs, *Context);
2946   CCInfo.AnalyzeCallOperands(OutVTs, CLI.OutFlags, CCAssignFnForCall(CC));
2947
2948   // Get a count of how many bytes are to be pushed on the stack.
2949   NumBytes = CCInfo.getNextStackOffset();
2950
2951   // Issue CALLSEQ_START
2952   unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
2953   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown))
2954     .addImm(NumBytes);
2955
2956   // Process the args.
2957   for (CCValAssign &VA : ArgLocs) {
2958     const Value *ArgVal = CLI.OutVals[VA.getValNo()];
2959     MVT ArgVT = OutVTs[VA.getValNo()];
2960
2961     unsigned ArgReg = getRegForValue(ArgVal);
2962     if (!ArgReg)
2963       return false;
2964
2965     // Handle arg promotion: SExt, ZExt, AExt.
2966     switch (VA.getLocInfo()) {
2967     case CCValAssign::Full:
2968       break;
2969     case CCValAssign::SExt: {
2970       MVT DestVT = VA.getLocVT();
2971       MVT SrcVT = ArgVT;
2972       ArgReg = emitIntExt(SrcVT, ArgReg, DestVT, /*isZExt=*/false);
2973       if (!ArgReg)
2974         return false;
2975       break;
2976     }
2977     case CCValAssign::AExt:
2978     // Intentional fall-through.
2979     case CCValAssign::ZExt: {
2980       MVT DestVT = VA.getLocVT();
2981       MVT SrcVT = ArgVT;
2982       ArgReg = emitIntExt(SrcVT, ArgReg, DestVT, /*isZExt=*/true);
2983       if (!ArgReg)
2984         return false;
2985       break;
2986     }
2987     default:
2988       llvm_unreachable("Unknown arg promotion!");
2989     }
2990
2991     // Now copy/store arg to correct locations.
2992     if (VA.isRegLoc() && !VA.needsCustom()) {
2993       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2994               TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg);
2995       CLI.OutRegs.push_back(VA.getLocReg());
2996     } else if (VA.needsCustom()) {
2997       // FIXME: Handle custom args.
2998       return false;
2999     } else {
3000       assert(VA.isMemLoc() && "Assuming store on stack.");
3001
3002       // Don't emit stores for undef values.
3003       if (isa<UndefValue>(ArgVal))
3004         continue;
3005
3006       // Need to store on the stack.
3007       unsigned ArgSize = (ArgVT.getSizeInBits() + 7) / 8;
3008
3009       unsigned BEAlign = 0;
3010       if (ArgSize < 8 && !Subtarget->isLittleEndian())
3011         BEAlign = 8 - ArgSize;
3012
3013       Address Addr;
3014       Addr.setKind(Address::RegBase);
3015       Addr.setReg(AArch64::SP);
3016       Addr.setOffset(VA.getLocMemOffset() + BEAlign);
3017
3018       unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType());
3019       MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
3020         MachinePointerInfo::getStack(Addr.getOffset()),
3021         MachineMemOperand::MOStore, ArgVT.getStoreSize(), Alignment);
3022
3023       if (!emitStore(ArgVT, ArgReg, Addr, MMO))
3024         return false;
3025     }
3026   }
3027   return true;
3028 }
3029
3030 bool AArch64FastISel::finishCall(CallLoweringInfo &CLI, MVT RetVT,
3031                                  unsigned NumBytes) {
3032   CallingConv::ID CC = CLI.CallConv;
3033
3034   // Issue CALLSEQ_END
3035   unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
3036   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp))
3037     .addImm(NumBytes).addImm(0);
3038
3039   // Now the return value.
3040   if (RetVT != MVT::isVoid) {
3041     SmallVector<CCValAssign, 16> RVLocs;
3042     CCState CCInfo(CC, false, *FuncInfo.MF, RVLocs, *Context);
3043     CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC));
3044
3045     // Only handle a single return value.
3046     if (RVLocs.size() != 1)
3047       return false;
3048
3049     // Copy all of the result registers out of their specified physreg.
3050     MVT CopyVT = RVLocs[0].getValVT();
3051
3052     // TODO: Handle big-endian results
3053     if (CopyVT.isVector() && !Subtarget->isLittleEndian())
3054       return false;
3055
3056     unsigned ResultReg = createResultReg(TLI.getRegClassFor(CopyVT));
3057     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3058             TII.get(TargetOpcode::COPY), ResultReg)
3059         .addReg(RVLocs[0].getLocReg());
3060     CLI.InRegs.push_back(RVLocs[0].getLocReg());
3061
3062     CLI.ResultReg = ResultReg;
3063     CLI.NumResultRegs = 1;
3064   }
3065
3066   return true;
3067 }
3068
3069 bool AArch64FastISel::fastLowerCall(CallLoweringInfo &CLI) {
3070   CallingConv::ID CC  = CLI.CallConv;
3071   bool IsTailCall     = CLI.IsTailCall;
3072   bool IsVarArg       = CLI.IsVarArg;
3073   const Value *Callee = CLI.Callee;
3074   MCSymbol *Symbol = CLI.Symbol;
3075
3076   if (!Callee && !Symbol)
3077     return false;
3078
3079   // Allow SelectionDAG isel to handle tail calls.
3080   if (IsTailCall)
3081     return false;
3082
3083   CodeModel::Model CM = TM.getCodeModel();
3084   // Only support the small and large code model.
3085   if (CM != CodeModel::Small && CM != CodeModel::Large)
3086     return false;
3087
3088   // FIXME: Add large code model support for ELF.
3089   if (CM == CodeModel::Large && !Subtarget->isTargetMachO())
3090     return false;
3091
3092   // Let SDISel handle vararg functions.
3093   if (IsVarArg)
3094     return false;
3095
3096   // FIXME: Only handle *simple* calls for now.
3097   MVT RetVT;
3098   if (CLI.RetTy->isVoidTy())
3099     RetVT = MVT::isVoid;
3100   else if (!isTypeLegal(CLI.RetTy, RetVT))
3101     return false;
3102
3103   for (auto Flag : CLI.OutFlags)
3104     if (Flag.isInReg() || Flag.isSRet() || Flag.isNest() || Flag.isByVal())
3105       return false;
3106
3107   // Set up the argument vectors.
3108   SmallVector<MVT, 16> OutVTs;
3109   OutVTs.reserve(CLI.OutVals.size());
3110
3111   for (auto *Val : CLI.OutVals) {
3112     MVT VT;
3113     if (!isTypeLegal(Val->getType(), VT) &&
3114         !(VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16))
3115       return false;
3116
3117     // We don't handle vector parameters yet.
3118     if (VT.isVector() || VT.getSizeInBits() > 64)
3119       return false;
3120
3121     OutVTs.push_back(VT);
3122   }
3123
3124   Address Addr;
3125   if (Callee && !computeCallAddress(Callee, Addr))
3126     return false;
3127
3128   // Handle the arguments now that we've gotten them.
3129   unsigned NumBytes;
3130   if (!processCallArgs(CLI, OutVTs, NumBytes))
3131     return false;
3132
3133   // Issue the call.
3134   MachineInstrBuilder MIB;
3135   if (CM == CodeModel::Small) {
3136     const MCInstrDesc &II = TII.get(Addr.getReg() ? AArch64::BLR : AArch64::BL);
3137     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II);
3138     if (Symbol)
3139       MIB.addSym(Symbol, 0);
3140     else if (Addr.getGlobalValue())
3141       MIB.addGlobalAddress(Addr.getGlobalValue(), 0, 0);
3142     else if (Addr.getReg()) {
3143       unsigned Reg = constrainOperandRegClass(II, Addr.getReg(), 0);
3144       MIB.addReg(Reg);
3145     } else
3146       return false;
3147   } else {
3148     unsigned CallReg = 0;
3149     if (Symbol) {
3150       unsigned ADRPReg = createResultReg(&AArch64::GPR64commonRegClass);
3151       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::ADRP),
3152               ADRPReg)
3153           .addSym(Symbol, AArch64II::MO_GOT | AArch64II::MO_PAGE);
3154
3155       CallReg = createResultReg(&AArch64::GPR64RegClass);
3156       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3157               TII.get(AArch64::LDRXui), CallReg)
3158           .addReg(ADRPReg)
3159           .addSym(Symbol,
3160                   AArch64II::MO_GOT | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3161     } else if (Addr.getGlobalValue())
3162       CallReg = materializeGV(Addr.getGlobalValue());
3163     else if (Addr.getReg())
3164       CallReg = Addr.getReg();
3165
3166     if (!CallReg)
3167       return false;
3168
3169     const MCInstrDesc &II = TII.get(AArch64::BLR);
3170     CallReg = constrainOperandRegClass(II, CallReg, 0);
3171     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addReg(CallReg);
3172   }
3173
3174   // Add implicit physical register uses to the call.
3175   for (auto Reg : CLI.OutRegs)
3176     MIB.addReg(Reg, RegState::Implicit);
3177
3178   // Add a register mask with the call-preserved registers.
3179   // Proper defs for return values will be added by setPhysRegsDeadExcept().
3180   MIB.addRegMask(TRI.getCallPreservedMask(*FuncInfo.MF, CC));
3181
3182   CLI.Call = MIB;
3183
3184   // Finish off the call including any return values.
3185   return finishCall(CLI, RetVT, NumBytes);
3186 }
3187
3188 bool AArch64FastISel::isMemCpySmall(uint64_t Len, unsigned Alignment) {
3189   if (Alignment)
3190     return Len / Alignment <= 4;
3191   else
3192     return Len < 32;
3193 }
3194
3195 bool AArch64FastISel::tryEmitSmallMemCpy(Address Dest, Address Src,
3196                                          uint64_t Len, unsigned Alignment) {
3197   // Make sure we don't bloat code by inlining very large memcpy's.
3198   if (!isMemCpySmall(Len, Alignment))
3199     return false;
3200
3201   int64_t UnscaledOffset = 0;
3202   Address OrigDest = Dest;
3203   Address OrigSrc = Src;
3204
3205   while (Len) {
3206     MVT VT;
3207     if (!Alignment || Alignment >= 8) {
3208       if (Len >= 8)
3209         VT = MVT::i64;
3210       else if (Len >= 4)
3211         VT = MVT::i32;
3212       else if (Len >= 2)
3213         VT = MVT::i16;
3214       else {
3215         VT = MVT::i8;
3216       }
3217     } else {
3218       // Bound based on alignment.
3219       if (Len >= 4 && Alignment == 4)
3220         VT = MVT::i32;
3221       else if (Len >= 2 && Alignment == 2)
3222         VT = MVT::i16;
3223       else {
3224         VT = MVT::i8;
3225       }
3226     }
3227
3228     unsigned ResultReg = emitLoad(VT, VT, Src);
3229     if (!ResultReg)
3230       return false;
3231
3232     if (!emitStore(VT, ResultReg, Dest))
3233       return false;
3234
3235     int64_t Size = VT.getSizeInBits() / 8;
3236     Len -= Size;
3237     UnscaledOffset += Size;
3238
3239     // We need to recompute the unscaled offset for each iteration.
3240     Dest.setOffset(OrigDest.getOffset() + UnscaledOffset);
3241     Src.setOffset(OrigSrc.getOffset() + UnscaledOffset);
3242   }
3243
3244   return true;
3245 }
3246
3247 /// \brief Check if it is possible to fold the condition from the XALU intrinsic
3248 /// into the user. The condition code will only be updated on success.
3249 bool AArch64FastISel::foldXALUIntrinsic(AArch64CC::CondCode &CC,
3250                                         const Instruction *I,
3251                                         const Value *Cond) {
3252   if (!isa<ExtractValueInst>(Cond))
3253     return false;
3254
3255   const auto *EV = cast<ExtractValueInst>(Cond);
3256   if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
3257     return false;
3258
3259   const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
3260   MVT RetVT;
3261   const Function *Callee = II->getCalledFunction();
3262   Type *RetTy =
3263   cast<StructType>(Callee->getReturnType())->getTypeAtIndex(0U);
3264   if (!isTypeLegal(RetTy, RetVT))
3265     return false;
3266
3267   if (RetVT != MVT::i32 && RetVT != MVT::i64)
3268     return false;
3269
3270   const Value *LHS = II->getArgOperand(0);
3271   const Value *RHS = II->getArgOperand(1);
3272
3273   // Canonicalize immediate to the RHS.
3274   if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) &&
3275       isCommutativeIntrinsic(II))
3276     std::swap(LHS, RHS);
3277
3278   // Simplify multiplies.
3279   Intrinsic::ID IID = II->getIntrinsicID();
3280   switch (IID) {
3281   default:
3282     break;
3283   case Intrinsic::smul_with_overflow:
3284     if (const auto *C = dyn_cast<ConstantInt>(RHS))
3285       if (C->getValue() == 2)
3286         IID = Intrinsic::sadd_with_overflow;
3287     break;
3288   case Intrinsic::umul_with_overflow:
3289     if (const auto *C = dyn_cast<ConstantInt>(RHS))
3290       if (C->getValue() == 2)
3291         IID = Intrinsic::uadd_with_overflow;
3292     break;
3293   }
3294
3295   AArch64CC::CondCode TmpCC;
3296   switch (IID) {
3297   default:
3298     return false;
3299   case Intrinsic::sadd_with_overflow:
3300   case Intrinsic::ssub_with_overflow:
3301     TmpCC = AArch64CC::VS;
3302     break;
3303   case Intrinsic::uadd_with_overflow:
3304     TmpCC = AArch64CC::HS;
3305     break;
3306   case Intrinsic::usub_with_overflow:
3307     TmpCC = AArch64CC::LO;
3308     break;
3309   case Intrinsic::smul_with_overflow:
3310   case Intrinsic::umul_with_overflow:
3311     TmpCC = AArch64CC::NE;
3312     break;
3313   }
3314
3315   // Check if both instructions are in the same basic block.
3316   if (!isValueAvailable(II))
3317     return false;
3318
3319   // Make sure nothing is in the way
3320   BasicBlock::const_iterator Start = I;
3321   BasicBlock::const_iterator End = II;
3322   for (auto Itr = std::prev(Start); Itr != End; --Itr) {
3323     // We only expect extractvalue instructions between the intrinsic and the
3324     // instruction to be selected.
3325     if (!isa<ExtractValueInst>(Itr))
3326       return false;
3327
3328     // Check that the extractvalue operand comes from the intrinsic.
3329     const auto *EVI = cast<ExtractValueInst>(Itr);
3330     if (EVI->getAggregateOperand() != II)
3331       return false;
3332   }
3333
3334   CC = TmpCC;
3335   return true;
3336 }
3337
3338 bool AArch64FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
3339   // FIXME: Handle more intrinsics.
3340   switch (II->getIntrinsicID()) {
3341   default: return false;
3342   case Intrinsic::frameaddress: {
3343     MachineFrameInfo *MFI = FuncInfo.MF->getFrameInfo();
3344     MFI->setFrameAddressIsTaken(true);
3345
3346     const AArch64RegisterInfo *RegInfo =
3347         static_cast<const AArch64RegisterInfo *>(Subtarget->getRegisterInfo());
3348     unsigned FramePtr = RegInfo->getFrameRegister(*(FuncInfo.MF));
3349     unsigned SrcReg = MRI.createVirtualRegister(&AArch64::GPR64RegClass);
3350     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3351             TII.get(TargetOpcode::COPY), SrcReg).addReg(FramePtr);
3352     // Recursively load frame address
3353     // ldr x0, [fp]
3354     // ldr x0, [x0]
3355     // ldr x0, [x0]
3356     // ...
3357     unsigned DestReg;
3358     unsigned Depth = cast<ConstantInt>(II->getOperand(0))->getZExtValue();
3359     while (Depth--) {
3360       DestReg = fastEmitInst_ri(AArch64::LDRXui, &AArch64::GPR64RegClass,
3361                                 SrcReg, /*IsKill=*/true, 0);
3362       assert(DestReg && "Unexpected LDR instruction emission failure.");
3363       SrcReg = DestReg;
3364     }
3365
3366     updateValueMap(II, SrcReg);
3367     return true;
3368   }
3369   case Intrinsic::memcpy:
3370   case Intrinsic::memmove: {
3371     const auto *MTI = cast<MemTransferInst>(II);
3372     // Don't handle volatile.
3373     if (MTI->isVolatile())
3374       return false;
3375
3376     // Disable inlining for memmove before calls to ComputeAddress.  Otherwise,
3377     // we would emit dead code because we don't currently handle memmoves.
3378     bool IsMemCpy = (II->getIntrinsicID() == Intrinsic::memcpy);
3379     if (isa<ConstantInt>(MTI->getLength()) && IsMemCpy) {
3380       // Small memcpy's are common enough that we want to do them without a call
3381       // if possible.
3382       uint64_t Len = cast<ConstantInt>(MTI->getLength())->getZExtValue();
3383       unsigned Alignment = MTI->getAlignment();
3384       if (isMemCpySmall(Len, Alignment)) {
3385         Address Dest, Src;
3386         if (!computeAddress(MTI->getRawDest(), Dest) ||
3387             !computeAddress(MTI->getRawSource(), Src))
3388           return false;
3389         if (tryEmitSmallMemCpy(Dest, Src, Len, Alignment))
3390           return true;
3391       }
3392     }
3393
3394     if (!MTI->getLength()->getType()->isIntegerTy(64))
3395       return false;
3396
3397     if (MTI->getSourceAddressSpace() > 255 || MTI->getDestAddressSpace() > 255)
3398       // Fast instruction selection doesn't support the special
3399       // address spaces.
3400       return false;
3401
3402     const char *IntrMemName = isa<MemCpyInst>(II) ? "memcpy" : "memmove";
3403     return lowerCallTo(II, IntrMemName, II->getNumArgOperands() - 2);
3404   }
3405   case Intrinsic::memset: {
3406     const MemSetInst *MSI = cast<MemSetInst>(II);
3407     // Don't handle volatile.
3408     if (MSI->isVolatile())
3409       return false;
3410
3411     if (!MSI->getLength()->getType()->isIntegerTy(64))
3412       return false;
3413
3414     if (MSI->getDestAddressSpace() > 255)
3415       // Fast instruction selection doesn't support the special
3416       // address spaces.
3417       return false;
3418
3419     return lowerCallTo(II, "memset", II->getNumArgOperands() - 2);
3420   }
3421   case Intrinsic::sin:
3422   case Intrinsic::cos:
3423   case Intrinsic::pow: {
3424     MVT RetVT;
3425     if (!isTypeLegal(II->getType(), RetVT))
3426       return false;
3427
3428     if (RetVT != MVT::f32 && RetVT != MVT::f64)
3429       return false;
3430
3431     static const RTLIB::Libcall LibCallTable[3][2] = {
3432       { RTLIB::SIN_F32, RTLIB::SIN_F64 },
3433       { RTLIB::COS_F32, RTLIB::COS_F64 },
3434       { RTLIB::POW_F32, RTLIB::POW_F64 }
3435     };
3436     RTLIB::Libcall LC;
3437     bool Is64Bit = RetVT == MVT::f64;
3438     switch (II->getIntrinsicID()) {
3439     default:
3440       llvm_unreachable("Unexpected intrinsic.");
3441     case Intrinsic::sin:
3442       LC = LibCallTable[0][Is64Bit];
3443       break;
3444     case Intrinsic::cos:
3445       LC = LibCallTable[1][Is64Bit];
3446       break;
3447     case Intrinsic::pow:
3448       LC = LibCallTable[2][Is64Bit];
3449       break;
3450     }
3451
3452     ArgListTy Args;
3453     Args.reserve(II->getNumArgOperands());
3454
3455     // Populate the argument list.
3456     for (auto &Arg : II->arg_operands()) {
3457       ArgListEntry Entry;
3458       Entry.Val = Arg;
3459       Entry.Ty = Arg->getType();
3460       Args.push_back(Entry);
3461     }
3462
3463     CallLoweringInfo CLI;
3464     MCContext &Ctx = MF->getContext();
3465     CLI.setCallee(DL, Ctx, TLI.getLibcallCallingConv(LC), II->getType(),
3466                   TLI.getLibcallName(LC), std::move(Args));
3467     if (!lowerCallTo(CLI))
3468       return false;
3469     updateValueMap(II, CLI.ResultReg);
3470     return true;
3471   }
3472   case Intrinsic::fabs: {
3473     MVT VT;
3474     if (!isTypeLegal(II->getType(), VT))
3475       return false;
3476
3477     unsigned Opc;
3478     switch (VT.SimpleTy) {
3479     default:
3480       return false;
3481     case MVT::f32:
3482       Opc = AArch64::FABSSr;
3483       break;
3484     case MVT::f64:
3485       Opc = AArch64::FABSDr;
3486       break;
3487     }
3488     unsigned SrcReg = getRegForValue(II->getOperand(0));
3489     if (!SrcReg)
3490       return false;
3491     bool SrcRegIsKill = hasTrivialKill(II->getOperand(0));
3492     unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
3493     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
3494       .addReg(SrcReg, getKillRegState(SrcRegIsKill));
3495     updateValueMap(II, ResultReg);
3496     return true;
3497   }
3498   case Intrinsic::trap: {
3499     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AArch64::BRK))
3500         .addImm(1);
3501     return true;
3502   }
3503   case Intrinsic::sqrt: {
3504     Type *RetTy = II->getCalledFunction()->getReturnType();
3505
3506     MVT VT;
3507     if (!isTypeLegal(RetTy, VT))
3508       return false;
3509
3510     unsigned Op0Reg = getRegForValue(II->getOperand(0));
3511     if (!Op0Reg)
3512       return false;
3513     bool Op0IsKill = hasTrivialKill(II->getOperand(0));
3514
3515     unsigned ResultReg = fastEmit_r(VT, VT, ISD::FSQRT, Op0Reg, Op0IsKill);
3516     if (!ResultReg)
3517       return false;
3518
3519     updateValueMap(II, ResultReg);
3520     return true;
3521   }
3522   case Intrinsic::sadd_with_overflow:
3523   case Intrinsic::uadd_with_overflow:
3524   case Intrinsic::ssub_with_overflow:
3525   case Intrinsic::usub_with_overflow:
3526   case Intrinsic::smul_with_overflow:
3527   case Intrinsic::umul_with_overflow: {
3528     // This implements the basic lowering of the xalu with overflow intrinsics.
3529     const Function *Callee = II->getCalledFunction();
3530     auto *Ty = cast<StructType>(Callee->getReturnType());
3531     Type *RetTy = Ty->getTypeAtIndex(0U);
3532
3533     MVT VT;
3534     if (!isTypeLegal(RetTy, VT))
3535       return false;
3536
3537     if (VT != MVT::i32 && VT != MVT::i64)
3538       return false;
3539
3540     const Value *LHS = II->getArgOperand(0);
3541     const Value *RHS = II->getArgOperand(1);
3542     // Canonicalize immediate to the RHS.
3543     if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) &&
3544         isCommutativeIntrinsic(II))
3545       std::swap(LHS, RHS);
3546
3547     // Simplify multiplies.
3548     Intrinsic::ID IID = II->getIntrinsicID();
3549     switch (IID) {
3550     default:
3551       break;
3552     case Intrinsic::smul_with_overflow:
3553       if (const auto *C = dyn_cast<ConstantInt>(RHS))
3554         if (C->getValue() == 2) {
3555           IID = Intrinsic::sadd_with_overflow;
3556           RHS = LHS;
3557         }
3558       break;
3559     case Intrinsic::umul_with_overflow:
3560       if (const auto *C = dyn_cast<ConstantInt>(RHS))
3561         if (C->getValue() == 2) {
3562           IID = Intrinsic::uadd_with_overflow;
3563           RHS = LHS;
3564         }
3565       break;
3566     }
3567
3568     unsigned ResultReg1 = 0, ResultReg2 = 0, MulReg = 0;
3569     AArch64CC::CondCode CC = AArch64CC::Invalid;
3570     switch (IID) {
3571     default: llvm_unreachable("Unexpected intrinsic!");
3572     case Intrinsic::sadd_with_overflow:
3573       ResultReg1 = emitAdd(VT, LHS, RHS, /*SetFlags=*/true);
3574       CC = AArch64CC::VS;
3575       break;
3576     case Intrinsic::uadd_with_overflow:
3577       ResultReg1 = emitAdd(VT, LHS, RHS, /*SetFlags=*/true);
3578       CC = AArch64CC::HS;
3579       break;
3580     case Intrinsic::ssub_with_overflow:
3581       ResultReg1 = emitSub(VT, LHS, RHS, /*SetFlags=*/true);
3582       CC = AArch64CC::VS;
3583       break;
3584     case Intrinsic::usub_with_overflow:
3585       ResultReg1 = emitSub(VT, LHS, RHS, /*SetFlags=*/true);
3586       CC = AArch64CC::LO;
3587       break;
3588     case Intrinsic::smul_with_overflow: {
3589       CC = AArch64CC::NE;
3590       unsigned LHSReg = getRegForValue(LHS);
3591       if (!LHSReg)
3592         return false;
3593       bool LHSIsKill = hasTrivialKill(LHS);
3594
3595       unsigned RHSReg = getRegForValue(RHS);
3596       if (!RHSReg)
3597         return false;
3598       bool RHSIsKill = hasTrivialKill(RHS);
3599
3600       if (VT == MVT::i32) {
3601         MulReg = emitSMULL_rr(MVT::i64, LHSReg, LHSIsKill, RHSReg, RHSIsKill);
3602         unsigned ShiftReg = emitLSR_ri(MVT::i64, MVT::i64, MulReg,
3603                                        /*IsKill=*/false, 32);
3604         MulReg = fastEmitInst_extractsubreg(VT, MulReg, /*IsKill=*/true,
3605                                             AArch64::sub_32);
3606         ShiftReg = fastEmitInst_extractsubreg(VT, ShiftReg, /*IsKill=*/true,
3607                                               AArch64::sub_32);
3608         emitSubs_rs(VT, ShiftReg, /*IsKill=*/true, MulReg, /*IsKill=*/false,
3609                     AArch64_AM::ASR, 31, /*WantResult=*/false);
3610       } else {
3611         assert(VT == MVT::i64 && "Unexpected value type.");
3612         // LHSReg and RHSReg cannot be killed by this Mul, since they are
3613         // reused in the next instruction.
3614         MulReg = emitMul_rr(VT, LHSReg, /*IsKill=*/false, RHSReg,
3615                             /*IsKill=*/false);
3616         unsigned SMULHReg = fastEmit_rr(VT, VT, ISD::MULHS, LHSReg, LHSIsKill,
3617                                         RHSReg, RHSIsKill);
3618         emitSubs_rs(VT, SMULHReg, /*IsKill=*/true, MulReg, /*IsKill=*/false,
3619                     AArch64_AM::ASR, 63, /*WantResult=*/false);
3620       }
3621       break;
3622     }
3623     case Intrinsic::umul_with_overflow: {
3624       CC = AArch64CC::NE;
3625       unsigned LHSReg = getRegForValue(LHS);
3626       if (!LHSReg)
3627         return false;
3628       bool LHSIsKill = hasTrivialKill(LHS);
3629
3630       unsigned RHSReg = getRegForValue(RHS);
3631       if (!RHSReg)
3632         return false;
3633       bool RHSIsKill = hasTrivialKill(RHS);
3634
3635       if (VT == MVT::i32) {
3636         MulReg = emitUMULL_rr(MVT::i64, LHSReg, LHSIsKill, RHSReg, RHSIsKill);
3637         emitSubs_rs(MVT::i64, AArch64::XZR, /*IsKill=*/true, MulReg,
3638                     /*IsKill=*/false, AArch64_AM::LSR, 32,
3639                     /*WantResult=*/false);
3640         MulReg = fastEmitInst_extractsubreg(VT, MulReg, /*IsKill=*/true,
3641                                             AArch64::sub_32);
3642       } else {
3643         assert(VT == MVT::i64 && "Unexpected value type.");
3644         // LHSReg and RHSReg cannot be killed by this Mul, since they are
3645         // reused in the next instruction.
3646         MulReg = emitMul_rr(VT, LHSReg, /*IsKill=*/false, RHSReg,
3647                             /*IsKill=*/false);
3648         unsigned UMULHReg = fastEmit_rr(VT, VT, ISD::MULHU, LHSReg, LHSIsKill,
3649                                         RHSReg, RHSIsKill);
3650         emitSubs_rr(VT, AArch64::XZR, /*IsKill=*/true, UMULHReg,
3651                     /*IsKill=*/false, /*WantResult=*/false);
3652       }
3653       break;
3654     }
3655     }
3656
3657     if (MulReg) {
3658       ResultReg1 = createResultReg(TLI.getRegClassFor(VT));
3659       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3660               TII.get(TargetOpcode::COPY), ResultReg1).addReg(MulReg);
3661     }
3662
3663     ResultReg2 = fastEmitInst_rri(AArch64::CSINCWr, &AArch64::GPR32RegClass,
3664                                   AArch64::WZR, /*IsKill=*/true, AArch64::WZR,
3665                                   /*IsKill=*/true, getInvertedCondCode(CC));
3666     (void)ResultReg2;
3667     assert((ResultReg1 + 1) == ResultReg2 &&
3668            "Nonconsecutive result registers.");
3669     updateValueMap(II, ResultReg1, 2);
3670     return true;
3671   }
3672   }
3673   return false;
3674 }
3675
3676 bool AArch64FastISel::selectRet(const Instruction *I) {
3677   const ReturnInst *Ret = cast<ReturnInst>(I);
3678   const Function &F = *I->getParent()->getParent();
3679
3680   if (!FuncInfo.CanLowerReturn)
3681     return false;
3682
3683   if (F.isVarArg())
3684     return false;
3685
3686   // Build a list of return value registers.
3687   SmallVector<unsigned, 4> RetRegs;
3688
3689   if (Ret->getNumOperands() > 0) {
3690     CallingConv::ID CC = F.getCallingConv();
3691     SmallVector<ISD::OutputArg, 4> Outs;
3692     GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI, DL);
3693
3694     // Analyze operands of the call, assigning locations to each operand.
3695     SmallVector<CCValAssign, 16> ValLocs;
3696     CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, I->getContext());
3697     CCAssignFn *RetCC = CC == CallingConv::WebKit_JS ? RetCC_AArch64_WebKit_JS
3698                                                      : RetCC_AArch64_AAPCS;
3699     CCInfo.AnalyzeReturn(Outs, RetCC);
3700
3701     // Only handle a single return value for now.
3702     if (ValLocs.size() != 1)
3703       return false;
3704
3705     CCValAssign &VA = ValLocs[0];
3706     const Value *RV = Ret->getOperand(0);
3707
3708     // Don't bother handling odd stuff for now.
3709     if ((VA.getLocInfo() != CCValAssign::Full) &&
3710         (VA.getLocInfo() != CCValAssign::BCvt))
3711       return false;
3712
3713     // Only handle register returns for now.
3714     if (!VA.isRegLoc())
3715       return false;
3716
3717     unsigned Reg = getRegForValue(RV);
3718     if (Reg == 0)
3719       return false;
3720
3721     unsigned SrcReg = Reg + VA.getValNo();
3722     unsigned DestReg = VA.getLocReg();
3723     // Avoid a cross-class copy. This is very unlikely.
3724     if (!MRI.getRegClass(SrcReg)->contains(DestReg))
3725       return false;
3726
3727     EVT RVEVT = TLI.getValueType(DL, RV->getType());
3728     if (!RVEVT.isSimple())
3729       return false;
3730
3731     // Vectors (of > 1 lane) in big endian need tricky handling.
3732     if (RVEVT.isVector() && RVEVT.getVectorNumElements() > 1 &&
3733         !Subtarget->isLittleEndian())
3734       return false;
3735
3736     MVT RVVT = RVEVT.getSimpleVT();
3737     if (RVVT == MVT::f128)
3738       return false;
3739
3740     MVT DestVT = VA.getValVT();
3741     // Special handling for extended integers.
3742     if (RVVT != DestVT) {
3743       if (RVVT != MVT::i1 && RVVT != MVT::i8 && RVVT != MVT::i16)
3744         return false;
3745
3746       if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt())
3747         return false;
3748
3749       bool IsZExt = Outs[0].Flags.isZExt();
3750       SrcReg = emitIntExt(RVVT, SrcReg, DestVT, IsZExt);
3751       if (SrcReg == 0)
3752         return false;
3753     }
3754
3755     // Make the copy.
3756     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3757             TII.get(TargetOpcode::COPY), DestReg).addReg(SrcReg);
3758
3759     // Add register to return instruction.
3760     RetRegs.push_back(VA.getLocReg());
3761   }
3762
3763   MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3764                                     TII.get(AArch64::RET_ReallyLR));
3765   for (unsigned RetReg : RetRegs)
3766     MIB.addReg(RetReg, RegState::Implicit);
3767   return true;
3768 }
3769
3770 bool AArch64FastISel::selectTrunc(const Instruction *I) {
3771   Type *DestTy = I->getType();
3772   Value *Op = I->getOperand(0);
3773   Type *SrcTy = Op->getType();
3774
3775   EVT SrcEVT = TLI.getValueType(DL, SrcTy, true);
3776   EVT DestEVT = TLI.getValueType(DL, DestTy, true);
3777   if (!SrcEVT.isSimple())
3778     return false;
3779   if (!DestEVT.isSimple())
3780     return false;
3781
3782   MVT SrcVT = SrcEVT.getSimpleVT();
3783   MVT DestVT = DestEVT.getSimpleVT();
3784
3785   if (SrcVT != MVT::i64 && SrcVT != MVT::i32 && SrcVT != MVT::i16 &&
3786       SrcVT != MVT::i8)
3787     return false;
3788   if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8 &&
3789       DestVT != MVT::i1)
3790     return false;
3791
3792   unsigned SrcReg = getRegForValue(Op);
3793   if (!SrcReg)
3794     return false;
3795   bool SrcIsKill = hasTrivialKill(Op);
3796
3797   // If we're truncating from i64/i32 to a smaller non-legal type then generate
3798   // an AND.
3799   uint64_t Mask = 0;
3800   switch (DestVT.SimpleTy) {
3801   default:
3802     // Trunc i64 to i32 is handled by the target-independent fast-isel.
3803     return false;
3804   case MVT::i1:
3805     Mask = 0x1;
3806     break;
3807   case MVT::i8:
3808     Mask = 0xff;
3809     break;
3810   case MVT::i16:
3811     Mask = 0xffff;
3812     break;
3813   }
3814   if (SrcVT == MVT::i64) {
3815     // Issue an extract_subreg to get the lower 32-bits.
3816     SrcReg = fastEmitInst_extractsubreg(MVT::i32, SrcReg, SrcIsKill,
3817                                         AArch64::sub_32);
3818     SrcIsKill = true;
3819   }
3820
3821   // Create the AND instruction which performs the actual truncation.
3822   unsigned ResultReg = emitAnd_ri(MVT::i32, SrcReg, SrcIsKill, Mask);
3823   assert(ResultReg && "Unexpected AND instruction emission failure.");
3824
3825   updateValueMap(I, ResultReg);
3826   return true;
3827 }
3828
3829 unsigned AArch64FastISel::emiti1Ext(unsigned SrcReg, MVT DestVT, bool IsZExt) {
3830   assert((DestVT == MVT::i8 || DestVT == MVT::i16 || DestVT == MVT::i32 ||
3831           DestVT == MVT::i64) &&
3832          "Unexpected value type.");
3833   // Handle i8 and i16 as i32.
3834   if (DestVT == MVT::i8 || DestVT == MVT::i16)
3835     DestVT = MVT::i32;
3836
3837   if (IsZExt) {
3838     unsigned ResultReg = emitAnd_ri(MVT::i32, SrcReg, /*TODO:IsKill=*/false, 1);
3839     assert(ResultReg && "Unexpected AND instruction emission failure.");
3840     if (DestVT == MVT::i64) {
3841       // We're ZExt i1 to i64.  The ANDWri Wd, Ws, #1 implicitly clears the
3842       // upper 32 bits.  Emit a SUBREG_TO_REG to extend from Wd to Xd.
3843       unsigned Reg64 = MRI.createVirtualRegister(&AArch64::GPR64RegClass);
3844       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3845               TII.get(AArch64::SUBREG_TO_REG), Reg64)
3846           .addImm(0)
3847           .addReg(ResultReg)
3848           .addImm(AArch64::sub_32);
3849       ResultReg = Reg64;
3850     }
3851     return ResultReg;
3852   } else {
3853     if (DestVT == MVT::i64) {
3854       // FIXME: We're SExt i1 to i64.
3855       return 0;
3856     }
3857     return fastEmitInst_rii(AArch64::SBFMWri, &AArch64::GPR32RegClass, SrcReg,
3858                             /*TODO:IsKill=*/false, 0, 0);
3859   }
3860 }
3861
3862 unsigned AArch64FastISel::emitMul_rr(MVT RetVT, unsigned Op0, bool Op0IsKill,
3863                                       unsigned Op1, bool Op1IsKill) {
3864   unsigned Opc, ZReg;
3865   switch (RetVT.SimpleTy) {
3866   default: return 0;
3867   case MVT::i8:
3868   case MVT::i16:
3869   case MVT::i32:
3870     RetVT = MVT::i32;
3871     Opc = AArch64::MADDWrrr; ZReg = AArch64::WZR; break;
3872   case MVT::i64:
3873     Opc = AArch64::MADDXrrr; ZReg = AArch64::XZR; break;
3874   }
3875
3876   const TargetRegisterClass *RC =
3877       (RetVT == MVT::i64) ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
3878   return fastEmitInst_rrr(Opc, RC, Op0, Op0IsKill, Op1, Op1IsKill,
3879                           /*IsKill=*/ZReg, true);
3880 }
3881
3882 unsigned AArch64FastISel::emitSMULL_rr(MVT RetVT, unsigned Op0, bool Op0IsKill,
3883                                         unsigned Op1, bool Op1IsKill) {
3884   if (RetVT != MVT::i64)
3885     return 0;
3886
3887   return fastEmitInst_rrr(AArch64::SMADDLrrr, &AArch64::GPR64RegClass,
3888                           Op0, Op0IsKill, Op1, Op1IsKill,
3889                           AArch64::XZR, /*IsKill=*/true);
3890 }
3891
3892 unsigned AArch64FastISel::emitUMULL_rr(MVT RetVT, unsigned Op0, bool Op0IsKill,
3893                                         unsigned Op1, bool Op1IsKill) {
3894   if (RetVT != MVT::i64)
3895     return 0;
3896
3897   return fastEmitInst_rrr(AArch64::UMADDLrrr, &AArch64::GPR64RegClass,
3898                           Op0, Op0IsKill, Op1, Op1IsKill,
3899                           AArch64::XZR, /*IsKill=*/true);
3900 }
3901
3902 unsigned AArch64FastISel::emitLSL_rr(MVT RetVT, unsigned Op0Reg, bool Op0IsKill,
3903                                      unsigned Op1Reg, bool Op1IsKill) {
3904   unsigned Opc = 0;
3905   bool NeedTrunc = false;
3906   uint64_t Mask = 0;
3907   switch (RetVT.SimpleTy) {
3908   default: return 0;
3909   case MVT::i8:  Opc = AArch64::LSLVWr; NeedTrunc = true; Mask = 0xff;   break;
3910   case MVT::i16: Opc = AArch64::LSLVWr; NeedTrunc = true; Mask = 0xffff; break;
3911   case MVT::i32: Opc = AArch64::LSLVWr;                                  break;
3912   case MVT::i64: Opc = AArch64::LSLVXr;                                  break;
3913   }
3914
3915   const TargetRegisterClass *RC =
3916       (RetVT == MVT::i64) ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
3917   if (NeedTrunc) {
3918     Op1Reg = emitAnd_ri(MVT::i32, Op1Reg, Op1IsKill, Mask);
3919     Op1IsKill = true;
3920   }
3921   unsigned ResultReg = fastEmitInst_rr(Opc, RC, Op0Reg, Op0IsKill, Op1Reg,
3922                                        Op1IsKill);
3923   if (NeedTrunc)
3924     ResultReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, Mask);
3925   return ResultReg;
3926 }
3927
3928 unsigned AArch64FastISel::emitLSL_ri(MVT RetVT, MVT SrcVT, unsigned Op0,
3929                                      bool Op0IsKill, uint64_t Shift,
3930                                      bool IsZExt) {
3931   assert(RetVT.SimpleTy >= SrcVT.SimpleTy &&
3932          "Unexpected source/return type pair.");
3933   assert((SrcVT == MVT::i1 || SrcVT == MVT::i8 || SrcVT == MVT::i16 ||
3934           SrcVT == MVT::i32 || SrcVT == MVT::i64) &&
3935          "Unexpected source value type.");
3936   assert((RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32 ||
3937           RetVT == MVT::i64) && "Unexpected return value type.");
3938
3939   bool Is64Bit = (RetVT == MVT::i64);
3940   unsigned RegSize = Is64Bit ? 64 : 32;
3941   unsigned DstBits = RetVT.getSizeInBits();
3942   unsigned SrcBits = SrcVT.getSizeInBits();
3943   const TargetRegisterClass *RC =
3944       Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
3945
3946   // Just emit a copy for "zero" shifts.
3947   if (Shift == 0) {
3948     if (RetVT == SrcVT) {
3949       unsigned ResultReg = createResultReg(RC);
3950       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3951               TII.get(TargetOpcode::COPY), ResultReg)
3952           .addReg(Op0, getKillRegState(Op0IsKill));
3953       return ResultReg;
3954     } else
3955       return emitIntExt(SrcVT, Op0, RetVT, IsZExt);
3956   }
3957
3958   // Don't deal with undefined shifts.
3959   if (Shift >= DstBits)
3960     return 0;
3961
3962   // For immediate shifts we can fold the zero-/sign-extension into the shift.
3963   // {S|U}BFM Wd, Wn, #r, #s
3964   // Wd<32+s-r,32-r> = Wn<s:0> when r > s
3965
3966   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
3967   // %2 = shl i16 %1, 4
3968   // Wd<32+7-28,32-28> = Wn<7:0> <- clamp s to 7
3969   // 0b1111_1111_1111_1111__1111_1010_1010_0000 sext
3970   // 0b0000_0000_0000_0000__0000_0101_0101_0000 sext | zext
3971   // 0b0000_0000_0000_0000__0000_1010_1010_0000 zext
3972
3973   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
3974   // %2 = shl i16 %1, 8
3975   // Wd<32+7-24,32-24> = Wn<7:0>
3976   // 0b1111_1111_1111_1111__1010_1010_0000_0000 sext
3977   // 0b0000_0000_0000_0000__0101_0101_0000_0000 sext | zext
3978   // 0b0000_0000_0000_0000__1010_1010_0000_0000 zext
3979
3980   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
3981   // %2 = shl i16 %1, 12
3982   // Wd<32+3-20,32-20> = Wn<3:0>
3983   // 0b1111_1111_1111_1111__1010_0000_0000_0000 sext
3984   // 0b0000_0000_0000_0000__0101_0000_0000_0000 sext | zext
3985   // 0b0000_0000_0000_0000__1010_0000_0000_0000 zext
3986
3987   unsigned ImmR = RegSize - Shift;
3988   // Limit the width to the length of the source type.
3989   unsigned ImmS = std::min<unsigned>(SrcBits - 1, DstBits - 1 - Shift);
3990   static const unsigned OpcTable[2][2] = {
3991     {AArch64::SBFMWri, AArch64::SBFMXri},
3992     {AArch64::UBFMWri, AArch64::UBFMXri}
3993   };
3994   unsigned Opc = OpcTable[IsZExt][Is64Bit];
3995   if (SrcVT.SimpleTy <= MVT::i32 && RetVT == MVT::i64) {
3996     unsigned TmpReg = MRI.createVirtualRegister(RC);
3997     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3998             TII.get(AArch64::SUBREG_TO_REG), TmpReg)
3999         .addImm(0)
4000         .addReg(Op0, getKillRegState(Op0IsKill))
4001         .addImm(AArch64::sub_32);
4002     Op0 = TmpReg;
4003     Op0IsKill = true;
4004   }
4005   return fastEmitInst_rii(Opc, RC, Op0, Op0IsKill, ImmR, ImmS);
4006 }
4007
4008 unsigned AArch64FastISel::emitLSR_rr(MVT RetVT, unsigned Op0Reg, bool Op0IsKill,
4009                                      unsigned Op1Reg, bool Op1IsKill) {
4010   unsigned Opc = 0;
4011   bool NeedTrunc = false;
4012   uint64_t Mask = 0;
4013   switch (RetVT.SimpleTy) {
4014   default: return 0;
4015   case MVT::i8:  Opc = AArch64::LSRVWr; NeedTrunc = true; Mask = 0xff;   break;
4016   case MVT::i16: Opc = AArch64::LSRVWr; NeedTrunc = true; Mask = 0xffff; break;
4017   case MVT::i32: Opc = AArch64::LSRVWr; break;
4018   case MVT::i64: Opc = AArch64::LSRVXr; break;
4019   }
4020
4021   const TargetRegisterClass *RC =
4022       (RetVT == MVT::i64) ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
4023   if (NeedTrunc) {
4024     Op0Reg = emitAnd_ri(MVT::i32, Op0Reg, Op0IsKill, Mask);
4025     Op1Reg = emitAnd_ri(MVT::i32, Op1Reg, Op1IsKill, Mask);
4026     Op0IsKill = Op1IsKill = true;
4027   }
4028   unsigned ResultReg = fastEmitInst_rr(Opc, RC, Op0Reg, Op0IsKill, Op1Reg,
4029                                        Op1IsKill);
4030   if (NeedTrunc)
4031     ResultReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, Mask);
4032   return ResultReg;
4033 }
4034
4035 unsigned AArch64FastISel::emitLSR_ri(MVT RetVT, MVT SrcVT, unsigned Op0,
4036                                      bool Op0IsKill, uint64_t Shift,
4037                                      bool IsZExt) {
4038   assert(RetVT.SimpleTy >= SrcVT.SimpleTy &&
4039          "Unexpected source/return type pair.");
4040   assert((SrcVT == MVT::i1 || SrcVT == MVT::i8 || SrcVT == MVT::i16 ||
4041           SrcVT == MVT::i32 || SrcVT == MVT::i64) &&
4042          "Unexpected source value type.");
4043   assert((RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32 ||
4044           RetVT == MVT::i64) && "Unexpected return value type.");
4045
4046   bool Is64Bit = (RetVT == MVT::i64);
4047   unsigned RegSize = Is64Bit ? 64 : 32;
4048   unsigned DstBits = RetVT.getSizeInBits();
4049   unsigned SrcBits = SrcVT.getSizeInBits();
4050   const TargetRegisterClass *RC =
4051       Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
4052
4053   // Just emit a copy for "zero" shifts.
4054   if (Shift == 0) {
4055     if (RetVT == SrcVT) {
4056       unsigned ResultReg = createResultReg(RC);
4057       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4058               TII.get(TargetOpcode::COPY), ResultReg)
4059       .addReg(Op0, getKillRegState(Op0IsKill));
4060       return ResultReg;
4061     } else
4062       return emitIntExt(SrcVT, Op0, RetVT, IsZExt);
4063   }
4064
4065   // Don't deal with undefined shifts.
4066   if (Shift >= DstBits)
4067     return 0;
4068
4069   // For immediate shifts we can fold the zero-/sign-extension into the shift.
4070   // {S|U}BFM Wd, Wn, #r, #s
4071   // Wd<s-r:0> = Wn<s:r> when r <= s
4072
4073   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
4074   // %2 = lshr i16 %1, 4
4075   // Wd<7-4:0> = Wn<7:4>
4076   // 0b0000_0000_0000_0000__0000_1111_1111_1010 sext
4077   // 0b0000_0000_0000_0000__0000_0000_0000_0101 sext | zext
4078   // 0b0000_0000_0000_0000__0000_0000_0000_1010 zext
4079
4080   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
4081   // %2 = lshr i16 %1, 8
4082   // Wd<7-7,0> = Wn<7:7>
4083   // 0b0000_0000_0000_0000__0000_0000_1111_1111 sext
4084   // 0b0000_0000_0000_0000__0000_0000_0000_0000 sext
4085   // 0b0000_0000_0000_0000__0000_0000_0000_0000 zext
4086
4087   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
4088   // %2 = lshr i16 %1, 12
4089   // Wd<7-7,0> = Wn<7:7> <- clamp r to 7
4090   // 0b0000_0000_0000_0000__0000_0000_0000_1111 sext
4091   // 0b0000_0000_0000_0000__0000_0000_0000_0000 sext
4092   // 0b0000_0000_0000_0000__0000_0000_0000_0000 zext
4093
4094   if (Shift >= SrcBits && IsZExt)
4095     return materializeInt(ConstantInt::get(*Context, APInt(RegSize, 0)), RetVT);
4096
4097   // It is not possible to fold a sign-extend into the LShr instruction. In this
4098   // case emit a sign-extend.
4099   if (!IsZExt) {
4100     Op0 = emitIntExt(SrcVT, Op0, RetVT, IsZExt);
4101     if (!Op0)
4102       return 0;
4103     Op0IsKill = true;
4104     SrcVT = RetVT;
4105     SrcBits = SrcVT.getSizeInBits();
4106     IsZExt = true;
4107   }
4108
4109   unsigned ImmR = std::min<unsigned>(SrcBits - 1, Shift);
4110   unsigned ImmS = SrcBits - 1;
4111   static const unsigned OpcTable[2][2] = {
4112     {AArch64::SBFMWri, AArch64::SBFMXri},
4113     {AArch64::UBFMWri, AArch64::UBFMXri}
4114   };
4115   unsigned Opc = OpcTable[IsZExt][Is64Bit];
4116   if (SrcVT.SimpleTy <= MVT::i32 && RetVT == MVT::i64) {
4117     unsigned TmpReg = MRI.createVirtualRegister(RC);
4118     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4119             TII.get(AArch64::SUBREG_TO_REG), TmpReg)
4120         .addImm(0)
4121         .addReg(Op0, getKillRegState(Op0IsKill))
4122         .addImm(AArch64::sub_32);
4123     Op0 = TmpReg;
4124     Op0IsKill = true;
4125   }
4126   return fastEmitInst_rii(Opc, RC, Op0, Op0IsKill, ImmR, ImmS);
4127 }
4128
4129 unsigned AArch64FastISel::emitASR_rr(MVT RetVT, unsigned Op0Reg, bool Op0IsKill,
4130                                      unsigned Op1Reg, bool Op1IsKill) {
4131   unsigned Opc = 0;
4132   bool NeedTrunc = false;
4133   uint64_t Mask = 0;
4134   switch (RetVT.SimpleTy) {
4135   default: return 0;
4136   case MVT::i8:  Opc = AArch64::ASRVWr; NeedTrunc = true; Mask = 0xff;   break;
4137   case MVT::i16: Opc = AArch64::ASRVWr; NeedTrunc = true; Mask = 0xffff; break;
4138   case MVT::i32: Opc = AArch64::ASRVWr;                                  break;
4139   case MVT::i64: Opc = AArch64::ASRVXr;                                  break;
4140   }
4141
4142   const TargetRegisterClass *RC =
4143       (RetVT == MVT::i64) ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
4144   if (NeedTrunc) {
4145     Op0Reg = emitIntExt(RetVT, Op0Reg, MVT::i32, /*IsZExt=*/false);
4146     Op1Reg = emitAnd_ri(MVT::i32, Op1Reg, Op1IsKill, Mask);
4147     Op0IsKill = Op1IsKill = true;
4148   }
4149   unsigned ResultReg = fastEmitInst_rr(Opc, RC, Op0Reg, Op0IsKill, Op1Reg,
4150                                        Op1IsKill);
4151   if (NeedTrunc)
4152     ResultReg = emitAnd_ri(MVT::i32, ResultReg, /*IsKill=*/true, Mask);
4153   return ResultReg;
4154 }
4155
4156 unsigned AArch64FastISel::emitASR_ri(MVT RetVT, MVT SrcVT, unsigned Op0,
4157                                      bool Op0IsKill, uint64_t Shift,
4158                                      bool IsZExt) {
4159   assert(RetVT.SimpleTy >= SrcVT.SimpleTy &&
4160          "Unexpected source/return type pair.");
4161   assert((SrcVT == MVT::i1 || SrcVT == MVT::i8 || SrcVT == MVT::i16 ||
4162           SrcVT == MVT::i32 || SrcVT == MVT::i64) &&
4163          "Unexpected source value type.");
4164   assert((RetVT == MVT::i8 || RetVT == MVT::i16 || RetVT == MVT::i32 ||
4165           RetVT == MVT::i64) && "Unexpected return value type.");
4166
4167   bool Is64Bit = (RetVT == MVT::i64);
4168   unsigned RegSize = Is64Bit ? 64 : 32;
4169   unsigned DstBits = RetVT.getSizeInBits();
4170   unsigned SrcBits = SrcVT.getSizeInBits();
4171   const TargetRegisterClass *RC =
4172       Is64Bit ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
4173
4174   // Just emit a copy for "zero" shifts.
4175   if (Shift == 0) {
4176     if (RetVT == SrcVT) {
4177       unsigned ResultReg = createResultReg(RC);
4178       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4179               TII.get(TargetOpcode::COPY), ResultReg)
4180       .addReg(Op0, getKillRegState(Op0IsKill));
4181       return ResultReg;
4182     } else
4183       return emitIntExt(SrcVT, Op0, RetVT, IsZExt);
4184   }
4185
4186   // Don't deal with undefined shifts.
4187   if (Shift >= DstBits)
4188     return 0;
4189
4190   // For immediate shifts we can fold the zero-/sign-extension into the shift.
4191   // {S|U}BFM Wd, Wn, #r, #s
4192   // Wd<s-r:0> = Wn<s:r> when r <= s
4193
4194   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
4195   // %2 = ashr i16 %1, 4
4196   // Wd<7-4:0> = Wn<7:4>
4197   // 0b1111_1111_1111_1111__1111_1111_1111_1010 sext
4198   // 0b0000_0000_0000_0000__0000_0000_0000_0101 sext | zext
4199   // 0b0000_0000_0000_0000__0000_0000_0000_1010 zext
4200
4201   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
4202   // %2 = ashr i16 %1, 8
4203   // Wd<7-7,0> = Wn<7:7>
4204   // 0b1111_1111_1111_1111__1111_1111_1111_1111 sext
4205   // 0b0000_0000_0000_0000__0000_0000_0000_0000 sext
4206   // 0b0000_0000_0000_0000__0000_0000_0000_0000 zext
4207
4208   // %1 = {s|z}ext i8 {0b1010_1010|0b0101_0101} to i16
4209   // %2 = ashr i16 %1, 12
4210   // Wd<7-7,0> = Wn<7:7> <- clamp r to 7
4211   // 0b1111_1111_1111_1111__1111_1111_1111_1111 sext
4212   // 0b0000_0000_0000_0000__0000_0000_0000_0000 sext
4213   // 0b0000_0000_0000_0000__0000_0000_0000_0000 zext
4214
4215   if (Shift >= SrcBits && IsZExt)
4216     return materializeInt(ConstantInt::get(*Context, APInt(RegSize, 0)), RetVT);
4217
4218   unsigned ImmR = std::min<unsigned>(SrcBits - 1, Shift);
4219   unsigned ImmS = SrcBits - 1;
4220   static const unsigned OpcTable[2][2] = {
4221     {AArch64::SBFMWri, AArch64::SBFMXri},
4222     {AArch64::UBFMWri, AArch64::UBFMXri}
4223   };
4224   unsigned Opc = OpcTable[IsZExt][Is64Bit];
4225   if (SrcVT.SimpleTy <= MVT::i32 && RetVT == MVT::i64) {
4226     unsigned TmpReg = MRI.createVirtualRegister(RC);
4227     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4228             TII.get(AArch64::SUBREG_TO_REG), TmpReg)
4229         .addImm(0)
4230         .addReg(Op0, getKillRegState(Op0IsKill))
4231         .addImm(AArch64::sub_32);
4232     Op0 = TmpReg;
4233     Op0IsKill = true;
4234   }
4235   return fastEmitInst_rii(Opc, RC, Op0, Op0IsKill, ImmR, ImmS);
4236 }
4237
4238 unsigned AArch64FastISel::emitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT,
4239                                      bool IsZExt) {
4240   assert(DestVT != MVT::i1 && "ZeroExt/SignExt an i1?");
4241
4242   // FastISel does not have plumbing to deal with extensions where the SrcVT or
4243   // DestVT are odd things, so test to make sure that they are both types we can
4244   // handle (i1/i8/i16/i32 for SrcVT and i8/i16/i32/i64 for DestVT), otherwise
4245   // bail out to SelectionDAG.
4246   if (((DestVT != MVT::i8) && (DestVT != MVT::i16) &&
4247        (DestVT != MVT::i32) && (DestVT != MVT::i64)) ||
4248       ((SrcVT !=  MVT::i1) && (SrcVT !=  MVT::i8) &&
4249        (SrcVT !=  MVT::i16) && (SrcVT !=  MVT::i32)))
4250     return 0;
4251
4252   unsigned Opc;
4253   unsigned Imm = 0;
4254
4255   switch (SrcVT.SimpleTy) {
4256   default:
4257     return 0;
4258   case MVT::i1:
4259     return emiti1Ext(SrcReg, DestVT, IsZExt);
4260   case MVT::i8:
4261     if (DestVT == MVT::i64)
4262       Opc = IsZExt ? AArch64::UBFMXri : AArch64::SBFMXri;
4263     else
4264       Opc = IsZExt ? AArch64::UBFMWri : AArch64::SBFMWri;
4265     Imm = 7;
4266     break;
4267   case MVT::i16:
4268     if (DestVT == MVT::i64)
4269       Opc = IsZExt ? AArch64::UBFMXri : AArch64::SBFMXri;
4270     else
4271       Opc = IsZExt ? AArch64::UBFMWri : AArch64::SBFMWri;
4272     Imm = 15;
4273     break;
4274   case MVT::i32:
4275     assert(DestVT == MVT::i64 && "IntExt i32 to i32?!?");
4276     Opc = IsZExt ? AArch64::UBFMXri : AArch64::SBFMXri;
4277     Imm = 31;
4278     break;
4279   }
4280
4281   // Handle i8 and i16 as i32.
4282   if (DestVT == MVT::i8 || DestVT == MVT::i16)
4283     DestVT = MVT::i32;
4284   else if (DestVT == MVT::i64) {
4285     unsigned Src64 = MRI.createVirtualRegister(&AArch64::GPR64RegClass);
4286     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4287             TII.get(AArch64::SUBREG_TO_REG), Src64)
4288         .addImm(0)
4289         .addReg(SrcReg)
4290         .addImm(AArch64::sub_32);
4291     SrcReg = Src64;
4292   }
4293
4294   const TargetRegisterClass *RC =
4295       (DestVT == MVT::i64) ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
4296   return fastEmitInst_rii(Opc, RC, SrcReg, /*TODO:IsKill=*/false, 0, Imm);
4297 }
4298
4299 static bool isZExtLoad(const MachineInstr *LI) {
4300   switch (LI->getOpcode()) {
4301   default:
4302     return false;
4303   case AArch64::LDURBBi:
4304   case AArch64::LDURHHi:
4305   case AArch64::LDURWi:
4306   case AArch64::LDRBBui:
4307   case AArch64::LDRHHui:
4308   case AArch64::LDRWui:
4309   case AArch64::LDRBBroX:
4310   case AArch64::LDRHHroX:
4311   case AArch64::LDRWroX:
4312   case AArch64::LDRBBroW:
4313   case AArch64::LDRHHroW:
4314   case AArch64::LDRWroW:
4315     return true;
4316   }
4317 }
4318
4319 static bool isSExtLoad(const MachineInstr *LI) {
4320   switch (LI->getOpcode()) {
4321   default:
4322     return false;
4323   case AArch64::LDURSBWi:
4324   case AArch64::LDURSHWi:
4325   case AArch64::LDURSBXi:
4326   case AArch64::LDURSHXi:
4327   case AArch64::LDURSWi:
4328   case AArch64::LDRSBWui:
4329   case AArch64::LDRSHWui:
4330   case AArch64::LDRSBXui:
4331   case AArch64::LDRSHXui:
4332   case AArch64::LDRSWui:
4333   case AArch64::LDRSBWroX:
4334   case AArch64::LDRSHWroX:
4335   case AArch64::LDRSBXroX:
4336   case AArch64::LDRSHXroX:
4337   case AArch64::LDRSWroX:
4338   case AArch64::LDRSBWroW:
4339   case AArch64::LDRSHWroW:
4340   case AArch64::LDRSBXroW:
4341   case AArch64::LDRSHXroW:
4342   case AArch64::LDRSWroW:
4343     return true;
4344   }
4345 }
4346
4347 bool AArch64FastISel::optimizeIntExtLoad(const Instruction *I, MVT RetVT,
4348                                          MVT SrcVT) {
4349   const auto *LI = dyn_cast<LoadInst>(I->getOperand(0));
4350   if (!LI || !LI->hasOneUse())
4351     return false;
4352
4353   // Check if the load instruction has already been selected.
4354   unsigned Reg = lookUpRegForValue(LI);
4355   if (!Reg)
4356     return false;
4357
4358   MachineInstr *MI = MRI.getUniqueVRegDef(Reg);
4359   if (!MI)
4360     return false;
4361
4362   // Check if the correct load instruction has been emitted - SelectionDAG might
4363   // have emitted a zero-extending load, but we need a sign-extending load.
4364   bool IsZExt = isa<ZExtInst>(I);
4365   const auto *LoadMI = MI;
4366   if (LoadMI->getOpcode() == TargetOpcode::COPY &&
4367       LoadMI->getOperand(1).getSubReg() == AArch64::sub_32) {
4368     unsigned LoadReg = MI->getOperand(1).getReg();
4369     LoadMI = MRI.getUniqueVRegDef(LoadReg);
4370     assert(LoadMI && "Expected valid instruction");
4371   }
4372   if (!(IsZExt && isZExtLoad(LoadMI)) && !(!IsZExt && isSExtLoad(LoadMI)))
4373     return false;
4374
4375   // Nothing to be done.
4376   if (RetVT != MVT::i64 || SrcVT > MVT::i32) {
4377     updateValueMap(I, Reg);
4378     return true;
4379   }
4380
4381   if (IsZExt) {
4382     unsigned Reg64 = createResultReg(&AArch64::GPR64RegClass);
4383     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4384             TII.get(AArch64::SUBREG_TO_REG), Reg64)
4385         .addImm(0)
4386         .addReg(Reg, getKillRegState(true))
4387         .addImm(AArch64::sub_32);
4388     Reg = Reg64;
4389   } else {
4390     assert((MI->getOpcode() == TargetOpcode::COPY &&
4391             MI->getOperand(1).getSubReg() == AArch64::sub_32) &&
4392            "Expected copy instruction");
4393     Reg = MI->getOperand(1).getReg();
4394     MI->eraseFromParent();
4395   }
4396   updateValueMap(I, Reg);
4397   return true;
4398 }
4399
4400 bool AArch64FastISel::selectIntExt(const Instruction *I) {
4401   assert((isa<ZExtInst>(I) || isa<SExtInst>(I)) &&
4402          "Unexpected integer extend instruction.");
4403   MVT RetVT;
4404   MVT SrcVT;
4405   if (!isTypeSupported(I->getType(), RetVT))
4406     return false;
4407
4408   if (!isTypeSupported(I->getOperand(0)->getType(), SrcVT))
4409     return false;
4410
4411   // Try to optimize already sign-/zero-extended values from load instructions.
4412   if (optimizeIntExtLoad(I, RetVT, SrcVT))
4413     return true;
4414
4415   unsigned SrcReg = getRegForValue(I->getOperand(0));
4416   if (!SrcReg)
4417     return false;
4418   bool SrcIsKill = hasTrivialKill(I->getOperand(0));
4419
4420   // Try to optimize already sign-/zero-extended values from function arguments.
4421   bool IsZExt = isa<ZExtInst>(I);
4422   if (const auto *Arg = dyn_cast<Argument>(I->getOperand(0))) {
4423     if ((IsZExt && Arg->hasZExtAttr()) || (!IsZExt && Arg->hasSExtAttr())) {
4424       if (RetVT == MVT::i64 && SrcVT != MVT::i64) {
4425         unsigned ResultReg = createResultReg(&AArch64::GPR64RegClass);
4426         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
4427                 TII.get(AArch64::SUBREG_TO_REG), ResultReg)
4428             .addImm(0)
4429             .addReg(SrcReg, getKillRegState(SrcIsKill))
4430             .addImm(AArch64::sub_32);
4431         SrcReg = ResultReg;
4432       }
4433       // Conservatively clear all kill flags from all uses, because we are
4434       // replacing a sign-/zero-extend instruction at IR level with a nop at MI
4435       // level. The result of the instruction at IR level might have been
4436       // trivially dead, which is now not longer true.
4437       unsigned UseReg = lookUpRegForValue(I);
4438       if (UseReg)
4439         MRI.clearKillFlags(UseReg);
4440
4441       updateValueMap(I, SrcReg);
4442       return true;
4443     }
4444   }
4445
4446   unsigned ResultReg = emitIntExt(SrcVT, SrcReg, RetVT, IsZExt);
4447   if (!ResultReg)
4448     return false;
4449
4450   updateValueMap(I, ResultReg);
4451   return true;
4452 }
4453
4454 bool AArch64FastISel::selectRem(const Instruction *I, unsigned ISDOpcode) {
4455   EVT DestEVT = TLI.getValueType(DL, I->getType(), true);
4456   if (!DestEVT.isSimple())
4457     return false;
4458
4459   MVT DestVT = DestEVT.getSimpleVT();
4460   if (DestVT != MVT::i64 && DestVT != MVT::i32)
4461     return false;
4462
4463   unsigned DivOpc;
4464   bool Is64bit = (DestVT == MVT::i64);
4465   switch (ISDOpcode) {
4466   default:
4467     return false;
4468   case ISD::SREM:
4469     DivOpc = Is64bit ? AArch64::SDIVXr : AArch64::SDIVWr;
4470     break;
4471   case ISD::UREM:
4472     DivOpc = Is64bit ? AArch64::UDIVXr : AArch64::UDIVWr;
4473     break;
4474   }
4475   unsigned MSubOpc = Is64bit ? AArch64::MSUBXrrr : AArch64::MSUBWrrr;
4476   unsigned Src0Reg = getRegForValue(I->getOperand(0));
4477   if (!Src0Reg)
4478     return false;
4479   bool Src0IsKill = hasTrivialKill(I->getOperand(0));
4480
4481   unsigned Src1Reg = getRegForValue(I->getOperand(1));
4482   if (!Src1Reg)
4483     return false;
4484   bool Src1IsKill = hasTrivialKill(I->getOperand(1));
4485
4486   const TargetRegisterClass *RC =
4487       (DestVT == MVT::i64) ? &AArch64::GPR64RegClass : &AArch64::GPR32RegClass;
4488   unsigned QuotReg = fastEmitInst_rr(DivOpc, RC, Src0Reg, /*IsKill=*/false,
4489                                      Src1Reg, /*IsKill=*/false);
4490   assert(QuotReg && "Unexpected DIV instruction emission failure.");
4491   // The remainder is computed as numerator - (quotient * denominator) using the
4492   // MSUB instruction.
4493   unsigned ResultReg = fastEmitInst_rrr(MSubOpc, RC, QuotReg, /*IsKill=*/true,
4494                                         Src1Reg, Src1IsKill, Src0Reg,
4495                                         Src0IsKill);
4496   updateValueMap(I, ResultReg);
4497   return true;
4498 }
4499
4500 bool AArch64FastISel::selectMul(const Instruction *I) {
4501   MVT VT;
4502   if (!isTypeSupported(I->getType(), VT, /*IsVectorAllowed=*/true))
4503     return false;
4504
4505   if (VT.isVector())
4506     return selectBinaryOp(I, ISD::MUL);
4507
4508   const Value *Src0 = I->getOperand(0);
4509   const Value *Src1 = I->getOperand(1);
4510   if (const auto *C = dyn_cast<ConstantInt>(Src0))
4511     if (C->getValue().isPowerOf2())
4512       std::swap(Src0, Src1);
4513
4514   // Try to simplify to a shift instruction.
4515   if (const auto *C = dyn_cast<ConstantInt>(Src1))
4516     if (C->getValue().isPowerOf2()) {
4517       uint64_t ShiftVal = C->getValue().logBase2();
4518       MVT SrcVT = VT;
4519       bool IsZExt = true;
4520       if (const auto *ZExt = dyn_cast<ZExtInst>(Src0)) {
4521         if (!isIntExtFree(ZExt)) {
4522           MVT VT;
4523           if (isValueAvailable(ZExt) && isTypeSupported(ZExt->getSrcTy(), VT)) {
4524             SrcVT = VT;
4525             IsZExt = true;
4526             Src0 = ZExt->getOperand(0);
4527           }
4528         }
4529       } else if (const auto *SExt = dyn_cast<SExtInst>(Src0)) {
4530         if (!isIntExtFree(SExt)) {
4531           MVT VT;
4532           if (isValueAvailable(SExt) && isTypeSupported(SExt->getSrcTy(), VT)) {
4533             SrcVT = VT;
4534             IsZExt = false;
4535             Src0 = SExt->getOperand(0);
4536           }
4537         }
4538       }
4539
4540       unsigned Src0Reg = getRegForValue(Src0);
4541       if (!Src0Reg)
4542         return false;
4543       bool Src0IsKill = hasTrivialKill(Src0);
4544
4545       unsigned ResultReg =
4546           emitLSL_ri(VT, SrcVT, Src0Reg, Src0IsKill, ShiftVal, IsZExt);
4547
4548       if (ResultReg) {
4549         updateValueMap(I, ResultReg);
4550         return true;
4551       }
4552     }
4553
4554   unsigned Src0Reg = getRegForValue(I->getOperand(0));
4555   if (!Src0Reg)
4556     return false;
4557   bool Src0IsKill = hasTrivialKill(I->getOperand(0));
4558
4559   unsigned Src1Reg = getRegForValue(I->getOperand(1));
4560   if (!Src1Reg)
4561     return false;
4562   bool Src1IsKill = hasTrivialKill(I->getOperand(1));
4563
4564   unsigned ResultReg = emitMul_rr(VT, Src0Reg, Src0IsKill, Src1Reg, Src1IsKill);
4565
4566   if (!ResultReg)
4567     return false;
4568
4569   updateValueMap(I, ResultReg);
4570   return true;
4571 }
4572
4573 bool AArch64FastISel::selectShift(const Instruction *I) {
4574   MVT RetVT;
4575   if (!isTypeSupported(I->getType(), RetVT, /*IsVectorAllowed=*/true))
4576     return false;
4577
4578   if (RetVT.isVector())
4579     return selectOperator(I, I->getOpcode());
4580
4581   if (const auto *C = dyn_cast<ConstantInt>(I->getOperand(1))) {
4582     unsigned ResultReg = 0;
4583     uint64_t ShiftVal = C->getZExtValue();
4584     MVT SrcVT = RetVT;
4585     bool IsZExt = I->getOpcode() != Instruction::AShr;
4586     const Value *Op0 = I->getOperand(0);
4587     if (const auto *ZExt = dyn_cast<ZExtInst>(Op0)) {
4588       if (!isIntExtFree(ZExt)) {
4589         MVT TmpVT;
4590         if (isValueAvailable(ZExt) && isTypeSupported(ZExt->getSrcTy(), TmpVT)) {
4591           SrcVT = TmpVT;
4592           IsZExt = true;
4593           Op0 = ZExt->getOperand(0);
4594         }
4595       }
4596     } else if (const auto *SExt = dyn_cast<SExtInst>(Op0)) {
4597       if (!isIntExtFree(SExt)) {
4598         MVT TmpVT;
4599         if (isValueAvailable(SExt) && isTypeSupported(SExt->getSrcTy(), TmpVT)) {
4600           SrcVT = TmpVT;
4601           IsZExt = false;
4602           Op0 = SExt->getOperand(0);
4603         }
4604       }
4605     }
4606
4607     unsigned Op0Reg = getRegForValue(Op0);
4608     if (!Op0Reg)
4609       return false;
4610     bool Op0IsKill = hasTrivialKill(Op0);
4611
4612     switch (I->getOpcode()) {
4613     default: llvm_unreachable("Unexpected instruction.");
4614     case Instruction::Shl:
4615       ResultReg = emitLSL_ri(RetVT, SrcVT, Op0Reg, Op0IsKill, ShiftVal, IsZExt);
4616       break;
4617     case Instruction::AShr:
4618       ResultReg = emitASR_ri(RetVT, SrcVT, Op0Reg, Op0IsKill, ShiftVal, IsZExt);
4619       break;
4620     case Instruction::LShr:
4621       ResultReg = emitLSR_ri(RetVT, SrcVT, Op0Reg, Op0IsKill, ShiftVal, IsZExt);
4622       break;
4623     }
4624     if (!ResultReg)
4625       return false;
4626
4627     updateValueMap(I, ResultReg);
4628     return true;
4629   }
4630
4631   unsigned Op0Reg = getRegForValue(I->getOperand(0));
4632   if (!Op0Reg)
4633     return false;
4634   bool Op0IsKill = hasTrivialKill(I->getOperand(0));
4635
4636   unsigned Op1Reg = getRegForValue(I->getOperand(1));
4637   if (!Op1Reg)
4638     return false;
4639   bool Op1IsKill = hasTrivialKill(I->getOperand(1));
4640
4641   unsigned ResultReg = 0;
4642   switch (I->getOpcode()) {
4643   default: llvm_unreachable("Unexpected instruction.");
4644   case Instruction::Shl:
4645     ResultReg = emitLSL_rr(RetVT, Op0Reg, Op0IsKill, Op1Reg, Op1IsKill);
4646     break;
4647   case Instruction::AShr:
4648     ResultReg = emitASR_rr(RetVT, Op0Reg, Op0IsKill, Op1Reg, Op1IsKill);
4649     break;
4650   case Instruction::LShr:
4651     ResultReg = emitLSR_rr(RetVT, Op0Reg, Op0IsKill, Op1Reg, Op1IsKill);
4652     break;
4653   }
4654
4655   if (!ResultReg)
4656     return false;
4657
4658   updateValueMap(I, ResultReg);
4659   return true;
4660 }
4661
4662 bool AArch64FastISel::selectBitCast(const Instruction *I) {
4663   MVT RetVT, SrcVT;
4664
4665   if (!isTypeLegal(I->getOperand(0)->getType(), SrcVT))
4666     return false;
4667   if (!isTypeLegal(I->getType(), RetVT))
4668     return false;
4669
4670   unsigned Opc;
4671   if (RetVT == MVT::f32 && SrcVT == MVT::i32)
4672     Opc = AArch64::FMOVWSr;
4673   else if (RetVT == MVT::f64 && SrcVT == MVT::i64)
4674     Opc = AArch64::FMOVXDr;
4675   else if (RetVT == MVT::i32 && SrcVT == MVT::f32)
4676     Opc = AArch64::FMOVSWr;
4677   else if (RetVT == MVT::i64 && SrcVT == MVT::f64)
4678     Opc = AArch64::FMOVDXr;
4679   else
4680     return false;
4681
4682   const TargetRegisterClass *RC = nullptr;
4683   switch (RetVT.SimpleTy) {
4684   default: llvm_unreachable("Unexpected value type.");
4685   case MVT::i32: RC = &AArch64::GPR32RegClass; break;
4686   case MVT::i64: RC = &AArch64::GPR64RegClass; break;
4687   case MVT::f32: RC = &AArch64::FPR32RegClass; break;
4688   case MVT::f64: RC = &AArch64::FPR64RegClass; break;
4689   }
4690   unsigned Op0Reg = getRegForValue(I->getOperand(0));
4691   if (!Op0Reg)
4692     return false;
4693   bool Op0IsKill = hasTrivialKill(I->getOperand(0));
4694   unsigned ResultReg = fastEmitInst_r(Opc, RC, Op0Reg, Op0IsKill);
4695
4696   if (!ResultReg)
4697     return false;
4698
4699   updateValueMap(I, ResultReg);
4700   return true;
4701 }
4702
4703 bool AArch64FastISel::selectFRem(const Instruction *I) {
4704   MVT RetVT;
4705   if (!isTypeLegal(I->getType(), RetVT))
4706     return false;
4707
4708   RTLIB::Libcall LC;
4709   switch (RetVT.SimpleTy) {
4710   default:
4711     return false;
4712   case MVT::f32:
4713     LC = RTLIB::REM_F32;
4714     break;
4715   case MVT::f64:
4716     LC = RTLIB::REM_F64;
4717     break;
4718   }
4719
4720   ArgListTy Args;
4721   Args.reserve(I->getNumOperands());
4722
4723   // Populate the argument list.
4724   for (auto &Arg : I->operands()) {
4725     ArgListEntry Entry;
4726     Entry.Val = Arg;
4727     Entry.Ty = Arg->getType();
4728     Args.push_back(Entry);
4729   }
4730
4731   CallLoweringInfo CLI;
4732   MCContext &Ctx = MF->getContext();
4733   CLI.setCallee(DL, Ctx, TLI.getLibcallCallingConv(LC), I->getType(),
4734                 TLI.getLibcallName(LC), std::move(Args));
4735   if (!lowerCallTo(CLI))
4736     return false;
4737   updateValueMap(I, CLI.ResultReg);
4738   return true;
4739 }
4740
4741 bool AArch64FastISel::selectSDiv(const Instruction *I) {
4742   MVT VT;
4743   if (!isTypeLegal(I->getType(), VT))
4744     return false;
4745
4746   if (!isa<ConstantInt>(I->getOperand(1)))
4747     return selectBinaryOp(I, ISD::SDIV);
4748
4749   const APInt &C = cast<ConstantInt>(I->getOperand(1))->getValue();
4750   if ((VT != MVT::i32 && VT != MVT::i64) || !C ||
4751       !(C.isPowerOf2() || (-C).isPowerOf2()))
4752     return selectBinaryOp(I, ISD::SDIV);
4753
4754   unsigned Lg2 = C.countTrailingZeros();
4755   unsigned Src0Reg = getRegForValue(I->getOperand(0));
4756   if (!Src0Reg)
4757     return false;
4758   bool Src0IsKill = hasTrivialKill(I->getOperand(0));
4759
4760   if (cast<BinaryOperator>(I)->isExact()) {
4761     unsigned ResultReg = emitASR_ri(VT, VT, Src0Reg, Src0IsKill, Lg2);
4762     if (!ResultReg)
4763       return false;
4764     updateValueMap(I, ResultReg);
4765     return true;
4766   }
4767
4768   int64_t Pow2MinusOne = (1ULL << Lg2) - 1;
4769   unsigned AddReg = emitAdd_ri_(VT, Src0Reg, /*IsKill=*/false, Pow2MinusOne);
4770   if (!AddReg)
4771     return false;
4772
4773   // (Src0 < 0) ? Pow2 - 1 : 0;
4774   if (!emitICmp_ri(VT, Src0Reg, /*IsKill=*/false, 0))
4775     return false;
4776
4777   unsigned SelectOpc;
4778   const TargetRegisterClass *RC;
4779   if (VT == MVT::i64) {
4780     SelectOpc = AArch64::CSELXr;
4781     RC = &AArch64::GPR64RegClass;
4782   } else {
4783     SelectOpc = AArch64::CSELWr;
4784     RC = &AArch64::GPR32RegClass;
4785   }
4786   unsigned SelectReg =
4787       fastEmitInst_rri(SelectOpc, RC, AddReg, /*IsKill=*/true, Src0Reg,
4788                        Src0IsKill, AArch64CC::LT);
4789   if (!SelectReg)
4790     return false;
4791
4792   // Divide by Pow2 --> ashr. If we're dividing by a negative value we must also
4793   // negate the result.
4794   unsigned ZeroReg = (VT == MVT::i64) ? AArch64::XZR : AArch64::WZR;
4795   unsigned ResultReg;
4796   if (C.isNegative())
4797     ResultReg = emitAddSub_rs(/*UseAdd=*/false, VT, ZeroReg, /*IsKill=*/true,
4798                               SelectReg, /*IsKill=*/true, AArch64_AM::ASR, Lg2);
4799   else
4800     ResultReg = emitASR_ri(VT, VT, SelectReg, /*IsKill=*/true, Lg2);
4801
4802   if (!ResultReg)
4803     return false;
4804
4805   updateValueMap(I, ResultReg);
4806   return true;
4807 }
4808
4809 /// This is mostly a copy of the existing FastISel getRegForGEPIndex code. We
4810 /// have to duplicate it for AArch64, because otherwise we would fail during the
4811 /// sign-extend emission.
4812 std::pair<unsigned, bool> AArch64FastISel::getRegForGEPIndex(const Value *Idx) {
4813   unsigned IdxN = getRegForValue(Idx);
4814   if (IdxN == 0)
4815     // Unhandled operand. Halt "fast" selection and bail.
4816     return std::pair<unsigned, bool>(0, false);
4817
4818   bool IdxNIsKill = hasTrivialKill(Idx);
4819
4820   // If the index is smaller or larger than intptr_t, truncate or extend it.
4821   MVT PtrVT = TLI.getPointerTy(DL);
4822   EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false);
4823   if (IdxVT.bitsLT(PtrVT)) {
4824     IdxN = emitIntExt(IdxVT.getSimpleVT(), IdxN, PtrVT, /*IsZExt=*/false);
4825     IdxNIsKill = true;
4826   } else if (IdxVT.bitsGT(PtrVT))
4827     llvm_unreachable("AArch64 FastISel doesn't support types larger than i64");
4828   return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
4829 }
4830
4831 /// This is mostly a copy of the existing FastISel GEP code, but we have to
4832 /// duplicate it for AArch64, because otherwise we would bail out even for
4833 /// simple cases. This is because the standard fastEmit functions don't cover
4834 /// MUL at all and ADD is lowered very inefficientily.
4835 bool AArch64FastISel::selectGetElementPtr(const Instruction *I) {
4836   unsigned N = getRegForValue(I->getOperand(0));
4837   if (!N)
4838     return false;
4839   bool NIsKill = hasTrivialKill(I->getOperand(0));
4840
4841   // Keep a running tab of the total offset to coalesce multiple N = N + Offset
4842   // into a single N = N + TotalOffset.
4843   uint64_t TotalOffs = 0;
4844   Type *Ty = I->getOperand(0)->getType();
4845   MVT VT = TLI.getPointerTy(DL);
4846   for (auto OI = std::next(I->op_begin()), E = I->op_end(); OI != E; ++OI) {
4847     const Value *Idx = *OI;
4848     if (auto *StTy = dyn_cast<StructType>(Ty)) {
4849       unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
4850       // N = N + Offset
4851       if (Field)
4852         TotalOffs += DL.getStructLayout(StTy)->getElementOffset(Field);
4853       Ty = StTy->getElementType(Field);
4854     } else {
4855       Ty = cast<SequentialType>(Ty)->getElementType();
4856       // If this is a constant subscript, handle it quickly.
4857       if (const auto *CI = dyn_cast<ConstantInt>(Idx)) {
4858         if (CI->isZero())
4859           continue;
4860         // N = N + Offset
4861         TotalOffs +=
4862             DL.getTypeAllocSize(Ty) * cast<ConstantInt>(CI)->getSExtValue();
4863         continue;
4864       }
4865       if (TotalOffs) {
4866         N = emitAdd_ri_(VT, N, NIsKill, TotalOffs);
4867         if (!N)
4868           return false;
4869         NIsKill = true;
4870         TotalOffs = 0;
4871       }
4872
4873       // N = N + Idx * ElementSize;
4874       uint64_t ElementSize = DL.getTypeAllocSize(Ty);
4875       std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx);
4876       unsigned IdxN = Pair.first;
4877       bool IdxNIsKill = Pair.second;
4878       if (!IdxN)
4879         return false;
4880
4881       if (ElementSize != 1) {
4882         unsigned C = fastEmit_i(VT, VT, ISD::Constant, ElementSize);
4883         if (!C)
4884           return false;
4885         IdxN = emitMul_rr(VT, IdxN, IdxNIsKill, C, true);
4886         if (!IdxN)
4887           return false;
4888         IdxNIsKill = true;
4889       }
4890       N = fastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill);
4891       if (!N)
4892         return false;
4893     }
4894   }
4895   if (TotalOffs) {
4896     N = emitAdd_ri_(VT, N, NIsKill, TotalOffs);
4897     if (!N)
4898       return false;
4899   }
4900   updateValueMap(I, N);
4901   return true;
4902 }
4903
4904 bool AArch64FastISel::fastSelectInstruction(const Instruction *I) {
4905   switch (I->getOpcode()) {
4906   default:
4907     break;
4908   case Instruction::Add:
4909   case Instruction::Sub:
4910     return selectAddSub(I);
4911   case Instruction::Mul:
4912     return selectMul(I);
4913   case Instruction::SDiv:
4914     return selectSDiv(I);
4915   case Instruction::SRem:
4916     if (!selectBinaryOp(I, ISD::SREM))
4917       return selectRem(I, ISD::SREM);
4918     return true;
4919   case Instruction::URem:
4920     if (!selectBinaryOp(I, ISD::UREM))
4921       return selectRem(I, ISD::UREM);
4922     return true;
4923   case Instruction::Shl:
4924   case Instruction::LShr:
4925   case Instruction::AShr:
4926     return selectShift(I);
4927   case Instruction::And:
4928   case Instruction::Or:
4929   case Instruction::Xor:
4930     return selectLogicalOp(I);
4931   case Instruction::Br:
4932     return selectBranch(I);
4933   case Instruction::IndirectBr:
4934     return selectIndirectBr(I);
4935   case Instruction::BitCast:
4936     if (!FastISel::selectBitCast(I))
4937       return selectBitCast(I);
4938     return true;
4939   case Instruction::FPToSI:
4940     if (!selectCast(I, ISD::FP_TO_SINT))
4941       return selectFPToInt(I, /*Signed=*/true);
4942     return true;
4943   case Instruction::FPToUI:
4944     return selectFPToInt(I, /*Signed=*/false);
4945   case Instruction::ZExt:
4946   case Instruction::SExt:
4947     return selectIntExt(I);
4948   case Instruction::Trunc:
4949     if (!selectCast(I, ISD::TRUNCATE))
4950       return selectTrunc(I);
4951     return true;
4952   case Instruction::FPExt:
4953     return selectFPExt(I);
4954   case Instruction::FPTrunc:
4955     return selectFPTrunc(I);
4956   case Instruction::SIToFP:
4957     if (!selectCast(I, ISD::SINT_TO_FP))
4958       return selectIntToFP(I, /*Signed=*/true);
4959     return true;
4960   case Instruction::UIToFP:
4961     return selectIntToFP(I, /*Signed=*/false);
4962   case Instruction::Load:
4963     return selectLoad(I);
4964   case Instruction::Store:
4965     return selectStore(I);
4966   case Instruction::FCmp:
4967   case Instruction::ICmp:
4968     return selectCmp(I);
4969   case Instruction::Select:
4970     return selectSelect(I);
4971   case Instruction::Ret:
4972     return selectRet(I);
4973   case Instruction::FRem:
4974     return selectFRem(I);
4975   case Instruction::GetElementPtr:
4976     return selectGetElementPtr(I);
4977   }
4978
4979   // fall-back to target-independent instruction selection.
4980   return selectOperator(I, I->getOpcode());
4981   // Silence warnings.
4982   (void)&CC_AArch64_DarwinPCS_VarArg;
4983 }
4984
4985 namespace llvm {
4986 llvm::FastISel *AArch64::createFastISel(FunctionLoweringInfo &FuncInfo,
4987                                         const TargetLibraryInfo *LibInfo) {
4988   return new AArch64FastISel(FuncInfo, LibInfo);
4989 }
4990 }