Migrate to using the subtarget on the machine function and update
[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 = &funcInfo.MF->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, DebugLoc DL);
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 Subtarget->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,
1017             TII.get(TargetOpcode::COPY), 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,
1034             TII.get(TargetOpcode::COPY), 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,
1041             TII.get(Subtarget->is64Bit() ? X86::RETQ : X86::RETL));
1042   for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
1043     MIB.addReg(RetRegs[i], RegState::Implicit);
1044   return true;
1045 }
1046
1047 /// X86SelectLoad - Select and emit code to implement load instructions.
1048 ///
1049 bool X86FastISel::X86SelectLoad(const Instruction *I) {
1050   const LoadInst *LI = cast<LoadInst>(I);
1051
1052   // Atomic loads need special handling.
1053   if (LI->isAtomic())
1054     return false;
1055
1056   MVT VT;
1057   if (!isTypeLegal(LI->getType(), VT, /*AllowI1=*/true))
1058     return false;
1059
1060   const Value *Ptr = LI->getPointerOperand();
1061
1062   X86AddressMode AM;
1063   if (!X86SelectAddress(Ptr, AM))
1064     return false;
1065
1066   unsigned ResultReg = 0;
1067   if (!X86FastEmitLoad(VT, AM, createMachineMemOperandFor(LI), ResultReg))
1068     return false;
1069
1070   updateValueMap(I, ResultReg);
1071   return true;
1072 }
1073
1074 static unsigned X86ChooseCmpOpcode(EVT VT, const X86Subtarget *Subtarget) {
1075   bool HasAVX = Subtarget->hasAVX();
1076   bool X86ScalarSSEf32 = Subtarget->hasSSE1();
1077   bool X86ScalarSSEf64 = Subtarget->hasSSE2();
1078
1079   switch (VT.getSimpleVT().SimpleTy) {
1080   default:       return 0;
1081   case MVT::i8:  return X86::CMP8rr;
1082   case MVT::i16: return X86::CMP16rr;
1083   case MVT::i32: return X86::CMP32rr;
1084   case MVT::i64: return X86::CMP64rr;
1085   case MVT::f32:
1086     return X86ScalarSSEf32 ? (HasAVX ? X86::VUCOMISSrr : X86::UCOMISSrr) : 0;
1087   case MVT::f64:
1088     return X86ScalarSSEf64 ? (HasAVX ? X86::VUCOMISDrr : X86::UCOMISDrr) : 0;
1089   }
1090 }
1091
1092 /// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS
1093 /// of the comparison, return an opcode that works for the compare (e.g.
1094 /// CMP32ri) otherwise return 0.
1095 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) {
1096   switch (VT.getSimpleVT().SimpleTy) {
1097   // Otherwise, we can't fold the immediate into this comparison.
1098   default: return 0;
1099   case MVT::i8: return X86::CMP8ri;
1100   case MVT::i16: return X86::CMP16ri;
1101   case MVT::i32: return X86::CMP32ri;
1102   case MVT::i64:
1103     // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext
1104     // field.
1105     if ((int)RHSC->getSExtValue() == RHSC->getSExtValue())
1106       return X86::CMP64ri32;
1107     return 0;
1108   }
1109 }
1110
1111 bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1,
1112                                      EVT VT, DebugLoc CurDbgLoc) {
1113   unsigned Op0Reg = getRegForValue(Op0);
1114   if (Op0Reg == 0) return false;
1115
1116   // Handle 'null' like i32/i64 0.
1117   if (isa<ConstantPointerNull>(Op1))
1118     Op1 = Constant::getNullValue(DL.getIntPtrType(Op0->getContext()));
1119
1120   // We have two options: compare with register or immediate.  If the RHS of
1121   // the compare is an immediate that we can fold into this compare, use
1122   // CMPri, otherwise use CMPrr.
1123   if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
1124     if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) {
1125       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, CurDbgLoc, TII.get(CompareImmOpc))
1126         .addReg(Op0Reg)
1127         .addImm(Op1C->getSExtValue());
1128       return true;
1129     }
1130   }
1131
1132   unsigned CompareOpc = X86ChooseCmpOpcode(VT, Subtarget);
1133   if (CompareOpc == 0) return false;
1134
1135   unsigned Op1Reg = getRegForValue(Op1);
1136   if (Op1Reg == 0) return false;
1137   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, CurDbgLoc, TII.get(CompareOpc))
1138     .addReg(Op0Reg)
1139     .addReg(Op1Reg);
1140
1141   return true;
1142 }
1143
1144 bool X86FastISel::X86SelectCmp(const Instruction *I) {
1145   const CmpInst *CI = cast<CmpInst>(I);
1146
1147   MVT VT;
1148   if (!isTypeLegal(I->getOperand(0)->getType(), VT))
1149     return false;
1150
1151   // Try to optimize or fold the cmp.
1152   CmpInst::Predicate Predicate = optimizeCmpPredicate(CI);
1153   unsigned ResultReg = 0;
1154   switch (Predicate) {
1155   default: break;
1156   case CmpInst::FCMP_FALSE: {
1157     ResultReg = createResultReg(&X86::GR32RegClass);
1158     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV32r0),
1159             ResultReg);
1160     ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultReg, /*Kill=*/true,
1161                                            X86::sub_8bit);
1162     if (!ResultReg)
1163       return false;
1164     break;
1165   }
1166   case CmpInst::FCMP_TRUE: {
1167     ResultReg = createResultReg(&X86::GR8RegClass);
1168     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
1169             ResultReg).addImm(1);
1170     break;
1171   }
1172   }
1173
1174   if (ResultReg) {
1175     updateValueMap(I, ResultReg);
1176     return true;
1177   }
1178
1179   const Value *LHS = CI->getOperand(0);
1180   const Value *RHS = CI->getOperand(1);
1181
1182   // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0.
1183   // We don't have to materialize a zero constant for this case and can just use
1184   // %x again on the RHS.
1185   if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) {
1186     const auto *RHSC = dyn_cast<ConstantFP>(RHS);
1187     if (RHSC && RHSC->isNullValue())
1188       RHS = LHS;
1189   }
1190
1191   // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction.
1192   static unsigned SETFOpcTable[2][3] = {
1193     { X86::SETEr,  X86::SETNPr, X86::AND8rr },
1194     { X86::SETNEr, X86::SETPr,  X86::OR8rr  }
1195   };
1196   unsigned *SETFOpc = nullptr;
1197   switch (Predicate) {
1198   default: break;
1199   case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break;
1200   case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break;
1201   }
1202
1203   ResultReg = createResultReg(&X86::GR8RegClass);
1204   if (SETFOpc) {
1205     if (!X86FastEmitCompare(LHS, RHS, VT, I->getDebugLoc()))
1206       return false;
1207
1208     unsigned FlagReg1 = createResultReg(&X86::GR8RegClass);
1209     unsigned FlagReg2 = createResultReg(&X86::GR8RegClass);
1210     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]),
1211             FlagReg1);
1212     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]),
1213             FlagReg2);
1214     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[2]),
1215             ResultReg).addReg(FlagReg1).addReg(FlagReg2);
1216     updateValueMap(I, ResultReg);
1217     return true;
1218   }
1219
1220   X86::CondCode CC;
1221   bool SwapArgs;
1222   std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate);
1223   assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code.");
1224   unsigned Opc = X86::getSETFromCond(CC);
1225
1226   if (SwapArgs)
1227     std::swap(LHS, RHS);
1228
1229   // Emit a compare of LHS/RHS.
1230   if (!X86FastEmitCompare(LHS, RHS, VT, I->getDebugLoc()))
1231     return false;
1232
1233   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
1234   updateValueMap(I, ResultReg);
1235   return true;
1236 }
1237
1238 bool X86FastISel::X86SelectZExt(const Instruction *I) {
1239   EVT DstVT = TLI.getValueType(I->getType());
1240   if (!TLI.isTypeLegal(DstVT))
1241     return false;
1242
1243   unsigned ResultReg = getRegForValue(I->getOperand(0));
1244   if (ResultReg == 0)
1245     return false;
1246
1247   // Handle zero-extension from i1 to i8, which is common.
1248   MVT SrcVT = TLI.getSimpleValueType(I->getOperand(0)->getType());
1249   if (SrcVT.SimpleTy == MVT::i1) {
1250     // Set the high bits to zero.
1251     ResultReg = fastEmitZExtFromI1(MVT::i8, ResultReg, /*TODO: Kill=*/false);
1252     SrcVT = MVT::i8;
1253
1254     if (ResultReg == 0)
1255       return false;
1256   }
1257
1258   if (DstVT == MVT::i64) {
1259     // Handle extension to 64-bits via sub-register shenanigans.
1260     unsigned MovInst;
1261
1262     switch (SrcVT.SimpleTy) {
1263     case MVT::i8:  MovInst = X86::MOVZX32rr8;  break;
1264     case MVT::i16: MovInst = X86::MOVZX32rr16; break;
1265     case MVT::i32: MovInst = X86::MOV32rr;     break;
1266     default: llvm_unreachable("Unexpected zext to i64 source type");
1267     }
1268
1269     unsigned Result32 = createResultReg(&X86::GR32RegClass);
1270     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovInst), Result32)
1271       .addReg(ResultReg);
1272
1273     ResultReg = createResultReg(&X86::GR64RegClass);
1274     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::SUBREG_TO_REG),
1275             ResultReg)
1276       .addImm(0).addReg(Result32).addImm(X86::sub_32bit);
1277   } else if (DstVT != MVT::i8) {
1278     ResultReg = fastEmit_r(MVT::i8, DstVT.getSimpleVT(), ISD::ZERO_EXTEND,
1279                            ResultReg, /*Kill=*/true);
1280     if (ResultReg == 0)
1281       return false;
1282   }
1283
1284   updateValueMap(I, ResultReg);
1285   return true;
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, CI->getDebugLoc()))
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_1))
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_1;
1403         if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) {
1404           std::swap(TrueMBB, FalseMBB);
1405           JmpOpc = X86::JE_1;
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_1))
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
1636       // to 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, CI->getDebugLoc()))
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, CI->getDebugLoc()))
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 =
2069       (SrcVT == MVT::i16) ? &X86::GR16_ABCDRegClass : &X86::GR32_ABCDRegClass;
2070     unsigned CopyReg = createResultReg(CopyRC);
2071     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2072             TII.get(TargetOpcode::COPY), CopyReg).addReg(InputReg);
2073     InputReg = CopyReg;
2074   }
2075
2076   // Issue an extract_subreg.
2077   unsigned ResultReg = fastEmitInst_extractsubreg(MVT::i8,
2078                                                   InputReg, /*Kill=*/true,
2079                                                   X86::sub_8bit);
2080   if (!ResultReg)
2081     return false;
2082
2083   updateValueMap(I, ResultReg);
2084   return true;
2085 }
2086
2087 bool X86FastISel::IsMemcpySmall(uint64_t Len) {
2088   return Len <= (Subtarget->is64Bit() ? 32 : 16);
2089 }
2090
2091 bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM,
2092                                      X86AddressMode SrcAM, uint64_t Len) {
2093
2094   // Make sure we don't bloat code by inlining very large memcpy's.
2095   if (!IsMemcpySmall(Len))
2096     return false;
2097
2098   bool i64Legal = Subtarget->is64Bit();
2099
2100   // We don't care about alignment here since we just emit integer accesses.
2101   while (Len) {
2102     MVT VT;
2103     if (Len >= 8 && i64Legal)
2104       VT = MVT::i64;
2105     else if (Len >= 4)
2106       VT = MVT::i32;
2107     else if (Len >= 2)
2108       VT = MVT::i16;
2109     else
2110       VT = MVT::i8;
2111
2112     unsigned Reg;
2113     bool RV = X86FastEmitLoad(VT, SrcAM, nullptr, Reg);
2114     RV &= X86FastEmitStore(VT, Reg, /*Kill=*/true, DestAM);
2115     assert(RV && "Failed to emit load or store??");
2116
2117     unsigned Size = VT.getSizeInBits()/8;
2118     Len -= Size;
2119     DestAM.Disp += Size;
2120     SrcAM.Disp += Size;
2121   }
2122
2123   return true;
2124 }
2125
2126 bool X86FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
2127   // FIXME: Handle more intrinsics.
2128   switch (II->getIntrinsicID()) {
2129   default: return false;
2130   case Intrinsic::frameaddress: {
2131     Type *RetTy = II->getCalledFunction()->getReturnType();
2132
2133     MVT VT;
2134     if (!isTypeLegal(RetTy, VT))
2135       return false;
2136
2137     unsigned Opc;
2138     const TargetRegisterClass *RC = nullptr;
2139
2140     switch (VT.SimpleTy) {
2141     default: llvm_unreachable("Invalid result type for frameaddress.");
2142     case MVT::i32: Opc = X86::MOV32rm; RC = &X86::GR32RegClass; break;
2143     case MVT::i64: Opc = X86::MOV64rm; RC = &X86::GR64RegClass; break;
2144     }
2145
2146     // This needs to be set before we call getPtrSizedFrameRegister, otherwise
2147     // we get the wrong frame register.
2148     MachineFrameInfo *MFI = FuncInfo.MF->getFrameInfo();
2149     MFI->setFrameAddressIsTaken(true);
2150
2151     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
2152     unsigned FrameReg = RegInfo->getPtrSizedFrameRegister(*(FuncInfo.MF));
2153     assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
2154             (FrameReg == X86::EBP && VT == MVT::i32)) &&
2155            "Invalid Frame Register!");
2156
2157     // Always make a copy of the frame register to to a vreg first, so that we
2158     // never directly reference the frame register (the TwoAddressInstruction-
2159     // Pass doesn't like that).
2160     unsigned SrcReg = createResultReg(RC);
2161     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2162             TII.get(TargetOpcode::COPY), SrcReg).addReg(FrameReg);
2163
2164     // Now recursively load from the frame address.
2165     // movq (%rbp), %rax
2166     // movq (%rax), %rax
2167     // movq (%rax), %rax
2168     // ...
2169     unsigned DestReg;
2170     unsigned Depth = cast<ConstantInt>(II->getOperand(0))->getZExtValue();
2171     while (Depth--) {
2172       DestReg = createResultReg(RC);
2173       addDirectMem(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2174                            TII.get(Opc), DestReg), SrcReg);
2175       SrcReg = DestReg;
2176     }
2177
2178     updateValueMap(II, SrcReg);
2179     return true;
2180   }
2181   case Intrinsic::memcpy: {
2182     const MemCpyInst *MCI = cast<MemCpyInst>(II);
2183     // Don't handle volatile or variable length memcpys.
2184     if (MCI->isVolatile())
2185       return false;
2186
2187     if (isa<ConstantInt>(MCI->getLength())) {
2188       // Small memcpy's are common enough that we want to do them
2189       // without a call if possible.
2190       uint64_t Len = cast<ConstantInt>(MCI->getLength())->getZExtValue();
2191       if (IsMemcpySmall(Len)) {
2192         X86AddressMode DestAM, SrcAM;
2193         if (!X86SelectAddress(MCI->getRawDest(), DestAM) ||
2194             !X86SelectAddress(MCI->getRawSource(), SrcAM))
2195           return false;
2196         TryEmitSmallMemcpy(DestAM, SrcAM, Len);
2197         return true;
2198       }
2199     }
2200
2201     unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
2202     if (!MCI->getLength()->getType()->isIntegerTy(SizeWidth))
2203       return false;
2204
2205     if (MCI->getSourceAddressSpace() > 255 || MCI->getDestAddressSpace() > 255)
2206       return false;
2207
2208     return lowerCallTo(II, "memcpy", II->getNumArgOperands() - 2);
2209   }
2210   case Intrinsic::memset: {
2211     const MemSetInst *MSI = cast<MemSetInst>(II);
2212
2213     if (MSI->isVolatile())
2214       return false;
2215
2216     unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32;
2217     if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth))
2218       return false;
2219
2220     if (MSI->getDestAddressSpace() > 255)
2221       return false;
2222
2223     return lowerCallTo(II, "memset", II->getNumArgOperands() - 2);
2224   }
2225   case Intrinsic::stackprotector: {
2226     // Emit code to store the stack guard onto the stack.
2227     EVT PtrTy = TLI.getPointerTy();
2228
2229     const Value *Op1 = II->getArgOperand(0); // The guard's value.
2230     const AllocaInst *Slot = cast<AllocaInst>(II->getArgOperand(1));
2231
2232     MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]);
2233
2234     // Grab the frame index.
2235     X86AddressMode AM;
2236     if (!X86SelectAddress(Slot, AM)) return false;
2237     if (!X86FastEmitStore(PtrTy, Op1, AM)) return false;
2238     return true;
2239   }
2240   case Intrinsic::dbg_declare: {
2241     const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);
2242     X86AddressMode AM;
2243     assert(DI->getAddress() && "Null address should be checked earlier!");
2244     if (!X86SelectAddress(DI->getAddress(), AM))
2245       return false;
2246     const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
2247     // FIXME may need to add RegState::Debug to any registers produced,
2248     // although ESP/EBP should be the only ones at the moment.
2249     addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II), AM)
2250         .addImm(0)
2251         .addMetadata(DI->getVariable())
2252         .addMetadata(DI->getExpression());
2253     return true;
2254   }
2255   case Intrinsic::trap: {
2256     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TRAP));
2257     return true;
2258   }
2259   case Intrinsic::sqrt: {
2260     if (!Subtarget->hasSSE1())
2261       return false;
2262
2263     Type *RetTy = II->getCalledFunction()->getReturnType();
2264
2265     MVT VT;
2266     if (!isTypeLegal(RetTy, VT))
2267       return false;
2268
2269     // Unfortunately we can't use fastEmit_r, because the AVX version of FSQRT
2270     // is not generated by FastISel yet.
2271     // FIXME: Update this code once tablegen can handle it.
2272     static const unsigned SqrtOpc[2][2] = {
2273       {X86::SQRTSSr, X86::VSQRTSSr},
2274       {X86::SQRTSDr, X86::VSQRTSDr}
2275     };
2276     bool HasAVX = Subtarget->hasAVX();
2277     unsigned Opc;
2278     const TargetRegisterClass *RC;
2279     switch (VT.SimpleTy) {
2280     default: return false;
2281     case MVT::f32: Opc = SqrtOpc[0][HasAVX]; RC = &X86::FR32RegClass; break;
2282     case MVT::f64: Opc = SqrtOpc[1][HasAVX]; RC = &X86::FR64RegClass; break;
2283     }
2284
2285     const Value *SrcVal = II->getArgOperand(0);
2286     unsigned SrcReg = getRegForValue(SrcVal);
2287
2288     if (SrcReg == 0)
2289       return false;
2290
2291     unsigned ImplicitDefReg = 0;
2292     if (HasAVX) {
2293       ImplicitDefReg = createResultReg(RC);
2294       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2295               TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg);
2296     }
2297
2298     unsigned ResultReg = createResultReg(RC);
2299     MachineInstrBuilder MIB;
2300     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
2301                   ResultReg);
2302
2303     if (ImplicitDefReg)
2304       MIB.addReg(ImplicitDefReg);
2305
2306     MIB.addReg(SrcReg);
2307
2308     updateValueMap(II, ResultReg);
2309     return true;
2310   }
2311   case Intrinsic::sadd_with_overflow:
2312   case Intrinsic::uadd_with_overflow:
2313   case Intrinsic::ssub_with_overflow:
2314   case Intrinsic::usub_with_overflow:
2315   case Intrinsic::smul_with_overflow:
2316   case Intrinsic::umul_with_overflow: {
2317     // This implements the basic lowering of the xalu with overflow intrinsics
2318     // into add/sub/mul followed by either seto or setb.
2319     const Function *Callee = II->getCalledFunction();
2320     auto *Ty = cast<StructType>(Callee->getReturnType());
2321     Type *RetTy = Ty->getTypeAtIndex(0U);
2322     Type *CondTy = Ty->getTypeAtIndex(1);
2323
2324     MVT VT;
2325     if (!isTypeLegal(RetTy, VT))
2326       return false;
2327
2328     if (VT < MVT::i8 || VT > MVT::i64)
2329       return false;
2330
2331     const Value *LHS = II->getArgOperand(0);
2332     const Value *RHS = II->getArgOperand(1);
2333
2334     // Canonicalize immediate to the RHS.
2335     if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) &&
2336         isCommutativeIntrinsic(II))
2337       std::swap(LHS, RHS);
2338
2339     bool UseIncDec = false;
2340     if (isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isOne())
2341       UseIncDec = true;
2342
2343     unsigned BaseOpc, CondOpc;
2344     switch (II->getIntrinsicID()) {
2345     default: llvm_unreachable("Unexpected intrinsic!");
2346     case Intrinsic::sadd_with_overflow:
2347       BaseOpc = UseIncDec ? unsigned(X86ISD::INC) : unsigned(ISD::ADD);
2348       CondOpc = X86::SETOr;
2349       break;
2350     case Intrinsic::uadd_with_overflow:
2351       BaseOpc = ISD::ADD; CondOpc = X86::SETBr; break;
2352     case Intrinsic::ssub_with_overflow:
2353       BaseOpc = UseIncDec ? unsigned(X86ISD::DEC) : unsigned(ISD::SUB);
2354       CondOpc = X86::SETOr;
2355       break;
2356     case Intrinsic::usub_with_overflow:
2357       BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
2358     case Intrinsic::smul_with_overflow:
2359       BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break;
2360     case Intrinsic::umul_with_overflow:
2361       BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
2362     }
2363
2364     unsigned LHSReg = getRegForValue(LHS);
2365     if (LHSReg == 0)
2366       return false;
2367     bool LHSIsKill = hasTrivialKill(LHS);
2368
2369     unsigned ResultReg = 0;
2370     // Check if we have an immediate version.
2371     if (const auto *CI = dyn_cast<ConstantInt>(RHS)) {
2372       static const unsigned Opc[2][4] = {
2373         { X86::INC8r, X86::INC16r, X86::INC32r, X86::INC64r },
2374         { X86::DEC8r, X86::DEC16r, X86::DEC32r, X86::DEC64r }
2375       };
2376
2377       if (BaseOpc == X86ISD::INC || BaseOpc == X86ISD::DEC) {
2378         ResultReg = createResultReg(TLI.getRegClassFor(VT));
2379         bool IsDec = BaseOpc == X86ISD::DEC;
2380         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2381                 TII.get(Opc[IsDec][VT.SimpleTy-MVT::i8]), ResultReg)
2382           .addReg(LHSReg, getKillRegState(LHSIsKill));
2383       } else
2384         ResultReg = fastEmit_ri(VT, VT, BaseOpc, LHSReg, LHSIsKill,
2385                                 CI->getZExtValue());
2386     }
2387
2388     unsigned RHSReg;
2389     bool RHSIsKill;
2390     if (!ResultReg) {
2391       RHSReg = getRegForValue(RHS);
2392       if (RHSReg == 0)
2393         return false;
2394       RHSIsKill = hasTrivialKill(RHS);
2395       ResultReg = fastEmit_rr(VT, VT, BaseOpc, LHSReg, LHSIsKill, RHSReg,
2396                               RHSIsKill);
2397     }
2398
2399     // FastISel doesn't have a pattern for all X86::MUL*r and X86::IMUL*r. Emit
2400     // it manually.
2401     if (BaseOpc == X86ISD::UMUL && !ResultReg) {
2402       static const unsigned MULOpc[] =
2403         { X86::MUL8r, X86::MUL16r, X86::MUL32r, X86::MUL64r };
2404       static const unsigned Reg[] = { X86::AL, X86::AX, X86::EAX, X86::RAX };
2405       // First copy the first operand into RAX, which is an implicit input to
2406       // the X86::MUL*r instruction.
2407       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2408               TII.get(TargetOpcode::COPY), Reg[VT.SimpleTy-MVT::i8])
2409         .addReg(LHSReg, getKillRegState(LHSIsKill));
2410       ResultReg = fastEmitInst_r(MULOpc[VT.SimpleTy-MVT::i8],
2411                                  TLI.getRegClassFor(VT), RHSReg, RHSIsKill);
2412     } else if (BaseOpc == X86ISD::SMUL && !ResultReg) {
2413       static const unsigned MULOpc[] =
2414         { X86::IMUL8r, X86::IMUL16rr, X86::IMUL32rr, X86::IMUL64rr };
2415       if (VT == MVT::i8) {
2416         // Copy the first operand into AL, which is an implicit input to the
2417         // X86::IMUL8r instruction.
2418         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2419                TII.get(TargetOpcode::COPY), X86::AL)
2420           .addReg(LHSReg, getKillRegState(LHSIsKill));
2421         ResultReg = fastEmitInst_r(MULOpc[0], TLI.getRegClassFor(VT), RHSReg,
2422                                    RHSIsKill);
2423       } else
2424         ResultReg = fastEmitInst_rr(MULOpc[VT.SimpleTy-MVT::i8],
2425                                     TLI.getRegClassFor(VT), LHSReg, LHSIsKill,
2426                                     RHSReg, RHSIsKill);
2427     }
2428
2429     if (!ResultReg)
2430       return false;
2431
2432     unsigned ResultReg2 = FuncInfo.CreateRegs(CondTy);
2433     assert((ResultReg+1) == ResultReg2 && "Nonconsecutive result registers.");
2434     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CondOpc),
2435             ResultReg2);
2436
2437     updateValueMap(II, ResultReg, 2);
2438     return true;
2439   }
2440   case Intrinsic::x86_sse_cvttss2si:
2441   case Intrinsic::x86_sse_cvttss2si64:
2442   case Intrinsic::x86_sse2_cvttsd2si:
2443   case Intrinsic::x86_sse2_cvttsd2si64: {
2444     bool IsInputDouble;
2445     switch (II->getIntrinsicID()) {
2446     default: llvm_unreachable("Unexpected intrinsic.");
2447     case Intrinsic::x86_sse_cvttss2si:
2448     case Intrinsic::x86_sse_cvttss2si64:
2449       if (!Subtarget->hasSSE1())
2450         return false;
2451       IsInputDouble = false;
2452       break;
2453     case Intrinsic::x86_sse2_cvttsd2si:
2454     case Intrinsic::x86_sse2_cvttsd2si64:
2455       if (!Subtarget->hasSSE2())
2456         return false;
2457       IsInputDouble = true;
2458       break;
2459     }
2460
2461     Type *RetTy = II->getCalledFunction()->getReturnType();
2462     MVT VT;
2463     if (!isTypeLegal(RetTy, VT))
2464       return false;
2465
2466     static const unsigned CvtOpc[2][2][2] = {
2467       { { X86::CVTTSS2SIrr,   X86::VCVTTSS2SIrr   },
2468         { X86::CVTTSS2SI64rr, X86::VCVTTSS2SI64rr }  },
2469       { { X86::CVTTSD2SIrr,   X86::VCVTTSD2SIrr   },
2470         { X86::CVTTSD2SI64rr, X86::VCVTTSD2SI64rr }  }
2471     };
2472     bool HasAVX = Subtarget->hasAVX();
2473     unsigned Opc;
2474     switch (VT.SimpleTy) {
2475     default: llvm_unreachable("Unexpected result type.");
2476     case MVT::i32: Opc = CvtOpc[IsInputDouble][0][HasAVX]; break;
2477     case MVT::i64: Opc = CvtOpc[IsInputDouble][1][HasAVX]; break;
2478     }
2479
2480     // Check if we can fold insertelement instructions into the convert.
2481     const Value *Op = II->getArgOperand(0);
2482     while (auto *IE = dyn_cast<InsertElementInst>(Op)) {
2483       const Value *Index = IE->getOperand(2);
2484       if (!isa<ConstantInt>(Index))
2485         break;
2486       unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
2487
2488       if (Idx == 0) {
2489         Op = IE->getOperand(1);
2490         break;
2491       }
2492       Op = IE->getOperand(0);
2493     }
2494
2495     unsigned Reg = getRegForValue(Op);
2496     if (Reg == 0)
2497       return false;
2498
2499     unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
2500     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg)
2501       .addReg(Reg);
2502
2503     updateValueMap(II, ResultReg);
2504     return true;
2505   }
2506   }
2507 }
2508
2509 bool X86FastISel::fastLowerArguments() {
2510   if (!FuncInfo.CanLowerReturn)
2511     return false;
2512
2513   const Function *F = FuncInfo.Fn;
2514   if (F->isVarArg())
2515     return false;
2516
2517   CallingConv::ID CC = F->getCallingConv();
2518   if (CC != CallingConv::C)
2519     return false;
2520
2521   if (Subtarget->isCallingConvWin64(CC))
2522     return false;
2523
2524   if (!Subtarget->is64Bit())
2525     return false;
2526
2527   // Only handle simple cases. i.e. Up to 6 i32/i64 scalar arguments.
2528   unsigned GPRCnt = 0;
2529   unsigned FPRCnt = 0;
2530   unsigned Idx = 0;
2531   for (auto const &Arg : F->args()) {
2532     // The first argument is at index 1.
2533     ++Idx;
2534     if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) ||
2535         F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
2536         F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
2537         F->getAttributes().hasAttribute(Idx, Attribute::Nest))
2538       return false;
2539
2540     Type *ArgTy = Arg.getType();
2541     if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy())
2542       return false;
2543
2544     EVT ArgVT = TLI.getValueType(ArgTy);
2545     if (!ArgVT.isSimple()) return false;
2546     switch (ArgVT.getSimpleVT().SimpleTy) {
2547     default: return false;
2548     case MVT::i32:
2549     case MVT::i64:
2550       ++GPRCnt;
2551       break;
2552     case MVT::f32:
2553     case MVT::f64:
2554       if (!Subtarget->hasSSE1())
2555         return false;
2556       ++FPRCnt;
2557       break;
2558     }
2559
2560     if (GPRCnt > 6)
2561       return false;
2562
2563     if (FPRCnt > 8)
2564       return false;
2565   }
2566
2567   static const MCPhysReg GPR32ArgRegs[] = {
2568     X86::EDI, X86::ESI, X86::EDX, X86::ECX, X86::R8D, X86::R9D
2569   };
2570   static const MCPhysReg GPR64ArgRegs[] = {
2571     X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8 , X86::R9
2572   };
2573   static const MCPhysReg XMMArgRegs[] = {
2574     X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2575     X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2576   };
2577
2578   unsigned GPRIdx = 0;
2579   unsigned FPRIdx = 0;
2580   for (auto const &Arg : F->args()) {
2581     MVT VT = TLI.getSimpleValueType(Arg.getType());
2582     const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
2583     unsigned SrcReg;
2584     switch (VT.SimpleTy) {
2585     default: llvm_unreachable("Unexpected value type.");
2586     case MVT::i32: SrcReg = GPR32ArgRegs[GPRIdx++]; break;
2587     case MVT::i64: SrcReg = GPR64ArgRegs[GPRIdx++]; break;
2588     case MVT::f32: // fall-through
2589     case MVT::f64: SrcReg = XMMArgRegs[FPRIdx++]; break;
2590     }
2591     unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
2592     // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
2593     // Without this, EmitLiveInCopies may eliminate the livein if its only
2594     // use is a bitcast (which isn't turned into an instruction).
2595     unsigned ResultReg = createResultReg(RC);
2596     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2597             TII.get(TargetOpcode::COPY), ResultReg)
2598       .addReg(DstReg, getKillRegState(true));
2599     updateValueMap(&Arg, ResultReg);
2600   }
2601   return true;
2602 }
2603
2604 static unsigned computeBytesPoppedByCallee(const X86Subtarget *Subtarget,
2605                                            CallingConv::ID CC,
2606                                            ImmutableCallSite *CS) {
2607   if (Subtarget->is64Bit())
2608     return 0;
2609   if (Subtarget->getTargetTriple().isOSMSVCRT())
2610     return 0;
2611   if (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2612       CC == CallingConv::HiPE)
2613     return 0;
2614   if (CS && !CS->paramHasAttr(1, Attribute::StructRet))
2615     return 0;
2616   if (CS && CS->paramHasAttr(1, Attribute::InReg))
2617     return 0;
2618   return 4;
2619 }
2620
2621 bool X86FastISel::fastLowerCall(CallLoweringInfo &CLI) {
2622   auto &OutVals       = CLI.OutVals;
2623   auto &OutFlags      = CLI.OutFlags;
2624   auto &OutRegs       = CLI.OutRegs;
2625   auto &Ins           = CLI.Ins;
2626   auto &InRegs        = CLI.InRegs;
2627   CallingConv::ID CC  = CLI.CallConv;
2628   bool &IsTailCall    = CLI.IsTailCall;
2629   bool IsVarArg       = CLI.IsVarArg;
2630   const Value *Callee = CLI.Callee;
2631   const char *SymName = CLI.SymName;
2632
2633   bool Is64Bit        = Subtarget->is64Bit();
2634   bool IsWin64        = Subtarget->isCallingConvWin64(CC);
2635
2636   // Handle only C, fastcc, and webkit_js calling conventions for now.
2637   switch (CC) {
2638   default: return false;
2639   case CallingConv::C:
2640   case CallingConv::Fast:
2641   case CallingConv::WebKit_JS:
2642   case CallingConv::X86_FastCall:
2643   case CallingConv::X86_64_Win64:
2644   case CallingConv::X86_64_SysV:
2645     break;
2646   }
2647
2648   // Allow SelectionDAG isel to handle tail calls.
2649   if (IsTailCall)
2650     return false;
2651
2652   // fastcc with -tailcallopt is intended to provide a guaranteed
2653   // tail call optimization. Fastisel doesn't know how to do that.
2654   if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt)
2655     return false;
2656
2657   // Don't know how to handle Win64 varargs yet.  Nothing special needed for
2658   // x86-32. Special handling for x86-64 is implemented.
2659   if (IsVarArg && IsWin64)
2660     return false;
2661
2662   // Don't know about inalloca yet.
2663   if (CLI.CS && CLI.CS->hasInAllocaArgument())
2664     return false;
2665
2666   // Fast-isel doesn't know about callee-pop yet.
2667   if (X86::isCalleePop(CC, Subtarget->is64Bit(), IsVarArg,
2668                        TM.Options.GuaranteedTailCallOpt))
2669     return false;
2670
2671   SmallVector<MVT, 16> OutVTs;
2672   SmallVector<unsigned, 16> ArgRegs;
2673
2674   // If this is a constant i1/i8/i16 argument, promote to i32 to avoid an extra
2675   // instruction. This is safe because it is common to all FastISel supported
2676   // calling conventions on x86.
2677   for (int i = 0, e = OutVals.size(); i != e; ++i) {
2678     Value *&Val = OutVals[i];
2679     ISD::ArgFlagsTy Flags = OutFlags[i];
2680     if (auto *CI = dyn_cast<ConstantInt>(Val)) {
2681       if (CI->getBitWidth() < 32) {
2682         if (Flags.isSExt())
2683           Val = ConstantExpr::getSExt(CI, Type::getInt32Ty(CI->getContext()));
2684         else
2685           Val = ConstantExpr::getZExt(CI, Type::getInt32Ty(CI->getContext()));
2686       }
2687     }
2688
2689     // Passing bools around ends up doing a trunc to i1 and passing it.
2690     // Codegen this as an argument + "and 1".
2691     MVT VT;
2692     auto *TI = dyn_cast<TruncInst>(Val);
2693     unsigned ResultReg;
2694     if (TI && TI->getType()->isIntegerTy(1) && CLI.CS &&
2695               (TI->getParent() == CLI.CS->getInstruction()->getParent()) &&
2696               TI->hasOneUse()) {
2697       Value *PrevVal = TI->getOperand(0);
2698       ResultReg = getRegForValue(PrevVal);
2699
2700       if (!ResultReg)
2701         return false;
2702
2703       if (!isTypeLegal(PrevVal->getType(), VT))
2704         return false;
2705
2706       ResultReg =
2707         fastEmit_ri(VT, VT, ISD::AND, ResultReg, hasTrivialKill(PrevVal), 1);
2708     } else {
2709       if (!isTypeLegal(Val->getType(), VT))
2710         return false;
2711       ResultReg = getRegForValue(Val);
2712     }
2713
2714     if (!ResultReg)
2715       return false;
2716
2717     ArgRegs.push_back(ResultReg);
2718     OutVTs.push_back(VT);
2719   }
2720
2721   // Analyze operands of the call, assigning locations to each operand.
2722   SmallVector<CCValAssign, 16> ArgLocs;
2723   CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, ArgLocs, CLI.RetTy->getContext());
2724
2725   // Allocate shadow area for Win64
2726   if (IsWin64)
2727     CCInfo.AllocateStack(32, 8);
2728
2729   CCInfo.AnalyzeCallOperands(OutVTs, OutFlags, CC_X86);
2730
2731   // Get a count of how many bytes are to be pushed on the stack.
2732   unsigned NumBytes = CCInfo.getNextStackOffset();
2733
2734   // Issue CALLSEQ_START
2735   unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
2736   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown))
2737     .addImm(NumBytes).addImm(0);
2738
2739   // Walk the register/memloc assignments, inserting copies/loads.
2740   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
2741   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2742     CCValAssign const &VA = ArgLocs[i];
2743     const Value *ArgVal = OutVals[VA.getValNo()];
2744     MVT ArgVT = OutVTs[VA.getValNo()];
2745
2746     if (ArgVT == MVT::x86mmx)
2747       return false;
2748
2749     unsigned ArgReg = ArgRegs[VA.getValNo()];
2750
2751     // Promote the value if needed.
2752     switch (VA.getLocInfo()) {
2753     case CCValAssign::Full: break;
2754     case CCValAssign::SExt: {
2755       assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2756              "Unexpected extend");
2757       bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
2758                                        ArgVT, ArgReg);
2759       assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
2760       ArgVT = VA.getLocVT();
2761       break;
2762     }
2763     case CCValAssign::ZExt: {
2764       assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2765              "Unexpected extend");
2766       bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
2767                                        ArgVT, ArgReg);
2768       assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
2769       ArgVT = VA.getLocVT();
2770       break;
2771     }
2772     case CCValAssign::AExt: {
2773       assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() &&
2774              "Unexpected extend");
2775       bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), ArgReg,
2776                                        ArgVT, ArgReg);
2777       if (!Emitted)
2778         Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg,
2779                                     ArgVT, ArgReg);
2780       if (!Emitted)
2781         Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg,
2782                                     ArgVT, ArgReg);
2783
2784       assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
2785       ArgVT = VA.getLocVT();
2786       break;
2787     }
2788     case CCValAssign::BCvt: {
2789       ArgReg = fastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, ArgReg,
2790                           /*TODO: Kill=*/false);
2791       assert(ArgReg && "Failed to emit a bitcast!");
2792       ArgVT = VA.getLocVT();
2793       break;
2794     }
2795     case CCValAssign::VExt:
2796       // VExt has not been implemented, so this should be impossible to reach
2797       // for now.  However, fallback to Selection DAG isel once implemented.
2798       return false;
2799     case CCValAssign::AExtUpper:
2800     case CCValAssign::SExtUpper:
2801     case CCValAssign::ZExtUpper:
2802     case CCValAssign::FPExt:
2803       llvm_unreachable("Unexpected loc info!");
2804     case CCValAssign::Indirect:
2805       // FIXME: Indirect doesn't need extending, but fast-isel doesn't fully
2806       // support this.
2807       return false;
2808     }
2809
2810     if (VA.isRegLoc()) {
2811       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2812               TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg);
2813       OutRegs.push_back(VA.getLocReg());
2814     } else {
2815       assert(VA.isMemLoc());
2816
2817       // Don't emit stores for undef values.
2818       if (isa<UndefValue>(ArgVal))
2819         continue;
2820
2821       unsigned LocMemOffset = VA.getLocMemOffset();
2822       X86AddressMode AM;
2823       AM.Base.Reg = RegInfo->getStackRegister();
2824       AM.Disp = LocMemOffset;
2825       ISD::ArgFlagsTy Flags = OutFlags[VA.getValNo()];
2826       unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType());
2827       MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
2828         MachinePointerInfo::getStack(LocMemOffset), MachineMemOperand::MOStore,
2829         ArgVT.getStoreSize(), Alignment);
2830       if (Flags.isByVal()) {
2831         X86AddressMode SrcAM;
2832         SrcAM.Base.Reg = ArgReg;
2833         if (!TryEmitSmallMemcpy(AM, SrcAM, Flags.getByValSize()))
2834           return false;
2835       } else if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) {
2836         // If this is a really simple value, emit this with the Value* version
2837         // of X86FastEmitStore.  If it isn't simple, we don't want to do this,
2838         // as it can cause us to reevaluate the argument.
2839         if (!X86FastEmitStore(ArgVT, ArgVal, AM, MMO))
2840           return false;
2841       } else {
2842         bool ValIsKill = hasTrivialKill(ArgVal);
2843         if (!X86FastEmitStore(ArgVT, ArgReg, ValIsKill, AM, MMO))
2844           return false;
2845       }
2846     }
2847   }
2848
2849   // ELF / PIC requires GOT in the EBX register before function calls via PLT
2850   // GOT pointer.
2851   if (Subtarget->isPICStyleGOT()) {
2852     unsigned Base = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
2853     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2854             TII.get(TargetOpcode::COPY), X86::EBX).addReg(Base);
2855   }
2856
2857   if (Is64Bit && IsVarArg && !IsWin64) {
2858     // From AMD64 ABI document:
2859     // For calls that may call functions that use varargs or stdargs
2860     // (prototype-less calls or calls to functions containing ellipsis (...) in
2861     // the declaration) %al is used as hidden argument to specify the number
2862     // of SSE registers used. The contents of %al do not need to match exactly
2863     // the number of registers, but must be an ubound on the number of SSE
2864     // registers used and is in the range 0 - 8 inclusive.
2865
2866     // Count the number of XMM registers allocated.
2867     static const MCPhysReg XMMArgRegs[] = {
2868       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2869       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2870     };
2871     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2872     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2873            && "SSE registers cannot be used when SSE is disabled");
2874     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri),
2875             X86::AL).addImm(NumXMMRegs);
2876   }
2877
2878   // Materialize callee address in a register. FIXME: GV address can be
2879   // handled with a CALLpcrel32 instead.
2880   X86AddressMode CalleeAM;
2881   if (!X86SelectCallAddress(Callee, CalleeAM))
2882     return false;
2883
2884   unsigned CalleeOp = 0;
2885   const GlobalValue *GV = nullptr;
2886   if (CalleeAM.GV != nullptr) {
2887     GV = CalleeAM.GV;
2888   } else if (CalleeAM.Base.Reg != 0) {
2889     CalleeOp = CalleeAM.Base.Reg;
2890   } else
2891     return false;
2892
2893   // Issue the call.
2894   MachineInstrBuilder MIB;
2895   if (CalleeOp) {
2896     // Register-indirect call.
2897     unsigned CallOpc = Is64Bit ? X86::CALL64r : X86::CALL32r;
2898     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc))
2899       .addReg(CalleeOp);
2900   } else {
2901     // Direct call.
2902     assert(GV && "Not a direct call");
2903     unsigned CallOpc = Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32;
2904
2905     // See if we need any target-specific flags on the GV operand.
2906     unsigned char OpFlags = 0;
2907
2908     // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2909     // external symbols most go through the PLT in PIC mode.  If the symbol
2910     // has hidden or protected visibility, or if it is static or local, then
2911     // we don't need to use the PLT - we can directly call it.
2912     if (Subtarget->isTargetELF() &&
2913         TM.getRelocationModel() == Reloc::PIC_ &&
2914         GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2915       OpFlags = X86II::MO_PLT;
2916     } else if (Subtarget->isPICStyleStubAny() &&
2917                (GV->isDeclaration() || GV->isWeakForLinker()) &&
2918                (!Subtarget->getTargetTriple().isMacOSX() ||
2919                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2920       // PC-relative references to external symbols should go through $stub,
2921       // unless we're building with the leopard linker or later, which
2922       // automatically synthesizes these stubs.
2923       OpFlags = X86II::MO_DARWIN_STUB;
2924     }
2925
2926     MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc));
2927     if (SymName)
2928       MIB.addExternalSymbol(SymName, OpFlags);
2929     else
2930       MIB.addGlobalAddress(GV, 0, OpFlags);
2931   }
2932
2933   // Add a register mask operand representing the call-preserved registers.
2934   // Proper defs for return values will be added by setPhysRegsDeadExcept().
2935   MIB.addRegMask(TRI.getCallPreservedMask(CC));
2936
2937   // Add an implicit use GOT pointer in EBX.
2938   if (Subtarget->isPICStyleGOT())
2939     MIB.addReg(X86::EBX, RegState::Implicit);
2940
2941   if (Is64Bit && IsVarArg && !IsWin64)
2942     MIB.addReg(X86::AL, RegState::Implicit);
2943
2944   // Add implicit physical register uses to the call.
2945   for (auto Reg : OutRegs)
2946     MIB.addReg(Reg, RegState::Implicit);
2947
2948   // Issue CALLSEQ_END
2949   unsigned NumBytesForCalleeToPop =
2950     computeBytesPoppedByCallee(Subtarget, CC, CLI.CS);
2951   unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
2952   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp))
2953     .addImm(NumBytes).addImm(NumBytesForCalleeToPop);
2954
2955   // Now handle call return values.
2956   SmallVector<CCValAssign, 16> RVLocs;
2957   CCState CCRetInfo(CC, IsVarArg, *FuncInfo.MF, RVLocs,
2958                     CLI.RetTy->getContext());
2959   CCRetInfo.AnalyzeCallResult(Ins, RetCC_X86);
2960
2961   // Copy all of the result registers out of their specified physreg.
2962   unsigned ResultReg = FuncInfo.CreateRegs(CLI.RetTy);
2963   for (unsigned i = 0; i != RVLocs.size(); ++i) {
2964     CCValAssign &VA = RVLocs[i];
2965     EVT CopyVT = VA.getValVT();
2966     unsigned CopyReg = ResultReg + i;
2967
2968     // If this is x86-64, and we disabled SSE, we can't return FP values
2969     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2970         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2971       report_fatal_error("SSE register return with SSE disabled");
2972     }
2973
2974     // If we prefer to use the value in xmm registers, copy it out as f80 and
2975     // use a truncate to move it from fp stack reg to xmm reg.
2976     if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
2977         isScalarFPTypeInSSEReg(VA.getValVT())) {
2978       CopyVT = MVT::f80;
2979       CopyReg = createResultReg(&X86::RFP80RegClass);
2980     }
2981
2982     // Copy out the result.
2983     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2984             TII.get(TargetOpcode::COPY), CopyReg).addReg(VA.getLocReg());
2985     InRegs.push_back(VA.getLocReg());
2986
2987     // Round the f80 to the right size, which also moves it to the appropriate
2988     // xmm register. This is accomplished by storing the f80 value in memory
2989     // and then loading it back.
2990     if (CopyVT != VA.getValVT()) {
2991       EVT ResVT = VA.getValVT();
2992       unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64;
2993       unsigned MemSize = ResVT.getSizeInBits()/8;
2994       int FI = MFI.CreateStackObject(MemSize, MemSize, false);
2995       addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2996                                 TII.get(Opc)), FI)
2997         .addReg(CopyReg);
2998       Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm;
2999       addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3000                                 TII.get(Opc), ResultReg + i), FI);
3001     }
3002   }
3003
3004   CLI.ResultReg = ResultReg;
3005   CLI.NumResultRegs = RVLocs.size();
3006   CLI.Call = MIB;
3007
3008   return true;
3009 }
3010
3011 bool
3012 X86FastISel::fastSelectInstruction(const Instruction *I)  {
3013   switch (I->getOpcode()) {
3014   default: break;
3015   case Instruction::Load:
3016     return X86SelectLoad(I);
3017   case Instruction::Store:
3018     return X86SelectStore(I);
3019   case Instruction::Ret:
3020     return X86SelectRet(I);
3021   case Instruction::ICmp:
3022   case Instruction::FCmp:
3023     return X86SelectCmp(I);
3024   case Instruction::ZExt:
3025     return X86SelectZExt(I);
3026   case Instruction::Br:
3027     return X86SelectBranch(I);
3028   case Instruction::LShr:
3029   case Instruction::AShr:
3030   case Instruction::Shl:
3031     return X86SelectShift(I);
3032   case Instruction::SDiv:
3033   case Instruction::UDiv:
3034   case Instruction::SRem:
3035   case Instruction::URem:
3036     return X86SelectDivRem(I);
3037   case Instruction::Select:
3038     return X86SelectSelect(I);
3039   case Instruction::Trunc:
3040     return X86SelectTrunc(I);
3041   case Instruction::FPExt:
3042     return X86SelectFPExt(I);
3043   case Instruction::FPTrunc:
3044     return X86SelectFPTrunc(I);
3045   case Instruction::IntToPtr: // Deliberate fall-through.
3046   case Instruction::PtrToInt: {
3047     EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
3048     EVT DstVT = TLI.getValueType(I->getType());
3049     if (DstVT.bitsGT(SrcVT))
3050       return X86SelectZExt(I);
3051     if (DstVT.bitsLT(SrcVT))
3052       return X86SelectTrunc(I);
3053     unsigned Reg = getRegForValue(I->getOperand(0));
3054     if (Reg == 0) return false;
3055     updateValueMap(I, Reg);
3056     return true;
3057   }
3058   }
3059
3060   return false;
3061 }
3062
3063 unsigned X86FastISel::X86MaterializeInt(const ConstantInt *CI, MVT VT) {
3064   if (VT > MVT::i64)
3065     return 0;
3066
3067   uint64_t Imm = CI->getZExtValue();
3068   if (Imm == 0) {
3069     unsigned SrcReg = fastEmitInst_(X86::MOV32r0, &X86::GR32RegClass);
3070     switch (VT.SimpleTy) {
3071     default: llvm_unreachable("Unexpected value type");
3072     case MVT::i1:
3073     case MVT::i8:
3074       return fastEmitInst_extractsubreg(MVT::i8, SrcReg, /*Kill=*/true,
3075                                         X86::sub_8bit);
3076     case MVT::i16:
3077       return fastEmitInst_extractsubreg(MVT::i16, SrcReg, /*Kill=*/true,
3078                                         X86::sub_16bit);
3079     case MVT::i32:
3080       return SrcReg;
3081     case MVT::i64: {
3082       unsigned ResultReg = createResultReg(&X86::GR64RegClass);
3083       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3084               TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg)
3085         .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit);
3086       return ResultReg;
3087     }
3088     }
3089   }
3090
3091   unsigned Opc = 0;
3092   switch (VT.SimpleTy) {
3093   default: llvm_unreachable("Unexpected value type");
3094   case MVT::i1:  VT = MVT::i8; // fall-through
3095   case MVT::i8:  Opc = X86::MOV8ri;  break;
3096   case MVT::i16: Opc = X86::MOV16ri; break;
3097   case MVT::i32: Opc = X86::MOV32ri; break;
3098   case MVT::i64: {
3099     if (isUInt<32>(Imm))
3100       Opc = X86::MOV32ri;
3101     else if (isInt<32>(Imm))
3102       Opc = X86::MOV64ri32;
3103     else
3104       Opc = X86::MOV64ri;
3105     break;
3106   }
3107   }
3108   if (VT == MVT::i64 && Opc == X86::MOV32ri) {
3109     unsigned SrcReg = fastEmitInst_i(Opc, &X86::GR32RegClass, Imm);
3110     unsigned ResultReg = createResultReg(&X86::GR64RegClass);
3111     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3112             TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg)
3113       .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit);
3114     return ResultReg;
3115   }
3116   return fastEmitInst_i(Opc, TLI.getRegClassFor(VT), Imm);
3117 }
3118
3119 unsigned X86FastISel::X86MaterializeFP(const ConstantFP *CFP, MVT VT) {
3120   if (CFP->isNullValue())
3121     return fastMaterializeFloatZero(CFP);
3122
3123   // Can't handle alternate code models yet.
3124   CodeModel::Model CM = TM.getCodeModel();
3125   if (CM != CodeModel::Small && CM != CodeModel::Large)
3126     return 0;
3127
3128   // Get opcode and regclass of the output for the given load instruction.
3129   unsigned Opc = 0;
3130   const TargetRegisterClass *RC = nullptr;
3131   switch (VT.SimpleTy) {
3132   default: return 0;
3133   case MVT::f32:
3134     if (X86ScalarSSEf32) {
3135       Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm;
3136       RC  = &X86::FR32RegClass;
3137     } else {
3138       Opc = X86::LD_Fp32m;
3139       RC  = &X86::RFP32RegClass;
3140     }
3141     break;
3142   case MVT::f64:
3143     if (X86ScalarSSEf64) {
3144       Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm;
3145       RC  = &X86::FR64RegClass;
3146     } else {
3147       Opc = X86::LD_Fp64m;
3148       RC  = &X86::RFP64RegClass;
3149     }
3150     break;
3151   case MVT::f80:
3152     // No f80 support yet.
3153     return 0;
3154   }
3155
3156   // MachineConstantPool wants an explicit alignment.
3157   unsigned Align = DL.getPrefTypeAlignment(CFP->getType());
3158   if (Align == 0) {
3159     // Alignment of vector types. FIXME!
3160     Align = DL.getTypeAllocSize(CFP->getType());
3161   }
3162
3163   // x86-32 PIC requires a PIC base register for constant pools.
3164   unsigned PICBase = 0;
3165   unsigned char OpFlag = 0;
3166   if (Subtarget->isPICStyleStubPIC()) { // Not dynamic-no-pic
3167     OpFlag = X86II::MO_PIC_BASE_OFFSET;
3168     PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
3169   } else if (Subtarget->isPICStyleGOT()) {
3170     OpFlag = X86II::MO_GOTOFF;
3171     PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF);
3172   } else if (Subtarget->isPICStyleRIPRel() &&
3173              TM.getCodeModel() == CodeModel::Small) {
3174     PICBase = X86::RIP;
3175   }
3176
3177   // Create the load from the constant pool.
3178   unsigned CPI = MCP.getConstantPoolIndex(CFP, Align);
3179   unsigned ResultReg = createResultReg(RC);
3180
3181   if (CM == CodeModel::Large) {
3182     unsigned AddrReg = createResultReg(&X86::GR64RegClass);
3183     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri),
3184             AddrReg)
3185       .addConstantPoolIndex(CPI, 0, OpFlag);
3186     MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3187                                       TII.get(Opc), ResultReg);
3188     addDirectMem(MIB, AddrReg);
3189     MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand(
3190         MachinePointerInfo::getConstantPool(), MachineMemOperand::MOLoad,
3191         TM.getDataLayout()->getPointerSize(), Align);
3192     MIB->addMemOperand(*FuncInfo.MF, MMO);
3193     return ResultReg;
3194   }
3195
3196   addConstantPoolReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3197                                    TII.get(Opc), ResultReg),
3198                            CPI, PICBase, OpFlag);
3199   return ResultReg;
3200 }
3201
3202 unsigned X86FastISel::X86MaterializeGV(const GlobalValue *GV, MVT VT) {
3203   // Can't handle alternate code models yet.
3204   if (TM.getCodeModel() != CodeModel::Small)
3205     return 0;
3206
3207   // Materialize addresses with LEA/MOV instructions.
3208   X86AddressMode AM;
3209   if (X86SelectAddress(GV, AM)) {
3210     // If the expression is just a basereg, then we're done, otherwise we need
3211     // to emit an LEA.
3212     if (AM.BaseType == X86AddressMode::RegBase &&
3213         AM.IndexReg == 0 && AM.Disp == 0 && AM.GV == nullptr)
3214       return AM.Base.Reg;
3215
3216     unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
3217     if (TM.getRelocationModel() == Reloc::Static &&
3218         TLI.getPointerTy() == MVT::i64) {
3219       // The displacement code could be more than 32 bits away so we need to use
3220       // an instruction with a 64 bit immediate
3221       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri),
3222               ResultReg)
3223         .addGlobalAddress(GV);
3224     } else {
3225       unsigned Opc = TLI.getPointerTy() == MVT::i32
3226                      ? (Subtarget->isTarget64BitILP32()
3227                         ? X86::LEA64_32r : X86::LEA32r)
3228                      : X86::LEA64r;
3229       addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3230                              TII.get(Opc), ResultReg), AM);
3231     }
3232     return ResultReg;
3233   }
3234   return 0;
3235 }
3236
3237 unsigned X86FastISel::fastMaterializeConstant(const Constant *C) {
3238   EVT CEVT = TLI.getValueType(C->getType(), true);
3239
3240   // Only handle simple types.
3241   if (!CEVT.isSimple())
3242     return 0;
3243   MVT VT = CEVT.getSimpleVT();
3244
3245   if (const auto *CI = dyn_cast<ConstantInt>(C))
3246     return X86MaterializeInt(CI, VT);
3247   else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
3248     return X86MaterializeFP(CFP, VT);
3249   else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
3250     return X86MaterializeGV(GV, VT);
3251
3252   return 0;
3253 }
3254
3255 unsigned X86FastISel::fastMaterializeAlloca(const AllocaInst *C) {
3256   // Fail on dynamic allocas. At this point, getRegForValue has already
3257   // checked its CSE maps, so if we're here trying to handle a dynamic
3258   // alloca, we're not going to succeed. X86SelectAddress has a
3259   // check for dynamic allocas, because it's called directly from
3260   // various places, but targetMaterializeAlloca also needs a check
3261   // in order to avoid recursion between getRegForValue,
3262   // X86SelectAddrss, and targetMaterializeAlloca.
3263   if (!FuncInfo.StaticAllocaMap.count(C))
3264     return 0;
3265   assert(C->isStaticAlloca() && "dynamic alloca in the static alloca map?");
3266
3267   X86AddressMode AM;
3268   if (!X86SelectAddress(C, AM))
3269     return 0;
3270   unsigned Opc = TLI.getPointerTy() == MVT::i32
3271                  ? (Subtarget->isTarget64BitILP32()
3272                     ? X86::LEA64_32r : X86::LEA32r)
3273                  : X86::LEA64r;
3274   const TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
3275   unsigned ResultReg = createResultReg(RC);
3276   addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3277                          TII.get(Opc), ResultReg), AM);
3278   return ResultReg;
3279 }
3280
3281 unsigned X86FastISel::fastMaterializeFloatZero(const ConstantFP *CF) {
3282   MVT VT;
3283   if (!isTypeLegal(CF->getType(), VT))
3284     return 0;
3285
3286   // Get opcode and regclass for the given zero.
3287   unsigned Opc = 0;
3288   const TargetRegisterClass *RC = nullptr;
3289   switch (VT.SimpleTy) {
3290   default: return 0;
3291   case MVT::f32:
3292     if (X86ScalarSSEf32) {
3293       Opc = X86::FsFLD0SS;
3294       RC  = &X86::FR32RegClass;
3295     } else {
3296       Opc = X86::LD_Fp032;
3297       RC  = &X86::RFP32RegClass;
3298     }
3299     break;
3300   case MVT::f64:
3301     if (X86ScalarSSEf64) {
3302       Opc = X86::FsFLD0SD;
3303       RC  = &X86::FR64RegClass;
3304     } else {
3305       Opc = X86::LD_Fp064;
3306       RC  = &X86::RFP64RegClass;
3307     }
3308     break;
3309   case MVT::f80:
3310     // No f80 support yet.
3311     return 0;
3312   }
3313
3314   unsigned ResultReg = createResultReg(RC);
3315   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg);
3316   return ResultReg;
3317 }
3318
3319
3320 bool X86FastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
3321                                       const LoadInst *LI) {
3322   const Value *Ptr = LI->getPointerOperand();
3323   X86AddressMode AM;
3324   if (!X86SelectAddress(Ptr, AM))
3325     return false;
3326
3327   const X86InstrInfo &XII = (const X86InstrInfo &)TII;
3328
3329   unsigned Size = DL.getTypeAllocSize(LI->getType());
3330   unsigned Alignment = LI->getAlignment();
3331
3332   if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3333     Alignment = DL.getABITypeAlignment(LI->getType());
3334
3335   SmallVector<MachineOperand, 8> AddrOps;
3336   AM.getFullAddress(AddrOps);
3337
3338   MachineInstr *Result =
3339     XII.foldMemoryOperandImpl(*FuncInfo.MF, MI, OpNo, AddrOps,
3340                               Size, Alignment, /*AllowCommute=*/true);
3341   if (!Result)
3342     return false;
3343
3344   Result->addMemOperand(*FuncInfo.MF, createMachineMemOperandFor(LI));
3345   FuncInfo.MBB->insert(FuncInfo.InsertPt, Result);
3346   MI->eraseFromParent();
3347   return true;
3348 }
3349
3350
3351 namespace llvm {
3352   FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo,
3353                                 const TargetLibraryInfo *libInfo) {
3354     return new X86FastISel(funcInfo, libInfo);
3355   }
3356 }