[FastISel] Fix patchpoint lowering to set the result register.
[oota-llvm.git] / lib / CodeGen / SelectionDAG / FastISel.cpp
1 //===-- FastISel.cpp - Implementation of the FastISel class ---------------===//
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 contains the implementation of the FastISel class.
11 //
12 // "Fast" instruction selection is designed to emit very poor code quickly.
13 // Also, it is not designed to be able to do much lowering, so most illegal
14 // types (e.g. i64 on 32-bit targets) and operations are not supported.  It is
15 // also not intended to be able to do much optimization, except in a few cases
16 // where doing optimizations reduces overall compile time.  For example, folding
17 // constants into immediate fields is often done, because it's cheap and it
18 // reduces the number of instructions later phases have to examine.
19 //
20 // "Fast" instruction selection is able to fail gracefully and transfer
21 // control to the SelectionDAG selector for operations that it doesn't
22 // support.  In many cases, this allows us to avoid duplicating a lot of
23 // the complicated lowering logic that SelectionDAG currently has.
24 //
25 // The intended use for "fast" instruction selection is "-O0" mode
26 // compilation, where the quality of the generated code is irrelevant when
27 // weighed against the speed at which the code can be generated.  Also,
28 // at -O0, the LLVM optimizers are not running, and this makes the
29 // compile time of codegen a much higher portion of the overall compile
30 // time.  Despite its limitations, "fast" instruction selection is able to
31 // handle enough code on its own to provide noticeable overall speedups
32 // in -O0 compiles.
33 //
34 // Basic operations are supported in a target-independent way, by reading
35 // the same instruction descriptions that the SelectionDAG selector reads,
36 // and identifying simple arithmetic operations that can be directly selected
37 // from simple operators.  More complicated operations currently require
38 // target-specific code.
39 //
40 //===----------------------------------------------------------------------===//
41
42 #include "llvm/CodeGen/Analysis.h"
43 #include "llvm/CodeGen/FastISel.h"
44 #include "llvm/ADT/Optional.h"
45 #include "llvm/ADT/Statistic.h"
46 #include "llvm/Analysis/BranchProbabilityInfo.h"
47 #include "llvm/Analysis/Loads.h"
48 #include "llvm/CodeGen/Analysis.h"
49 #include "llvm/CodeGen/FunctionLoweringInfo.h"
50 #include "llvm/CodeGen/MachineFrameInfo.h"
51 #include "llvm/CodeGen/MachineInstrBuilder.h"
52 #include "llvm/CodeGen/MachineModuleInfo.h"
53 #include "llvm/CodeGen/MachineRegisterInfo.h"
54 #include "llvm/CodeGen/StackMaps.h"
55 #include "llvm/IR/DataLayout.h"
56 #include "llvm/IR/DebugInfo.h"
57 #include "llvm/IR/Function.h"
58 #include "llvm/IR/GlobalVariable.h"
59 #include "llvm/IR/Instructions.h"
60 #include "llvm/IR/IntrinsicInst.h"
61 #include "llvm/IR/Operator.h"
62 #include "llvm/Support/Debug.h"
63 #include "llvm/Support/ErrorHandling.h"
64 #include "llvm/Target/TargetInstrInfo.h"
65 #include "llvm/Target/TargetLibraryInfo.h"
66 #include "llvm/Target/TargetLowering.h"
67 #include "llvm/Target/TargetMachine.h"
68 using namespace llvm;
69
70 #define DEBUG_TYPE "isel"
71
72 STATISTIC(NumFastIselSuccessIndependent, "Number of insts selected by "
73           "target-independent selector");
74 STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by "
75           "target-specific selector");
76 STATISTIC(NumFastIselDead, "Number of dead insts removed on failure");
77
78 /// \brief Set CallLoweringInfo attribute flags based on a call instruction
79 /// and called function attributes.
80 void FastISel::ArgListEntry::setAttributes(ImmutableCallSite *CS,
81                                            unsigned AttrIdx) {
82   isSExt     = CS->paramHasAttr(AttrIdx, Attribute::SExt);
83   isZExt     = CS->paramHasAttr(AttrIdx, Attribute::ZExt);
84   isInReg    = CS->paramHasAttr(AttrIdx, Attribute::InReg);
85   isSRet     = CS->paramHasAttr(AttrIdx, Attribute::StructRet);
86   isNest     = CS->paramHasAttr(AttrIdx, Attribute::Nest);
87   isByVal    = CS->paramHasAttr(AttrIdx, Attribute::ByVal);
88   isInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca);
89   isReturned = CS->paramHasAttr(AttrIdx, Attribute::Returned);
90   Alignment  = CS->getParamAlignment(AttrIdx);
91 }
92
93 /// startNewBlock - Set the current block to which generated machine
94 /// instructions will be appended, and clear the local CSE map.
95 ///
96 void FastISel::startNewBlock() {
97   LocalValueMap.clear();
98
99   // Instructions are appended to FuncInfo.MBB. If the basic block already
100   // contains labels or copies, use the last instruction as the last local
101   // value.
102   EmitStartPt = nullptr;
103   if (!FuncInfo.MBB->empty())
104     EmitStartPt = &FuncInfo.MBB->back();
105   LastLocalValue = EmitStartPt;
106 }
107
108 bool FastISel::LowerArguments() {
109   if (!FuncInfo.CanLowerReturn)
110     // Fallback to SDISel argument lowering code to deal with sret pointer
111     // parameter.
112     return false;
113
114   if (!FastLowerArguments())
115     return false;
116
117   // Enter arguments into ValueMap for uses in non-entry BBs.
118   for (Function::const_arg_iterator I = FuncInfo.Fn->arg_begin(),
119          E = FuncInfo.Fn->arg_end(); I != E; ++I) {
120     DenseMap<const Value *, unsigned>::iterator VI = LocalValueMap.find(I);
121     assert(VI != LocalValueMap.end() && "Missed an argument?");
122     FuncInfo.ValueMap[I] = VI->second;
123   }
124   return true;
125 }
126
127 void FastISel::flushLocalValueMap() {
128   LocalValueMap.clear();
129   LastLocalValue = EmitStartPt;
130   recomputeInsertPt();
131 }
132
133 bool FastISel::hasTrivialKill(const Value *V) const {
134   // Don't consider constants or arguments to have trivial kills.
135   const Instruction *I = dyn_cast<Instruction>(V);
136   if (!I)
137     return false;
138
139   // No-op casts are trivially coalesced by fast-isel.
140   if (const CastInst *Cast = dyn_cast<CastInst>(I))
141     if (Cast->isNoopCast(DL.getIntPtrType(Cast->getContext())) &&
142         !hasTrivialKill(Cast->getOperand(0)))
143       return false;
144
145   // GEPs with all zero indices are trivially coalesced by fast-isel.
146   if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I))
147     if (GEP->hasAllZeroIndices() && !hasTrivialKill(GEP->getOperand(0)))
148       return false;
149
150   // Only instructions with a single use in the same basic block are considered
151   // to have trivial kills.
152   return I->hasOneUse() &&
153          !(I->getOpcode() == Instruction::BitCast ||
154            I->getOpcode() == Instruction::PtrToInt ||
155            I->getOpcode() == Instruction::IntToPtr) &&
156          cast<Instruction>(*I->user_begin())->getParent() == I->getParent();
157 }
158
159 unsigned FastISel::getRegForValue(const Value *V) {
160   EVT RealVT = TLI.getValueType(V->getType(), /*AllowUnknown=*/true);
161   // Don't handle non-simple values in FastISel.
162   if (!RealVT.isSimple())
163     return 0;
164
165   // Ignore illegal types. We must do this before looking up the value
166   // in ValueMap because Arguments are given virtual registers regardless
167   // of whether FastISel can handle them.
168   MVT VT = RealVT.getSimpleVT();
169   if (!TLI.isTypeLegal(VT)) {
170     // Handle integer promotions, though, because they're common and easy.
171     if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
172       VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT();
173     else
174       return 0;
175   }
176
177   // Look up the value to see if we already have a register for it.
178   unsigned Reg = lookUpRegForValue(V);
179   if (Reg != 0)
180     return Reg;
181
182   // In bottom-up mode, just create the virtual register which will be used
183   // to hold the value. It will be materialized later.
184   if (isa<Instruction>(V) &&
185       (!isa<AllocaInst>(V) ||
186        !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V))))
187     return FuncInfo.InitializeRegForValue(V);
188
189   SavePoint SaveInsertPt = enterLocalValueArea();
190
191   // Materialize the value in a register. Emit any instructions in the
192   // local value area.
193   Reg = materializeRegForValue(V, VT);
194
195   leaveLocalValueArea(SaveInsertPt);
196
197   return Reg;
198 }
199
200 /// materializeRegForValue - Helper for getRegForValue. This function is
201 /// called when the value isn't already available in a register and must
202 /// be materialized with new instructions.
203 unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) {
204   unsigned Reg = 0;
205
206   if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
207     if (CI->getValue().getActiveBits() <= 64)
208       Reg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
209   } else if (isa<AllocaInst>(V)) {
210     Reg = TargetMaterializeAlloca(cast<AllocaInst>(V));
211   } else if (isa<ConstantPointerNull>(V)) {
212     // Translate this as an integer zero so that it can be
213     // local-CSE'd with actual integer zeros.
214     Reg =
215       getRegForValue(Constant::getNullValue(DL.getIntPtrType(V->getContext())));
216   } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
217     if (CF->isNullValue()) {
218       Reg = TargetMaterializeFloatZero(CF);
219     } else {
220       // Try to emit the constant directly.
221       Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF);
222     }
223
224     if (!Reg) {
225       // Try to emit the constant by using an integer constant with a cast.
226       const APFloat &Flt = CF->getValueAPF();
227       EVT IntVT = TLI.getPointerTy();
228
229       uint64_t x[2];
230       uint32_t IntBitWidth = IntVT.getSizeInBits();
231       bool isExact;
232       (void) Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true,
233                                   APFloat::rmTowardZero, &isExact);
234       if (isExact) {
235         APInt IntVal(IntBitWidth, x);
236
237         unsigned IntegerReg =
238           getRegForValue(ConstantInt::get(V->getContext(), IntVal));
239         if (IntegerReg != 0)
240           Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP,
241                            IntegerReg, /*Kill=*/false);
242       }
243     }
244   } else if (const Operator *Op = dyn_cast<Operator>(V)) {
245     if (!SelectOperator(Op, Op->getOpcode()))
246       if (!isa<Instruction>(Op) ||
247           !TargetSelectInstruction(cast<Instruction>(Op)))
248         return 0;
249     Reg = lookUpRegForValue(Op);
250   } else if (isa<UndefValue>(V)) {
251     Reg = createResultReg(TLI.getRegClassFor(VT));
252     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
253             TII.get(TargetOpcode::IMPLICIT_DEF), Reg);
254   }
255
256   // If target-independent code couldn't handle the value, give target-specific
257   // code a try.
258   if (!Reg && isa<Constant>(V))
259     Reg = TargetMaterializeConstant(cast<Constant>(V));
260
261   // Don't cache constant materializations in the general ValueMap.
262   // To do so would require tracking what uses they dominate.
263   if (Reg != 0) {
264     LocalValueMap[V] = Reg;
265     LastLocalValue = MRI.getVRegDef(Reg);
266   }
267   return Reg;
268 }
269
270 unsigned FastISel::lookUpRegForValue(const Value *V) {
271   // Look up the value to see if we already have a register for it. We
272   // cache values defined by Instructions across blocks, and other values
273   // only locally. This is because Instructions already have the SSA
274   // def-dominates-use requirement enforced.
275   DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V);
276   if (I != FuncInfo.ValueMap.end())
277     return I->second;
278   return LocalValueMap[V];
279 }
280
281 /// UpdateValueMap - Update the value map to include the new mapping for this
282 /// instruction, or insert an extra copy to get the result in a previous
283 /// determined register.
284 /// NOTE: This is only necessary because we might select a block that uses
285 /// a value before we select the block that defines the value.  It might be
286 /// possible to fix this by selecting blocks in reverse postorder.
287 void FastISel::UpdateValueMap(const Value *I, unsigned Reg, unsigned NumRegs) {
288   if (!isa<Instruction>(I)) {
289     LocalValueMap[I] = Reg;
290     return;
291   }
292
293   unsigned &AssignedReg = FuncInfo.ValueMap[I];
294   if (AssignedReg == 0)
295     // Use the new register.
296     AssignedReg = Reg;
297   else if (Reg != AssignedReg) {
298     // Arrange for uses of AssignedReg to be replaced by uses of Reg.
299     for (unsigned i = 0; i < NumRegs; i++)
300       FuncInfo.RegFixups[AssignedReg+i] = Reg+i;
301
302     AssignedReg = Reg;
303   }
304 }
305
306 std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) {
307   unsigned IdxN = getRegForValue(Idx);
308   if (IdxN == 0)
309     // Unhandled operand. Halt "fast" selection and bail.
310     return std::pair<unsigned, bool>(0, false);
311
312   bool IdxNIsKill = hasTrivialKill(Idx);
313
314   // If the index is smaller or larger than intptr_t, truncate or extend it.
315   MVT PtrVT = TLI.getPointerTy();
316   EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false);
317   if (IdxVT.bitsLT(PtrVT)) {
318     IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
319                       IdxN, IdxNIsKill);
320     IdxNIsKill = true;
321   }
322   else if (IdxVT.bitsGT(PtrVT)) {
323     IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
324                       IdxN, IdxNIsKill);
325     IdxNIsKill = true;
326   }
327   return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
328 }
329
330 void FastISel::recomputeInsertPt() {
331   if (getLastLocalValue()) {
332     FuncInfo.InsertPt = getLastLocalValue();
333     FuncInfo.MBB = FuncInfo.InsertPt->getParent();
334     ++FuncInfo.InsertPt;
335   } else
336     FuncInfo.InsertPt = FuncInfo.MBB->getFirstNonPHI();
337
338   // Now skip past any EH_LABELs, which must remain at the beginning.
339   while (FuncInfo.InsertPt != FuncInfo.MBB->end() &&
340          FuncInfo.InsertPt->getOpcode() == TargetOpcode::EH_LABEL)
341     ++FuncInfo.InsertPt;
342 }
343
344 void FastISel::removeDeadCode(MachineBasicBlock::iterator I,
345                               MachineBasicBlock::iterator E) {
346   assert (I && E && std::distance(I, E) > 0 && "Invalid iterator!");
347   while (I != E) {
348     MachineInstr *Dead = &*I;
349     ++I;
350     Dead->eraseFromParent();
351     ++NumFastIselDead;
352   }
353   recomputeInsertPt();
354 }
355
356 FastISel::SavePoint FastISel::enterLocalValueArea() {
357   MachineBasicBlock::iterator OldInsertPt = FuncInfo.InsertPt;
358   DebugLoc OldDL = DbgLoc;
359   recomputeInsertPt();
360   DbgLoc = DebugLoc();
361   SavePoint SP = { OldInsertPt, OldDL };
362   return SP;
363 }
364
365 void FastISel::leaveLocalValueArea(SavePoint OldInsertPt) {
366   if (FuncInfo.InsertPt != FuncInfo.MBB->begin())
367     LastLocalValue = std::prev(FuncInfo.InsertPt);
368
369   // Restore the previous insert position.
370   FuncInfo.InsertPt = OldInsertPt.InsertPt;
371   DbgLoc = OldInsertPt.DL;
372 }
373
374 /// SelectBinaryOp - Select and emit code for a binary operator instruction,
375 /// which has an opcode which directly corresponds to the given ISD opcode.
376 ///
377 bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) {
378   EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true);
379   if (VT == MVT::Other || !VT.isSimple())
380     // Unhandled type. Halt "fast" selection and bail.
381     return false;
382
383   // We only handle legal types. For example, on x86-32 the instruction
384   // selector contains all of the 64-bit instructions from x86-64,
385   // under the assumption that i64 won't be used if the target doesn't
386   // support it.
387   if (!TLI.isTypeLegal(VT)) {
388     // MVT::i1 is special. Allow AND, OR, or XOR because they
389     // don't require additional zeroing, which makes them easy.
390     if (VT == MVT::i1 &&
391         (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR ||
392          ISDOpcode == ISD::XOR))
393       VT = TLI.getTypeToTransformTo(I->getContext(), VT);
394     else
395       return false;
396   }
397
398   // Check if the first operand is a constant, and handle it as "ri".  At -O0,
399   // we don't have anything that canonicalizes operand order.
400   if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(0)))
401     if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) {
402       unsigned Op1 = getRegForValue(I->getOperand(1));
403       if (Op1 == 0) return false;
404
405       bool Op1IsKill = hasTrivialKill(I->getOperand(1));
406
407       unsigned ResultReg = FastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op1,
408                                         Op1IsKill, CI->getZExtValue(),
409                                         VT.getSimpleVT());
410       if (ResultReg == 0) return false;
411
412       // We successfully emitted code for the given LLVM Instruction.
413       UpdateValueMap(I, ResultReg);
414       return true;
415     }
416
417
418   unsigned Op0 = getRegForValue(I->getOperand(0));
419   if (Op0 == 0)   // Unhandled operand. Halt "fast" selection and bail.
420     return false;
421
422   bool Op0IsKill = hasTrivialKill(I->getOperand(0));
423
424   // Check if the second operand is a constant and handle it appropriately.
425   if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) {
426     uint64_t Imm = CI->getZExtValue();
427
428     // Transform "sdiv exact X, 8" -> "sra X, 3".
429     if (ISDOpcode == ISD::SDIV && isa<BinaryOperator>(I) &&
430         cast<BinaryOperator>(I)->isExact() &&
431         isPowerOf2_64(Imm)) {
432       Imm = Log2_64(Imm);
433       ISDOpcode = ISD::SRA;
434     }
435
436     // Transform "urem x, pow2" -> "and x, pow2-1".
437     if (ISDOpcode == ISD::UREM && isa<BinaryOperator>(I) &&
438         isPowerOf2_64(Imm)) {
439       --Imm;
440       ISDOpcode = ISD::AND;
441     }
442
443     unsigned ResultReg = FastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0,
444                                       Op0IsKill, Imm, VT.getSimpleVT());
445     if (ResultReg == 0) return false;
446
447     // We successfully emitted code for the given LLVM Instruction.
448     UpdateValueMap(I, ResultReg);
449     return true;
450   }
451
452   // Check if the second operand is a constant float.
453   if (ConstantFP *CF = dyn_cast<ConstantFP>(I->getOperand(1))) {
454     unsigned ResultReg = FastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(),
455                                      ISDOpcode, Op0, Op0IsKill, CF);
456     if (ResultReg != 0) {
457       // We successfully emitted code for the given LLVM Instruction.
458       UpdateValueMap(I, ResultReg);
459       return true;
460     }
461   }
462
463   unsigned Op1 = getRegForValue(I->getOperand(1));
464   if (Op1 == 0)
465     // Unhandled operand. Halt "fast" selection and bail.
466     return false;
467
468   bool Op1IsKill = hasTrivialKill(I->getOperand(1));
469
470   // Now we have both operands in registers. Emit the instruction.
471   unsigned ResultReg = FastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(),
472                                    ISDOpcode,
473                                    Op0, Op0IsKill,
474                                    Op1, Op1IsKill);
475   if (ResultReg == 0)
476     // Target-specific code wasn't able to find a machine opcode for
477     // the given ISD opcode and type. Halt "fast" selection and bail.
478     return false;
479
480   // We successfully emitted code for the given LLVM Instruction.
481   UpdateValueMap(I, ResultReg);
482   return true;
483 }
484
485 bool FastISel::SelectGetElementPtr(const User *I) {
486   unsigned N = getRegForValue(I->getOperand(0));
487   if (N == 0)
488     // Unhandled operand. Halt "fast" selection and bail.
489     return false;
490
491   bool NIsKill = hasTrivialKill(I->getOperand(0));
492
493   // Keep a running tab of the total offset to coalesce multiple N = N + Offset
494   // into a single N = N + TotalOffset.
495   uint64_t TotalOffs = 0;
496   // FIXME: What's a good SWAG number for MaxOffs?
497   uint64_t MaxOffs = 2048;
498   Type *Ty = I->getOperand(0)->getType();
499   MVT VT = TLI.getPointerTy();
500   for (GetElementPtrInst::const_op_iterator OI = I->op_begin()+1,
501        E = I->op_end(); OI != E; ++OI) {
502     const Value *Idx = *OI;
503     if (StructType *StTy = dyn_cast<StructType>(Ty)) {
504       unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
505       if (Field) {
506         // N = N + Offset
507         TotalOffs += DL.getStructLayout(StTy)->getElementOffset(Field);
508         if (TotalOffs >= MaxOffs) {
509           N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
510           if (N == 0)
511             // Unhandled operand. Halt "fast" selection and bail.
512             return false;
513           NIsKill = true;
514           TotalOffs = 0;
515         }
516       }
517       Ty = StTy->getElementType(Field);
518     } else {
519       Ty = cast<SequentialType>(Ty)->getElementType();
520
521       // If this is a constant subscript, handle it quickly.
522       if (const ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) {
523         if (CI->isZero()) continue;
524         // N = N + Offset
525         TotalOffs +=
526           DL.getTypeAllocSize(Ty)*cast<ConstantInt>(CI)->getSExtValue();
527         if (TotalOffs >= MaxOffs) {
528           N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
529           if (N == 0)
530             // Unhandled operand. Halt "fast" selection and bail.
531             return false;
532           NIsKill = true;
533           TotalOffs = 0;
534         }
535         continue;
536       }
537       if (TotalOffs) {
538         N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
539         if (N == 0)
540           // Unhandled operand. Halt "fast" selection and bail.
541           return false;
542         NIsKill = true;
543         TotalOffs = 0;
544       }
545
546       // N = N + Idx * ElementSize;
547       uint64_t ElementSize = DL.getTypeAllocSize(Ty);
548       std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx);
549       unsigned IdxN = Pair.first;
550       bool IdxNIsKill = Pair.second;
551       if (IdxN == 0)
552         // Unhandled operand. Halt "fast" selection and bail.
553         return false;
554
555       if (ElementSize != 1) {
556         IdxN = FastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT);
557         if (IdxN == 0)
558           // Unhandled operand. Halt "fast" selection and bail.
559           return false;
560         IdxNIsKill = true;
561       }
562       N = FastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill);
563       if (N == 0)
564         // Unhandled operand. Halt "fast" selection and bail.
565         return false;
566     }
567   }
568   if (TotalOffs) {
569     N = FastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT);
570     if (N == 0)
571       // Unhandled operand. Halt "fast" selection and bail.
572       return false;
573   }
574
575   // We successfully emitted code for the given LLVM Instruction.
576   UpdateValueMap(I, N);
577   return true;
578 }
579
580 /// \brief Add a stackmap or patchpoint intrinsic call's live variable operands
581 /// to a stackmap or patchpoint machine instruction.
582 bool FastISel::addStackMapLiveVars(SmallVectorImpl<MachineOperand> &Ops,
583                                    const CallInst *CI, unsigned StartIdx) {
584   for (unsigned i = StartIdx, e = CI->getNumArgOperands(); i != e; ++i) {
585     Value *Val = CI->getArgOperand(i);
586     // Check for constants and encode them with a StackMaps::ConstantOp prefix.
587     if (auto *C = dyn_cast<ConstantInt>(Val)) {
588       Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp));
589       Ops.push_back(MachineOperand::CreateImm(C->getSExtValue()));
590     } else if (isa<ConstantPointerNull>(Val)) {
591       Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp));
592       Ops.push_back(MachineOperand::CreateImm(0));
593     } else if (auto *AI = dyn_cast<AllocaInst>(Val)) {
594       // Values coming from a stack location also require a sepcial encoding,
595       // but that is added later on by the target specific frame index
596       // elimination implementation.
597       auto SI = FuncInfo.StaticAllocaMap.find(AI);
598       if (SI != FuncInfo.StaticAllocaMap.end())
599         Ops.push_back(MachineOperand::CreateFI(SI->second));
600       else
601         return false;
602     } else {
603       unsigned Reg = getRegForValue(Val);
604       if (Reg == 0)
605         return false;
606       Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false));
607     }
608   }
609
610   return true;
611 }
612
613 bool FastISel::SelectStackmap(const CallInst *I) {
614   // void @llvm.experimental.stackmap(i64 <id>, i32 <numShadowBytes>,
615   //                                  [live variables...])
616   assert(I->getCalledFunction()->getReturnType()->isVoidTy() &&
617          "Stackmap cannot return a value.");
618
619   // The stackmap intrinsic only records the live variables (the arguments
620   // passed to it) and emits NOPS (if requested). Unlike the patchpoint
621   // intrinsic, this won't be lowered to a function call. This means we don't
622   // have to worry about calling conventions and target-specific lowering code.
623   // Instead we perform the call lowering right here.
624   //
625   // CALLSEQ_START(0)
626   // STACKMAP(id, nbytes, ...)
627   // CALLSEQ_END(0, 0)
628   //
629   SmallVector<MachineOperand, 32> Ops;
630
631   // Add the <id> and <numBytes> constants.
632   assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) &&
633          "Expected a constant integer.");
634   const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos));
635   Ops.push_back(MachineOperand::CreateImm(ID->getZExtValue()));
636
637   assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)) &&
638          "Expected a constant integer.");
639   const auto *NumBytes =
640     cast<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos));
641   Ops.push_back(MachineOperand::CreateImm(NumBytes->getZExtValue()));
642
643   // Push live variables for the stack map (skipping the first two arguments
644   // <id> and <numBytes>).
645   if (!addStackMapLiveVars(Ops, I, 2))
646     return false;
647
648   // We are not adding any register mask info here, because the stackmap doesn't
649   // clobber anything.
650
651   // Add scratch registers as implicit def and early clobber.
652   CallingConv::ID CC = I->getCallingConv();
653   const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC);
654   for (unsigned i = 0; ScratchRegs[i]; ++i)
655     Ops.push_back(MachineOperand::CreateReg(
656       ScratchRegs[i], /*IsDef=*/true, /*IsImp=*/true, /*IsKill=*/false,
657       /*IsDead=*/false, /*IsUndef=*/false, /*IsEarlyClobber=*/true));
658
659   // Issue CALLSEQ_START
660   unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
661   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown))
662     .addImm(0);
663
664   // Issue STACKMAP.
665   MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
666                                     TII.get(TargetOpcode::STACKMAP));
667   for (auto const &MO : Ops)
668     MIB.addOperand(MO);
669
670   // Issue CALLSEQ_END
671   unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
672   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp))
673     .addImm(0).addImm(0);
674
675   // Inform the Frame Information that we have a stackmap in this function.
676   FuncInfo.MF->getFrameInfo()->setHasStackMap();
677
678   return true;
679 }
680
681 /// \brief Lower an argument list according to the target calling convention.
682 ///
683 /// This is a helper for lowering intrinsics that follow a target calling
684 /// convention or require stack pointer adjustment. Only a subset of the
685 /// intrinsic's operands need to participate in the calling convention.
686 bool FastISel::lowerCallOperands(const CallInst *CI, unsigned ArgIdx,
687                                  unsigned NumArgs, const Value *Callee,
688                                  bool ForceRetVoidTy, CallLoweringInfo &CLI) {
689   ArgListTy Args;
690   Args.reserve(NumArgs);
691
692   // Populate the argument list.
693   // Attributes for args start at offset 1, after the return attribute.
694   ImmutableCallSite CS(CI);
695   for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs, AttrI = ArgIdx + 1;
696        ArgI != ArgE; ++ArgI) {
697     Value *V = CI->getOperand(ArgI);
698
699     assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic.");
700
701     ArgListEntry Entry;
702     Entry.Val = V;
703     Entry.Ty = V->getType();
704     Entry.setAttributes(&CS, AttrI);
705     Args.push_back(Entry);
706   }
707
708   Type *RetTy = ForceRetVoidTy ? Type::getVoidTy(CI->getType()->getContext())
709                                : CI->getType();
710   CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs);
711
712   return LowerCallTo(CLI);
713 }
714
715 bool FastISel::SelectPatchpoint(const CallInst *I) {
716   // void|i64 @llvm.experimental.patchpoint.void|i64(i64 <id>,
717   //                                                 i32 <numBytes>,
718   //                                                 i8* <target>,
719   //                                                 i32 <numArgs>,
720   //                                                 [Args...],
721   //                                                 [live variables...])
722   CallingConv::ID CC = I->getCallingConv();
723   bool IsAnyRegCC = CC == CallingConv::AnyReg;
724   bool HasDef = !I->getType()->isVoidTy();
725   Value *Callee = I->getOperand(PatchPointOpers::TargetPos);
726
727   // Get the real number of arguments participating in the call <numArgs>
728   assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NArgPos)) &&
729          "Expected a constant integer.");
730   const auto *NumArgsVal =
731     cast<ConstantInt>(I->getOperand(PatchPointOpers::NArgPos));
732   unsigned NumArgs = NumArgsVal->getZExtValue();
733
734   // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs>
735   // This includes all meta-operands up to but not including CC.
736   unsigned NumMetaOpers = PatchPointOpers::CCPos;
737   assert(I->getNumArgOperands() >= NumMetaOpers + NumArgs &&
738          "Not enough arguments provided to the patchpoint intrinsic");
739
740   // For AnyRegCC the arguments are lowered later on manually.
741   unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs;
742   CallLoweringInfo CLI;
743   if (!lowerCallOperands(I, NumMetaOpers, NumCallArgs, Callee, IsAnyRegCC, CLI))
744     return false;
745
746   assert(CLI.Call && "No call instruction specified.");
747
748   SmallVector<MachineOperand, 32> Ops;
749
750   // Add an explicit result reg if we use the anyreg calling convention.
751   if (IsAnyRegCC && HasDef) {
752     assert(CLI.NumResultRegs == 0 && "Unexpected result register.");
753     CLI.ResultReg = createResultReg(TLI.getRegClassFor(MVT::i64));
754     CLI.NumResultRegs = 1;
755     Ops.push_back(MachineOperand::CreateReg(CLI.ResultReg, /*IsDef=*/true));
756   }
757
758   // Add the <id> and <numBytes> constants.
759   assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) &&
760          "Expected a constant integer.");
761   const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos));
762   Ops.push_back(MachineOperand::CreateImm(ID->getZExtValue()));
763
764   assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)) &&
765          "Expected a constant integer.");
766   const auto *NumBytes =
767     cast<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos));
768   Ops.push_back(MachineOperand::CreateImm(NumBytes->getZExtValue()));
769
770   // Assume that the callee is a constant address or null pointer.
771   // FIXME: handle function symbols in the future.
772   unsigned CalleeAddr;
773   if (const auto *C = dyn_cast<IntToPtrInst>(Callee))
774     CalleeAddr = cast<ConstantInt>(C->getOperand(0))->getZExtValue();
775   else if (const auto *C = dyn_cast<ConstantExpr>(Callee)) {
776     if (C->getOpcode() == Instruction::IntToPtr)
777       CalleeAddr = cast<ConstantInt>(C->getOperand(0))->getZExtValue();
778     else
779       llvm_unreachable("Unsupported ConstantExpr.");
780   } else if (isa<ConstantPointerNull>(Callee))
781     CalleeAddr = 0;
782   else
783     llvm_unreachable("Unsupported callee address.");
784
785   Ops.push_back(MachineOperand::CreateImm(CalleeAddr));
786
787   // Adjust <numArgs> to account for any arguments that have been passed on
788   // the stack instead.
789   unsigned NumCallRegArgs = IsAnyRegCC ? NumArgs : CLI.OutRegs.size();
790   Ops.push_back(MachineOperand::CreateImm(NumCallRegArgs));
791
792   // Add the calling convention
793   Ops.push_back(MachineOperand::CreateImm((unsigned)CC));
794
795   // Add the arguments we omitted previously. The register allocator should
796   // place these in any free register.
797   if (IsAnyRegCC) {
798     for (unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i != e; ++i) {
799       unsigned Reg = getRegForValue(I->getArgOperand(i));
800       if (!Reg)
801         return false;
802       Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false));
803     }
804   }
805
806   // Push the arguments from the call instruction.
807   for (auto Reg : CLI.OutRegs)
808     Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false));
809
810   // Push live variables for the stack map.
811   if (!addStackMapLiveVars(Ops, I, NumMetaOpers + NumArgs))
812     return false;
813
814   // Push the register mask info.
815   Ops.push_back(MachineOperand::CreateRegMask(TRI.getCallPreservedMask(CC)));
816
817   // Add scratch registers as implicit def and early clobber.
818   const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC);
819   for (unsigned i = 0; ScratchRegs[i]; ++i)
820     Ops.push_back(MachineOperand::CreateReg(
821       ScratchRegs[i], /*IsDef=*/true, /*IsImp=*/true, /*IsKill=*/false,
822       /*IsDead=*/false, /*IsUndef=*/false, /*IsEarlyClobber=*/true));
823
824   // Add implicit defs (return values).
825   for (auto Reg : CLI.InRegs)
826     Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/true,
827                                             /*IsImpl=*/true));
828
829   MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
830                                     TII.get(TargetOpcode::PATCHPOINT));
831
832   for (auto &MO : Ops)
833     MIB.addOperand(MO);
834
835   MIB->setPhysRegsDeadExcept(CLI.InRegs, TRI);
836
837   // Delete the original call instruction.
838   CLI.Call->eraseFromParent();
839
840   // Inform the Frame Information that we have a patchpoint in this function.
841   FuncInfo.MF->getFrameInfo()->setHasPatchPoint();
842
843   if (CLI.NumResultRegs)
844     UpdateValueMap(I, CLI.ResultReg, CLI.NumResultRegs);
845   return true;
846 }
847
848 /// Returns an AttributeSet representing the attributes applied to the return
849 /// value of the given call.
850 static AttributeSet getReturnAttrs(FastISel::CallLoweringInfo &CLI) {
851   SmallVector<Attribute::AttrKind, 2> Attrs;
852   if (CLI.RetSExt)
853     Attrs.push_back(Attribute::SExt);
854   if (CLI.RetZExt)
855     Attrs.push_back(Attribute::ZExt);
856   if (CLI.IsInReg)
857     Attrs.push_back(Attribute::InReg);
858
859   return AttributeSet::get(CLI.RetTy->getContext(), AttributeSet::ReturnIndex,
860                            Attrs);
861 }
862
863 bool FastISel::LowerCallTo(const CallInst *CI, const char *SymName,
864                            unsigned NumArgs) {
865   ImmutableCallSite CS(CI);
866
867   PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
868   FunctionType *FTy = cast<FunctionType>(PT->getElementType());
869   Type *RetTy = FTy->getReturnType();
870
871   ArgListTy Args;
872   Args.reserve(NumArgs);
873
874   // Populate the argument list.
875   // Attributes for args start at offset 1, after the return attribute.
876   for (unsigned ArgI = 0; ArgI != NumArgs; ++ArgI) {
877     Value *V = CI->getOperand(ArgI);
878
879     assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic.");
880
881     ArgListEntry Entry;
882     Entry.Val = V;
883     Entry.Ty = V->getType();
884     Entry.setAttributes(&CS, ArgI + 1);
885     Args.push_back(Entry);
886   }
887
888   CallLoweringInfo CLI;
889   CLI.setCallee(RetTy, FTy, SymName, std::move(Args), CS, NumArgs);
890
891   return LowerCallTo(CLI);
892 }
893
894 bool FastISel::LowerCallTo(CallLoweringInfo &CLI) {
895   // Handle the incoming return values from the call.
896   CLI.clearIns();
897   SmallVector<EVT, 4> RetTys;
898   ComputeValueVTs(TLI, CLI.RetTy, RetTys);
899
900   SmallVector<ISD::OutputArg, 4> Outs;
901   GetReturnInfo(CLI.RetTy, getReturnAttrs(CLI), Outs, TLI);
902
903   bool CanLowerReturn = TLI.CanLowerReturn(CLI.CallConv, *FuncInfo.MF,
904                                            CLI.IsVarArg, Outs,
905                                            CLI.RetTy->getContext());
906
907   // FIXME: sret demotion isn't supported yet - bail out.
908   if (!CanLowerReturn)
909     return false;
910
911   for (unsigned I = 0, E = RetTys.size(); I != E; ++I) {
912     EVT VT = RetTys[I];
913     MVT RegisterVT = TLI.getRegisterType(CLI.RetTy->getContext(), VT);
914     unsigned NumRegs = TLI.getNumRegisters(CLI.RetTy->getContext(), VT);
915     for (unsigned i = 0; i != NumRegs; ++i) {
916       ISD::InputArg MyFlags;
917       MyFlags.VT = RegisterVT;
918       MyFlags.ArgVT = VT;
919       MyFlags.Used = CLI.IsReturnValueUsed;
920       if (CLI.RetSExt)
921         MyFlags.Flags.setSExt();
922       if (CLI.RetZExt)
923         MyFlags.Flags.setZExt();
924       if (CLI.IsInReg)
925         MyFlags.Flags.setInReg();
926       CLI.Ins.push_back(MyFlags);
927     }
928   }
929
930   // Handle all of the outgoing arguments.
931   CLI.clearOuts();
932   for (auto &Arg : CLI.getArgs()) {
933     Type *FinalType = Arg.Ty;
934     if (Arg.isByVal)
935       FinalType = cast<PointerType>(Arg.Ty)->getElementType();
936     bool NeedsRegBlock = TLI.functionArgumentNeedsConsecutiveRegisters(
937       FinalType, CLI.CallConv, CLI.IsVarArg);
938
939     ISD::ArgFlagsTy Flags;
940     if (Arg.isZExt)
941       Flags.setZExt();
942     if (Arg.isSExt)
943       Flags.setSExt();
944     if (Arg.isInReg)
945       Flags.setInReg();
946     if (Arg.isSRet)
947       Flags.setSRet();
948     if (Arg.isByVal)
949       Flags.setByVal();
950     if (Arg.isInAlloca) {
951       Flags.setInAlloca();
952       // Set the byval flag for CCAssignFn callbacks that don't know about
953       // inalloca. This way we can know how many bytes we should've allocated
954       // and how many bytes a callee cleanup function will pop.  If we port
955       // inalloca to more targets, we'll have to add custom inalloca handling in
956       // the various CC lowering callbacks.
957       Flags.setByVal();
958     }
959     if (Arg.isByVal || Arg.isInAlloca) {
960       PointerType *Ty = cast<PointerType>(Arg.Ty);
961       Type *ElementTy = Ty->getElementType();
962       unsigned FrameSize = DL.getTypeAllocSize(ElementTy);
963       // For ByVal, alignment should come from FE. BE will guess if this info is
964       // not there, but there are cases it cannot get right.
965       unsigned FrameAlign = Arg.Alignment;
966       if (!FrameAlign)
967         FrameAlign = TLI.getByValTypeAlignment(ElementTy);
968       Flags.setByValSize(FrameSize);
969       Flags.setByValAlign(FrameAlign);
970     }
971     if (Arg.isNest)
972       Flags.setNest();
973     if (NeedsRegBlock)
974       Flags.setInConsecutiveRegs();
975     unsigned OriginalAlignment = DL.getABITypeAlignment(Arg.Ty);
976     Flags.setOrigAlign(OriginalAlignment);
977
978     CLI.OutVals.push_back(Arg.Val);
979     CLI.OutFlags.push_back(Flags);
980   }
981
982   if (!FastLowerCall(CLI))
983     return false;
984
985   // Set all unused physreg defs as dead.
986   assert(CLI.Call && "No call instruction specified.");
987   CLI.Call->setPhysRegsDeadExcept(CLI.InRegs, TRI);
988
989   if (CLI.NumResultRegs && CLI.CS)
990     UpdateValueMap(CLI.CS->getInstruction(), CLI.ResultReg, CLI.NumResultRegs);
991
992   return true;
993 }
994
995 bool FastISel::LowerCall(const CallInst *CI) {
996   ImmutableCallSite CS(CI);
997
998   PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
999   FunctionType *FuncTy = cast<FunctionType>(PT->getElementType());
1000   Type *RetTy = FuncTy->getReturnType();
1001
1002   ArgListTy Args;
1003   ArgListEntry Entry;
1004   Args.reserve(CS.arg_size());
1005
1006   for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1007        i != e; ++i) {
1008     Value *V = *i;
1009
1010     // Skip empty types
1011     if (V->getType()->isEmptyTy())
1012       continue;
1013
1014     Entry.Val = V;
1015     Entry.Ty = V->getType();
1016
1017     // Skip the first return-type Attribute to get to params.
1018     Entry.setAttributes(&CS, i - CS.arg_begin() + 1);
1019     Args.push_back(Entry);
1020   }
1021
1022   // Check if target-independent constraints permit a tail call here.
1023   // Target-dependent constraints are checked within FastLowerCall.
1024   bool IsTailCall = CI->isTailCall();
1025   if (IsTailCall && !isInTailCallPosition(CS, TM, TLI))
1026     IsTailCall = false;
1027
1028   CallLoweringInfo CLI;
1029   CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS)
1030     .setTailCall(IsTailCall);
1031
1032   return LowerCallTo(CLI);
1033 }
1034
1035 bool FastISel::SelectCall(const User *I) {
1036   const CallInst *Call = cast<CallInst>(I);
1037
1038   // Handle simple inline asms.
1039   if (const InlineAsm *IA = dyn_cast<InlineAsm>(Call->getCalledValue())) {
1040     // Don't attempt to handle constraints.
1041     if (!IA->getConstraintString().empty())
1042       return false;
1043
1044     unsigned ExtraInfo = 0;
1045     if (IA->hasSideEffects())
1046       ExtraInfo |= InlineAsm::Extra_HasSideEffects;
1047     if (IA->isAlignStack())
1048       ExtraInfo |= InlineAsm::Extra_IsAlignStack;
1049
1050     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1051             TII.get(TargetOpcode::INLINEASM))
1052       .addExternalSymbol(IA->getAsmString().c_str())
1053       .addImm(ExtraInfo);
1054     return true;
1055   }
1056
1057   MachineModuleInfo &MMI = FuncInfo.MF->getMMI();
1058   ComputeUsesVAFloatArgument(*Call, &MMI);
1059
1060   // Handle intrinsic function calls.
1061   if (const auto *II = dyn_cast<IntrinsicInst>(Call))
1062     return SelectIntrinsicCall(II);
1063
1064   // Usually, it does not make sense to initialize a value,
1065   // make an unrelated function call and use the value, because
1066   // it tends to be spilled on the stack. So, we move the pointer
1067   // to the last local value to the beginning of the block, so that
1068   // all the values which have already been materialized,
1069   // appear after the call. It also makes sense to skip intrinsics
1070   // since they tend to be inlined.
1071   flushLocalValueMap();
1072
1073   return LowerCall(Call);
1074 }
1075
1076 bool FastISel::SelectIntrinsicCall(const IntrinsicInst *II) {
1077   switch (II->getIntrinsicID()) {
1078   default: break;
1079   // At -O0 we don't care about the lifetime intrinsics.
1080   case Intrinsic::lifetime_start:
1081   case Intrinsic::lifetime_end:
1082   // The donothing intrinsic does, well, nothing.
1083   case Intrinsic::donothing:
1084     return true;
1085   case Intrinsic::dbg_declare: {
1086     const DbgDeclareInst *DI = cast<DbgDeclareInst>(II);
1087     DIVariable DIVar(DI->getVariable());
1088     assert((!DIVar || DIVar.isVariable()) &&
1089            "Variable in DbgDeclareInst should be either null or a DIVariable.");
1090     if (!DIVar || !FuncInfo.MF->getMMI().hasDebugInfo()) {
1091       DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
1092       return true;
1093     }
1094
1095     const Value *Address = DI->getAddress();
1096     if (!Address || isa<UndefValue>(Address)) {
1097       DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
1098       return true;
1099     }
1100
1101     unsigned Offset = 0;
1102     Optional<MachineOperand> Op;
1103     if (const Argument *Arg = dyn_cast<Argument>(Address))
1104       // Some arguments' frame index is recorded during argument lowering.
1105       Offset = FuncInfo.getArgumentFrameIndex(Arg);
1106     if (Offset)
1107       Op = MachineOperand::CreateFI(Offset);
1108     if (!Op)
1109       if (unsigned Reg = lookUpRegForValue(Address))
1110         Op = MachineOperand::CreateReg(Reg, false);
1111
1112     // If we have a VLA that has a "use" in a metadata node that's then used
1113     // here but it has no other uses, then we have a problem. E.g.,
1114     //
1115     //   int foo (const int *x) {
1116     //     char a[*x];
1117     //     return 0;
1118     //   }
1119     //
1120     // If we assign 'a' a vreg and fast isel later on has to use the selection
1121     // DAG isel, it will want to copy the value to the vreg. However, there are
1122     // no uses, which goes counter to what selection DAG isel expects.
1123     if (!Op && !Address->use_empty() && isa<Instruction>(Address) &&
1124         (!isa<AllocaInst>(Address) ||
1125          !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(Address))))
1126       Op = MachineOperand::CreateReg(FuncInfo.InitializeRegForValue(Address),
1127                                      false);
1128
1129     if (Op) {
1130       if (Op->isReg()) {
1131         Op->setIsDebug(true);
1132         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1133                 TII.get(TargetOpcode::DBG_VALUE), false, Op->getReg(), 0,
1134                 DI->getVariable());
1135       } else
1136         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1137                 TII.get(TargetOpcode::DBG_VALUE))
1138           .addOperand(*Op)
1139           .addImm(0)
1140           .addMetadata(DI->getVariable());
1141     } else {
1142       // We can't yet handle anything else here because it would require
1143       // generating code, thus altering codegen because of debug info.
1144       DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
1145     }
1146     return true;
1147   }
1148   case Intrinsic::dbg_value: {
1149     // This form of DBG_VALUE is target-independent.
1150     const DbgValueInst *DI = cast<DbgValueInst>(II);
1151     const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE);
1152     const Value *V = DI->getValue();
1153     if (!V) {
1154       // Currently the optimizer can produce this; insert an undef to
1155       // help debugging.  Probably the optimizer should not do this.
1156       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1157         .addReg(0U).addImm(DI->getOffset())
1158         .addMetadata(DI->getVariable());
1159     } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
1160       if (CI->getBitWidth() > 64)
1161         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1162           .addCImm(CI).addImm(DI->getOffset())
1163           .addMetadata(DI->getVariable());
1164       else
1165         BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1166           .addImm(CI->getZExtValue()).addImm(DI->getOffset())
1167           .addMetadata(DI->getVariable());
1168     } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
1169       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1170         .addFPImm(CF).addImm(DI->getOffset())
1171         .addMetadata(DI->getVariable());
1172     } else if (unsigned Reg = lookUpRegForValue(V)) {
1173       // FIXME: This does not handle register-indirect values at offset 0.
1174       bool IsIndirect = DI->getOffset() != 0;
1175       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, IsIndirect,
1176               Reg, DI->getOffset(), DI->getVariable());
1177     } else {
1178       // We can't yet handle anything else here because it would require
1179       // generating code, thus altering codegen because of debug info.
1180       DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n");
1181     }
1182     return true;
1183   }
1184   case Intrinsic::objectsize: {
1185     ConstantInt *CI = cast<ConstantInt>(II->getArgOperand(1));
1186     unsigned long long Res = CI->isZero() ? -1ULL : 0;
1187     Constant *ResCI = ConstantInt::get(II->getType(), Res);
1188     unsigned ResultReg = getRegForValue(ResCI);
1189     if (ResultReg == 0)
1190       return false;
1191     UpdateValueMap(II, ResultReg);
1192     return true;
1193   }
1194   case Intrinsic::expect: {
1195     unsigned ResultReg = getRegForValue(II->getArgOperand(0));
1196     if (ResultReg == 0)
1197       return false;
1198     UpdateValueMap(II, ResultReg);
1199     return true;
1200   }
1201   case Intrinsic::experimental_stackmap:
1202     return SelectStackmap(II);
1203   case Intrinsic::experimental_patchpoint_void:
1204   case Intrinsic::experimental_patchpoint_i64:
1205     return SelectPatchpoint(II);
1206   }
1207
1208   return FastLowerIntrinsicCall(II);
1209 }
1210
1211 bool FastISel::SelectCast(const User *I, unsigned Opcode) {
1212   EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1213   EVT DstVT = TLI.getValueType(I->getType());
1214
1215   if (SrcVT == MVT::Other || !SrcVT.isSimple() ||
1216       DstVT == MVT::Other || !DstVT.isSimple())
1217     // Unhandled type. Halt "fast" selection and bail.
1218     return false;
1219
1220   // Check if the destination type is legal.
1221   if (!TLI.isTypeLegal(DstVT))
1222     return false;
1223
1224   // Check if the source operand is legal.
1225   if (!TLI.isTypeLegal(SrcVT))
1226     return false;
1227
1228   unsigned InputReg = getRegForValue(I->getOperand(0));
1229   if (!InputReg)
1230     // Unhandled operand.  Halt "fast" selection and bail.
1231     return false;
1232
1233   bool InputRegIsKill = hasTrivialKill(I->getOperand(0));
1234
1235   unsigned ResultReg = FastEmit_r(SrcVT.getSimpleVT(),
1236                                   DstVT.getSimpleVT(),
1237                                   Opcode,
1238                                   InputReg, InputRegIsKill);
1239   if (!ResultReg)
1240     return false;
1241
1242   UpdateValueMap(I, ResultReg);
1243   return true;
1244 }
1245
1246 bool FastISel::SelectBitCast(const User *I) {
1247   // If the bitcast doesn't change the type, just use the operand value.
1248   if (I->getType() == I->getOperand(0)->getType()) {
1249     unsigned Reg = getRegForValue(I->getOperand(0));
1250     if (Reg == 0)
1251       return false;
1252     UpdateValueMap(I, Reg);
1253     return true;
1254   }
1255
1256   // Bitcasts of other values become reg-reg copies or BITCAST operators.
1257   EVT SrcEVT = TLI.getValueType(I->getOperand(0)->getType());
1258   EVT DstEVT = TLI.getValueType(I->getType());
1259   if (SrcEVT == MVT::Other || DstEVT == MVT::Other ||
1260       !TLI.isTypeLegal(SrcEVT) || !TLI.isTypeLegal(DstEVT))
1261     // Unhandled type. Halt "fast" selection and bail.
1262     return false;
1263
1264   MVT SrcVT = SrcEVT.getSimpleVT();
1265   MVT DstVT = DstEVT.getSimpleVT();
1266   unsigned Op0 = getRegForValue(I->getOperand(0));
1267   if (Op0 == 0)
1268     // Unhandled operand. Halt "fast" selection and bail.
1269     return false;
1270
1271   bool Op0IsKill = hasTrivialKill(I->getOperand(0));
1272
1273   // First, try to perform the bitcast by inserting a reg-reg copy.
1274   unsigned ResultReg = 0;
1275   if (SrcVT == DstVT) {
1276     const TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT);
1277     const TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT);
1278     // Don't attempt a cross-class copy. It will likely fail.
1279     if (SrcClass == DstClass) {
1280       ResultReg = createResultReg(DstClass);
1281       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1282               TII.get(TargetOpcode::COPY), ResultReg).addReg(Op0);
1283     }
1284   }
1285
1286   // If the reg-reg copy failed, select a BITCAST opcode.
1287   if (!ResultReg)
1288     ResultReg = FastEmit_r(SrcVT, DstVT, ISD::BITCAST, Op0, Op0IsKill);
1289
1290   if (!ResultReg)
1291     return false;
1292
1293   UpdateValueMap(I, ResultReg);
1294   return true;
1295 }
1296
1297 bool
1298 FastISel::SelectInstruction(const Instruction *I) {
1299   // Just before the terminator instruction, insert instructions to
1300   // feed PHI nodes in successor blocks.
1301   if (isa<TerminatorInst>(I))
1302     if (!HandlePHINodesInSuccessorBlocks(I->getParent()))
1303       return false;
1304
1305   DbgLoc = I->getDebugLoc();
1306
1307   MachineBasicBlock::iterator SavedInsertPt = FuncInfo.InsertPt;
1308
1309   if (const CallInst *Call = dyn_cast<CallInst>(I)) {
1310     const Function *F = Call->getCalledFunction();
1311     LibFunc::Func Func;
1312
1313     // As a special case, don't handle calls to builtin library functions that
1314     // may be translated directly to target instructions.
1315     if (F && !F->hasLocalLinkage() && F->hasName() &&
1316         LibInfo->getLibFunc(F->getName(), Func) &&
1317         LibInfo->hasOptimizedCodeGen(Func))
1318       return false;
1319
1320     // Don't handle Intrinsic::trap if a trap funciton is specified.
1321     if (F && F->getIntrinsicID() == Intrinsic::trap &&
1322         !TM.Options.getTrapFunctionName().empty())
1323       return false;
1324   }
1325
1326   // First, try doing target-independent selection.
1327   if (SelectOperator(I, I->getOpcode())) {
1328     ++NumFastIselSuccessIndependent;
1329     DbgLoc = DebugLoc();
1330     return true;
1331   }
1332   // Remove dead code.  However, ignore call instructions since we've flushed
1333   // the local value map and recomputed the insert point.
1334   if (!isa<CallInst>(I)) {
1335     recomputeInsertPt();
1336     if (SavedInsertPt != FuncInfo.InsertPt)
1337       removeDeadCode(FuncInfo.InsertPt, SavedInsertPt);
1338   }
1339
1340   // Next, try calling the target to attempt to handle the instruction.
1341   SavedInsertPt = FuncInfo.InsertPt;
1342   if (TargetSelectInstruction(I)) {
1343     ++NumFastIselSuccessTarget;
1344     DbgLoc = DebugLoc();
1345     return true;
1346   }
1347   // Check for dead code and remove as necessary.
1348   recomputeInsertPt();
1349   if (SavedInsertPt != FuncInfo.InsertPt)
1350     removeDeadCode(FuncInfo.InsertPt, SavedInsertPt);
1351
1352   DbgLoc = DebugLoc();
1353   return false;
1354 }
1355
1356 /// FastEmitBranch - Emit an unconditional branch to the given block,
1357 /// unless it is the immediate (fall-through) successor, and update
1358 /// the CFG.
1359 void
1360 FastISel::FastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DbgLoc) {
1361   if (FuncInfo.MBB->getBasicBlock()->size() > 1 &&
1362       FuncInfo.MBB->isLayoutSuccessor(MSucc)) {
1363     // For more accurate line information if this is the only instruction
1364     // in the block then emit it, otherwise we have the unconditional
1365     // fall-through case, which needs no instructions.
1366   } else {
1367     // The unconditional branch case.
1368     TII.InsertBranch(*FuncInfo.MBB, MSucc, nullptr,
1369                      SmallVector<MachineOperand, 0>(), DbgLoc);
1370   }
1371   uint32_t BranchWeight = 0;
1372   if (FuncInfo.BPI)
1373     BranchWeight = FuncInfo.BPI->getEdgeWeight(FuncInfo.MBB->getBasicBlock(),
1374                                                MSucc->getBasicBlock());
1375   FuncInfo.MBB->addSuccessor(MSucc, BranchWeight);
1376 }
1377
1378 /// SelectFNeg - Emit an FNeg operation.
1379 ///
1380 bool
1381 FastISel::SelectFNeg(const User *I) {
1382   unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I));
1383   if (OpReg == 0) return false;
1384
1385   bool OpRegIsKill = hasTrivialKill(I);
1386
1387   // If the target has ISD::FNEG, use it.
1388   EVT VT = TLI.getValueType(I->getType());
1389   unsigned ResultReg = FastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(),
1390                                   ISD::FNEG, OpReg, OpRegIsKill);
1391   if (ResultReg != 0) {
1392     UpdateValueMap(I, ResultReg);
1393     return true;
1394   }
1395
1396   // Bitcast the value to integer, twiddle the sign bit with xor,
1397   // and then bitcast it back to floating-point.
1398   if (VT.getSizeInBits() > 64) return false;
1399   EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits());
1400   if (!TLI.isTypeLegal(IntVT))
1401     return false;
1402
1403   unsigned IntReg = FastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(),
1404                                ISD::BITCAST, OpReg, OpRegIsKill);
1405   if (IntReg == 0)
1406     return false;
1407
1408   unsigned IntResultReg = FastEmit_ri_(IntVT.getSimpleVT(), ISD::XOR,
1409                                        IntReg, /*Kill=*/true,
1410                                        UINT64_C(1) << (VT.getSizeInBits()-1),
1411                                        IntVT.getSimpleVT());
1412   if (IntResultReg == 0)
1413     return false;
1414
1415   ResultReg = FastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(),
1416                          ISD::BITCAST, IntResultReg, /*Kill=*/true);
1417   if (ResultReg == 0)
1418     return false;
1419
1420   UpdateValueMap(I, ResultReg);
1421   return true;
1422 }
1423
1424 bool
1425 FastISel::SelectExtractValue(const User *U) {
1426   const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(U);
1427   if (!EVI)
1428     return false;
1429
1430   // Make sure we only try to handle extracts with a legal result.  But also
1431   // allow i1 because it's easy.
1432   EVT RealVT = TLI.getValueType(EVI->getType(), /*AllowUnknown=*/true);
1433   if (!RealVT.isSimple())
1434     return false;
1435   MVT VT = RealVT.getSimpleVT();
1436   if (!TLI.isTypeLegal(VT) && VT != MVT::i1)
1437     return false;
1438
1439   const Value *Op0 = EVI->getOperand(0);
1440   Type *AggTy = Op0->getType();
1441
1442   // Get the base result register.
1443   unsigned ResultReg;
1444   DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(Op0);
1445   if (I != FuncInfo.ValueMap.end())
1446     ResultReg = I->second;
1447   else if (isa<Instruction>(Op0))
1448     ResultReg = FuncInfo.InitializeRegForValue(Op0);
1449   else
1450     return false; // fast-isel can't handle aggregate constants at the moment
1451
1452   // Get the actual result register, which is an offset from the base register.
1453   unsigned VTIndex = ComputeLinearIndex(AggTy, EVI->getIndices());
1454
1455   SmallVector<EVT, 4> AggValueVTs;
1456   ComputeValueVTs(TLI, AggTy, AggValueVTs);
1457
1458   for (unsigned i = 0; i < VTIndex; i++)
1459     ResultReg += TLI.getNumRegisters(FuncInfo.Fn->getContext(), AggValueVTs[i]);
1460
1461   UpdateValueMap(EVI, ResultReg);
1462   return true;
1463 }
1464
1465 bool
1466 FastISel::SelectOperator(const User *I, unsigned Opcode) {
1467   switch (Opcode) {
1468   case Instruction::Add:
1469     return SelectBinaryOp(I, ISD::ADD);
1470   case Instruction::FAdd:
1471     return SelectBinaryOp(I, ISD::FADD);
1472   case Instruction::Sub:
1473     return SelectBinaryOp(I, ISD::SUB);
1474   case Instruction::FSub:
1475     // FNeg is currently represented in LLVM IR as a special case of FSub.
1476     if (BinaryOperator::isFNeg(I))
1477       return SelectFNeg(I);
1478     return SelectBinaryOp(I, ISD::FSUB);
1479   case Instruction::Mul:
1480     return SelectBinaryOp(I, ISD::MUL);
1481   case Instruction::FMul:
1482     return SelectBinaryOp(I, ISD::FMUL);
1483   case Instruction::SDiv:
1484     return SelectBinaryOp(I, ISD::SDIV);
1485   case Instruction::UDiv:
1486     return SelectBinaryOp(I, ISD::UDIV);
1487   case Instruction::FDiv:
1488     return SelectBinaryOp(I, ISD::FDIV);
1489   case Instruction::SRem:
1490     return SelectBinaryOp(I, ISD::SREM);
1491   case Instruction::URem:
1492     return SelectBinaryOp(I, ISD::UREM);
1493   case Instruction::FRem:
1494     return SelectBinaryOp(I, ISD::FREM);
1495   case Instruction::Shl:
1496     return SelectBinaryOp(I, ISD::SHL);
1497   case Instruction::LShr:
1498     return SelectBinaryOp(I, ISD::SRL);
1499   case Instruction::AShr:
1500     return SelectBinaryOp(I, ISD::SRA);
1501   case Instruction::And:
1502     return SelectBinaryOp(I, ISD::AND);
1503   case Instruction::Or:
1504     return SelectBinaryOp(I, ISD::OR);
1505   case Instruction::Xor:
1506     return SelectBinaryOp(I, ISD::XOR);
1507
1508   case Instruction::GetElementPtr:
1509     return SelectGetElementPtr(I);
1510
1511   case Instruction::Br: {
1512     const BranchInst *BI = cast<BranchInst>(I);
1513
1514     if (BI->isUnconditional()) {
1515       const BasicBlock *LLVMSucc = BI->getSuccessor(0);
1516       MachineBasicBlock *MSucc = FuncInfo.MBBMap[LLVMSucc];
1517       FastEmitBranch(MSucc, BI->getDebugLoc());
1518       return true;
1519     }
1520
1521     // Conditional branches are not handed yet.
1522     // Halt "fast" selection and bail.
1523     return false;
1524   }
1525
1526   case Instruction::Unreachable:
1527     if (TM.Options.TrapUnreachable)
1528       return FastEmit_(MVT::Other, MVT::Other, ISD::TRAP) != 0;
1529     else
1530       return true;
1531
1532   case Instruction::Alloca:
1533     // FunctionLowering has the static-sized case covered.
1534     if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I)))
1535       return true;
1536
1537     // Dynamic-sized alloca is not handled yet.
1538     return false;
1539
1540   case Instruction::Call:
1541     return SelectCall(I);
1542
1543   case Instruction::BitCast:
1544     return SelectBitCast(I);
1545
1546   case Instruction::FPToSI:
1547     return SelectCast(I, ISD::FP_TO_SINT);
1548   case Instruction::ZExt:
1549     return SelectCast(I, ISD::ZERO_EXTEND);
1550   case Instruction::SExt:
1551     return SelectCast(I, ISD::SIGN_EXTEND);
1552   case Instruction::Trunc:
1553     return SelectCast(I, ISD::TRUNCATE);
1554   case Instruction::SIToFP:
1555     return SelectCast(I, ISD::SINT_TO_FP);
1556
1557   case Instruction::IntToPtr: // Deliberate fall-through.
1558   case Instruction::PtrToInt: {
1559     EVT SrcVT = TLI.getValueType(I->getOperand(0)->getType());
1560     EVT DstVT = TLI.getValueType(I->getType());
1561     if (DstVT.bitsGT(SrcVT))
1562       return SelectCast(I, ISD::ZERO_EXTEND);
1563     if (DstVT.bitsLT(SrcVT))
1564       return SelectCast(I, ISD::TRUNCATE);
1565     unsigned Reg = getRegForValue(I->getOperand(0));
1566     if (Reg == 0) return false;
1567     UpdateValueMap(I, Reg);
1568     return true;
1569   }
1570
1571   case Instruction::ExtractValue:
1572     return SelectExtractValue(I);
1573
1574   case Instruction::PHI:
1575     llvm_unreachable("FastISel shouldn't visit PHI nodes!");
1576
1577   default:
1578     // Unhandled instruction. Halt "fast" selection and bail.
1579     return false;
1580   }
1581 }
1582
1583 FastISel::FastISel(FunctionLoweringInfo &funcInfo,
1584                    const TargetLibraryInfo *libInfo)
1585   : FuncInfo(funcInfo),
1586     MF(funcInfo.MF),
1587     MRI(FuncInfo.MF->getRegInfo()),
1588     MFI(*FuncInfo.MF->getFrameInfo()),
1589     MCP(*FuncInfo.MF->getConstantPool()),
1590     TM(FuncInfo.MF->getTarget()),
1591     DL(*TM.getDataLayout()),
1592     TII(*TM.getInstrInfo()),
1593     TLI(*TM.getTargetLowering()),
1594     TRI(*TM.getRegisterInfo()),
1595     LibInfo(libInfo) {
1596 }
1597
1598 FastISel::~FastISel() {}
1599
1600 bool FastISel::FastLowerArguments() {
1601   return false;
1602 }
1603
1604 bool FastISel::FastLowerCall(CallLoweringInfo &/*CLI*/) {
1605   return false;
1606 }
1607
1608 bool FastISel::FastLowerIntrinsicCall(const IntrinsicInst * /*II*/) {
1609   return false;
1610 }
1611
1612 unsigned FastISel::FastEmit_(MVT, MVT,
1613                              unsigned) {
1614   return 0;
1615 }
1616
1617 unsigned FastISel::FastEmit_r(MVT, MVT,
1618                               unsigned,
1619                               unsigned /*Op0*/, bool /*Op0IsKill*/) {
1620   return 0;
1621 }
1622
1623 unsigned FastISel::FastEmit_rr(MVT, MVT,
1624                                unsigned,
1625                                unsigned /*Op0*/, bool /*Op0IsKill*/,
1626                                unsigned /*Op1*/, bool /*Op1IsKill*/) {
1627   return 0;
1628 }
1629
1630 unsigned FastISel::FastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) {
1631   return 0;
1632 }
1633
1634 unsigned FastISel::FastEmit_f(MVT, MVT,
1635                               unsigned, const ConstantFP * /*FPImm*/) {
1636   return 0;
1637 }
1638
1639 unsigned FastISel::FastEmit_ri(MVT, MVT,
1640                                unsigned,
1641                                unsigned /*Op0*/, bool /*Op0IsKill*/,
1642                                uint64_t /*Imm*/) {
1643   return 0;
1644 }
1645
1646 unsigned FastISel::FastEmit_rf(MVT, MVT,
1647                                unsigned,
1648                                unsigned /*Op0*/, bool /*Op0IsKill*/,
1649                                const ConstantFP * /*FPImm*/) {
1650   return 0;
1651 }
1652
1653 unsigned FastISel::FastEmit_rri(MVT, MVT,
1654                                 unsigned,
1655                                 unsigned /*Op0*/, bool /*Op0IsKill*/,
1656                                 unsigned /*Op1*/, bool /*Op1IsKill*/,
1657                                 uint64_t /*Imm*/) {
1658   return 0;
1659 }
1660
1661 /// FastEmit_ri_ - This method is a wrapper of FastEmit_ri. It first tries
1662 /// to emit an instruction with an immediate operand using FastEmit_ri.
1663 /// If that fails, it materializes the immediate into a register and try
1664 /// FastEmit_rr instead.
1665 unsigned FastISel::FastEmit_ri_(MVT VT, unsigned Opcode,
1666                                 unsigned Op0, bool Op0IsKill,
1667                                 uint64_t Imm, MVT ImmType) {
1668   // If this is a multiply by a power of two, emit this as a shift left.
1669   if (Opcode == ISD::MUL && isPowerOf2_64(Imm)) {
1670     Opcode = ISD::SHL;
1671     Imm = Log2_64(Imm);
1672   } else if (Opcode == ISD::UDIV && isPowerOf2_64(Imm)) {
1673     // div x, 8 -> srl x, 3
1674     Opcode = ISD::SRL;
1675     Imm = Log2_64(Imm);
1676   }
1677
1678   // Horrible hack (to be removed), check to make sure shift amounts are
1679   // in-range.
1680   if ((Opcode == ISD::SHL || Opcode == ISD::SRA || Opcode == ISD::SRL) &&
1681       Imm >= VT.getSizeInBits())
1682     return 0;
1683
1684   // First check if immediate type is legal. If not, we can't use the ri form.
1685   unsigned ResultReg = FastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm);
1686   if (ResultReg != 0)
1687     return ResultReg;
1688   unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm);
1689   if (MaterialReg == 0) {
1690     // This is a bit ugly/slow, but failing here means falling out of
1691     // fast-isel, which would be very slow.
1692     IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(),
1693                                               VT.getSizeInBits());
1694     MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
1695     assert (MaterialReg != 0 && "Unable to materialize imm.");
1696     if (MaterialReg == 0) return 0;
1697   }
1698   return FastEmit_rr(VT, VT, Opcode,
1699                      Op0, Op0IsKill,
1700                      MaterialReg, /*Kill=*/true);
1701 }
1702
1703 unsigned FastISel::createResultReg(const TargetRegisterClass* RC) {
1704   return MRI.createVirtualRegister(RC);
1705 }
1706
1707 unsigned FastISel::constrainOperandRegClass(const MCInstrDesc &II,
1708                                             unsigned Op, unsigned OpNum) {
1709   if (TargetRegisterInfo::isVirtualRegister(Op)) {
1710     const TargetRegisterClass *RegClass =
1711         TII.getRegClass(II, OpNum, &TRI, *FuncInfo.MF);
1712     if (!MRI.constrainRegClass(Op, RegClass)) {
1713       // If it's not legal to COPY between the register classes, something
1714       // has gone very wrong before we got here.
1715       unsigned NewOp = createResultReg(RegClass);
1716       BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1717               TII.get(TargetOpcode::COPY), NewOp).addReg(Op);
1718       return NewOp;
1719     }
1720   }
1721   return Op;
1722 }
1723
1724 unsigned FastISel::FastEmitInst_(unsigned MachineInstOpcode,
1725                                  const TargetRegisterClass* RC) {
1726   unsigned ResultReg = createResultReg(RC);
1727   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1728
1729   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg);
1730   return ResultReg;
1731 }
1732
1733 unsigned FastISel::FastEmitInst_r(unsigned MachineInstOpcode,
1734                                   const TargetRegisterClass *RC,
1735                                   unsigned Op0, bool Op0IsKill) {
1736   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1737
1738   unsigned ResultReg = createResultReg(RC);
1739   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1740
1741   if (II.getNumDefs() >= 1)
1742     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1743       .addReg(Op0, Op0IsKill * RegState::Kill);
1744   else {
1745     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1746       .addReg(Op0, Op0IsKill * RegState::Kill);
1747     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1748             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1749   }
1750
1751   return ResultReg;
1752 }
1753
1754 unsigned FastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
1755                                    const TargetRegisterClass *RC,
1756                                    unsigned Op0, bool Op0IsKill,
1757                                    unsigned Op1, bool Op1IsKill) {
1758   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1759
1760   unsigned ResultReg = createResultReg(RC);
1761   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1762   Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1);
1763
1764   if (II.getNumDefs() >= 1)
1765     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1766       .addReg(Op0, Op0IsKill * RegState::Kill)
1767       .addReg(Op1, Op1IsKill * RegState::Kill);
1768   else {
1769     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1770       .addReg(Op0, Op0IsKill * RegState::Kill)
1771       .addReg(Op1, Op1IsKill * RegState::Kill);
1772     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1773             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1774   }
1775   return ResultReg;
1776 }
1777
1778 unsigned FastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
1779                                    const TargetRegisterClass *RC,
1780                                    unsigned Op0, bool Op0IsKill,
1781                                    unsigned Op1, bool Op1IsKill,
1782                                    unsigned Op2, bool Op2IsKill) {
1783   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1784
1785   unsigned ResultReg = createResultReg(RC);
1786   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1787   Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1);
1788   Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 2);
1789
1790   if (II.getNumDefs() >= 1)
1791     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1792       .addReg(Op0, Op0IsKill * RegState::Kill)
1793       .addReg(Op1, Op1IsKill * RegState::Kill)
1794       .addReg(Op2, Op2IsKill * RegState::Kill);
1795   else {
1796     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1797       .addReg(Op0, Op0IsKill * RegState::Kill)
1798       .addReg(Op1, Op1IsKill * RegState::Kill)
1799       .addReg(Op2, Op2IsKill * RegState::Kill);
1800     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1801             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1802   }
1803   return ResultReg;
1804 }
1805
1806 unsigned FastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
1807                                    const TargetRegisterClass *RC,
1808                                    unsigned Op0, bool Op0IsKill,
1809                                    uint64_t Imm) {
1810   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1811
1812   unsigned ResultReg = createResultReg(RC);
1813   RC = TII.getRegClass(II, II.getNumDefs(), &TRI, *FuncInfo.MF);
1814   MRI.constrainRegClass(Op0, RC);
1815
1816   if (II.getNumDefs() >= 1)
1817     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1818       .addReg(Op0, Op0IsKill * RegState::Kill)
1819       .addImm(Imm);
1820   else {
1821     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1822       .addReg(Op0, Op0IsKill * RegState::Kill)
1823       .addImm(Imm);
1824     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1825             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1826   }
1827   return ResultReg;
1828 }
1829
1830 unsigned FastISel::FastEmitInst_rii(unsigned MachineInstOpcode,
1831                                    const TargetRegisterClass *RC,
1832                                    unsigned Op0, bool Op0IsKill,
1833                                    uint64_t Imm1, uint64_t Imm2) {
1834   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1835
1836   unsigned ResultReg = createResultReg(RC);
1837   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1838
1839   if (II.getNumDefs() >= 1)
1840     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1841       .addReg(Op0, Op0IsKill * RegState::Kill)
1842       .addImm(Imm1)
1843       .addImm(Imm2);
1844   else {
1845     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1846       .addReg(Op0, Op0IsKill * RegState::Kill)
1847       .addImm(Imm1)
1848       .addImm(Imm2);
1849     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1850             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1851   }
1852   return ResultReg;
1853 }
1854
1855 unsigned FastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
1856                                    const TargetRegisterClass *RC,
1857                                    unsigned Op0, bool Op0IsKill,
1858                                    const ConstantFP *FPImm) {
1859   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1860
1861   unsigned ResultReg = createResultReg(RC);
1862   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1863
1864   if (II.getNumDefs() >= 1)
1865     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1866       .addReg(Op0, Op0IsKill * RegState::Kill)
1867       .addFPImm(FPImm);
1868   else {
1869     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1870       .addReg(Op0, Op0IsKill * RegState::Kill)
1871       .addFPImm(FPImm);
1872     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1873             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1874   }
1875   return ResultReg;
1876 }
1877
1878 unsigned FastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
1879                                     const TargetRegisterClass *RC,
1880                                     unsigned Op0, bool Op0IsKill,
1881                                     unsigned Op1, bool Op1IsKill,
1882                                     uint64_t Imm) {
1883   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1884
1885   unsigned ResultReg = createResultReg(RC);
1886   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1887   Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1);
1888
1889   if (II.getNumDefs() >= 1)
1890     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1891       .addReg(Op0, Op0IsKill * RegState::Kill)
1892       .addReg(Op1, Op1IsKill * RegState::Kill)
1893       .addImm(Imm);
1894   else {
1895     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1896       .addReg(Op0, Op0IsKill * RegState::Kill)
1897       .addReg(Op1, Op1IsKill * RegState::Kill)
1898       .addImm(Imm);
1899     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1900             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1901   }
1902   return ResultReg;
1903 }
1904
1905 unsigned FastISel::FastEmitInst_rrii(unsigned MachineInstOpcode,
1906                                      const TargetRegisterClass *RC,
1907                                      unsigned Op0, bool Op0IsKill,
1908                                      unsigned Op1, bool Op1IsKill,
1909                                      uint64_t Imm1, uint64_t Imm2) {
1910   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1911
1912   unsigned ResultReg = createResultReg(RC);
1913   Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs());
1914   Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1);
1915
1916   if (II.getNumDefs() >= 1)
1917     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1918       .addReg(Op0, Op0IsKill * RegState::Kill)
1919       .addReg(Op1, Op1IsKill * RegState::Kill)
1920       .addImm(Imm1).addImm(Imm2);
1921   else {
1922     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
1923       .addReg(Op0, Op0IsKill * RegState::Kill)
1924       .addReg(Op1, Op1IsKill * RegState::Kill)
1925       .addImm(Imm1).addImm(Imm2);
1926     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1927             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1928   }
1929   return ResultReg;
1930 }
1931
1932 unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode,
1933                                   const TargetRegisterClass *RC,
1934                                   uint64_t Imm) {
1935   unsigned ResultReg = createResultReg(RC);
1936   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1937
1938   if (II.getNumDefs() >= 1)
1939     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg).addImm(Imm);
1940   else {
1941     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addImm(Imm);
1942     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1943             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1944   }
1945   return ResultReg;
1946 }
1947
1948 unsigned FastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
1949                                   const TargetRegisterClass *RC,
1950                                   uint64_t Imm1, uint64_t Imm2) {
1951   unsigned ResultReg = createResultReg(RC);
1952   const MCInstrDesc &II = TII.get(MachineInstOpcode);
1953
1954   if (II.getNumDefs() >= 1)
1955     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
1956       .addImm(Imm1).addImm(Imm2);
1957   else {
1958     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addImm(Imm1).addImm(Imm2);
1959     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1960             TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]);
1961   }
1962   return ResultReg;
1963 }
1964
1965 unsigned FastISel::FastEmitInst_extractsubreg(MVT RetVT,
1966                                               unsigned Op0, bool Op0IsKill,
1967                                               uint32_t Idx) {
1968   unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
1969   assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
1970          "Cannot yet extract from physregs");
1971   const TargetRegisterClass *RC = MRI.getRegClass(Op0);
1972   MRI.constrainRegClass(Op0, TRI.getSubClassWithSubReg(RC, Idx));
1973   BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
1974           DbgLoc, TII.get(TargetOpcode::COPY), ResultReg)
1975     .addReg(Op0, getKillRegState(Op0IsKill), Idx);
1976   return ResultReg;
1977 }
1978
1979 /// FastEmitZExtFromI1 - Emit MachineInstrs to compute the value of Op
1980 /// with all but the least significant bit set to zero.
1981 unsigned FastISel::FastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) {
1982   return FastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1);
1983 }
1984
1985 /// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks.
1986 /// Emit code to ensure constants are copied into registers when needed.
1987 /// Remember the virtual registers that need to be added to the Machine PHI
1988 /// nodes as input.  We cannot just directly add them, because expansion
1989 /// might result in multiple MBB's for one BB.  As such, the start of the
1990 /// BB might correspond to a different MBB than the end.
1991 bool FastISel::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) {
1992   const TerminatorInst *TI = LLVMBB->getTerminator();
1993
1994   SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled;
1995   unsigned OrigNumPHINodesToUpdate = FuncInfo.PHINodesToUpdate.size();
1996
1997   // Check successor nodes' PHI nodes that expect a constant to be available
1998   // from this block.
1999   for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
2000     const BasicBlock *SuccBB = TI->getSuccessor(succ);
2001     if (!isa<PHINode>(SuccBB->begin())) continue;
2002     MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
2003
2004     // If this terminator has multiple identical successors (common for
2005     // switches), only handle each succ once.
2006     if (!SuccsHandled.insert(SuccMBB)) continue;
2007
2008     MachineBasicBlock::iterator MBBI = SuccMBB->begin();
2009
2010     // At this point we know that there is a 1-1 correspondence between LLVM PHI
2011     // nodes and Machine PHI nodes, but the incoming operands have not been
2012     // emitted yet.
2013     for (BasicBlock::const_iterator I = SuccBB->begin();
2014          const PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2015
2016       // Ignore dead phi's.
2017       if (PN->use_empty()) continue;
2018
2019       // Only handle legal types. Two interesting things to note here. First,
2020       // by bailing out early, we may leave behind some dead instructions,
2021       // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its
2022       // own moves. Second, this check is necessary because FastISel doesn't
2023       // use CreateRegs to create registers, so it always creates
2024       // exactly one register for each non-void instruction.
2025       EVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true);
2026       if (VT == MVT::Other || !TLI.isTypeLegal(VT)) {
2027         // Handle integer promotions, though, because they're common and easy.
2028         if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
2029           VT = TLI.getTypeToTransformTo(LLVMBB->getContext(), VT);
2030         else {
2031           FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
2032           return false;
2033         }
2034       }
2035
2036       const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB);
2037
2038       // Set the DebugLoc for the copy. Prefer the location of the operand
2039       // if there is one; use the location of the PHI otherwise.
2040       DbgLoc = PN->getDebugLoc();
2041       if (const Instruction *Inst = dyn_cast<Instruction>(PHIOp))
2042         DbgLoc = Inst->getDebugLoc();
2043
2044       unsigned Reg = getRegForValue(PHIOp);
2045       if (Reg == 0) {
2046         FuncInfo.PHINodesToUpdate.resize(OrigNumPHINodesToUpdate);
2047         return false;
2048       }
2049       FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg));
2050       DbgLoc = DebugLoc();
2051     }
2052   }
2053
2054   return true;
2055 }
2056
2057 bool FastISel::tryToFoldLoad(const LoadInst *LI, const Instruction *FoldInst) {
2058   assert(LI->hasOneUse() &&
2059       "tryToFoldLoad expected a LoadInst with a single use");
2060   // We know that the load has a single use, but don't know what it is.  If it
2061   // isn't one of the folded instructions, then we can't succeed here.  Handle
2062   // this by scanning the single-use users of the load until we get to FoldInst.
2063   unsigned MaxUsers = 6;  // Don't scan down huge single-use chains of instrs.
2064
2065   const Instruction *TheUser = LI->user_back();
2066   while (TheUser != FoldInst &&   // Scan up until we find FoldInst.
2067          // Stay in the right block.
2068          TheUser->getParent() == FoldInst->getParent() &&
2069          --MaxUsers) {  // Don't scan too far.
2070     // If there are multiple or no uses of this instruction, then bail out.
2071     if (!TheUser->hasOneUse())
2072       return false;
2073
2074     TheUser = TheUser->user_back();
2075   }
2076
2077   // If we didn't find the fold instruction, then we failed to collapse the
2078   // sequence.
2079   if (TheUser != FoldInst)
2080     return false;
2081
2082   // Don't try to fold volatile loads.  Target has to deal with alignment
2083   // constraints.
2084   if (LI->isVolatile())
2085     return false;
2086
2087   // Figure out which vreg this is going into.  If there is no assigned vreg yet
2088   // then there actually was no reference to it.  Perhaps the load is referenced
2089   // by a dead instruction.
2090   unsigned LoadReg = getRegForValue(LI);
2091   if (LoadReg == 0)
2092     return false;
2093
2094   // We can't fold if this vreg has no uses or more than one use.  Multiple uses
2095   // may mean that the instruction got lowered to multiple MIs, or the use of
2096   // the loaded value ended up being multiple operands of the result.
2097   if (!MRI.hasOneUse(LoadReg))
2098     return false;
2099
2100   MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(LoadReg);
2101   MachineInstr *User = RI->getParent();
2102
2103   // Set the insertion point properly.  Folding the load can cause generation of
2104   // other random instructions (like sign extends) for addressing modes; make
2105   // sure they get inserted in a logical place before the new instruction.
2106   FuncInfo.InsertPt = User;
2107   FuncInfo.MBB = User->getParent();
2108
2109   // Ask the target to try folding the load.
2110   return tryToFoldLoadIntoMI(User, RI.getOperandNo(), LI);
2111 }
2112
2113 bool FastISel::canFoldAddIntoGEP(const User *GEP, const Value *Add) {
2114   // Must be an add.
2115   if (!isa<AddOperator>(Add))
2116     return false;
2117   // Type size needs to match.
2118   if (DL.getTypeSizeInBits(GEP->getType()) !=
2119       DL.getTypeSizeInBits(Add->getType()))
2120     return false;
2121   // Must be in the same basic block.
2122   if (isa<Instruction>(Add) &&
2123       FuncInfo.MBBMap[cast<Instruction>(Add)->getParent()] != FuncInfo.MBB)
2124     return false;
2125   // Must have a constant operand.
2126   return isa<ConstantInt>(cast<AddOperator>(Add)->getOperand(1));
2127 }
2128
2129 MachineMemOperand *
2130 FastISel::createMachineMemOperandFor(const Instruction *I) const {
2131   const Value *Ptr;
2132   Type *ValTy;
2133   unsigned Alignment;
2134   unsigned Flags;
2135   bool IsVolatile;
2136
2137   if (const auto *LI = dyn_cast<LoadInst>(I)) {
2138     Alignment = LI->getAlignment();
2139     IsVolatile = LI->isVolatile();
2140     Flags = MachineMemOperand::MOLoad;
2141     Ptr = LI->getPointerOperand();
2142     ValTy = LI->getType();
2143   } else if (const auto *SI = dyn_cast<StoreInst>(I)) {
2144     Alignment = SI->getAlignment();
2145     IsVolatile = SI->isVolatile();
2146     Flags = MachineMemOperand::MOStore;
2147     Ptr = SI->getPointerOperand();
2148     ValTy = SI->getValueOperand()->getType();
2149   } else {
2150     return nullptr;
2151   }
2152
2153   bool IsNonTemporal = I->getMetadata("nontemporal") != nullptr;
2154   bool IsInvariant = I->getMetadata("invariant.load") != nullptr;
2155   const MDNode *TBAAInfo = I->getMetadata(LLVMContext::MD_tbaa);
2156   const MDNode *Ranges = I->getMetadata(LLVMContext::MD_range);
2157
2158   if (Alignment == 0)  // Ensure that codegen never sees alignment 0.
2159     Alignment = DL.getABITypeAlignment(ValTy);
2160
2161   unsigned Size = TM.getDataLayout()->getTypeStoreSize(ValTy);
2162
2163   if (IsVolatile)
2164     Flags |= MachineMemOperand::MOVolatile;
2165   if (IsNonTemporal)
2166     Flags |= MachineMemOperand::MONonTemporal;
2167   if (IsInvariant)
2168     Flags |= MachineMemOperand::MOInvariant;
2169
2170   return FuncInfo.MF->getMachineMemOperand(MachinePointerInfo(Ptr), Flags, Size,
2171                                            Alignment, TBAAInfo, Ranges);
2172 }