Revert r218778 while investigating buldbot breakage.
[oota-llvm.git] / lib / Target / X86 / X86FastISel.cpp
1 //===-- X86FastISel.cpp - X86 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 X86-specific support for the FastISel class. Much
11 // of the target-specific code is generated by tablegen in the file
12 // X86GenFastISel.inc, which is #included here.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "X86.h"
17 #include "X86CallingConv.h"
18 #include "X86InstrBuilder.h"
19 #include "X86InstrInfo.h"
20 #include "X86MachineFunctionInfo.h"
21 #include "X86RegisterInfo.h"
22 #include "X86Subtarget.h"
23 #include "X86TargetMachine.h"
24 #include "llvm/Analysis/BranchProbabilityInfo.h"
25 #include "llvm/CodeGen/Analysis.h"
26 #include "llvm/CodeGen/FastISel.h"
27 #include "llvm/CodeGen/FunctionLoweringInfo.h"
28 #include "llvm/CodeGen/MachineConstantPool.h"
29 #include "llvm/CodeGen/MachineFrameInfo.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/IR/CallSite.h"
32 #include "llvm/IR/CallingConv.h"
33 #include "llvm/IR/DerivedTypes.h"
34 #include "llvm/IR/GetElementPtrTypeIterator.h"
35 #include "llvm/IR/GlobalAlias.h"
36 #include "llvm/IR/GlobalVariable.h"
37 #include "llvm/IR/Instructions.h"
38 #include "llvm/IR/IntrinsicInst.h"
39 #include "llvm/IR/Operator.h"
40 #include "llvm/Support/ErrorHandling.h"
41 #include "llvm/Target/TargetOptions.h"
42 using namespace llvm;
43
44 namespace {
45
46 class X86FastISel final : public FastISel {
47   /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
48   /// make the right decision when generating code for different targets.
49   const X86Subtarget *Subtarget;
50
51   /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87
52   /// floating point ops.
53   /// When SSE is available, use it for f32 operations.
54   /// When SSE2 is available, use it for f64 operations.
55   bool X86ScalarSSEf64;
56   bool X86ScalarSSEf32;
57
58 public:
59   explicit X86FastISel(FunctionLoweringInfo &funcInfo,
60                        const TargetLibraryInfo *libInfo)
61     : FastISel(funcInfo, libInfo) {
62     Subtarget = &TM.getSubtarget<X86Subtarget>();
63     X86ScalarSSEf64 = Subtarget->hasSSE2();
64     X86ScalarSSEf32 = Subtarget->hasSSE1();
65   }
66
67   bool fastSelectInstruction(const Instruction *I) override;
68
69   /// \brief The specified machine instr operand is a vreg, and that
70   /// vreg is being provided by the specified load instruction.  If possible,
71   /// try to fold the load as an operand to the instruction, returning true if
72   /// possible.
73   bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
74                            const LoadInst *LI) override;
75
76   bool fastLowerArguments() override;
77   bool fastLowerCall(CallLoweringInfo &CLI) override;
78   bool fastLowerIntrinsicCall(const IntrinsicInst *II) override;
79
80 #include "X86GenFastISel.inc"
81
82 private:
83   bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT);
84
85   bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, MachineMemOperand *MMO,
86                        unsigned &ResultReg);
87
88   bool X86FastEmitStore(EVT VT, const Value *Val, const X86AddressMode &AM,
89                         MachineMemOperand *MMO = nullptr, bool Aligned = false);
90   bool X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill,
91                         const X86AddressMode &AM,
92                         MachineMemOperand *MMO = nullptr, bool Aligned = false);
93
94   bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
95                          unsigned &ResultReg);
96
97   bool X86SelectAddress(const Value *V, X86AddressMode &AM);
98   bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
99
100   bool X86SelectLoad(const Instruction *I);
101
102   bool X86SelectStore(const Instruction *I);
103
104   bool X86SelectRet(const Instruction *I);
105
106   bool X86SelectCmp(const Instruction *I);
107
108   bool X86SelectZExt(const Instruction *I);
109
110   bool X86SelectBranch(const Instruction *I);
111
112   bool X86SelectShift(const Instruction *I);
113
114   bool X86SelectDivRem(const Instruction *I);
115
116   bool X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I);
117
118   bool X86FastEmitSSESelect(MVT RetVT, const Instruction *I);
119
120   bool X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I);
121
122   bool X86SelectSelect(const Instruction *I);
123
124   bool X86SelectTrunc(const Instruction *I);
125
126   bool X86SelectFPExt(const Instruction *I);
127   bool X86SelectFPTrunc(const Instruction *I);
128
129   const X86InstrInfo *getInstrInfo() const {
130     return getTargetMachine()->getSubtargetImpl()->getInstrInfo();
131   }
132   const X86TargetMachine *getTargetMachine() const {
133     return static_cast<const X86TargetMachine *>(&TM);
134   }
135
136   bool handleConstantAddresses(const Value *V, X86AddressMode &AM);
137
138   unsigned X86MaterializeInt(const ConstantInt *CI, MVT VT);
139   unsigned X86MaterializeFP(const ConstantFP *CFP, MVT VT);
140   unsigned X86MaterializeGV(const GlobalValue *GV,MVT VT);
141   unsigned fastMaterializeConstant(const Constant *C) override;
142
143   unsigned fastMaterializeAlloca(const AllocaInst *C) override;
144
145   unsigned fastMaterializeFloatZero(const ConstantFP *CF) override;
146
147   /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is
148   /// computed in an SSE register, not on the X87 floating point stack.
149   bool isScalarFPTypeInSSEReg(EVT VT) const {
150     return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2
151       (VT == MVT::f32 && X86ScalarSSEf32);   // f32 is when SSE1
152   }
153
154   bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
155
156   bool IsMemcpySmall(uint64_t Len);
157
158   bool TryEmitSmallMemcpy(X86AddressMode DestAM,
159                           X86AddressMode SrcAM, uint64_t Len);
160
161   bool foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I,
162                             const Value *Cond);
163 };
164
165 } // end anonymous namespace.
166
167 static std::pair<X86::CondCode, bool>
168 getX86ConditionCode(CmpInst::Predicate Predicate) {
169   X86::CondCode CC = X86::COND_INVALID;
170   bool NeedSwap = false;
171   switch (Predicate) {
172   default: break;
173   // Floating-point Predicates
174   case CmpInst::FCMP_UEQ: CC = X86::COND_E;       break;
175   case CmpInst::FCMP_OLT: NeedSwap = true; // fall-through
176   case CmpInst::FCMP_OGT: CC = X86::COND_A;       break;
177   case CmpInst::FCMP_OLE: NeedSwap = true; // fall-through
178   case CmpInst::FCMP_OGE: CC = X86::COND_AE;      break;
179   case CmpInst::FCMP_UGT: NeedSwap = true; // fall-through
180   case CmpInst::FCMP_ULT: CC = X86::COND_B;       break;
181   case CmpInst::FCMP_UGE: NeedSwap = true; // fall-through
182   case CmpInst::FCMP_ULE: CC = X86::COND_BE;      break;
183   case CmpInst::FCMP_ONE: CC = X86::COND_NE;      break;
184   case CmpInst::FCMP_UNO: CC = X86::COND_P;       break;
185   case CmpInst::FCMP_ORD: CC = X86::COND_NP;      break;
186   case CmpInst::FCMP_OEQ: // fall-through
187   case CmpInst::FCMP_UNE: CC = X86::COND_INVALID; break;
188
189   // Integer Predicates
190   case CmpInst::ICMP_EQ:  CC = X86::COND_E;       break;
191   case CmpInst::ICMP_NE:  CC = X86::COND_NE;      break;
192   case CmpInst::ICMP_UGT: CC = X86::COND_A;       break;
193   case CmpInst::ICMP_UGE: CC = X86::COND_AE;      break;
194   case CmpInst::ICMP_ULT: CC = X86::COND_B;       break;
195   case CmpInst::ICMP_ULE: CC = X86::COND_BE;      break;
196   case CmpInst::ICMP_SGT: CC = X86::COND_G;       break;
197   case CmpInst::ICMP_SGE: CC = X86::COND_GE;      break;
198   case CmpInst::ICMP_SLT: CC = X86::COND_L;       break;
199   case CmpInst::ICMP_SLE: CC = X86::COND_LE;      break;
200   }
201
202   return std::make_pair(CC, NeedSwap);
203 }
204
205 static std::pair<unsigned, bool>
206 getX86SSEConditionCode(CmpInst::Predicate Predicate) {
207   unsigned CC;
208   bool NeedSwap = false;
209
210   // SSE Condition code mapping:
211   //  0 - EQ
212   //  1 - LT
213   //  2 - LE
214   //  3 - UNORD
215   //  4 - NEQ
216   //  5 - NLT
217   //  6 - NLE
218   //  7 - ORD
219   switch (Predicate) {
220   default: llvm_unreachable("Unexpected predicate");
221   case CmpInst::FCMP_OEQ: CC = 0;          break;
222   case CmpInst::FCMP_OGT: NeedSwap = true; // fall-through
223   case CmpInst::FCMP_OLT: CC = 1;          break;
224   case CmpInst::FCMP_OGE: NeedSwap = true; // fall-through
225   case CmpInst::FCMP_OLE: CC = 2;          break;
226   case CmpInst::FCMP_UNO: CC = 3;          break;
227   case CmpInst::FCMP_UNE: CC = 4;          break;
228   case CmpInst::FCMP_ULE: NeedSwap = true; // fall-through
229   case CmpInst::FCMP_UGE: CC = 5;          break;
230   case CmpInst::FCMP_ULT: NeedSwap = true; // fall-through
231   case CmpInst::FCMP_UGT: CC = 6;          break;
232   case CmpInst::FCMP_ORD: CC = 7;          break;
233   case CmpInst::FCMP_UEQ:
234   case CmpInst::FCMP_ONE: CC = 8;          break;
235   }
236
237   return std::make_pair(CC, NeedSwap);
238 }
239
240 /// \brief Check if it is possible to fold the condition from the XALU intrinsic
241 /// into the user. The condition code will only be updated on success.
242 bool X86FastISel::foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I,
243                                        const Value *Cond) {
244   if (!isa<ExtractValueInst>(Cond))
245     return false;
246
247   const auto *EV = cast<ExtractValueInst>(Cond);
248   if (!isa<IntrinsicInst>(EV->getAggregateOperand()))
249     return false;
250
251   const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
252   MVT RetVT;
253   const Function *Callee = II->getCalledFunction();
254   Type *RetTy =
255     cast<StructType>(Callee->getReturnType())->getTypeAtIndex(0U);
256   if (!isTypeLegal(RetTy, RetVT))
257     return false;
258
259   if (RetVT != MVT::i32 && RetVT != MVT::i64)
260     return false;
261
262   X86::CondCode TmpCC;
263   switch (II->getIntrinsicID()) {
264   default: return false;
265   case Intrinsic::sadd_with_overflow:
266   case Intrinsic::ssub_with_overflow:
267   case Intrinsic::smul_with_overflow:
268   case Intrinsic::umul_with_overflow: TmpCC = X86::COND_O; break;
269   case Intrinsic::uadd_with_overflow:
270   case Intrinsic::usub_with_overflow: TmpCC = X86::COND_B; break;
271   }
272
273   // Check if both instructions are in the same basic block.
274   if (II->getParent() != I->getParent())
275     return false;
276
277   // Make sure nothing is in the way
278   BasicBlock::const_iterator Start = I;
279   BasicBlock::const_iterator End = II;
280   for (auto Itr = std::prev(Start); Itr != End; --Itr) {
281     // We only expect extractvalue instructions between the intrinsic and the
282     // instruction to be selected.
283     if (!isa<ExtractValueInst>(Itr))
284       return false;
285
286     // Check that the extractvalue operand comes from the intrinsic.
287     const auto *EVI = cast<ExtractValueInst>(Itr);
288     if (EVI->getAggregateOperand() != II)
289       return false;
290   }
291
292   CC = TmpCC;
293   return true;
294 }
295
296 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
297   EVT evt = TLI.getValueType(Ty, /*HandleUnknown=*/true);
298   if (evt == MVT::Other || !evt.isSimple())
299     // Unhandled type. Halt "fast" selection and bail.
300     return false;
301
302   VT = evt.getSimpleVT();
303   // For now, require SSE/SSE2 for performing floating-point operations,
304   // since x87 requires additional work.
305   if (VT == MVT::f64 && !X86ScalarSSEf64)
306     return false;
307   if (VT == MVT::f32 && !X86ScalarSSEf32)
308     return false;
309   // Similarly, no f80 support yet.
310   if (VT == MVT::f80)
311     return false;
312   // We only handle legal types. For example, on x86-32 the instruction
313   // selector contains all of the 64-bit instructions from x86-64,
314   // under the assumption that i64 won't be used if the target doesn't
315   // support it.
316   return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
317 }
318
319 #include "X86GenCallingConv.inc"
320
321 /// X86FastEmitLoad - Emit a machine instruction to load a value of type VT.
322 /// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
323 /// Return true and the result register by reference if it is possible.
324 bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
325                                   MachineMemOperand *MMO, unsigned &ResultReg) {
326   // Get opcode and regclass of the output for the given load instruction.
327   unsigned Opc = 0;
328   const TargetRegisterClass *RC = nullptr;
329   switch (VT.getSimpleVT().SimpleTy) {
330   default: return false;
331   case MVT::i1:
332   case MVT::i8:
333     Opc = X86::MOV8rm;
334     RC  = &X86::GR8RegClass;
335     break;
336   case MVT::i16:
337     Opc = X86::MOV16rm;
338     RC  = &X86::GR16RegClass;
339     break;
340   case MVT::i32:
341     Opc = X86::MOV32rm;
342     RC  = &X86::GR32RegClass;
343     break;
344   case MVT::i64:
345     // Must be in x86-64 mode.
346     Opc = X86::MOV64rm;
347     RC  = &X86::GR64RegClass;
348     break;
349   case MVT::f32:
350     if (X86ScalarSSEf32) {
351       Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
352       RC  = &X86::FR32RegClass;
353     } else {
354       Opc = X86::LD_Fp32m;
355       RC  = &X86::RFP32RegClass;
356     }
357     break;
358   case MVT::f64:
359     if (X86ScalarSSEf64) {
360       Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
361       RC  = &X86::FR64RegClass;
362     } else {
363       Opc = X86::LD_Fp64m;
364       RC  = &X86::RFP64RegClass;
365     }
366     break;
367   case MVT::f80:
368     // No f80 support yet.
369     return false;
370   }
371
372   ResultReg = createResultReg(RC);
373   MachineInstrBuilder MIB =
374     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
375   addFullAddress(MIB, AM);
376   if (MMO)
377     MIB->addMemOperand(*FuncInfo.MF, MMO);
378   return true;
379 }
380
381 /// X86FastEmitStore - Emit a machine instruction to store a value Val of
382 /// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
383 /// and a displacement offset, or a GlobalAddress,
384 /// i.e. V. Return true if it is possible.
385 bool X86FastISel::X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill,
386                                    const X86AddressMode &AM,
387                                    MachineMemOperand *MMO, bool Aligned) {
388   // Get opcode and regclass of the output for the given store instruction.
389   unsigned Opc = 0;
390   switch (VT.getSimpleVT().SimpleTy) {
391   case MVT::f80: // No f80 support yet.
392   default: return false;
393   case MVT::i1: {
394     // Mask out all but lowest bit.
395     unsigned AndResult = createResultReg(&X86::GR8RegClass);
396     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
397             TII.get(X86::AND8ri), AndResult)
398       .addReg(ValReg, getKillRegState(ValIsKill)).addImm(1);
399     ValReg = AndResult;
400   }
401   // FALLTHROUGH, handling i1 as i8.
402   case MVT::i8:  Opc = X86::MOV8mr;  break;
403   case MVT::i16: Opc = X86::MOV16mr; break;
404   case MVT::i32: Opc = X86::MOV32mr; break;
405   case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode.
406   case MVT::f32:
407     Opc = X86ScalarSSEf32 ?
408           (Subtarget->hasAVX() ? X86::VMOVSSmr : X86::MOVSSmr) : X86::ST_Fp32m;
409     break;
410   case MVT::f64:
411     Opc = X86ScalarSSEf64 ?
412           (Subtarget->hasAVX() ? X86::VMOVSDmr : X86::MOVSDmr) : X86::ST_Fp64m;
413     break;
414   case MVT::v4f32:
415     if (Aligned)
416       Opc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
417     else
418       Opc = Subtarget->hasAVX() ? X86::VMOVUPSmr : X86::MOVUPSmr;
419     break;
420   case MVT::v2f64:
421     if (Aligned)
422       Opc = Subtarget->hasAVX() ? X86::VMOVAPDmr : X86::MOVAPDmr;
423     else
424       Opc = Subtarget->hasAVX() ? X86::VMOVUPDmr : X86::MOVUPDmr;
425     break;
426   case MVT::v4i32:
427   case MVT::v2i64:
428   case MVT::v8i16:
429   case MVT::v16i8:
430     if (Aligned)
431       Opc = Subtarget->hasAVX() ? X86::VMOVDQAmr : X86::MOVDQAmr;
432     else
433       Opc = Subtarget->hasAVX() ? X86::VMOVDQUmr : X86::MOVDQUmr;
434     break;
435   }
436
437   MachineInstrBuilder MIB =
438     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc));
439   addFullAddress(MIB, AM).addReg(ValReg, getKillRegState(ValIsKill));
440   if (MMO)
441     MIB->addMemOperand(*FuncInfo.MF, MMO);
442
443   return true;
444 }
445
446 bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val,
447                                    const X86AddressMode &AM,
448                                    MachineMemOperand *MMO, bool Aligned) {
449   // Handle 'null' like i32/i64 0.
450   if (isa<ConstantPointerNull>(Val))
451     Val = Constant::getNullValue(DL.getIntPtrType(Val->getContext()));
452
453   // If this is a store of a simple constant, fold the constant into the store.
454   if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
455     unsigned Opc = 0;
456     bool Signed = true;
457     switch (VT.getSimpleVT().SimpleTy) {
458     default: break;
459     case MVT::i1:  Signed = false;     // FALLTHROUGH to handle as i8.
460     case MVT::i8:  Opc = X86::MOV8mi;  break;
461     case MVT::i16: Opc = X86::MOV16mi; break;
462     case MVT::i32: Opc = X86::MOV32mi; break;
463     case MVT::i64:
464       // Must be a 32-bit sign extended value.
465       if (isInt<32>(CI->getSExtValue()))
466         Opc = X86::MOV64mi32;
467       break;
468     }
469
470     if (Opc) {
471       MachineInstrBuilder MIB =
472         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc));
473       addFullAddress(MIB, AM).addImm(Signed ? (uint64_t) CI->getSExtValue()
474                                             : CI->getZExtValue());
475       if (MMO)
476         MIB->addMemOperand(*FuncInfo.MF, MMO);
477       return true;
478     }
479   }
480
481   unsigned ValReg = getRegForValue(Val);
482   if (ValReg == 0)
483     return false;
484
485   bool ValKill = hasTrivialKill(Val);
486   return X86FastEmitStore(VT, ValReg, ValKill, AM, MMO, Aligned);
487 }
488
489 /// X86FastEmitExtend - Emit a machine instruction to extend a value Src of
490 /// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
491 /// ISD::SIGN_EXTEND).
492 bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
493                                     unsigned Src, EVT SrcVT,
494                                     unsigned &ResultReg) {
495   unsigned RR = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
496                            Src, /*TODO: Kill=*/false);
497   if (RR == 0)
498     return false;
499
500   ResultReg = RR;
501   return true;
502 }
503
504 bool X86FastISel::handleConstantAddresses(const Value *V, X86AddressMode &AM) {
505   // Handle constant address.
506   if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
507     // Can't handle alternate code models yet.
508     if (TM.getCodeModel() != CodeModel::Small)
509       return false;
510
511     // Can't handle TLS yet.
512     if (GV->isThreadLocal())
513       return false;
514
515     // RIP-relative addresses can't have additional register operands, so if
516     // we've already folded stuff into the addressing mode, just force the
517     // global value into its own register, which we can use as the basereg.
518     if (!Subtarget->isPICStyleRIPRel() ||
519         (AM.Base.Reg == 0 && AM.IndexReg == 0)) {
520       // Okay, we've committed to selecting this global. Set up the address.
521       AM.GV = GV;
522
523       // Allow the subtarget to classify the global.
524       unsigned char GVFlags = Subtarget->ClassifyGlobalReference(GV, TM);
525
526       // If this reference is relative to the pic base, set it now.
527       if (isGlobalRelativeToPICBase(GVFlags)) {
528         // FIXME: How do we know Base.Reg is free??
529         AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
530       }
531
532       // Unless the ABI requires an extra load, return a direct reference to
533       // the global.
534       if (!isGlobalStubReference(GVFlags)) {
535         if (Subtarget->isPICStyleRIPRel()) {
536           // Use rip-relative addressing if we can.  Above we verified that the
537           // base and index registers are unused.
538           assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
539           AM.Base.Reg = X86::RIP;
540         }
541         AM.GVOpFlags = GVFlags;
542         return true;
543       }
544
545       // Ok, we need to do a load from a stub.  If we've already loaded from
546       // this stub, reuse the loaded pointer, otherwise emit the load now.
547       DenseMap<const Value*, unsigned>::iterator I = LocalValueMap.find(V);
548       unsigned LoadReg;
549       if (I != LocalValueMap.end() && I->second != 0) {
550         LoadReg = I->second;
551       } else {
552         // Issue load from stub.
553         unsigned Opc = 0;
554         const TargetRegisterClass *RC = nullptr;
555         X86AddressMode StubAM;
556         StubAM.Base.Reg = AM.Base.Reg;
557         StubAM.GV = GV;
558         StubAM.GVOpFlags = GVFlags;
559
560         // Prepare for inserting code in the local-value area.
561         SavePoint SaveInsertPt = enterLocalValueArea();
562
563         if (TLI.getPointerTy() == MVT::i64) {
564           Opc = X86::MOV64rm;
565           RC  = &X86::GR64RegClass;
566
567           if (Subtarget->isPICStyleRIPRel())
568             StubAM.Base.Reg = X86::RIP;
569         } else {
570           Opc = X86::MOV32rm;
571           RC  = &X86::GR32RegClass;
572         }
573
574         LoadReg = createResultReg(RC);
575         MachineInstrBuilder LoadMI =
576           BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), LoadReg);
577         addFullAddress(LoadMI, StubAM);
578
579         // Ok, back to normal mode.
580         leaveLocalValueArea(SaveInsertPt);
581
582         // Prevent loading GV stub multiple times in same MBB.
583         LocalValueMap[V] = LoadReg;
584       }
585
586       // Now construct the final address. Note that the Disp, Scale,
587       // and Index values may already be set here.
588       AM.Base.Reg = LoadReg;
589       AM.GV = nullptr;
590       return true;
591     }
592   }
593
594   // If all else fails, try to materialize the value in a register.
595   if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
596     if (AM.Base.Reg == 0) {
597       AM.Base.Reg = getRegForValue(V);
598       return AM.Base.Reg != 0;
599     }
600     if (AM.IndexReg == 0) {
601       assert(AM.Scale == 1 && "Scale with no index!");
602       AM.IndexReg = getRegForValue(V);
603       return AM.IndexReg != 0;
604     }
605   }
606
607   return false;
608 }
609
610 /// X86SelectAddress - Attempt to fill in an address from the given value.
611 ///
612 bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) {
613   SmallVector<const Value *, 32> GEPs;
614 redo_gep:
615   const User *U = nullptr;
616   unsigned Opcode = Instruction::UserOp1;
617   if (const Instruction *I = dyn_cast<Instruction>(V)) {
618     // Don't walk into other basic blocks; it's possible we haven't
619     // visited them yet, so the instructions may not yet be assigned
620     // virtual registers.
621     if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) ||
622         FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
623       Opcode = I->getOpcode();
624       U = I;
625     }
626   } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
627     Opcode = C->getOpcode();
628     U = C;
629   }
630
631   if (PointerType *Ty = dyn_cast<PointerType>(V->getType()))
632     if (Ty->getAddressSpace() > 255)
633       // Fast instruction selection doesn't support the special
634       // address spaces.
635       return false;
636
637   switch (Opcode) {
638   default: break;
639   case Instruction::BitCast:
640     // Look past bitcasts.
641     return X86SelectAddress(U->getOperand(0), AM);
642
643   case Instruction::IntToPtr:
644     // Look past no-op inttoptrs.
645     if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
646       return X86SelectAddress(U->getOperand(0), AM);
647     break;
648
649   case Instruction::PtrToInt:
650     // Look past no-op ptrtoints.
651     if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
652       return X86SelectAddress(U->getOperand(0), AM);
653     break;
654
655   case Instruction::Alloca: {
656     // Do static allocas.
657     const AllocaInst *A = cast<AllocaInst>(V);
658     DenseMap<const AllocaInst*, int>::iterator SI =
659       FuncInfo.StaticAllocaMap.find(A);
660     if (SI != FuncInfo.StaticAllocaMap.end()) {
661       AM.BaseType = X86AddressMode::FrameIndexBase;
662       AM.Base.FrameIndex = SI->second;
663       return true;
664     }
665     break;
666   }
667
668   case Instruction::Add: {
669     // Adds of constants are common and easy enough.
670     if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
671       uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
672       // They have to fit in the 32-bit signed displacement field though.
673       if (isInt<32>(Disp)) {
674         AM.Disp = (uint32_t)Disp;
675         return X86SelectAddress(U->getOperand(0), AM);
676       }
677     }
678     break;
679   }
680
681   case Instruction::GetElementPtr: {
682     X86AddressMode SavedAM = AM;
683
684     // Pattern-match simple GEPs.
685     uint64_t Disp = (int32_t)AM.Disp;
686     unsigned IndexReg = AM.IndexReg;
687     unsigned Scale = AM.Scale;
688     gep_type_iterator GTI = gep_type_begin(U);
689     // Iterate through the indices, folding what we can. Constants can be
690     // folded, and one dynamic index can be handled, if the scale is supported.
691     for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
692          i != e; ++i, ++GTI) {
693       const Value *Op = *i;
694       if (StructType *STy = dyn_cast<StructType>(*GTI)) {
695         const StructLayout *SL = DL.getStructLayout(STy);
696         Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
697         continue;
698       }
699
700       // A array/variable index is always of the form i*S where S is the
701       // constant scale size.  See if we can push the scale into immediates.
702       uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
703       for (;;) {
704         if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
705           // Constant-offset addressing.
706           Disp += CI->getSExtValue() * S;
707           break;
708         }
709         if (canFoldAddIntoGEP(U, Op)) {
710           // A compatible add with a constant operand. Fold the constant.
711           ConstantInt *CI =
712             cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
713           Disp += CI->getSExtValue() * S;
714           // Iterate on the other operand.
715           Op = cast<AddOperator>(Op)->getOperand(0);
716           continue;
717         }
718         if (IndexReg == 0 &&
719             (!AM.GV || !Subtarget->isPICStyleRIPRel()) &&
720             (S == 1 || S == 2 || S == 4 || S == 8)) {
721           // Scaled-index addressing.
722           Scale = S;
723           IndexReg = getRegForGEPIndex(Op).first;
724           if (IndexReg == 0)
725             return false;
726           break;
727         }
728         // Unsupported.
729         goto unsupported_gep;
730       }
731     }
732
733     // Check for displacement overflow.
734     if (!isInt<32>(Disp))
735       break;
736
737     AM.IndexReg = IndexReg;
738     AM.Scale = Scale;
739     AM.Disp = (uint32_t)Disp;
740     GEPs.push_back(V);
741
742     if (const GetElementPtrInst *GEP =
743           dyn_cast<GetElementPtrInst>(U->getOperand(0))) {
744       // Ok, the GEP indices were covered by constant-offset and scaled-index
745       // addressing. Update the address state and move on to examining the base.
746       V = GEP;
747       goto redo_gep;
748     } else if (X86SelectAddress(U->getOperand(0), AM)) {
749       return true;
750     }
751
752     // If we couldn't merge the gep value into this addr mode, revert back to
753     // our address and just match the value instead of completely failing.
754     AM = SavedAM;
755
756     for (SmallVectorImpl<const Value *>::reverse_iterator
757            I = GEPs.rbegin(), E = GEPs.rend(); I != E; ++I)
758       if (handleConstantAddresses(*I, AM))
759         return true;
760
761     return false;
762   unsupported_gep:
763     // Ok, the GEP indices weren't all covered.
764     break;
765   }
766   }
767
768   return handleConstantAddresses(V, AM);
769 }
770
771 /// X86SelectCallAddress - Attempt to fill in an address from the given value.
772 ///
773 bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) {
774   const User *U = nullptr;
775   unsigned Opcode = Instruction::UserOp1;
776   const Instruction *I = dyn_cast<Instruction>(V);
777   // Record if the value is defined in the same basic block.
778   //
779   // This information is crucial to know whether or not folding an
780   // operand is valid.
781   // Indeed, FastISel generates or reuses a virtual register for all
782   // operands of all instructions it selects. Obviously, the definition and
783   // its uses must use the same virtual register otherwise the produced
784   // code is incorrect.
785   // Before instruction selection, FunctionLoweringInfo::set sets the virtual
786   // registers for values that are alive across basic blocks. This ensures
787   // that the values are consistently set between across basic block, even
788   // if different instruction selection mechanisms are used (e.g., a mix of
789   // SDISel and FastISel).
790   // For values local to a basic block, the instruction selection process
791   // generates these virtual registers with whatever method is appropriate
792   // for its needs. In particular, FastISel and SDISel do not share the way
793   // local virtual registers are set.
794   // Therefore, this is impossible (or at least unsafe) to share values
795   // between basic blocks unless they use the same instruction selection
796   // method, which is not guarantee for X86.
797   // Moreover, things like hasOneUse could not be used accurately, if we
798   // allow to reference values across basic blocks whereas they are not
799   // alive across basic blocks initially.
800   bool InMBB = true;
801   if (I) {
802     Opcode = I->getOpcode();
803     U = I;
804     InMBB = I->getParent() == FuncInfo.MBB->getBasicBlock();
805   } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) {
806     Opcode = C->getOpcode();
807     U = C;
808   }
809
810   switch (Opcode) {
811   default: break;
812   case Instruction::BitCast:
813     // Look past bitcasts if its operand is in the same BB.
814     if (InMBB)
815       return X86SelectCallAddress(U->getOperand(0), AM);
816     break;
817
818   case Instruction::IntToPtr:
819     // Look past no-op inttoptrs if its operand is in the same BB.
820     if (InMBB &&
821         TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
822       return X86SelectCallAddress(U->getOperand(0), AM);
823     break;
824
825   case Instruction::PtrToInt:
826     // Look past no-op ptrtoints if its operand is in the same BB.
827     if (InMBB &&
828         TLI.getValueType(U->getType()) == TLI.getPointerTy())
829       return X86SelectCallAddress(U->getOperand(0), AM);
830     break;
831   }
832
833   // Handle constant address.
834   if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
835     // Can't handle alternate code models yet.
836     if (TM.getCodeModel() != CodeModel::Small)
837       return false;
838
839     // RIP-relative addresses can't have additional register operands.
840     if (Subtarget->isPICStyleRIPRel() &&
841         (AM.Base.Reg != 0 || AM.IndexReg != 0))
842       return false;
843
844     // Can't handle DLL Import.
845     if (GV->hasDLLImportStorageClass())
846       return false;
847
848     // Can't handle TLS.
849     if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
850       if (GVar->isThreadLocal())
851         return false;
852
853     // Okay, we've committed to selecting this global. Set up the basic address.
854     AM.GV = GV;
855
856     // No ABI requires an extra load for anything other than DLLImport, which
857     // we rejected above. Return a direct reference to the global.
858     if (Subtarget->isPICStyleRIPRel()) {
859       // Use rip-relative addressing if we can.  Above we verified that the
860       // base and index registers are unused.
861       assert(AM.Base.Reg == 0 && AM.IndexReg == 0);
862       AM.Base.Reg = X86::RIP;
863     } else if (Subtarget->isPICStyleStubPIC()) {
864       AM.GVOpFlags = X86II::MO_PIC_BASE_OFFSET;
865     } else if (Subtarget->isPICStyleGOT()) {
866       AM.GVOpFlags = X86II::MO_GOTOFF;
867     }
868
869     return true;
870   }
871
872   // If all else fails, try to materialize the value in a register.
873   if (!AM.GV || !Subtarget->isPICStyleRIPRel()) {
874     if (AM.Base.Reg == 0) {
875       AM.Base.Reg = getRegForValue(V);
876       return AM.Base.Reg != 0;
877     }
878     if (AM.IndexReg == 0) {
879       assert(AM.Scale == 1 && "Scale with no index!");
880       AM.IndexReg = getRegForValue(V);
881       return AM.IndexReg != 0;
882     }
883   }
884
885   return false;
886 }
887
888
889 /// X86SelectStore - Select and emit code to implement store instructions.
890 bool X86FastISel::X86SelectStore(const Instruction *I) {
891   // Atomic stores need special handling.
892   const StoreInst *S = cast<StoreInst>(I);
893
894   if (S->isAtomic())
895     return false;
896
897   const Value *Val = S->getValueOperand();
898   const Value *Ptr = S->getPointerOperand();
899
900   MVT VT;
901   if (!isTypeLegal(Val->getType(), VT, /*AllowI1=*/true))
902     return false;
903
904   unsigned Alignment = S->getAlignment();
905   unsigned ABIAlignment = DL.getABITypeAlignment(Val->getType());
906   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
907     Alignment = ABIAlignment;
908   bool Aligned = Alignment >= ABIAlignment;
909
910   X86AddressMode AM;
911   if (!X86SelectAddress(Ptr, AM))
912     return false;
913
914   return X86FastEmitStore(VT, Val, AM, createMachineMemOperandFor(I), Aligned);
915 }
916
917 /// X86SelectRet - Select and emit code to implement ret instructions.
918 bool X86FastISel::X86SelectRet(const Instruction *I) {
919   const ReturnInst *Ret = cast<ReturnInst>(I);
920   const Function &F = *I->getParent()->getParent();
921   const X86MachineFunctionInfo *X86MFInfo =
922       FuncInfo.MF->getInfo<X86MachineFunctionInfo>();
923
924   if (!FuncInfo.CanLowerReturn)
925     return false;
926
927   CallingConv::ID CC = F.getCallingConv();
928   if (CC != CallingConv::C &&
929       CC != CallingConv::Fast &&
930       CC != CallingConv::X86_FastCall &&
931       CC != CallingConv::X86_64_SysV)
932     return false;
933
934   if (Subtarget->isCallingConvWin64(CC))
935     return false;
936
937   // Don't handle popping bytes on return for now.
938   if (X86MFInfo->getBytesToPopOnReturn() != 0)
939     return false;
940
941   // fastcc with -tailcallopt is intended to provide a guaranteed
942   // tail call optimization. Fastisel doesn't know how to do that.
943   if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
944     return false;
945
946   // Let SDISel handle vararg functions.
947   if (F.isVarArg())
948     return false;
949
950   // Build a list of return value registers.
951   SmallVector<unsigned, 4> RetRegs;
952
953   if (Ret->getNumOperands() > 0) {
954     SmallVector<ISD::OutputArg, 4> Outs;
955     GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI);
956
957     // Analyze operands of the call, assigning locations to each operand.
958     SmallVector<CCValAssign, 16> ValLocs;
959     CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, I->getContext());
960     CCInfo.AnalyzeReturn(Outs, RetCC_X86);
961
962     const Value *RV = Ret->getOperand(0);
963     unsigned Reg = getRegForValue(RV);
964     if (Reg == 0)
965       return false;
966
967     // Only handle a single return value for now.
968     if (ValLocs.size() != 1)
969       return false;
970
971     CCValAssign &VA = ValLocs[0];
972
973     // Don't bother handling odd stuff for now.
974     if (VA.getLocInfo() != CCValAssign::Full)
975       return false;
976     // Only handle register returns for now.
977     if (!VA.isRegLoc())
978       return false;
979
980     // The calling-convention tables for x87 returns don't tell
981     // the whole story.
982     if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1)
983       return false;
984
985     unsigned SrcReg = Reg + VA.getValNo();
986     EVT SrcVT = TLI.getValueType(RV->getType());
987     EVT DstVT = VA.getValVT();
988     // Special handling for extended integers.
989     if (SrcVT != DstVT) {
990       if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16)
991         return false;
992
993       if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt())
994         return false;
995
996       assert(DstVT == MVT::i32 && "X86 should always ext to i32");
997
998       if (SrcVT == MVT::i1) {
999         if (Outs[0].Flags.isSExt())
1000           return false;
1001         SrcReg = fastEmitZExtFromI1(MVT::i8, SrcReg, /*TODO: Kill=*/false);
1002         SrcVT = MVT::i8;
1003       }
1004       unsigned Op = Outs[0].Flags.isZExt() ? ISD::ZERO_EXTEND :
1005                                              ISD::SIGN_EXTEND;
1006       SrcReg = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Op,
1007                           SrcReg, /*TODO: Kill=*/false);
1008     }
1009
1010     // Make the copy.
1011     unsigned DstReg = VA.getLocReg();
1012     const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1013     // Avoid a cross-class copy. This is very unlikely.
1014     if (!SrcRC->contains(DstReg))
1015       return false;
1016     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
1017             DstReg).addReg(SrcReg);
1018
1019     // Add register to return instruction.
1020     RetRegs.push_back(VA.getLocReg());
1021   }
1022
1023   // The x86-64 ABI for returning structs by value requires that we copy
1024   // the sret argument into %rax for the return. We saved the argument into
1025   // a virtual register in the entry block, so now we copy the value out
1026   // and into %rax. We also do the same with %eax for Win32.
1027   if (F.hasStructRetAttr() &&
1028       (Subtarget->is64Bit() || Subtarget->isTargetKnownWindowsMSVC())) {
1029     unsigned Reg = X86MFInfo->getSRetReturnReg();
1030     assert(Reg &&
1031            "SRetReturnReg should have been set in LowerFormalArguments()!");
1032     unsigned RetReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
1033     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
1034             RetReg).addReg(Reg);
1035     RetRegs.push_back(RetReg);
1036   }
1037
1038   // Now emit the RET.
1039   MachineInstrBuilder MIB =
1040     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Subtarget->is64Bit() ? X86::RETQ : X86::RETL));
1041   for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
1042     MIB.addReg(RetRegs[i], RegState::Implicit);
1043   return true;
1044 }
1045
1046 /// X86SelectLoad - Select and emit code to implement load instructions.
1047 ///
1048 bool X86FastISel::X86SelectLoad(const Instruction *I) {
1049   const LoadInst *LI = cast<LoadInst>(I);
1050
1051   // Atomic loads need special handling.
1052   if (LI->isAtomic())
1053     return false;
1054
1055   MVT VT;
1056   if (!isTypeLegal(LI->getType(), VT, /*AllowI1=*/true))
1057     return false;
1058
1059   const Value *Ptr = LI->getPointerOperand();
1060
1061   X86AddressMode AM;
1062   if (!X86SelectAddress(Ptr, AM))
1063     return false;
1064
1065   unsigned ResultReg = 0;
1066   if (!X86FastEmitLoad(VT, AM, createMachineMemOperandFor(LI), ResultReg))
1067     return false;
1068
1069   updateValueMap(I, ResultReg);
1070   return true;
1071 }
1072
1073 static unsigned X86ChooseCmpOpcode(EVT VT, const X86Subtarget *Subtarget) {
1074   bool HasAVX = Subtarget->hasAVX();
1075   bool X86ScalarSSEf32 = Subtarget->hasSSE1();
1076   bool X86ScalarSSEf64 = Subtarget->hasSSE2();
1077
1078   switch (VT.getSimpleVT().SimpleTy) {
1079   default:       return 0;
1080   case MVT::i8:  return X86::CMP8rr;
1081   case MVT::i16: return X86::CMP16rr;
1082   case MVT::i32: return X86::CMP32rr;
1083   case MVT::i64: return X86::CMP64rr;
1084   case MVT::f32:
1085     return X86ScalarSSEf32 ? (HasAVX ? X86::VUCOMISSrr : X86::UCOMISSrr) : 0;
1086   case MVT::f64:
1087     return X86ScalarSSEf64 ? (HasAVX ? X86::VUCOMISDrr : X86::UCOMISDrr) : 0;
1088   }
1089 }
1090
1091 /// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
1092 /// of the comparison, return an opcode that works for the compare (e.g.
1093 /// CMP32ri) otherwise return 0.
1094 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
1095   switch (VT.getSimpleVT().SimpleTy) {
1096   // Otherwise, we can't fold the immediate into this comparison.
1097   default: return 0;
1098   case MVT::i8: return X86::CMP8ri;
1099   case MVT::i16: return X86::CMP16ri;
1100   case MVT::i32: return X86::CMP32ri;
1101   case MVT::i64:
1102     // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
1103     // field.
1104     if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
1105       return X86::CMP64ri32;
1106     return 0;
1107   }
1108 }
1109
1110 bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1,
1111                                      EVT VT) {
1112   unsigned Op0Reg = getRegForValue(Op0);
1113   if (Op0Reg == 0) return false;
1114
1115   // Handle 'null' like i32/i64 0.
1116   if (isa<ConstantPointerNull>(Op1))
1117     Op1 = Constant::getNullValue(DL.getIntPtrType(Op0->getContext()));
1118
1119   // We have two options: compare with register or immediate.  If the RHS of
1120   // the compare is an immediate that we can fold into this compare, use
1121   // CMPri, otherwise use CMPrr.
1122   if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
1123     if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
1124       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CompareImmOpc))
1125         .addReg(Op0Reg)
1126         .addImm(Op1C->getSExtValue());
1127       return true;
1128     }
1129   }
1130
1131   unsigned CompareOpc = X86ChooseCmpOpcode(VT, Subtarget);
1132   if (CompareOpc == 0) return false;
1133
1134   unsigned Op1Reg = getRegForValue(Op1);
1135   if (Op1Reg == 0) return false;
1136   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CompareOpc))
1137     .addReg(Op0Reg)
1138     .addReg(Op1Reg);
1139
1140   return true;
1141 }
1142
1143 bool X86FastISel::X86SelectCmp(const Instruction *I) {
1144   const CmpInst *CI = cast<CmpInst>(I);
1145
1146   MVT VT;
1147   if (!isTypeLegal(I->getOperand(0)->getType(), VT))
1148     return false;
1149
1150   // Try to optimize or fold the cmp.
1151   CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1152   unsigned ResultReg = 0;
1153   switch (Predicate) {
1154   default: break;
1155   case CmpInst::FCMP_FALSE: {
1156     ResultReg = createResultReg(&X86::GR32RegClass);
1157     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV32r0),
1158             ResultReg);
1159     ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultReg, /*Kill=*/true,
1160                                            X86::sub_8bit);
1161     if (!ResultReg)
1162       return false;
1163     break;
1164   }
1165   case CmpInst::FCMP_TRUE: {
1166     ResultReg = createResultReg(&X86::GR8RegClass);
1167     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
1168             ResultReg).addImm(1);
1169     break;
1170   }
1171   }
1172
1173   if (ResultReg) {
1174     updateValueMap(I, ResultReg);
1175     return true;
1176   }
1177
1178   const Value *LHS = CI->getOperand(0);
1179   const Value *RHS = CI->getOperand(1);
1180
1181   // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
1182   // We don't have to materialize a zero constant for this case and can just use
1183   // %x again on the RHS.
1184   if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1185     const auto *RHSC = dyn_cast<ConstantFP>(RHS);
1186     if (RHSC && RHSC->isNullValue())
1187       RHS = LHS;
1188   }
1189
1190   // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
1191   static unsigned SETFOpcTable[2][3] = {
1192     { X86::SETEr,  X86::SETNPr, X86::AND8rr },
1193     { X86::SETNEr, X86::SETPr,  X86::OR8rr  }
1194   };
1195   unsigned *SETFOpc = nullptr;
1196   switch (Predicate) {
1197   default: break;
1198   case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break;
1199   case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break;
1200   }
1201
1202   ResultReg = createResultReg(&X86::GR8RegClass);
1203   if (SETFOpc) {
1204     if (!X86FastEmitCompare(LHS, RHS, VT))
1205       return false;
1206
1207     unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
1208     unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
1209     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
1210             FlagReg1);
1211     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
1212             FlagReg2);
1213     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[2]),
1214             ResultReg).addReg(FlagReg1).addReg(FlagReg2);
1215     updateValueMap(I, ResultReg);
1216     return true;
1217   }
1218
1219   X86::CondCode CC;
1220   bool SwapArgs;
1221   std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
1222   assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
1223   unsigned Opc = X86::getSETFromCond(CC);
1224
1225   if (SwapArgs)
1226     std::swap(LHS, RHS);
1227
1228   // Emit a compare of LHS/RHS.
1229   if (!X86FastEmitCompare(LHS, RHS, VT))
1230     return false;
1231
1232   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
1233   updateValueMap(I, ResultReg);
1234   return true;
1235 }
1236
1237 bool X86FastISel::X86SelectZExt(const Instruction *I) {
1238   EVT DstVT = TLI.getValueType(I->getType());
1239   if (!TLI.isTypeLegal(DstVT))
1240     return false;
1241
1242   unsigned ResultReg = getRegForValue(I->getOperand(0));
1243   if (ResultReg == 0)
1244     return false;
1245
1246   // Handle zero-extension from i1 to i8, which is common.
1247   MVT SrcVT = TLI.getSimpleValueType(I->getOperand(0)->getType());
1248   if (SrcVT.SimpleTy == MVT::i1) {
1249     // Set the high bits to zero.
1250     ResultReg = fastEmitZExtFromI1(MVT::i8, ResultReg, /*TODO: Kill=*/false);
1251     SrcVT = MVT::i8;
1252
1253     if (ResultReg == 0)
1254       return false;
1255   }
1256
1257   if (DstVT == MVT::i64) {
1258     // Handle extension to 64-bits via sub-register shenanigans.
1259     unsigned MovInst;
1260
1261     switch (SrcVT.SimpleTy) {
1262     case MVT::i8:  MovInst = X86::MOVZX32rr8;  break;
1263     case MVT::i16: MovInst = X86::MOVZX32rr16; break;
1264     case MVT::i32: MovInst = X86::MOV32rr;     break;
1265     default: llvm_unreachable("Unexpected zext to i64 source type");
1266     }
1267
1268     unsigned Result32 = createResultReg(&X86::GR32RegClass);
1269     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovInst), Result32)
1270       .addReg(ResultReg);
1271
1272     ResultReg = createResultReg(&X86::GR64RegClass);
1273     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::SUBREG_TO_REG),
1274             ResultReg)
1275       .addImm(0).addReg(Result32).addImm(X86::sub_32bit);
1276   } else if (DstVT != MVT::i8) {
1277     ResultReg = fastEmit_r(MVT::i8, DstVT.getSimpleVT(), ISD::ZERO_EXTEND,
1278                            ResultReg, /*Kill=*/true);
1279     if (ResultReg == 0)
1280       return false;
1281   }
1282
1283   updateValueMap(I, ResultReg);
1284   return true;
1285 }
1286
1287
1288 bool X86FastISel::X86SelectBranch(const Instruction *I) {
1289   // Unconditional branches are selected by tablegen-generated code.
1290   // Handle a conditional branch.
1291   const BranchInst *BI = cast<BranchInst>(I);
1292   MachineBasicBlock *TrueMBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1293   MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
1294
1295   // Fold the common case of a conditional branch with a comparison
1296   // in the same block (values defined on other blocks may not have
1297   // initialized registers).
1298   X86::CondCode CC;
1299   if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
1300     if (CI->hasOneUse() && CI->getParent() == I->getParent()) {
1301       EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
1302
1303       // Try to optimize or fold the cmp.
1304       CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1305       switch (Predicate) {
1306       default: break;
1307       case CmpInst::FCMP_FALSE: fastEmitBranch(FalseMBB, DbgLoc); return true;
1308       case CmpInst::FCMP_TRUE:  fastEmitBranch(TrueMBB, DbgLoc); return true;
1309       }
1310
1311       const Value *CmpLHS = CI->getOperand(0);
1312       const Value *CmpRHS = CI->getOperand(1);
1313
1314       // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x,
1315       // 0.0.
1316       // We don't have to materialize a zero constant for this case and can just
1317       // use %x again on the RHS.
1318       if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1319         const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS);
1320         if (CmpRHSC && CmpRHSC->isNullValue())
1321           CmpRHS = CmpLHS;
1322       }
1323
1324       // Try to take advantage of fallthrough opportunities.
1325       if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
1326         std::swap(TrueMBB, FalseMBB);
1327         Predicate = CmpInst::getInversePredicate(Predicate);
1328       }
1329
1330       // FCMP_OEQ and FCMP_UNE cannot be expressed with a single flag/condition
1331       // code check. Instead two branch instructions are required to check all
1332       // the flags. First we change the predicate to a supported condition code,
1333       // which will be the first branch. Later one we will emit the second
1334       // branch.
1335       bool NeedExtraBranch = false;
1336       switch (Predicate) {
1337       default: break;
1338       case CmpInst::FCMP_OEQ:
1339         std::swap(TrueMBB, FalseMBB); // fall-through
1340       case CmpInst::FCMP_UNE:
1341         NeedExtraBranch = true;
1342         Predicate = CmpInst::FCMP_ONE;
1343         break;
1344       }
1345
1346       bool SwapArgs;
1347       unsigned BranchOpc;
1348       std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
1349       assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
1350
1351       BranchOpc = X86::GetCondBranchFromCond(CC);
1352       if (SwapArgs)
1353         std::swap(CmpLHS, CmpRHS);
1354
1355       // Emit a compare of the LHS and RHS, setting the flags.
1356       if (!X86FastEmitCompare(CmpLHS, CmpRHS, VT))
1357         return false;
1358
1359       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc))
1360         .addMBB(TrueMBB);
1361
1362       // X86 requires a second branch to handle UNE (and OEQ, which is mapped
1363       // to UNE above).
1364       if (NeedExtraBranch) {
1365         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JP_4))
1366           .addMBB(TrueMBB);
1367       }
1368
1369       // Obtain the branch weight and add the TrueBB to the successor list.
1370       uint32_t BranchWeight = 0;
1371       if (FuncInfo.BPI)
1372         BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1373                                                    TrueMBB->getBasicBlock());
1374       FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
1375
1376       // Emits an unconditional branch to the FalseBB, obtains the branch
1377       // weight, and adds it to the successor list.
1378       fastEmitBranch(FalseMBB, DbgLoc);
1379
1380       return true;
1381     }
1382   } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1383     // Handle things like "%cond = trunc i32 %X to i1 / br i1 %cond", which
1384     // typically happen for _Bool and C++ bools.
1385     MVT SourceVT;
1386     if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1387         isTypeLegal(TI->getOperand(0)->getType(), SourceVT)) {
1388       unsigned TestOpc = 0;
1389       switch (SourceVT.SimpleTy) {
1390       default: break;
1391       case MVT::i8:  TestOpc = X86::TEST8ri; break;
1392       case MVT::i16: TestOpc = X86::TEST16ri; break;
1393       case MVT::i32: TestOpc = X86::TEST32ri; break;
1394       case MVT::i64: TestOpc = X86::TEST64ri32; break;
1395       }
1396       if (TestOpc) {
1397         unsigned OpReg = getRegForValue(TI->getOperand(0));
1398         if (OpReg == 0) return false;
1399         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TestOpc))
1400           .addReg(OpReg).addImm(1);
1401
1402         unsigned JmpOpc = X86::JNE_4;
1403         if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
1404           std::swap(TrueMBB, FalseMBB);
1405           JmpOpc = X86::JE_4;
1406         }
1407
1408         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(JmpOpc))
1409           .addMBB(TrueMBB);
1410         fastEmitBranch(FalseMBB, DbgLoc);
1411         uint32_t BranchWeight = 0;
1412         if (FuncInfo.BPI)
1413           BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1414                                                      TrueMBB->getBasicBlock());
1415         FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
1416         return true;
1417       }
1418     }
1419   } else if (foldX86XALUIntrinsic(CC, BI, BI->getCondition())) {
1420     // Fake request the condition, otherwise the intrinsic might be completely
1421     // optimized away.
1422     unsigned TmpReg = getRegForValue(BI->getCondition());
1423     if (TmpReg == 0)
1424       return false;
1425
1426     unsigned BranchOpc = X86::GetCondBranchFromCond(CC);
1427
1428     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc))
1429       .addMBB(TrueMBB);
1430     fastEmitBranch(FalseMBB, DbgLoc);
1431     uint32_t BranchWeight = 0;
1432     if (FuncInfo.BPI)
1433       BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1434                                                  TrueMBB->getBasicBlock());
1435     FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
1436     return true;
1437   }
1438
1439   // Otherwise do a clumsy setcc and re-test it.
1440   // Note that i1 essentially gets ANY_EXTEND'ed to i8 where it isn't used
1441   // in an explicit cast, so make sure to handle that correctly.
1442   unsigned OpReg = getRegForValue(BI->getCondition());
1443   if (OpReg == 0) return false;
1444
1445   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
1446     .addReg(OpReg).addImm(1);
1447   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JNE_4))
1448     .addMBB(TrueMBB);
1449   fastEmitBranch(FalseMBB, DbgLoc);
1450   uint32_t BranchWeight = 0;
1451   if (FuncInfo.BPI)
1452     BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1453                                                TrueMBB->getBasicBlock());
1454   FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight);
1455   return true;
1456 }
1457
1458 bool X86FastISel::X86SelectShift(const Instruction *I) {
1459   unsigned CReg = 0, OpReg = 0;
1460   const TargetRegisterClass *RC = nullptr;
1461   if (I->getType()->isIntegerTy(8)) {
1462     CReg = X86::CL;
1463     RC = &X86::GR8RegClass;
1464     switch (I->getOpcode()) {
1465     case Instruction::LShr: OpReg = X86::SHR8rCL; break;
1466     case Instruction::AShr: OpReg = X86::SAR8rCL; break;
1467     case Instruction::Shl:  OpReg = X86::SHL8rCL; break;
1468     default: return false;
1469     }
1470   } else if (I->getType()->isIntegerTy(16)) {
1471     CReg = X86::CX;
1472     RC = &X86::GR16RegClass;
1473     switch (I->getOpcode()) {
1474     case Instruction::LShr: OpReg = X86::SHR16rCL; break;
1475     case Instruction::AShr: OpReg = X86::SAR16rCL; break;
1476     case Instruction::Shl:  OpReg = X86::SHL16rCL; break;
1477     default: return false;
1478     }
1479   } else if (I->getType()->isIntegerTy(32)) {
1480     CReg = X86::ECX;
1481     RC = &X86::GR32RegClass;
1482     switch (I->getOpcode()) {
1483     case Instruction::LShr: OpReg = X86::SHR32rCL; break;
1484     case Instruction::AShr: OpReg = X86::SAR32rCL; break;
1485     case Instruction::Shl:  OpReg = X86::SHL32rCL; break;
1486     default: return false;
1487     }
1488   } else if (I->getType()->isIntegerTy(64)) {
1489     CReg = X86::RCX;
1490     RC = &X86::GR64RegClass;
1491     switch (I->getOpcode()) {
1492     case Instruction::LShr: OpReg = X86::SHR64rCL; break;
1493     case Instruction::AShr: OpReg = X86::SAR64rCL; break;
1494     case Instruction::Shl:  OpReg = X86::SHL64rCL; break;
1495     default: return false;
1496     }
1497   } else {
1498     return false;
1499   }
1500
1501   MVT VT;
1502   if (!isTypeLegal(I->getType(), VT))
1503     return false;
1504
1505   unsigned Op0Reg = getRegForValue(I->getOperand(0));
1506   if (Op0Reg == 0) return false;
1507
1508   unsigned Op1Reg = getRegForValue(I->getOperand(1));
1509   if (Op1Reg == 0) return false;
1510   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
1511           CReg).addReg(Op1Reg);
1512
1513   // The shift instruction uses X86::CL. If we defined a super-register
1514   // of X86::CL, emit a subreg KILL to precisely describe what we're doing here.
1515   if (CReg != X86::CL)
1516     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1517             TII.get(TargetOpcode::KILL), X86::CL)
1518       .addReg(CReg, RegState::Kill);
1519
1520   unsigned ResultReg = createResultReg(RC);
1521   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(OpReg), ResultReg)
1522     .addReg(Op0Reg);
1523   updateValueMap(I, ResultReg);
1524   return true;
1525 }
1526
1527 bool X86FastISel::X86SelectDivRem(const Instruction *I) {
1528   const static unsigned NumTypes = 4; // i8, i16, i32, i64
1529   const static unsigned NumOps   = 4; // SDiv, SRem, UDiv, URem
1530   const static bool S = true;  // IsSigned
1531   const static bool U = false; // !IsSigned
1532   const static unsigned Copy = TargetOpcode::COPY;
1533   // For the X86 DIV/IDIV instruction, in most cases the dividend
1534   // (numerator) must be in a specific register pair highreg:lowreg,
1535   // producing the quotient in lowreg and the remainder in highreg.
1536   // For most data types, to set up the instruction, the dividend is
1537   // copied into lowreg, and lowreg is sign-extended or zero-extended
1538   // into highreg.  The exception is i8, where the dividend is defined
1539   // as a single register rather than a register pair, and we
1540   // therefore directly sign-extend or zero-extend the dividend into
1541   // lowreg, instead of copying, and ignore the highreg.
1542   const static struct DivRemEntry {
1543     // The following portion depends only on the data type.
1544     const TargetRegisterClass *RC;
1545     unsigned LowInReg;  // low part of the register pair
1546     unsigned HighInReg; // high part of the register pair
1547     // The following portion depends on both the data type and the operation.
1548     struct DivRemResult {
1549     unsigned OpDivRem;        // The specific DIV/IDIV opcode to use.
1550     unsigned OpSignExtend;    // Opcode for sign-extending lowreg into
1551                               // highreg, or copying a zero into highreg.
1552     unsigned OpCopy;          // Opcode for copying dividend into lowreg, or
1553                               // zero/sign-extending into lowreg for i8.
1554     unsigned DivRemResultReg; // Register containing the desired result.
1555     bool IsOpSigned;          // Whether to use signed or unsigned form.
1556     } ResultTable[NumOps];
1557   } OpTable[NumTypes] = {
1558     { &X86::GR8RegClass,  X86::AX,  0, {
1559         { X86::IDIV8r,  0,            X86::MOVSX16rr8, X86::AL,  S }, // SDiv
1560         { X86::IDIV8r,  0,            X86::MOVSX16rr8, X86::AH,  S }, // SRem
1561         { X86::DIV8r,   0,            X86::MOVZX16rr8, X86::AL,  U }, // UDiv
1562         { X86::DIV8r,   0,            X86::MOVZX16rr8, X86::AH,  U }, // URem
1563       }
1564     }, // i8
1565     { &X86::GR16RegClass, X86::AX,  X86::DX, {
1566         { X86::IDIV16r, X86::CWD,     Copy,            X86::AX,  S }, // SDiv
1567         { X86::IDIV16r, X86::CWD,     Copy,            X86::DX,  S }, // SRem
1568         { X86::DIV16r,  X86::MOV32r0, Copy,            X86::AX,  U }, // UDiv
1569         { X86::DIV16r,  X86::MOV32r0, Copy,            X86::DX,  U }, // URem
1570       }
1571     }, // i16
1572     { &X86::GR32RegClass, X86::EAX, X86::EDX, {
1573         { X86::IDIV32r, X86::CDQ,     Copy,            X86::EAX, S }, // SDiv
1574         { X86::IDIV32r, X86::CDQ,     Copy,            X86::EDX, S }, // SRem
1575         { X86::DIV32r,  X86::MOV32r0, Copy,            X86::EAX, U }, // UDiv
1576         { X86::DIV32r,  X86::MOV32r0, Copy,            X86::EDX, U }, // URem
1577       }
1578     }, // i32
1579     { &X86::GR64RegClass, X86::RAX, X86::RDX, {
1580         { X86::IDIV64r, X86::CQO,     Copy,            X86::RAX, S }, // SDiv
1581         { X86::IDIV64r, X86::CQO,     Copy,            X86::RDX, S }, // SRem
1582         { X86::DIV64r,  X86::MOV32r0, Copy,            X86::RAX, U }, // UDiv
1583         { X86::DIV64r,  X86::MOV32r0, Copy,            X86::RDX, U }, // URem
1584       }
1585     }, // i64
1586   };
1587
1588   MVT VT;
1589   if (!isTypeLegal(I->getType(), VT))
1590     return false;
1591
1592   unsigned TypeIndex, OpIndex;
1593   switch (VT.SimpleTy) {
1594   default: return false;
1595   case MVT::i8:  TypeIndex = 0; break;
1596   case MVT::i16: TypeIndex = 1; break;
1597   case MVT::i32: TypeIndex = 2; break;
1598   case MVT::i64: TypeIndex = 3;
1599     if (!Subtarget->is64Bit())
1600       return false;
1601     break;
1602   }
1603
1604   switch (I->getOpcode()) {
1605   default: llvm_unreachable("Unexpected div/rem opcode");
1606   case Instruction::SDiv: OpIndex = 0; break;
1607   case Instruction::SRem: OpIndex = 1; break;
1608   case Instruction::UDiv: OpIndex = 2; break;
1609   case Instruction::URem: OpIndex = 3; break;
1610   }
1611
1612   const DivRemEntry &TypeEntry = OpTable[TypeIndex];
1613   const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex];
1614   unsigned Op0Reg = getRegForValue(I->getOperand(0));
1615   if (Op0Reg == 0)
1616     return false;
1617   unsigned Op1Reg = getRegForValue(I->getOperand(1));
1618   if (Op1Reg == 0)
1619     return false;
1620
1621   // Move op0 into low-order input register.
1622   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1623           TII.get(OpEntry.OpCopy), TypeEntry.LowInReg).addReg(Op0Reg);
1624   // Zero-extend or sign-extend into high-order input register.
1625   if (OpEntry.OpSignExtend) {
1626     if (OpEntry.IsOpSigned)
1627       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1628               TII.get(OpEntry.OpSignExtend));
1629     else {
1630       unsigned Zero32 = createResultReg(&X86::GR32RegClass);
1631       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1632               TII.get(X86::MOV32r0), Zero32);
1633
1634       // Copy the zero into the appropriate sub/super/identical physical
1635       // register. Unfortunately the operations needed are not uniform enough to
1636       // fit neatly into the table above.
1637       if (VT.SimpleTy == MVT::i16) {
1638         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1639                 TII.get(Copy), TypeEntry.HighInReg)
1640           .addReg(Zero32, 0, X86::sub_16bit);
1641       } else if (VT.SimpleTy == MVT::i32) {
1642         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1643                 TII.get(Copy), TypeEntry.HighInReg)
1644             .addReg(Zero32);
1645       } else if (VT.SimpleTy == MVT::i64) {
1646         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1647                 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg)
1648             .addImm(0).addReg(Zero32).addImm(X86::sub_32bit);
1649       }
1650     }
1651   }
1652   // Generate the DIV/IDIV instruction.
1653   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1654           TII.get(OpEntry.OpDivRem)).addReg(Op1Reg);
1655   // For i8 remainder, we can't reference AH directly, as we'll end
1656   // up with bogus copies like %R9B = COPY %AH. Reference AX
1657   // instead to prevent AH references in a REX instruction.
1658   //
1659   // The current assumption of the fast register allocator is that isel
1660   // won't generate explicit references to the GPR8_NOREX registers. If
1661   // the allocator and/or the backend get enhanced to be more robust in
1662   // that regard, this can be, and should be, removed.
1663   unsigned ResultReg = 0;
1664   if ((I->getOpcode() == Instruction::SRem ||
1665        I->getOpcode() == Instruction::URem) &&
1666       OpEntry.DivRemResultReg == X86::AH && Subtarget->is64Bit()) {
1667     unsigned SourceSuperReg = createResultReg(&X86::GR16RegClass);
1668     unsigned ResultSuperReg = createResultReg(&X86::GR16RegClass);
1669     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1670             TII.get(Copy), SourceSuperReg).addReg(X86::AX);
1671
1672     // Shift AX right by 8 bits instead of using AH.
1673     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::SHR16ri),
1674             ResultSuperReg).addReg(SourceSuperReg).addImm(8);
1675
1676     // Now reference the 8-bit subreg of the result.
1677     ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultSuperReg,
1678                                            /*Kill=*/true, X86::sub_8bit);
1679   }
1680   // Copy the result out of the physreg if we haven't already.
1681   if (!ResultReg) {
1682     ResultReg = createResultReg(TypeEntry.RC);
1683     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Copy), ResultReg)
1684         .addReg(OpEntry.DivRemResultReg);
1685   }
1686   updateValueMap(I, ResultReg);
1687
1688   return true;
1689 }
1690
1691 /// \brief Emit a conditional move instruction (if the are supported) to lower
1692 /// the select.
1693 bool X86FastISel::X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I) {
1694   // Check if the subtarget supports these instructions.
1695   if (!Subtarget->hasCMov())
1696     return false;
1697
1698   // FIXME: Add support for i8.
1699   if (RetVT < MVT::i16 || RetVT > MVT::i64)
1700     return false;
1701
1702   const Value *Cond = I->getOperand(0);
1703   const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1704   bool NeedTest = true;
1705   X86::CondCode CC = X86::COND_NE;
1706
1707   // Optimize conditions coming from a compare if both instructions are in the
1708   // same basic block (values defined in other basic blocks may not have
1709   // initialized registers).
1710   const auto *CI = dyn_cast<CmpInst>(Cond);
1711   if (CI && (CI->getParent() == I->getParent())) {
1712     CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1713
1714     // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
1715     static unsigned SETFOpcTable[2][3] = {
1716       { X86::SETNPr, X86::SETEr , X86::TEST8rr },
1717       { X86::SETPr,  X86::SETNEr, X86::OR8rr   }
1718     };
1719     unsigned *SETFOpc = nullptr;
1720     switch (Predicate) {
1721     default: break;
1722     case CmpInst::FCMP_OEQ:
1723       SETFOpc = &SETFOpcTable[0][0];
1724       Predicate = CmpInst::ICMP_NE;
1725       break;
1726     case CmpInst::FCMP_UNE:
1727       SETFOpc = &SETFOpcTable[1][0];
1728       Predicate = CmpInst::ICMP_NE;
1729       break;
1730     }
1731
1732     bool NeedSwap;
1733     std::tie(CC, NeedSwap) = getX86ConditionCode(Predicate);
1734     assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
1735
1736     const Value *CmpLHS = CI->getOperand(0);
1737     const Value *CmpRHS = CI->getOperand(1);
1738     if (NeedSwap)
1739       std::swap(CmpLHS, CmpRHS);
1740
1741     EVT CmpVT = TLI.getValueType(CmpLHS->getType());
1742     // Emit a compare of the LHS and RHS, setting the flags.
1743     if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT))
1744      return false;
1745
1746     if (SETFOpc) {
1747       unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
1748       unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
1749       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
1750               FlagReg1);
1751       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
1752               FlagReg2);
1753       auto const &II = TII.get(SETFOpc[2]);
1754       if (II.getNumDefs()) {
1755         unsigned TmpReg = createResultReg(&X86::GR8RegClass);
1756         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, TmpReg)
1757           .addReg(FlagReg2).addReg(FlagReg1);
1758       } else {
1759         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1760           .addReg(FlagReg2).addReg(FlagReg1);
1761       }
1762     }
1763     NeedTest = false;
1764   } else if (foldX86XALUIntrinsic(CC, I, Cond)) {
1765     // Fake request the condition, otherwise the intrinsic might be completely
1766     // optimized away.
1767     unsigned TmpReg = getRegForValue(Cond);
1768     if (TmpReg == 0)
1769       return false;
1770
1771     NeedTest = false;
1772   }
1773
1774   if (NeedTest) {
1775     // Selects operate on i1, however, CondReg is 8 bits width and may contain
1776     // garbage. Indeed, only the less significant bit is supposed to be
1777     // accurate. If we read more than the lsb, we may see non-zero values
1778     // whereas lsb is zero. Therefore, we have to truncate Op0Reg to i1 for
1779     // the select. This is achieved by performing TEST against 1.
1780     unsigned CondReg = getRegForValue(Cond);
1781     if (CondReg == 0)
1782       return false;
1783     bool CondIsKill = hasTrivialKill(Cond);
1784
1785     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
1786       .addReg(CondReg, getKillRegState(CondIsKill)).addImm(1);
1787   }
1788
1789   const Value *LHS = I->getOperand(1);
1790   const Value *RHS = I->getOperand(2);
1791
1792   unsigned RHSReg = getRegForValue(RHS);
1793   bool RHSIsKill = hasTrivialKill(RHS);
1794
1795   unsigned LHSReg = getRegForValue(LHS);
1796   bool LHSIsKill = hasTrivialKill(LHS);
1797
1798   if (!LHSReg || !RHSReg)
1799     return false;
1800
1801   unsigned Opc = X86::getCMovFromCond(CC, RC->getSize());
1802   unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill,
1803                                        LHSReg, LHSIsKill);
1804   updateValueMap(I, ResultReg);
1805   return true;
1806 }
1807
1808 /// \brief Emit SSE instructions to lower the select.
1809 ///
1810 /// Try to use SSE1/SSE2 instructions to simulate a select without branches.
1811 /// This lowers fp selects into a CMP/AND/ANDN/OR sequence when the necessary
1812 /// SSE instructions are available.
1813 bool X86FastISel::X86FastEmitSSESelect(MVT RetVT, const Instruction *I) {
1814   // Optimize conditions coming from a compare if both instructions are in the
1815   // same basic block (values defined in other basic blocks may not have
1816   // initialized registers).
1817   const auto *CI = dyn_cast<FCmpInst>(I->getOperand(0));
1818   if (!CI || (CI->getParent() != I->getParent()))
1819     return false;
1820
1821   if (I->getType() != CI->getOperand(0)->getType() ||
1822       !((Subtarget->hasSSE1() && RetVT == MVT::f32) ||
1823         (Subtarget->hasSSE2() && RetVT == MVT::f64)    ))
1824     return false;
1825
1826   const Value *CmpLHS = CI->getOperand(0);
1827   const Value *CmpRHS = CI->getOperand(1);
1828   CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1829
1830   // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
1831   // We don't have to materialize a zero constant for this case and can just use
1832   // %x again on the RHS.
1833   if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1834     const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS);
1835     if (CmpRHSC && CmpRHSC->isNullValue())
1836       CmpRHS = CmpLHS;
1837   }
1838
1839   unsigned CC;
1840   bool NeedSwap;
1841   std::tie(CC, NeedSwap) = getX86SSEConditionCode(Predicate);
1842   if (CC > 7)
1843     return false;
1844
1845   if (NeedSwap)
1846     std::swap(CmpLHS, CmpRHS);
1847
1848   static unsigned OpcTable[2][2][4] = {
1849     { { X86::CMPSSrr,  X86::FsANDPSrr,  X86::FsANDNPSrr,  X86::FsORPSrr  },
1850       { X86::VCMPSSrr, X86::VFsANDPSrr, X86::VFsANDNPSrr, X86::VFsORPSrr }  },
1851     { { X86::CMPSDrr,  X86::FsANDPDrr,  X86::FsANDNPDrr,  X86::FsORPDrr  },
1852       { X86::VCMPSDrr, X86::VFsANDPDrr, X86::VFsANDNPDrr, X86::VFsORPDrr }  }
1853   };
1854
1855   bool HasAVX = Subtarget->hasAVX();
1856   unsigned *Opc = nullptr;
1857   switch (RetVT.SimpleTy) {
1858   default: return false;
1859   case MVT::f32: Opc = &OpcTable[0][HasAVX][0]; break;
1860   case MVT::f64: Opc = &OpcTable[1][HasAVX][0]; break;
1861   }
1862
1863   const Value *LHS = I->getOperand(1);
1864   const Value *RHS = I->getOperand(2);
1865
1866   unsigned LHSReg = getRegForValue(LHS);
1867   bool LHSIsKill = hasTrivialKill(LHS);
1868
1869   unsigned RHSReg = getRegForValue(RHS);
1870   bool RHSIsKill = hasTrivialKill(RHS);
1871
1872   unsigned CmpLHSReg = getRegForValue(CmpLHS);
1873   bool CmpLHSIsKill = hasTrivialKill(CmpLHS);
1874
1875   unsigned CmpRHSReg = getRegForValue(CmpRHS);
1876   bool CmpRHSIsKill = hasTrivialKill(CmpRHS);
1877
1878   if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS)
1879     return false;
1880
1881   const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1882   unsigned CmpReg = fastEmitInst_rri(Opc[0], RC, CmpLHSReg, CmpLHSIsKill,
1883                                      CmpRHSReg, CmpRHSIsKill, CC);
1884   unsigned AndReg = fastEmitInst_rr(Opc[1], RC, CmpReg, /*IsKill=*/false,
1885                                     LHSReg, LHSIsKill);
1886   unsigned AndNReg = fastEmitInst_rr(Opc[2], RC, CmpReg, /*IsKill=*/true,
1887                                      RHSReg, RHSIsKill);
1888   unsigned ResultReg = fastEmitInst_rr(Opc[3], RC, AndNReg, /*IsKill=*/true,
1889                                        AndReg, /*IsKill=*/true);
1890   updateValueMap(I, ResultReg);
1891   return true;
1892 }
1893
1894 bool X86FastISel::X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I) {
1895   // These are pseudo CMOV instructions and will be later expanded into control-
1896   // flow.
1897   unsigned Opc;
1898   switch (RetVT.SimpleTy) {
1899   default: return false;
1900   case MVT::i8:  Opc = X86::CMOV_GR8;  break;
1901   case MVT::i16: Opc = X86::CMOV_GR16; break;
1902   case MVT::i32: Opc = X86::CMOV_GR32; break;
1903   case MVT::f32: Opc = X86::CMOV_FR32; break;
1904   case MVT::f64: Opc = X86::CMOV_FR64; break;
1905   }
1906
1907   const Value *Cond = I->getOperand(0);
1908   X86::CondCode CC = X86::COND_NE;
1909
1910   // Optimize conditions coming from a compare if both instructions are in the
1911   // same basic block (values defined in other basic blocks may not have
1912   // initialized registers).
1913   const auto *CI = dyn_cast<CmpInst>(Cond);
1914   if (CI && (CI->getParent() == I->getParent())) {
1915     bool NeedSwap;
1916     std::tie(CC, NeedSwap) = getX86ConditionCode(CI->getPredicate());
1917     if (CC > X86::LAST_VALID_COND)
1918       return false;
1919
1920     const Value *CmpLHS = CI->getOperand(0);
1921     const Value *CmpRHS = CI->getOperand(1);
1922
1923     if (NeedSwap)
1924       std::swap(CmpLHS, CmpRHS);
1925
1926     EVT CmpVT = TLI.getValueType(CmpLHS->getType());
1927     if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT))
1928       return false;
1929   } else {
1930     unsigned CondReg = getRegForValue(Cond);
1931     if (CondReg == 0)
1932       return false;
1933     bool CondIsKill = hasTrivialKill(Cond);
1934     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri))
1935       .addReg(CondReg, getKillRegState(CondIsKill)).addImm(1);
1936   }
1937
1938   const Value *LHS = I->getOperand(1);
1939   const Value *RHS = I->getOperand(2);
1940
1941   unsigned LHSReg = getRegForValue(LHS);
1942   bool LHSIsKill = hasTrivialKill(LHS);
1943
1944   unsigned RHSReg = getRegForValue(RHS);
1945   bool RHSIsKill = hasTrivialKill(RHS);
1946
1947   if (!LHSReg || !RHSReg)
1948     return false;
1949
1950   const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1951
1952   unsigned ResultReg =
1953     fastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC);
1954   updateValueMap(I, ResultReg);
1955   return true;
1956 }
1957
1958 bool X86FastISel::X86SelectSelect(const Instruction *I) {
1959   MVT RetVT;
1960   if (!isTypeLegal(I->getType(), RetVT))
1961     return false;
1962
1963   // Check if we can fold the select.
1964   if (const auto *CI = dyn_cast<CmpInst>(I->getOperand(0))) {
1965     CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1966     const Value *Opnd = nullptr;
1967     switch (Predicate) {
1968     default:                              break;
1969     case CmpInst::FCMP_FALSE: Opnd = I->getOperand(2); break;
1970     case CmpInst::FCMP_TRUE:  Opnd = I->getOperand(1); break;
1971     }
1972     // No need for a select anymore - this is an unconditional move.
1973     if (Opnd) {
1974       unsigned OpReg = getRegForValue(Opnd);
1975       if (OpReg == 0)
1976         return false;
1977       bool OpIsKill = hasTrivialKill(Opnd);
1978       const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT);
1979       unsigned ResultReg = createResultReg(RC);
1980       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1981               TII.get(TargetOpcode::COPY), ResultReg)
1982         .addReg(OpReg, getKillRegState(OpIsKill));
1983       updateValueMap(I, ResultReg);
1984       return true;
1985     }
1986   }
1987
1988   // First try to use real conditional move instructions.
1989   if (X86FastEmitCMoveSelect(RetVT, I))
1990     return true;
1991
1992   // Try to use a sequence of SSE instructions to simulate a conditional move.
1993   if (X86FastEmitSSESelect(RetVT, I))
1994     return true;
1995
1996   // Fall-back to pseudo conditional move instructions, which will be later
1997   // converted to control-flow.
1998   if (X86FastEmitPseudoSelect(RetVT, I))
1999     return true;
2000
2001   return false;
2002 }
2003
2004 bool X86FastISel::X86SelectFPExt(const Instruction *I) {
2005   // fpext from float to double.
2006   if (X86ScalarSSEf64 &&
2007       I->getType()->isDoubleTy()) {
2008     const Value *V = I->getOperand(0);
2009     if (V->getType()->isFloatTy()) {
2010       unsigned OpReg = getRegForValue(V);
2011       if (OpReg == 0) return false;
2012       unsigned ResultReg = createResultReg(&X86::FR64RegClass);
2013       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2014               TII.get(X86::CVTSS2SDrr), ResultReg)
2015         .addReg(OpReg);
2016       updateValueMap(I, ResultReg);
2017       return true;
2018     }
2019   }
2020
2021   return false;
2022 }
2023
2024 bool X86FastISel::X86SelectFPTrunc(const Instruction *I) {
2025   if (X86ScalarSSEf64) {
2026     if (I->getType()->isFloatTy()) {
2027       const Value *V = I->getOperand(0);
2028       if (V->getType()->isDoubleTy()) {
2029         unsigned OpReg = getRegForValue(V);
2030         if (OpReg == 0) return false;
2031         unsigned ResultReg = createResultReg(&X86::FR32RegClass);
2032         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2033                 TII.get(X86::CVTSD2SSrr), ResultReg)
2034           .addReg(OpReg);
2035         updateValueMap(I, ResultReg);
2036         return true;
2037       }
2038     }
2039   }
2040
2041   return false;
2042 }
2043
2044 bool X86FastISel::X86SelectTrunc(const Instruction *I) {
2045   EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
2046   EVT DstVT = TLI.getValueType(I->getType());
2047
2048   // This code only handles truncation to byte.
2049   if (DstVT != MVT::i8 && DstVT != MVT::i1)
2050     return false;
2051   if (!TLI.isTypeLegal(SrcVT))
2052     return false;
2053
2054   unsigned InputReg = getRegForValue(I->getOperand(0));
2055   if (!InputReg)
2056     // Unhandled operand.  Halt "fast" selection and bail.
2057     return false;
2058
2059   if (SrcVT == MVT::i8) {
2060     // Truncate from i8 to i1; no code needed.
2061     updateValueMap(I, InputReg);
2062     return true;
2063   }
2064
2065   if (!Subtarget->is64Bit()) {
2066     // If we're on x86-32; we can't extract an i8 from a general register.
2067     // First issue a copy to GR16_ABCD or GR32_ABCD.
2068     const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16) ?
2069       (const TargetRegisterClass*)&X86::GR16_ABCDRegClass :
2070       (const TargetRegisterClass*)&X86::GR32_ABCDRegClass;
2071     unsigned CopyReg = createResultReg(CopyRC);
2072     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY),
2073             CopyReg).addReg(InputReg);
2074     InputReg = CopyReg;
2075   }
2076
2077   // Issue an extract_subreg.
2078   unsigned ResultReg = fastEmitInst_extractsubreg(MVT::i8,
2079                                                   InputReg, /*Kill=*/true,
2080                                                   X86::sub_8bit);
2081   if (!ResultReg)
2082     return false;
2083
2084   updateValueMap(I, ResultReg);
2085   return true;
2086 }
2087
2088 bool X86FastISel::IsMemcpySmall(uint64_t Len) {
2089   return Len <= (Subtarget->is64Bit() ? 32 : 16);
2090 }
2091
2092 bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM,
2093                                      X86AddressMode SrcAM, uint64_t Len) {
2094
2095   // Make sure we don't bloat code by inlining very large memcpy's.
2096   if (!IsMemcpySmall(Len))
2097     return false;
2098
2099   bool i64Legal = Subtarget->is64Bit();
2100
2101   // We don't care about alignment here since we just emit integer accesses.
2102   while (Len) {
2103     MVT VT;
2104     if (Len >= 8 && i64Legal)
2105       VT = MVT::i64;
2106     else if (Len >= 4)
2107       VT = MVT::i32;
2108     else if (Len >= 2)
2109       VT = MVT::i16;
2110     else {
2111       VT = MVT::i8;
2112     }
2113
2114     unsigned Reg;
2115     bool RV = X86FastEmitLoad(VT, SrcAM, nullptr, Reg);
2116     RV &= X86FastEmitStore(VT, Reg, /*Kill=*/true, DestAM);
2117     assert(RV && "Failed to emit load or store??");
2118
2119     unsigned Size = VT.getSizeInBits()/8;
2120     Len -= Size;
2121     DestAM.Disp += Size;
2122     SrcAM.Disp += Size;
2123   }
2124
2125   return true;
2126 }
2127
2128 bool X86FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
2129   // FIXME: Handle more intrinsics.
2130   switch (II->getIntrinsicID()) {
2131   default: return false;
2132   case Intrinsic::frameaddress: {
2133     Type *RetTy = II->getCalledFunction()->getReturnType();
2134
2135     MVT VT;
2136     if (!isTypeLegal(RetTy, VT))
2137       return false;
2138
2139     unsigned Opc;
2140     const TargetRegisterClass *RC = nullptr;
2141
2142     switch (VT.SimpleTy) {
2143     default: llvm_unreachable("Invalid result type for frameaddress.");
2144     case MVT::i32: Opc = X86::MOV32rm; RC = &X86::GR32RegClass; break;
2145     case MVT::i64: Opc = X86::MOV64rm; RC = &X86::GR64RegClass; break;
2146     }
2147
2148     // This needs to be set before we call getFrameRegister, otherwise we get
2149     // the wrong frame register.
2150     MachineFrameInfo *MFI = FuncInfo.MF->getFrameInfo();
2151     MFI->setFrameAddressIsTaken(true);
2152
2153     const X86RegisterInfo *RegInfo = static_cast<const X86RegisterInfo *>(
2154         TM.getSubtargetImpl()->getRegisterInfo());
2155     unsigned FrameReg = RegInfo->getFrameRegister(*(FuncInfo.MF));
2156     assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
2157             (FrameReg == X86::EBP && VT == MVT::i32)) &&
2158            "Invalid Frame Register!");
2159
2160     // Always make a copy of the frame register to to a vreg first, so that we
2161     // never directly reference the frame register (the TwoAddressInstruction-
2162     // Pass doesn't like that).
2163     unsigned SrcReg = createResultReg(RC);
2164     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2165             TII.get(TargetOpcode::COPY), SrcReg).addReg(FrameReg);
2166
2167     // Now recursively load from the frame address.
2168     // movq (%rbp), %rax
2169     // movq (%rax), %rax
2170     // movq (%rax), %rax
2171     // ...
2172     unsigned DestReg;
2173     unsigned Depth = cast<ConstantInt>(II->getOperand(0))->getZExtValue();
2174     while (Depth--) {
2175       DestReg = createResultReg(RC);
2176       addDirectMem(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2177                            TII.get(Opc), DestReg), SrcReg);
2178       SrcReg = DestReg;
2179     }
2180
2181     updateValueMap(II, SrcReg);
2182     return true;
2183   }
2184   case Intrinsic::memcpy: {
2185     const MemCpyInst *MCI = cast<MemCpyInst>(II);
2186     // Don't handle volatile or variable length memcpys.
2187     if (MCI->isVolatile())
2188       return false;
2189
2190     if (isa<ConstantInt>(MCI->getLength())) {
2191       // Small memcpy's are common enough that we want to do them
2192       // without a call if possible.
2193       uint64_t Len = cast<ConstantInt>(MCI->getLength())->getZExtValue();
2194       if (IsMemcpySmall(Len)) {
2195         X86AddressMode DestAM, SrcAM;
2196         if (!X86SelectAddress(MCI->getRawDest(), DestAM) ||
2197             !X86SelectAddress(MCI->getRawSource(), SrcAM))
2198           return false;
2199         TryEmitSmallMemcpy(DestAM, SrcAM, Len);
2200         return true;
2201       }
2202     }
2203
2204     unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
2205     if (!MCI->getLength()->getType()->isIntegerTy(SizeWidth))
2206       return false;
2207
2208     if (MCI->getSourceAddressSpace() > 255 || MCI->getDestAddressSpace() > 255)
2209       return false;
2210
2211     return lowerCallTo(II, "memcpy", II->getNumArgOperands() - 2);
2212   }
2213   case Intrinsic::memset: {
2214     const MemSetInst *MSI = cast<MemSetInst>(II);
2215
2216     if (MSI->isVolatile())
2217       return false;
2218
2219     unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
2220     if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth))
2221       return false;
2222
2223     if (MSI->getDestAddressSpace() > 255)
2224       return false;
2225
2226     return lowerCallTo(II, "memset", II->getNumArgOperands() - 2);
2227   }
2228   case Intrinsic::stackprotector: {
2229     // Emit code to store the stack guard onto the stack.
2230     EVT PtrTy = TLI.getPointerTy();
2231
2232     const Value *Op1 = II->getArgOperand(0); // The guard's value.
2233     const AllocaInst *Slot = cast<AllocaInst>(II->getArgOperand(1));
2234
2235     MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]);
2236
2237     // Grab the frame index.
2238     X86AddressMode AM;
2239     if (!X86SelectAddress(Slot, AM)) return false;
2240     if (!X86FastEmitStore(PtrTy, Op1, AM)) return false;
2241     return true;
2242   }
2243   case Intrinsic::dbg_declare: {
2244     const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);
2245     X86AddressMode AM;
2246     assert(DI->getAddress() && "Null address should be checked earlier!");
2247     if (!X86SelectAddress(DI->getAddress(), AM))
2248       return false;
2249     const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
2250     // FIXME may need to add RegState::Debug to any registers produced,
2251     // although ESP/EBP should be the only ones at the moment.
2252     addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II), AM).
2253       addImm(0).addMetadata(DI->getVariable());
2254     return true;
2255   }
2256   case Intrinsic::trap: {
2257     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TRAP));
2258     return true;
2259   }
2260   case Intrinsic::sqrt: {
2261     if (!Subtarget->hasSSE1())
2262       return false;
2263
2264     Type *RetTy = II->getCalledFunction()->getReturnType();
2265
2266     MVT VT;
2267     if (!isTypeLegal(RetTy, VT))
2268       return false;
2269
2270     // Unfortunately we can't use fastEmit_r, because the AVX version of FSQRT
2271     // is not generated by FastISel yet.
2272     // FIXME: Update this code once tablegen can handle it.
2273     static const unsigned SqrtOpc[2][2] = {
2274       {X86::SQRTSSr, X86::VSQRTSSr},
2275       {X86::SQRTSDr, X86::VSQRTSDr}
2276     };
2277     bool HasAVX = Subtarget->hasAVX();
2278     unsigned Opc;
2279     const TargetRegisterClass *RC;
2280     switch (VT.SimpleTy) {
2281     default: return false;
2282     case MVT::f32: Opc = SqrtOpc[0][HasAVX]; RC = &X86::FR32RegClass; break;
2283     case MVT::f64: Opc = SqrtOpc[1][HasAVX]; RC = &X86::FR64RegClass; break;
2284     }
2285
2286     const Value *SrcVal = II->getArgOperand(0);
2287     unsigned SrcReg = getRegForValue(SrcVal);
2288
2289     if (SrcReg == 0)
2290       return false;
2291
2292     unsigned ImplicitDefReg = 0;
2293     if (HasAVX) {
2294       ImplicitDefReg = createResultReg(RC);
2295       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2296               TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg);
2297     }
2298
2299     unsigned ResultReg = createResultReg(RC);
2300     MachineInstrBuilder MIB;
2301     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
2302                   ResultReg);
2303
2304     if (ImplicitDefReg)
2305       MIB.addReg(ImplicitDefReg);
2306
2307     MIB.addReg(SrcReg);
2308
2309     updateValueMap(II, ResultReg);
2310     return true;
2311   }
2312   case Intrinsic::sadd_with_overflow:
2313   case Intrinsic::uadd_with_overflow:
2314   case Intrinsic::ssub_with_overflow:
2315   case Intrinsic::usub_with_overflow:
2316   case Intrinsic::smul_with_overflow:
2317   case Intrinsic::umul_with_overflow: {
2318     // This implements the basic lowering of the xalu with overflow intrinsics
2319     // into add/sub/mul followed by either seto or setb.
2320     const Function *Callee = II->getCalledFunction();
2321     auto *Ty = cast<StructType>(Callee->getReturnType());
2322     Type *RetTy = Ty->getTypeAtIndex(0U);
2323     Type *CondTy = Ty->getTypeAtIndex(1);
2324
2325     MVT VT;
2326     if (!isTypeLegal(RetTy, VT))
2327       return false;
2328
2329     if (VT < MVT::i8 || VT > MVT::i64)
2330       return false;
2331
2332     const Value *LHS = II->getArgOperand(0);
2333     const Value *RHS = II->getArgOperand(1);
2334
2335     // Canonicalize immediate to the RHS.
2336     if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) &&
2337         isCommutativeIntrinsic(II))
2338       std::swap(LHS, RHS);
2339
2340     bool UseIncDec = false;
2341     if (isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isOne())
2342       UseIncDec = true;
2343
2344     unsigned BaseOpc, CondOpc;
2345     switch (II->getIntrinsicID()) {
2346     default: llvm_unreachable("Unexpected intrinsic!");
2347     case Intrinsic::sadd_with_overflow:
2348       BaseOpc = UseIncDec ? unsigned(X86ISD::INC) : unsigned(ISD::ADD);
2349       CondOpc = X86::SETOr;
2350       break;
2351     case Intrinsic::uadd_with_overflow:
2352       BaseOpc = ISD::ADD; CondOpc = X86::SETBr; break;
2353     case Intrinsic::ssub_with_overflow:
2354       BaseOpc = UseIncDec ? unsigned(X86ISD::DEC) : unsigned(ISD::SUB);
2355       CondOpc = X86::SETOr;
2356       break;
2357     case Intrinsic::usub_with_overflow:
2358       BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
2359     case Intrinsic::smul_with_overflow:
2360       BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break;
2361     case Intrinsic::umul_with_overflow:
2362       BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
2363     }
2364
2365     unsigned LHSReg = getRegForValue(LHS);
2366     if (LHSReg == 0)
2367       return false;
2368     bool LHSIsKill = hasTrivialKill(LHS);
2369
2370     unsigned ResultReg = 0;
2371     // Check if we have an immediate version.
2372     if (const auto *CI = dyn_cast<ConstantInt>(RHS)) {
2373       static const unsigned Opc[2][2][4] = {
2374         { { X86::INC8r, X86::INC16r,    X86::INC32r,    X86::INC64r },
2375           { X86::DEC8r, X86::DEC16r,    X86::DEC32r,    X86::DEC64r }  },
2376         { { X86::INC8r, X86::INC64_16r, X86::INC64_32r, X86::INC64r },
2377           { X86::DEC8r, X86::DEC64_16r, X86::DEC64_32r, X86::DEC64r }  }
2378       };
2379
2380       if (BaseOpc == X86ISD::INC || BaseOpc == X86ISD::DEC) {
2381         ResultReg = createResultReg(TLI.getRegClassFor(VT));
2382         bool Is64Bit = Subtarget->is64Bit();
2383         bool IsDec = BaseOpc == X86ISD::DEC;
2384         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2385                 TII.get(Opc[Is64Bit][IsDec][VT.SimpleTy-MVT::i8]), ResultReg)
2386           .addReg(LHSReg, getKillRegState(LHSIsKill));
2387       } else
2388         ResultReg = fastEmit_ri(VT, VT, BaseOpc, LHSReg, LHSIsKill,
2389                                 CI->getZExtValue());
2390     }
2391
2392     unsigned RHSReg;
2393     bool RHSIsKill;
2394     if (!ResultReg) {
2395       RHSReg = getRegForValue(RHS);
2396       if (RHSReg == 0)
2397         return false;
2398       RHSIsKill = hasTrivialKill(RHS);
2399       ResultReg = fastEmit_rr(VT, VT, BaseOpc, LHSReg, LHSIsKill, RHSReg,
2400                               RHSIsKill);
2401     }
2402
2403     // FastISel doesn't have a pattern for all X86::MUL*r and X86::IMUL*r. Emit
2404     // it manually.
2405     if (BaseOpc == X86ISD::UMUL && !ResultReg) {
2406       static const unsigned MULOpc[] =
2407         { X86::MUL8r, X86::MUL16r, X86::MUL32r, X86::MUL64r };
2408       static const unsigned Reg[] = { X86::AL, X86::AX, X86::EAX, X86::RAX };
2409       // First copy the first operand into RAX, which is an implicit input to
2410       // the X86::MUL*r instruction.
2411       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2412               TII.get(TargetOpcode::COPY), Reg[VT.SimpleTy-MVT::i8])
2413         .addReg(LHSReg, getKillRegState(LHSIsKill));
2414       ResultReg = fastEmitInst_r(MULOpc[VT.SimpleTy-MVT::i8],
2415                                  TLI.getRegClassFor(VT), RHSReg, RHSIsKill);
2416     } else if (BaseOpc == X86ISD::SMUL && !ResultReg) {
2417       static const unsigned MULOpc[] =
2418         { X86::IMUL8r, X86::IMUL16rr, X86::IMUL32rr, X86::IMUL64rr };
2419       if (VT == MVT::i8) {
2420         // Copy the first operand into AL, which is an implicit input to the
2421         // X86::IMUL8r instruction.
2422         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2423                TII.get(TargetOpcode::COPY), X86::AL)
2424           .addReg(LHSReg, getKillRegState(LHSIsKill));
2425         ResultReg = fastEmitInst_r(MULOpc[0], TLI.getRegClassFor(VT), RHSReg,
2426                                    RHSIsKill);
2427       } else
2428         ResultReg = fastEmitInst_rr(MULOpc[VT.SimpleTy-MVT::i8],
2429                                     TLI.getRegClassFor(VT), LHSReg, LHSIsKill,
2430                                     RHSReg, RHSIsKill);
2431     }
2432
2433     if (!ResultReg)
2434       return false;
2435
2436     unsigned ResultReg2 = FuncInfo.CreateRegs(CondTy);
2437     assert((ResultReg+1) == ResultReg2 && "Nonconsecutive result registers.");
2438     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CondOpc),
2439             ResultReg2);
2440
2441     updateValueMap(II, ResultReg, 2);
2442     return true;
2443   }
2444   case Intrinsic::x86_sse_cvttss2si:
2445   case Intrinsic::x86_sse_cvttss2si64:
2446   case Intrinsic::x86_sse2_cvttsd2si:
2447   case Intrinsic::x86_sse2_cvttsd2si64: {
2448     bool IsInputDouble;
2449     switch (II->getIntrinsicID()) {
2450     default: llvm_unreachable("Unexpected intrinsic.");
2451     case Intrinsic::x86_sse_cvttss2si:
2452     case Intrinsic::x86_sse_cvttss2si64:
2453       if (!Subtarget->hasSSE1())
2454         return false;
2455       IsInputDouble = false;
2456       break;
2457     case Intrinsic::x86_sse2_cvttsd2si:
2458     case Intrinsic::x86_sse2_cvttsd2si64:
2459       if (!Subtarget->hasSSE2())
2460         return false;
2461       IsInputDouble = true;
2462       break;
2463     }
2464
2465     Type *RetTy = II->getCalledFunction()->getReturnType();
2466     MVT VT;
2467     if (!isTypeLegal(RetTy, VT))
2468       return false;
2469
2470     static const unsigned CvtOpc[2][2][2] = {
2471       { { X86::CVTTSS2SIrr,   X86::VCVTTSS2SIrr   },
2472         { X86::CVTTSS2SI64rr, X86::VCVTTSS2SI64rr }  },
2473       { { X86::CVTTSD2SIrr,   X86::VCVTTSD2SIrr   },
2474         { X86::CVTTSD2SI64rr, X86::VCVTTSD2SI64rr }  }
2475     };
2476     bool HasAVX = Subtarget->hasAVX();
2477     unsigned Opc;
2478     switch (VT.SimpleTy) {
2479     default: llvm_unreachable("Unexpected result type.");
2480     case MVT::i32: Opc = CvtOpc[IsInputDouble][0][HasAVX]; break;
2481     case MVT::i64: Opc = CvtOpc[IsInputDouble][1][HasAVX]; break;
2482     }
2483
2484     // Check if we can fold insertelement instructions into the convert.
2485     const Value *Op = II->getArgOperand(0);
2486     while (auto *IE = dyn_cast<InsertElementInst>(Op)) {
2487       const Value *Index = IE->getOperand(2);
2488       if (!isa<ConstantInt>(Index))
2489         break;
2490       unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
2491
2492       if (Idx == 0) {
2493         Op = IE->getOperand(1);
2494         break;
2495       }
2496       Op = IE->getOperand(0);
2497     }
2498
2499     unsigned Reg = getRegForValue(Op);
2500     if (Reg == 0)
2501       return false;
2502
2503     unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
2504     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
2505       .addReg(Reg);
2506
2507     updateValueMap(II, ResultReg);
2508     return true;
2509   }
2510   }
2511 }
2512
2513 bool X86FastISel::fastLowerArguments() {
2514   if (!FuncInfo.CanLowerReturn)
2515     return false;
2516
2517   const Function *F = FuncInfo.Fn;
2518   if (F->isVarArg())
2519     return false;
2520
2521   CallingConv::ID CC = F->getCallingConv();
2522   if (CC != CallingConv::C)
2523     return false;
2524
2525   if (Subtarget->isCallingConvWin64(CC))
2526     return false;
2527
2528   if (!Subtarget->is64Bit())
2529     return false;
2530   
2531   // Only handle simple cases. i.e. Up to 6 i32/i64 scalar arguments.
2532   unsigned GPRCnt = 0;
2533   unsigned FPRCnt = 0;
2534   unsigned Idx = 0;
2535   for (auto const &Arg : F->args()) {
2536     // The first argument is at index 1.
2537     ++Idx;
2538     if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) ||
2539         F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
2540         F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
2541         F->getAttributes().hasAttribute(Idx, Attribute::Nest))
2542       return false;
2543
2544     Type *ArgTy = Arg.getType();
2545     if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy())
2546       return false;
2547
2548     EVT ArgVT = TLI.getValueType(ArgTy);
2549     if (!ArgVT.isSimple()) return false;
2550     switch (ArgVT.getSimpleVT().SimpleTy) {
2551     default: return false;
2552     case MVT::i32:
2553     case MVT::i64:
2554       ++GPRCnt;
2555       break;
2556     case MVT::f32:
2557     case MVT::f64:
2558       if (!Subtarget->hasSSE1())
2559         return false;
2560       ++FPRCnt;
2561       break;
2562     }
2563
2564     if (GPRCnt > 6)
2565       return false;
2566
2567     if (FPRCnt > 8)
2568       return false;
2569   }
2570
2571   static const MCPhysReg GPR32ArgRegs[] = {
2572     X86::EDI, X86::ESI, X86::EDX, X86::ECX, X86::R8D, X86::R9D
2573   };
2574   static const MCPhysReg GPR64ArgRegs[] = {
2575     X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8 , X86::R9
2576   };
2577   static const MCPhysReg XMMArgRegs[] = {
2578     X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2579     X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2580   };
2581
2582   unsigned GPRIdx = 0;
2583   unsigned FPRIdx = 0;
2584   for (auto const &Arg : F->args()) {
2585     MVT VT = TLI.getSimpleValueType(Arg.getType());
2586     const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
2587     unsigned SrcReg;
2588     switch (VT.SimpleTy) {
2589     default: llvm_unreachable("Unexpected value type.");
2590     case MVT::i32: SrcReg = GPR32ArgRegs[GPRIdx++]; break;
2591     case MVT::i64: SrcReg = GPR64ArgRegs[GPRIdx++]; break;
2592     case MVT::f32: // fall-through
2593     case MVT::f64: SrcReg = XMMArgRegs[FPRIdx++]; break;
2594     }
2595     unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
2596     // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
2597     // Without this, EmitLiveInCopies may eliminate the livein if its only
2598     // use is a bitcast (which isn't turned into an instruction).
2599     unsigned ResultReg = createResultReg(RC);
2600     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2601             TII.get(TargetOpcode::COPY), ResultReg)
2602       .addReg(DstReg, getKillRegState(true));
2603     updateValueMap(&Arg, ResultReg);
2604   }
2605   return true;
2606 }
2607
2608 static unsigned computeBytesPoppedByCallee(const X86Subtarget *Subtarget,
2609                                            CallingConv::ID CC,
2610                                            ImmutableCallSite *CS) {
2611   if (Subtarget->is64Bit())
2612     return 0;
2613   if (Subtarget->getTargetTriple().isOSMSVCRT())
2614     return 0;
2615   if (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2616       CC == CallingConv::HiPE)
2617     return 0;
2618   if (CS && !CS->paramHasAttr(1, Attribute::StructRet))
2619     return 0;
2620   if (CS && CS->paramHasAttr(1, Attribute::InReg))
2621     return 0;
2622   return 4;
2623 }
2624
2625 bool X86FastISel::fastLowerCall(CallLoweringInfo &CLI) {
2626   auto &OutVals       = CLI.OutVals;
2627   auto &OutFlags      = CLI.OutFlags;
2628   auto &OutRegs       = CLI.OutRegs;
2629   auto &Ins           = CLI.Ins;
2630   auto &InRegs        = CLI.InRegs;
2631   CallingConv::ID CC  = CLI.CallConv;
2632   bool &IsTailCall    = CLI.IsTailCall;
2633   bool IsVarArg       = CLI.IsVarArg;
2634   const Value *Callee = CLI.Callee;
2635   const char *SymName = CLI.SymName;
2636
2637   bool Is64Bit        = Subtarget->is64Bit();
2638   bool IsWin64        = Subtarget->isCallingConvWin64(CC);
2639
2640   // Handle only C, fastcc, and webkit_js calling conventions for now.
2641   switch (CC) {
2642   default: return false;
2643   case CallingConv::C:
2644   case CallingConv::Fast:
2645   case CallingConv::WebKit_JS:
2646   case CallingConv::X86_FastCall:
2647   case CallingConv::X86_64_Win64:
2648   case CallingConv::X86_64_SysV:
2649     break;
2650   }
2651
2652   // Allow SelectionDAG isel to handle tail calls.
2653   if (IsTailCall)
2654     return false;
2655
2656   // fastcc with -tailcallopt is intended to provide a guaranteed
2657   // tail call optimization. Fastisel doesn't know how to do that.
2658   if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
2659     return false;
2660
2661   // Don't know how to handle Win64 varargs yet.  Nothing special needed for
2662   // x86-32. Special handling for x86-64 is implemented.
2663   if (IsVarArg && IsWin64)
2664     return false;
2665
2666   // Don't know about inalloca yet.
2667   if (CLI.CS && CLI.CS->hasInAllocaArgument())
2668     return false;
2669
2670   // Fast-isel doesn't know about callee-pop yet.
2671   if (X86::isCalleePop(CC, Subtarget->is64Bit(), IsVarArg,
2672                        TM.Options.GuaranteedTailCallOpt))
2673     return false;
2674
2675   // If this is a constant i1/i8/i16 argument, promote to i32 to avoid an extra
2676   // instruction. This is safe because it is common to all FastISel supported
2677   // calling conventions on x86.
2678   for (int i = 0, e = OutVals.size(); i != e; ++i) {
2679     Value *&Val = OutVals[i];
2680     ISD::ArgFlagsTy Flags = OutFlags[i];
2681     if (auto *CI = dyn_cast<ConstantInt>(Val)) {
2682       if (CI->getBitWidth() < 32) {
2683         if (Flags.isSExt())
2684           Val = ConstantExpr::getSExt(CI, Type::getInt32Ty(CI->getContext()));
2685         else
2686           Val = ConstantExpr::getZExt(CI, Type::getInt32Ty(CI->getContext()));
2687       }
2688     }
2689
2690     // Passing bools around ends up doing a trunc to i1 and passing it.
2691     // Codegen this as an argument + "and 1".
2692     if (auto *TI = dyn_cast<TruncInst>(Val)) {
2693       if (TI->getType()->isIntegerTy(1) && CLI.CS &&
2694           (TI->getParent() == CLI.CS->getInstruction()->getParent()) &&
2695           TI->hasOneUse()) {
2696         Val = cast<TruncInst>(Val)->getOperand(0);
2697         unsigned ResultReg = getRegForValue(Val);
2698
2699         if (!ResultReg)
2700           return false;
2701
2702         MVT ArgVT;
2703         if (!isTypeLegal(Val->getType(), ArgVT))
2704           return false;
2705
2706         ResultReg =
2707           fastEmit_ri(ArgVT, ArgVT, ISD::AND, ResultReg, Val->hasOneUse(), 1);
2708
2709         if (!ResultReg)
2710           return false;
2711         updateValueMap(Val, ResultReg);
2712       }
2713     }
2714   }
2715
2716   // Analyze operands of the call, assigning locations to each operand.
2717   SmallVector<CCValAssign, 16> ArgLocs;
2718   CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, ArgLocs, CLI.RetTy->getContext());
2719
2720   // Allocate shadow area for Win64
2721   if (IsWin64)
2722     CCInfo.AllocateStack(32, 8);
2723
2724   SmallVector<MVT, 16> OutVTs;
2725   for (auto *Val : OutVals) {
2726     MVT VT;
2727     if (!isTypeLegal(Val->getType(), VT))
2728       return false;
2729     OutVTs.push_back(VT);
2730   }
2731   CCInfo.AnalyzeCallOperands(OutVTs, OutFlags, CC_X86);
2732
2733   // Get a count of how many bytes are to be pushed on the stack.
2734   unsigned NumBytes = CCInfo.getNextStackOffset();
2735
2736   // Issue CALLSEQ_START
2737   unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
2738   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown))
2739     .addImm(NumBytes);
2740
2741   // Walk the register/memloc assignments, inserting copies/loads.
2742   const X86RegisterInfo *RegInfo = static_cast<const X86RegisterInfo *>(
2743       TM.getSubtargetImpl()->getRegisterInfo());
2744   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2745     CCValAssign const &VA = ArgLocs[i];
2746     const Value *ArgVal = OutVals[VA.getValNo()];
2747     MVT ArgVT = OutVTs[VA.getValNo()];
2748
2749     if (ArgVT == MVT::x86mmx)
2750       return false;
2751
2752     unsigned ArgReg = getRegForValue(ArgVal);
2753     if (!ArgReg)
2754       return false;
2755
2756     // Promote the value if needed.
2757     switch (VA.getLocInfo()) {
2758     case CCValAssign::Full: break;
2759     case CCValAssign::SExt: {
2760       assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2761              "Unexpected extend");
2762       bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
2763                                        ArgVT, ArgReg);
2764       assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
2765       ArgVT = VA.getLocVT();
2766       break;
2767     }
2768     case CCValAssign::ZExt: {
2769       assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2770              "Unexpected extend");
2771       bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
2772                                        ArgVT, ArgReg);
2773       assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
2774       ArgVT = VA.getLocVT();
2775       break;
2776     }
2777     case CCValAssign::AExt: {
2778       assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2779              "Unexpected extend");
2780       bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), ArgReg,
2781                                        ArgVT, ArgReg);
2782       if (!Emitted)
2783         Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
2784                                     ArgVT, ArgReg);
2785       if (!Emitted)
2786         Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
2787                                     ArgVT, ArgReg);
2788
2789       assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
2790       ArgVT = VA.getLocVT();
2791       break;
2792     }
2793     case CCValAssign::BCvt: {
2794       ArgReg = fastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, ArgReg,
2795                           /*TODO: Kill=*/false);
2796       assert(ArgReg && "Failed to emit a bitcast!");
2797       ArgVT = VA.getLocVT();
2798       break;
2799     }
2800     case CCValAssign::VExt:
2801       // VExt has not been implemented, so this should be impossible to reach
2802       // for now.  However, fallback to Selection DAG isel once implemented.
2803       return false;
2804     case CCValAssign::AExtUpper:
2805     case CCValAssign::SExtUpper:
2806     case CCValAssign::ZExtUpper:
2807     case CCValAssign::FPExt:
2808       llvm_unreachable("Unexpected loc info!");
2809     case CCValAssign::Indirect:
2810       // FIXME: Indirect doesn't need extending, but fast-isel doesn't fully
2811       // support this.
2812       return false;
2813     }
2814
2815     if (VA.isRegLoc()) {
2816       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2817               TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg);
2818       OutRegs.push_back(VA.getLocReg());
2819     } else {
2820       assert(VA.isMemLoc());
2821
2822       // Don't emit stores for undef values.
2823       if (isa<UndefValue>(ArgVal))
2824         continue;
2825
2826       unsigned LocMemOffset = VA.getLocMemOffset();
2827       X86AddressMode AM;
2828       AM.Base.Reg = RegInfo->getStackRegister();
2829       AM.Disp = LocMemOffset;
2830       ISD::ArgFlagsTy Flags = OutFlags[VA.getValNo()];
2831       unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType());
2832       MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
2833         MachinePointerInfo::getStack(LocMemOffset), MachineMemOperand::MOStore,
2834         ArgVT.getStoreSize(), Alignment);
2835       if (Flags.isByVal()) {
2836         X86AddressMode SrcAM;
2837         SrcAM.Base.Reg = ArgReg;
2838         if (!TryEmitSmallMemcpy(AM, SrcAM, Flags.getByValSize()))
2839           return false;
2840       } else if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) {
2841         // If this is a really simple value, emit this with the Value* version
2842         // of X86FastEmitStore.  If it isn't simple, we don't want to do this,
2843         // as it can cause us to reevaluate the argument.
2844         if (!X86FastEmitStore(ArgVT, ArgVal, AM, MMO))
2845           return false;
2846       } else {
2847         bool ValIsKill = hasTrivialKill(ArgVal);
2848         if (!X86FastEmitStore(ArgVT, ArgReg, ValIsKill, AM, MMO))
2849           return false;
2850       }
2851     }
2852   }
2853
2854   // ELF / PIC requires GOT in the EBX register before function calls via PLT
2855   // GOT pointer.
2856   if (Subtarget->isPICStyleGOT()) {
2857     unsigned Base = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
2858     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2859             TII.get(TargetOpcode::COPY), X86::EBX).addReg(Base);
2860   }
2861
2862   if (Is64Bit && IsVarArg && !IsWin64) {
2863     // From AMD64 ABI document:
2864     // For calls that may call functions that use varargs or stdargs
2865     // (prototype-less calls or calls to functions containing ellipsis (...) in
2866     // the declaration) %al is used as hidden argument to specify the number
2867     // of SSE registers used. The contents of %al do not need to match exactly
2868     // the number of registers, but must be an ubound on the number of SSE
2869     // registers used and is in the range 0 - 8 inclusive.
2870
2871     // Count the number of XMM registers allocated.
2872     static const MCPhysReg XMMArgRegs[] = {
2873       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2874       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2875     };
2876     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2877     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2878            && "SSE registers cannot be used when SSE is disabled");
2879     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
2880             X86::AL).addImm(NumXMMRegs);
2881   }
2882
2883   // Materialize callee address in a register. FIXME: GV address can be
2884   // handled with a CALLpcrel32 instead.
2885   X86AddressMode CalleeAM;
2886   if (!X86SelectCallAddress(Callee, CalleeAM))
2887     return false;
2888
2889   unsigned CalleeOp = 0;
2890   const GlobalValue *GV = nullptr;
2891   if (CalleeAM.GV != nullptr) {
2892     GV = CalleeAM.GV;
2893   } else if (CalleeAM.Base.Reg != 0) {
2894     CalleeOp = CalleeAM.Base.Reg;
2895   } else
2896     return false;
2897
2898   // Issue the call.
2899   MachineInstrBuilder MIB;
2900   if (CalleeOp) {
2901     // Register-indirect call.
2902     unsigned CallOpc = Is64Bit ? X86::CALL64r : X86::CALL32r;
2903     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc))
2904       .addReg(CalleeOp);
2905   } else {
2906     // Direct call.
2907     assert(GV && "Not a direct call");
2908     unsigned CallOpc = Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32;
2909
2910     // See if we need any target-specific flags on the GV operand.
2911     unsigned char OpFlags = 0;
2912
2913     // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2914     // external symbols most go through the PLT in PIC mode.  If the symbol
2915     // has hidden or protected visibility, or if it is static or local, then
2916     // we don't need to use the PLT - we can directly call it.
2917     if (Subtarget->isTargetELF() &&
2918         TM.getRelocationModel() == Reloc::PIC_ &&
2919         GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2920       OpFlags = X86II::MO_PLT;
2921     } else if (Subtarget->isPICStyleStubAny() &&
2922                (GV->isDeclaration() || GV->isWeakForLinker()) &&
2923                (!Subtarget->getTargetTriple().isMacOSX() ||
2924                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2925       // PC-relative references to external symbols should go through $stub,
2926       // unless we're building with the leopard linker or later, which
2927       // automatically synthesizes these stubs.
2928       OpFlags = X86II::MO_DARWIN_STUB;
2929     }
2930
2931     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc));
2932     if (SymName)
2933       MIB.addExternalSymbol(SymName, OpFlags);
2934     else
2935       MIB.addGlobalAddress(GV, 0, OpFlags);
2936   }
2937
2938   // Add a register mask operand representing the call-preserved registers.
2939   // Proper defs for return values will be added by setPhysRegsDeadExcept().
2940   MIB.addRegMask(TRI.getCallPreservedMask(CC));
2941
2942   // Add an implicit use GOT pointer in EBX.
2943   if (Subtarget->isPICStyleGOT())
2944     MIB.addReg(X86::EBX, RegState::Implicit);
2945
2946   if (Is64Bit && IsVarArg && !IsWin64)
2947     MIB.addReg(X86::AL, RegState::Implicit);
2948
2949   // Add implicit physical register uses to the call.
2950   for (auto Reg : OutRegs)
2951     MIB.addReg(Reg, RegState::Implicit);
2952
2953   // Issue CALLSEQ_END
2954   unsigned NumBytesForCalleeToPop =
2955     computeBytesPoppedByCallee(Subtarget, CC, CLI.CS);
2956   unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
2957   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp))
2958     .addImm(NumBytes).addImm(NumBytesForCalleeToPop);
2959
2960   // Now handle call return values.
2961   SmallVector<CCValAssign, 16> RVLocs;
2962   CCState CCRetInfo(CC, IsVarArg, *FuncInfo.MF, RVLocs,
2963                     CLI.RetTy->getContext());
2964   CCRetInfo.AnalyzeCallResult(Ins, RetCC_X86);
2965
2966   // Copy all of the result registers out of their specified physreg.
2967   unsigned ResultReg = FuncInfo.CreateRegs(CLI.RetTy);
2968   for (unsigned i = 0; i != RVLocs.size(); ++i) {
2969     CCValAssign &VA = RVLocs[i];
2970     EVT CopyVT = VA.getValVT();
2971     unsigned CopyReg = ResultReg + i;
2972
2973     // If this is x86-64, and we disabled SSE, we can't return FP values
2974     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2975         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2976       report_fatal_error("SSE register return with SSE disabled");
2977     }
2978
2979     // If we prefer to use the value in xmm registers, copy it out as f80 and
2980     // use a truncate to move it from fp stack reg to xmm reg.
2981     if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
2982         isScalarFPTypeInSSEReg(VA.getValVT())) {
2983       CopyVT = MVT::f80;
2984       CopyReg = createResultReg(&X86::RFP80RegClass);
2985     }
2986
2987     // Copy out the result.
2988     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2989             TII.get(TargetOpcode::COPY), CopyReg).addReg(VA.getLocReg());
2990     InRegs.push_back(VA.getLocReg());
2991
2992     // Round the f80 to the right size, which also moves it to the appropriate
2993     // xmm register. This is accomplished by storing the f80 value in memory
2994     // and then loading it back.
2995     if (CopyVT != VA.getValVT()) {
2996       EVT ResVT = VA.getValVT();
2997       unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
2998       unsigned MemSize = ResVT.getSizeInBits()/8;
2999       int FI = MFI.CreateStackObject(MemSize, MemSize, false);
3000       addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3001                                 TII.get(Opc)), FI)
3002         .addReg(CopyReg);
3003       Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
3004       addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3005                                 TII.get(Opc), ResultReg + i), FI);
3006     }
3007   }
3008
3009   CLI.ResultReg = ResultReg;
3010   CLI.NumResultRegs = RVLocs.size();
3011   CLI.Call = MIB;
3012
3013   return true;
3014 }
3015
3016 bool
3017 X86FastISel::fastSelectInstruction(const Instruction *I)  {
3018   switch (I->getOpcode()) {
3019   default: break;
3020   case Instruction::Load:
3021     return X86SelectLoad(I);
3022   case Instruction::Store:
3023     return X86SelectStore(I);
3024   case Instruction::Ret:
3025     return X86SelectRet(I);
3026   case Instruction::ICmp:
3027   case Instruction::FCmp:
3028     return X86SelectCmp(I);
3029   case Instruction::ZExt:
3030     return X86SelectZExt(I);
3031   case Instruction::Br:
3032     return X86SelectBranch(I);
3033   case Instruction::LShr:
3034   case Instruction::AShr:
3035   case Instruction::Shl:
3036     return X86SelectShift(I);
3037   case Instruction::SDiv:
3038   case Instruction::UDiv:
3039   case Instruction::SRem:
3040   case Instruction::URem:
3041     return X86SelectDivRem(I);
3042   case Instruction::Select:
3043     return X86SelectSelect(I);
3044   case Instruction::Trunc:
3045     return X86SelectTrunc(I);
3046   case Instruction::FPExt:
3047     return X86SelectFPExt(I);
3048   case Instruction::FPTrunc:
3049     return X86SelectFPTrunc(I);
3050   case Instruction::IntToPtr: // Deliberate fall-through.
3051   case Instruction::PtrToInt: {
3052     EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
3053     EVT DstVT = TLI.getValueType(I->getType());
3054     if (DstVT.bitsGT(SrcVT))
3055       return X86SelectZExt(I);
3056     if (DstVT.bitsLT(SrcVT))
3057       return X86SelectTrunc(I);
3058     unsigned Reg = getRegForValue(I->getOperand(0));
3059     if (Reg == 0) return false;
3060     updateValueMap(I, Reg);
3061     return true;
3062   }
3063   }
3064
3065   return false;
3066 }
3067
3068 unsigned X86FastISel::X86MaterializeInt(const ConstantInt *CI, MVT VT) {
3069   if (VT > MVT::i64)
3070     return 0;
3071
3072   uint64_t Imm = CI->getZExtValue();
3073   if (Imm == 0) {
3074     unsigned SrcReg = fastEmitInst_(X86::MOV32r0, &X86::GR32RegClass);
3075     switch (VT.SimpleTy) {
3076     default: llvm_unreachable("Unexpected value type");
3077     case MVT::i1:
3078     case MVT::i8:
3079       return fastEmitInst_extractsubreg(MVT::i8, SrcReg, /*Kill=*/true,
3080                                         X86::sub_8bit);
3081     case MVT::i16:
3082       return fastEmitInst_extractsubreg(MVT::i16, SrcReg, /*Kill=*/true,
3083                                         X86::sub_16bit);
3084     case MVT::i32:
3085       return SrcReg;
3086     case MVT::i64: {
3087       unsigned ResultReg = createResultReg(&X86::GR64RegClass);
3088       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3089               TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg)
3090         .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit);
3091       return ResultReg;
3092     }
3093     }
3094   }
3095
3096   unsigned Opc = 0;
3097   switch (VT.SimpleTy) {
3098   default: llvm_unreachable("Unexpected value type");
3099   case MVT::i1:  VT = MVT::i8; // fall-through
3100   case MVT::i8:  Opc = X86::MOV8ri;  break;
3101   case MVT::i16: Opc = X86::MOV16ri; break;
3102   case MVT::i32: Opc = X86::MOV32ri; break;
3103   case MVT::i64: {
3104     if (isUInt<32>(Imm))
3105       Opc = X86::MOV32ri;
3106     else if (isInt<32>(Imm))
3107       Opc = X86::MOV64ri32;
3108     else
3109       Opc = X86::MOV64ri;
3110     break;
3111   }
3112   }
3113   if (VT == MVT::i64 && Opc == X86::MOV32ri) {
3114     unsigned SrcReg = fastEmitInst_i(Opc, &X86::GR32RegClass, Imm);
3115     unsigned ResultReg = createResultReg(&X86::GR64RegClass);
3116     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3117             TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg)
3118       .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit);
3119     return ResultReg;
3120   }
3121   return fastEmitInst_i(Opc, TLI.getRegClassFor(VT), Imm);
3122 }
3123
3124 unsigned X86FastISel::X86MaterializeFP(const ConstantFP *CFP, MVT VT) {
3125   if (CFP->isNullValue())
3126     return fastMaterializeFloatZero(CFP);
3127
3128   // Can't handle alternate code models yet.
3129   CodeModel::Model CM = TM.getCodeModel();
3130   if (CM != CodeModel::Small && CM != CodeModel::Large)
3131     return 0;
3132
3133   // Get opcode and regclass of the output for the given load instruction.
3134   unsigned Opc = 0;
3135   const TargetRegisterClass *RC = nullptr;
3136   switch (VT.SimpleTy) {
3137   default: return 0;
3138   case MVT::f32:
3139     if (X86ScalarSSEf32) {
3140       Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
3141       RC  = &X86::FR32RegClass;
3142     } else {
3143       Opc = X86::LD_Fp32m;
3144       RC  = &X86::RFP32RegClass;
3145     }
3146     break;
3147   case MVT::f64:
3148     if (X86ScalarSSEf64) {
3149       Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
3150       RC  = &X86::FR64RegClass;
3151     } else {
3152       Opc = X86::LD_Fp64m;
3153       RC  = &X86::RFP64RegClass;
3154     }
3155     break;
3156   case MVT::f80:
3157     // No f80 support yet.
3158     return 0;
3159   }
3160
3161   // MachineConstantPool wants an explicit alignment.
3162   unsigned Align = DL.getPrefTypeAlignment(CFP->getType());
3163   if (Align == 0) {
3164     // Alignment of vector types. FIXME!
3165     Align = DL.getTypeAllocSize(CFP->getType());
3166   }
3167
3168   // x86-32 PIC requires a PIC base register for constant pools.
3169   unsigned PICBase = 0;
3170   unsigned char OpFlag = 0;
3171   if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
3172     OpFlag = X86II::MO_PIC_BASE_OFFSET;
3173     PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
3174   } else if (Subtarget->isPICStyleGOT()) {
3175     OpFlag = X86II::MO_GOTOFF;
3176     PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
3177   } else if (Subtarget->isPICStyleRIPRel() &&
3178              TM.getCodeModel() == CodeModel::Small) {
3179     PICBase = X86::RIP;
3180   }
3181
3182   // Create the load from the constant pool.
3183   unsigned CPI = MCP.getConstantPoolIndex(CFP, Align);
3184   unsigned ResultReg = createResultReg(RC);
3185
3186   if (CM == CodeModel::Large) {
3187     unsigned AddrReg = createResultReg(&X86::GR64RegClass);
3188     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri),
3189             AddrReg)
3190       .addConstantPoolIndex(CPI, 0, OpFlag);
3191     MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3192                                       TII.get(Opc), ResultReg);
3193     addDirectMem(MIB, AddrReg);
3194     MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
3195       MachinePointerInfo::getConstantPool(), MachineMemOperand::MOLoad,
3196       TM.getSubtargetImpl()->getDataLayout()->getPointerSize(), Align);
3197     MIB->addMemOperand(*FuncInfo.MF, MMO);
3198     return ResultReg;
3199   }
3200
3201   addConstantPoolReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3202                                    TII.get(Opc), ResultReg),
3203                            CPI, PICBase, OpFlag);
3204   return ResultReg;
3205 }
3206
3207 unsigned X86FastISel::X86MaterializeGV(const GlobalValue *GV, MVT VT) {
3208   // Can't handle alternate code models yet.
3209   if (TM.getCodeModel() != CodeModel::Small)
3210     return 0;
3211
3212   // Materialize addresses with LEA/MOV instructions.
3213   X86AddressMode AM;
3214   if (X86SelectAddress(GV, AM)) {
3215     // If the expression is just a basereg, then we're done, otherwise we need
3216     // to emit an LEA.
3217     if (AM.BaseType == X86AddressMode::RegBase &&
3218         AM.IndexReg == 0 && AM.Disp == 0 && AM.GV == nullptr)
3219       return AM.Base.Reg;
3220
3221     unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
3222     if (TM.getRelocationModel() == Reloc::Static &&
3223         TLI.getPointerTy() == MVT::i64) {
3224       // The displacement code could be more than 32 bits away so we need to use
3225       // an instruction with a 64 bit immediate
3226       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri),
3227               ResultReg)
3228         .addGlobalAddress(GV);
3229     } else {
3230       unsigned Opc = TLI.getPointerTy() == MVT::i32 ? X86::LEA32r : X86::LEA64r;
3231       addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3232                              TII.get(Opc), ResultReg), AM);
3233     }
3234     return ResultReg;
3235   }
3236   return 0;
3237 }
3238
3239 unsigned X86FastISel::fastMaterializeConstant(const Constant *C) {
3240   EVT CEVT = TLI.getValueType(C->getType(), true);
3241
3242   // Only handle simple types.
3243   if (!CEVT.isSimple())
3244     return 0;
3245   MVT VT = CEVT.getSimpleVT();
3246
3247   if (const auto *CI = dyn_cast<ConstantInt>(C))
3248     return X86MaterializeInt(CI, VT);
3249   else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
3250     return X86MaterializeFP(CFP, VT);
3251   else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
3252     return X86MaterializeGV(GV, VT);
3253
3254   return 0;
3255 }
3256
3257 unsigned X86FastISel::fastMaterializeAlloca(const AllocaInst *C) {
3258   // Fail on dynamic allocas. At this point, getRegForValue has already
3259   // checked its CSE maps, so if we're here trying to handle a dynamic
3260   // alloca, we're not going to succeed. X86SelectAddress has a
3261   // check for dynamic allocas, because it's called directly from
3262   // various places, but targetMaterializeAlloca also needs a check
3263   // in order to avoid recursion between getRegForValue,
3264   // X86SelectAddrss, and targetMaterializeAlloca.
3265   if (!FuncInfo.StaticAllocaMap.count(C))
3266     return 0;
3267   assert(C->isStaticAlloca() && "dynamic alloca in the static alloca map?");
3268
3269   X86AddressMode AM;
3270   if (!X86SelectAddress(C, AM))
3271     return 0;
3272   unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
3273   const TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
3274   unsigned ResultReg = createResultReg(RC);
3275   addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3276                          TII.get(Opc), ResultReg), AM);
3277   return ResultReg;
3278 }
3279
3280 unsigned X86FastISel::fastMaterializeFloatZero(const ConstantFP *CF) {
3281   MVT VT;
3282   if (!isTypeLegal(CF->getType(), VT))
3283     return 0;
3284
3285   // Get opcode and regclass for the given zero.
3286   unsigned Opc = 0;
3287   const TargetRegisterClass *RC = nullptr;
3288   switch (VT.SimpleTy) {
3289   default: return 0;
3290   case MVT::f32:
3291     if (X86ScalarSSEf32) {
3292       Opc = X86::FsFLD0SS;
3293       RC  = &X86::FR32RegClass;
3294     } else {
3295       Opc = X86::LD_Fp032;
3296       RC  = &X86::RFP32RegClass;
3297     }
3298     break;
3299   case MVT::f64:
3300     if (X86ScalarSSEf64) {
3301       Opc = X86::FsFLD0SD;
3302       RC  = &X86::FR64RegClass;
3303     } else {
3304       Opc = X86::LD_Fp064;
3305       RC  = &X86::RFP64RegClass;
3306     }
3307     break;
3308   case MVT::f80:
3309     // No f80 support yet.
3310     return 0;
3311   }
3312
3313   unsigned ResultReg = createResultReg(RC);
3314   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
3315   return ResultReg;
3316 }
3317
3318
3319 bool X86FastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
3320                                       const LoadInst *LI) {
3321   const Value *Ptr = LI->getPointerOperand();
3322   X86AddressMode AM;
3323   if (!X86SelectAddress(Ptr, AM))
3324     return false;
3325
3326   const X86InstrInfo &XII = (const X86InstrInfo&)TII;
3327
3328   unsigned Size = DL.getTypeAllocSize(LI->getType());
3329   unsigned Alignment = LI->getAlignment();
3330
3331   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3332     Alignment = DL.getABITypeAlignment(LI->getType());
3333
3334   SmallVector<MachineOperand, 8> AddrOps;
3335   AM.getFullAddress(AddrOps);
3336
3337   MachineInstr *Result =
3338     XII.foldMemoryOperandImpl(*FuncInfo.MF, MI, OpNo, AddrOps, Size, Alignment);
3339   if (!Result)
3340     return false;
3341
3342   Result->addMemOperand(*FuncInfo.MF, createMachineMemOperandFor(LI));
3343   FuncInfo.MBB->insert(FuncInfo.InsertPt, Result);
3344   MI->eraseFromParent();
3345   return true;
3346 }
3347
3348
3349 namespace llvm {
3350   FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo,
3351                                 const TargetLibraryInfo *libInfo) {
3352     return new X86FastISel(funcInfo, libInfo);
3353   }
3354 }