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