Reapply r235977 "[DebugInfo] Add debug locations to constant SD nodes"
[oota-llvm.git] / lib / Target / X86 / X86ISelDAGToDAG.cpp
1 //===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
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 a DAG pattern matching instruction selector for X86,
11 // converting from a legalized dag to a X86 dag.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "X86.h"
16 #include "X86InstrBuilder.h"
17 #include "X86MachineFunctionInfo.h"
18 #include "X86RegisterInfo.h"
19 #include "X86Subtarget.h"
20 #include "X86TargetMachine.h"
21 #include "llvm/ADT/Statistic.h"
22 #include "llvm/CodeGen/MachineFrameInfo.h"
23 #include "llvm/CodeGen/MachineFunction.h"
24 #include "llvm/CodeGen/MachineInstrBuilder.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/CodeGen/SelectionDAGISel.h"
27 #include "llvm/IR/Function.h"
28 #include "llvm/IR/Instructions.h"
29 #include "llvm/IR/Intrinsics.h"
30 #include "llvm/IR/Type.h"
31 #include "llvm/Support/Debug.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/MathExtras.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include "llvm/Target/TargetMachine.h"
36 #include "llvm/Target/TargetOptions.h"
37 #include <stdint.h>
38 using namespace llvm;
39
40 #define DEBUG_TYPE "x86-isel"
41
42 STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
43
44 //===----------------------------------------------------------------------===//
45 //                      Pattern Matcher Implementation
46 //===----------------------------------------------------------------------===//
47
48 namespace {
49   /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
50   /// SDValue's instead of register numbers for the leaves of the matched
51   /// tree.
52   struct X86ISelAddressMode {
53     enum {
54       RegBase,
55       FrameIndexBase
56     } BaseType;
57
58     // This is really a union, discriminated by BaseType!
59     SDValue Base_Reg;
60     int Base_FrameIndex;
61
62     unsigned Scale;
63     SDValue IndexReg;
64     int32_t Disp;
65     SDValue Segment;
66     const GlobalValue *GV;
67     const Constant *CP;
68     const BlockAddress *BlockAddr;
69     const char *ES;
70     int JT;
71     unsigned Align;    // CP alignment.
72     unsigned char SymbolFlags;  // X86II::MO_*
73
74     X86ISelAddressMode()
75       : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
76         Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
77         JT(-1), Align(0), SymbolFlags(X86II::MO_NO_FLAG) {
78     }
79
80     bool hasSymbolicDisplacement() const {
81       return GV != nullptr || CP != nullptr || ES != nullptr ||
82              JT != -1 || BlockAddr != nullptr;
83     }
84
85     bool hasBaseOrIndexReg() const {
86       return BaseType == FrameIndexBase ||
87              IndexReg.getNode() != nullptr || Base_Reg.getNode() != nullptr;
88     }
89
90     /// isRIPRelative - Return true if this addressing mode is already RIP
91     /// relative.
92     bool isRIPRelative() const {
93       if (BaseType != RegBase) return false;
94       if (RegisterSDNode *RegNode =
95             dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
96         return RegNode->getReg() == X86::RIP;
97       return false;
98     }
99
100     void setBaseReg(SDValue Reg) {
101       BaseType = RegBase;
102       Base_Reg = Reg;
103     }
104
105 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
106     void dump() {
107       dbgs() << "X86ISelAddressMode " << this << '\n';
108       dbgs() << "Base_Reg ";
109       if (Base_Reg.getNode())
110         Base_Reg.getNode()->dump();
111       else
112         dbgs() << "nul";
113       dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
114              << " Scale" << Scale << '\n'
115              << "IndexReg ";
116       if (IndexReg.getNode())
117         IndexReg.getNode()->dump();
118       else
119         dbgs() << "nul";
120       dbgs() << " Disp " << Disp << '\n'
121              << "GV ";
122       if (GV)
123         GV->dump();
124       else
125         dbgs() << "nul";
126       dbgs() << " CP ";
127       if (CP)
128         CP->dump();
129       else
130         dbgs() << "nul";
131       dbgs() << '\n'
132              << "ES ";
133       if (ES)
134         dbgs() << ES;
135       else
136         dbgs() << "nul";
137       dbgs() << " JT" << JT << " Align" << Align << '\n';
138     }
139 #endif
140   };
141 }
142
143 namespace {
144   //===--------------------------------------------------------------------===//
145   /// ISel - X86 specific code to select X86 machine instructions for
146   /// SelectionDAG operations.
147   ///
148   class X86DAGToDAGISel final : public SelectionDAGISel {
149     /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
150     /// make the right decision when generating code for different targets.
151     const X86Subtarget *Subtarget;
152
153     /// OptForSize - If true, selector should try to optimize for code size
154     /// instead of performance.
155     bool OptForSize;
156
157   public:
158     explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
159         : SelectionDAGISel(tm, OptLevel), OptForSize(false) {}
160
161     const char *getPassName() const override {
162       return "X86 DAG->DAG Instruction Selection";
163     }
164
165     bool runOnMachineFunction(MachineFunction &MF) override {
166       // Reset the subtarget each time through.
167       Subtarget = &MF.getSubtarget<X86Subtarget>();
168       SelectionDAGISel::runOnMachineFunction(MF);
169       return true;
170     }
171
172     void EmitFunctionEntryCode() override;
173
174     bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const override;
175
176     void PreprocessISelDAG() override;
177
178     inline bool immSext8(SDNode *N) const {
179       return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
180     }
181
182     // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
183     // sign extended field.
184     inline bool i64immSExt32(SDNode *N) const {
185       uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
186       return (int64_t)v == (int32_t)v;
187     }
188
189 // Include the pieces autogenerated from the target description.
190 #include "X86GenDAGISel.inc"
191
192   private:
193     SDNode *Select(SDNode *N) override;
194     SDNode *SelectGather(SDNode *N, unsigned Opc);
195     SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT);
196
197     bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
198     bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
199     bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
200     bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
201     bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
202                                  unsigned Depth);
203     bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
204     bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
205                     SDValue &Scale, SDValue &Index, SDValue &Disp,
206                     SDValue &Segment);
207     bool SelectMOV64Imm32(SDValue N, SDValue &Imm);
208     bool SelectLEAAddr(SDValue N, SDValue &Base,
209                        SDValue &Scale, SDValue &Index, SDValue &Disp,
210                        SDValue &Segment);
211     bool SelectLEA64_32Addr(SDValue N, SDValue &Base,
212                             SDValue &Scale, SDValue &Index, SDValue &Disp,
213                             SDValue &Segment);
214     bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
215                            SDValue &Scale, SDValue &Index, SDValue &Disp,
216                            SDValue &Segment);
217     bool SelectScalarSSELoad(SDNode *Root, SDValue N,
218                              SDValue &Base, SDValue &Scale,
219                              SDValue &Index, SDValue &Disp,
220                              SDValue &Segment,
221                              SDValue &NodeWithChain);
222
223     bool TryFoldLoad(SDNode *P, SDValue N,
224                      SDValue &Base, SDValue &Scale,
225                      SDValue &Index, SDValue &Disp,
226                      SDValue &Segment);
227
228     /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
229     /// inline asm expressions.
230     bool SelectInlineAsmMemoryOperand(const SDValue &Op,
231                                       unsigned ConstraintID,
232                                       std::vector<SDValue> &OutOps) override;
233
234     void EmitSpecialCodeForMain();
235
236     inline void getAddressOperands(X86ISelAddressMode &AM, SDLoc DL,
237                                    SDValue &Base, SDValue &Scale,
238                                    SDValue &Index, SDValue &Disp,
239                                    SDValue &Segment) {
240       Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
241                  ? CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
242                                                TLI->getPointerTy())
243                  : AM.Base_Reg;
244       Scale = getI8Imm(AM.Scale, DL);
245       Index = AM.IndexReg;
246       // These are 32-bit even in 64-bit mode since RIP relative offset
247       // is 32-bit.
248       if (AM.GV)
249         Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
250                                               MVT::i32, AM.Disp,
251                                               AM.SymbolFlags);
252       else if (AM.CP)
253         Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
254                                              AM.Align, AM.Disp, AM.SymbolFlags);
255       else if (AM.ES) {
256         assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
257         Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
258       } else if (AM.JT != -1) {
259         assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
260         Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
261       } else if (AM.BlockAddr)
262         Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
263                                              AM.SymbolFlags);
264       else
265         Disp = CurDAG->getTargetConstant(AM.Disp, DL, MVT::i32);
266
267       if (AM.Segment.getNode())
268         Segment = AM.Segment;
269       else
270         Segment = CurDAG->getRegister(0, MVT::i32);
271     }
272
273     /// getI8Imm - Return a target constant with the specified value, of type
274     /// i8.
275     inline SDValue getI8Imm(unsigned Imm, SDLoc DL) {
276       return CurDAG->getTargetConstant(Imm, DL, MVT::i8);
277     }
278
279     /// getI32Imm - Return a target constant with the specified value, of type
280     /// i32.
281     inline SDValue getI32Imm(unsigned Imm, SDLoc DL) {
282       return CurDAG->getTargetConstant(Imm, DL, MVT::i32);
283     }
284
285     /// getGlobalBaseReg - Return an SDNode that returns the value of
286     /// the global base register. Output instructions required to
287     /// initialize the global base register, if necessary.
288     ///
289     SDNode *getGlobalBaseReg();
290
291     /// getTargetMachine - Return a reference to the TargetMachine, casted
292     /// to the target-specific type.
293     const X86TargetMachine &getTargetMachine() const {
294       return static_cast<const X86TargetMachine &>(TM);
295     }
296
297     /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
298     /// to the target-specific type.
299     const X86InstrInfo *getInstrInfo() const {
300       return Subtarget->getInstrInfo();
301     }
302
303     /// \brief Address-mode matching performs shift-of-and to and-of-shift
304     /// reassociation in order to expose more scaled addressing
305     /// opportunities.
306     bool ComplexPatternFuncMutatesDAG() const override {
307       return true;
308     }
309   };
310 }
311
312
313 bool
314 X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
315   if (OptLevel == CodeGenOpt::None) return false;
316
317   if (!N.hasOneUse())
318     return false;
319
320   if (N.getOpcode() != ISD::LOAD)
321     return true;
322
323   // If N is a load, do additional profitability checks.
324   if (U == Root) {
325     switch (U->getOpcode()) {
326     default: break;
327     case X86ISD::ADD:
328     case X86ISD::SUB:
329     case X86ISD::AND:
330     case X86ISD::XOR:
331     case X86ISD::OR:
332     case ISD::ADD:
333     case ISD::ADDC:
334     case ISD::ADDE:
335     case ISD::AND:
336     case ISD::OR:
337     case ISD::XOR: {
338       SDValue Op1 = U->getOperand(1);
339
340       // If the other operand is a 8-bit immediate we should fold the immediate
341       // instead. This reduces code size.
342       // e.g.
343       // movl 4(%esp), %eax
344       // addl $4, %eax
345       // vs.
346       // movl $4, %eax
347       // addl 4(%esp), %eax
348       // The former is 2 bytes shorter. In case where the increment is 1, then
349       // the saving can be 4 bytes (by using incl %eax).
350       if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
351         if (Imm->getAPIntValue().isSignedIntN(8))
352           return false;
353
354       // If the other operand is a TLS address, we should fold it instead.
355       // This produces
356       // movl    %gs:0, %eax
357       // leal    i@NTPOFF(%eax), %eax
358       // instead of
359       // movl    $i@NTPOFF, %eax
360       // addl    %gs:0, %eax
361       // if the block also has an access to a second TLS address this will save
362       // a load.
363       // FIXME: This is probably also true for non-TLS addresses.
364       if (Op1.getOpcode() == X86ISD::Wrapper) {
365         SDValue Val = Op1.getOperand(0);
366         if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
367           return false;
368       }
369     }
370     }
371   }
372
373   return true;
374 }
375
376 /// MoveBelowCallOrigChain - Replace the original chain operand of the call with
377 /// load's chain operand and move load below the call's chain operand.
378 static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
379                                SDValue Call, SDValue OrigChain) {
380   SmallVector<SDValue, 8> Ops;
381   SDValue Chain = OrigChain.getOperand(0);
382   if (Chain.getNode() == Load.getNode())
383     Ops.push_back(Load.getOperand(0));
384   else {
385     assert(Chain.getOpcode() == ISD::TokenFactor &&
386            "Unexpected chain operand");
387     for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
388       if (Chain.getOperand(i).getNode() == Load.getNode())
389         Ops.push_back(Load.getOperand(0));
390       else
391         Ops.push_back(Chain.getOperand(i));
392     SDValue NewChain =
393       CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops);
394     Ops.clear();
395     Ops.push_back(NewChain);
396   }
397   Ops.append(OrigChain->op_begin() + 1, OrigChain->op_end());
398   CurDAG->UpdateNodeOperands(OrigChain.getNode(), Ops);
399   CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
400                              Load.getOperand(1), Load.getOperand(2));
401
402   Ops.clear();
403   Ops.push_back(SDValue(Load.getNode(), 1));
404   Ops.append(Call->op_begin() + 1, Call->op_end());
405   CurDAG->UpdateNodeOperands(Call.getNode(), Ops);
406 }
407
408 /// isCalleeLoad - Return true if call address is a load and it can be
409 /// moved below CALLSEQ_START and the chains leading up to the call.
410 /// Return the CALLSEQ_START by reference as a second output.
411 /// In the case of a tail call, there isn't a callseq node between the call
412 /// chain and the load.
413 static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
414   // The transformation is somewhat dangerous if the call's chain was glued to
415   // the call. After MoveBelowOrigChain the load is moved between the call and
416   // the chain, this can create a cycle if the load is not folded. So it is
417   // *really* important that we are sure the load will be folded.
418   if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
419     return false;
420   LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
421   if (!LD ||
422       LD->isVolatile() ||
423       LD->getAddressingMode() != ISD::UNINDEXED ||
424       LD->getExtensionType() != ISD::NON_EXTLOAD)
425     return false;
426
427   // Now let's find the callseq_start.
428   while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
429     if (!Chain.hasOneUse())
430       return false;
431     Chain = Chain.getOperand(0);
432   }
433
434   if (!Chain.getNumOperands())
435     return false;
436   // Since we are not checking for AA here, conservatively abort if the chain
437   // writes to memory. It's not safe to move the callee (a load) across a store.
438   if (isa<MemSDNode>(Chain.getNode()) &&
439       cast<MemSDNode>(Chain.getNode())->writeMem())
440     return false;
441   if (Chain.getOperand(0).getNode() == Callee.getNode())
442     return true;
443   if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
444       Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
445       Callee.getValue(1).hasOneUse())
446     return true;
447   return false;
448 }
449
450 void X86DAGToDAGISel::PreprocessISelDAG() {
451   // OptForSize is used in pattern predicates that isel is matching.
452   OptForSize = MF->getFunction()->hasFnAttribute(Attribute::OptimizeForSize);
453
454   for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
455        E = CurDAG->allnodes_end(); I != E; ) {
456     SDNode *N = I++;  // Preincrement iterator to avoid invalidation issues.
457
458     if (OptLevel != CodeGenOpt::None &&
459         // Only does this when target favors doesn't favor register indirect
460         // call.
461         ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
462          (N->getOpcode() == X86ISD::TC_RETURN &&
463           // Only does this if load can be folded into TC_RETURN.
464           (Subtarget->is64Bit() ||
465            getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
466       /// Also try moving call address load from outside callseq_start to just
467       /// before the call to allow it to be folded.
468       ///
469       ///     [Load chain]
470       ///         ^
471       ///         |
472       ///       [Load]
473       ///       ^    ^
474       ///       |    |
475       ///      /      \--
476       ///     /          |
477       ///[CALLSEQ_START] |
478       ///     ^          |
479       ///     |          |
480       /// [LOAD/C2Reg]   |
481       ///     |          |
482       ///      \        /
483       ///       \      /
484       ///       [CALL]
485       bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
486       SDValue Chain = N->getOperand(0);
487       SDValue Load  = N->getOperand(1);
488       if (!isCalleeLoad(Load, Chain, HasCallSeq))
489         continue;
490       MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
491       ++NumLoadMoved;
492       continue;
493     }
494
495     // Lower fpround and fpextend nodes that target the FP stack to be store and
496     // load to the stack.  This is a gross hack.  We would like to simply mark
497     // these as being illegal, but when we do that, legalize produces these when
498     // it expands calls, then expands these in the same legalize pass.  We would
499     // like dag combine to be able to hack on these between the call expansion
500     // and the node legalization.  As such this pass basically does "really
501     // late" legalization of these inline with the X86 isel pass.
502     // FIXME: This should only happen when not compiled with -O0.
503     if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
504       continue;
505
506     MVT SrcVT = N->getOperand(0).getSimpleValueType();
507     MVT DstVT = N->getSimpleValueType(0);
508
509     // If any of the sources are vectors, no fp stack involved.
510     if (SrcVT.isVector() || DstVT.isVector())
511       continue;
512
513     // If the source and destination are SSE registers, then this is a legal
514     // conversion that should not be lowered.
515     const X86TargetLowering *X86Lowering =
516         static_cast<const X86TargetLowering *>(TLI);
517     bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT);
518     bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
519     if (SrcIsSSE && DstIsSSE)
520       continue;
521
522     if (!SrcIsSSE && !DstIsSSE) {
523       // If this is an FPStack extension, it is a noop.
524       if (N->getOpcode() == ISD::FP_EXTEND)
525         continue;
526       // If this is a value-preserving FPStack truncation, it is a noop.
527       if (N->getConstantOperandVal(1))
528         continue;
529     }
530
531     // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
532     // FPStack has extload and truncstore.  SSE can fold direct loads into other
533     // operations.  Based on this, decide what we want to do.
534     MVT MemVT;
535     if (N->getOpcode() == ISD::FP_ROUND)
536       MemVT = DstVT;  // FP_ROUND must use DstVT, we can't do a 'trunc load'.
537     else
538       MemVT = SrcIsSSE ? SrcVT : DstVT;
539
540     SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
541     SDLoc dl(N);
542
543     // FIXME: optimize the case where the src/dest is a load or store?
544     SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
545                                           N->getOperand(0),
546                                           MemTmp, MachinePointerInfo(), MemVT,
547                                           false, false, 0);
548     SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
549                                         MachinePointerInfo(),
550                                         MemVT, false, false, false, 0);
551
552     // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
553     // extload we created.  This will cause general havok on the dag because
554     // anything below the conversion could be folded into other existing nodes.
555     // To avoid invalidating 'I', back it up to the convert node.
556     --I;
557     CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
558
559     // Now that we did that, the node is dead.  Increment the iterator to the
560     // next node to process, then delete N.
561     ++I;
562     CurDAG->DeleteNode(N);
563   }
564 }
565
566
567 /// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
568 /// the main function.
569 void X86DAGToDAGISel::EmitSpecialCodeForMain() {
570   if (Subtarget->isTargetCygMing()) {
571     TargetLowering::ArgListTy Args;
572
573     TargetLowering::CallLoweringInfo CLI(*CurDAG);
574     CLI.setChain(CurDAG->getRoot())
575         .setCallee(CallingConv::C, Type::getVoidTy(*CurDAG->getContext()),
576                    CurDAG->getExternalSymbol("__main", TLI->getPointerTy()),
577                    std::move(Args), 0);
578     const TargetLowering &TLI = CurDAG->getTargetLoweringInfo();
579     std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI);
580     CurDAG->setRoot(Result.second);
581   }
582 }
583
584 void X86DAGToDAGISel::EmitFunctionEntryCode() {
585   // If this is main, emit special code for main.
586   if (const Function *Fn = MF->getFunction())
587     if (Fn->hasExternalLinkage() && Fn->getName() == "main")
588       EmitSpecialCodeForMain();
589 }
590
591 static bool isDispSafeForFrameIndex(int64_t Val) {
592   // On 64-bit platforms, we can run into an issue where a frame index
593   // includes a displacement that, when added to the explicit displacement,
594   // will overflow the displacement field. Assuming that the frame index
595   // displacement fits into a 31-bit integer  (which is only slightly more
596   // aggressive than the current fundamental assumption that it fits into
597   // a 32-bit integer), a 31-bit disp should always be safe.
598   return isInt<31>(Val);
599 }
600
601 bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
602                                             X86ISelAddressMode &AM) {
603   int64_t Val = AM.Disp + Offset;
604   CodeModel::Model M = TM.getCodeModel();
605   if (Subtarget->is64Bit()) {
606     if (!X86::isOffsetSuitableForCodeModel(Val, M,
607                                            AM.hasSymbolicDisplacement()))
608       return true;
609     // In addition to the checks required for a register base, check that
610     // we do not try to use an unsafe Disp with a frame index.
611     if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
612         !isDispSafeForFrameIndex(Val))
613       return true;
614   }
615   AM.Disp = Val;
616   return false;
617
618 }
619
620 bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
621   SDValue Address = N->getOperand(1);
622
623   // load gs:0 -> GS segment register.
624   // load fs:0 -> FS segment register.
625   //
626   // This optimization is valid because the GNU TLS model defines that
627   // gs:0 (or fs:0 on X86-64) contains its own address.
628   // For more information see http://people.redhat.com/drepper/tls.pdf
629   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
630     if (C->getSExtValue() == 0 && AM.Segment.getNode() == nullptr &&
631         Subtarget->isTargetLinux())
632       switch (N->getPointerInfo().getAddrSpace()) {
633       case 256:
634         AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
635         return false;
636       case 257:
637         AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
638         return false;
639       }
640
641   return true;
642 }
643
644 /// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
645 /// into an addressing mode.  These wrap things that will resolve down into a
646 /// symbol reference.  If no match is possible, this returns true, otherwise it
647 /// returns false.
648 bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
649   // If the addressing mode already has a symbol as the displacement, we can
650   // never match another symbol.
651   if (AM.hasSymbolicDisplacement())
652     return true;
653
654   SDValue N0 = N.getOperand(0);
655   CodeModel::Model M = TM.getCodeModel();
656
657   // Handle X86-64 rip-relative addresses.  We check this before checking direct
658   // folding because RIP is preferable to non-RIP accesses.
659   if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
660       // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
661       // they cannot be folded into immediate fields.
662       // FIXME: This can be improved for kernel and other models?
663       (M == CodeModel::Small || M == CodeModel::Kernel)) {
664     // Base and index reg must be 0 in order to use %rip as base.
665     if (AM.hasBaseOrIndexReg())
666       return true;
667     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
668       X86ISelAddressMode Backup = AM;
669       AM.GV = G->getGlobal();
670       AM.SymbolFlags = G->getTargetFlags();
671       if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
672         AM = Backup;
673         return true;
674       }
675     } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
676       X86ISelAddressMode Backup = AM;
677       AM.CP = CP->getConstVal();
678       AM.Align = CP->getAlignment();
679       AM.SymbolFlags = CP->getTargetFlags();
680       if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
681         AM = Backup;
682         return true;
683       }
684     } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
685       AM.ES = S->getSymbol();
686       AM.SymbolFlags = S->getTargetFlags();
687     } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
688       AM.JT = J->getIndex();
689       AM.SymbolFlags = J->getTargetFlags();
690     } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
691       X86ISelAddressMode Backup = AM;
692       AM.BlockAddr = BA->getBlockAddress();
693       AM.SymbolFlags = BA->getTargetFlags();
694       if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
695         AM = Backup;
696         return true;
697       }
698     } else
699       llvm_unreachable("Unhandled symbol reference node.");
700
701     if (N.getOpcode() == X86ISD::WrapperRIP)
702       AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
703     return false;
704   }
705
706   // Handle the case when globals fit in our immediate field: This is true for
707   // X86-32 always and X86-64 when in -mcmodel=small mode.  In 64-bit
708   // mode, this only applies to a non-RIP-relative computation.
709   if (!Subtarget->is64Bit() ||
710       M == CodeModel::Small || M == CodeModel::Kernel) {
711     assert(N.getOpcode() != X86ISD::WrapperRIP &&
712            "RIP-relative addressing already handled");
713     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
714       AM.GV = G->getGlobal();
715       AM.Disp += G->getOffset();
716       AM.SymbolFlags = G->getTargetFlags();
717     } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
718       AM.CP = CP->getConstVal();
719       AM.Align = CP->getAlignment();
720       AM.Disp += CP->getOffset();
721       AM.SymbolFlags = CP->getTargetFlags();
722     } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
723       AM.ES = S->getSymbol();
724       AM.SymbolFlags = S->getTargetFlags();
725     } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
726       AM.JT = J->getIndex();
727       AM.SymbolFlags = J->getTargetFlags();
728     } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
729       AM.BlockAddr = BA->getBlockAddress();
730       AM.Disp += BA->getOffset();
731       AM.SymbolFlags = BA->getTargetFlags();
732     } else
733       llvm_unreachable("Unhandled symbol reference node.");
734     return false;
735   }
736
737   return true;
738 }
739
740 /// MatchAddress - Add the specified node to the specified addressing mode,
741 /// returning true if it cannot be done.  This just pattern matches for the
742 /// addressing mode.
743 bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
744   if (MatchAddressRecursively(N, AM, 0))
745     return true;
746
747   // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
748   // a smaller encoding and avoids a scaled-index.
749   if (AM.Scale == 2 &&
750       AM.BaseType == X86ISelAddressMode::RegBase &&
751       AM.Base_Reg.getNode() == nullptr) {
752     AM.Base_Reg = AM.IndexReg;
753     AM.Scale = 1;
754   }
755
756   // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
757   // because it has a smaller encoding.
758   // TODO: Which other code models can use this?
759   if (TM.getCodeModel() == CodeModel::Small &&
760       Subtarget->is64Bit() &&
761       AM.Scale == 1 &&
762       AM.BaseType == X86ISelAddressMode::RegBase &&
763       AM.Base_Reg.getNode() == nullptr &&
764       AM.IndexReg.getNode() == nullptr &&
765       AM.SymbolFlags == X86II::MO_NO_FLAG &&
766       AM.hasSymbolicDisplacement())
767     AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
768
769   return false;
770 }
771
772 // Insert a node into the DAG at least before the Pos node's position. This
773 // will reposition the node as needed, and will assign it a node ID that is <=
774 // the Pos node's ID. Note that this does *not* preserve the uniqueness of node
775 // IDs! The selection DAG must no longer depend on their uniqueness when this
776 // is used.
777 static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
778   if (N.getNode()->getNodeId() == -1 ||
779       N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
780     DAG.RepositionNode(Pos.getNode(), N.getNode());
781     N.getNode()->setNodeId(Pos.getNode()->getNodeId());
782   }
783 }
784
785 // Transform "(X >> (8-C1)) & (0xff << C1)" to "((X >> 8) & 0xff) << C1" if
786 // safe. This allows us to convert the shift and and into an h-register
787 // extract and a scaled index. Returns false if the simplification is
788 // performed.
789 static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
790                                       uint64_t Mask,
791                                       SDValue Shift, SDValue X,
792                                       X86ISelAddressMode &AM) {
793   if (Shift.getOpcode() != ISD::SRL ||
794       !isa<ConstantSDNode>(Shift.getOperand(1)) ||
795       !Shift.hasOneUse())
796     return true;
797
798   int ScaleLog = 8 - Shift.getConstantOperandVal(1);
799   if (ScaleLog <= 0 || ScaleLog >= 4 ||
800       Mask != (0xffu << ScaleLog))
801     return true;
802
803   MVT VT = N.getSimpleValueType();
804   SDLoc DL(N);
805   SDValue Eight = DAG.getConstant(8, DL, MVT::i8);
806   SDValue NewMask = DAG.getConstant(0xff, DL, VT);
807   SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
808   SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
809   SDValue ShlCount = DAG.getConstant(ScaleLog, DL, MVT::i8);
810   SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
811
812   // Insert the new nodes into the topological ordering. We must do this in
813   // a valid topological ordering as nothing is going to go back and re-sort
814   // these nodes. We continually insert before 'N' in sequence as this is
815   // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
816   // hierarchy left to express.
817   InsertDAGNode(DAG, N, Eight);
818   InsertDAGNode(DAG, N, Srl);
819   InsertDAGNode(DAG, N, NewMask);
820   InsertDAGNode(DAG, N, And);
821   InsertDAGNode(DAG, N, ShlCount);
822   InsertDAGNode(DAG, N, Shl);
823   DAG.ReplaceAllUsesWith(N, Shl);
824   AM.IndexReg = And;
825   AM.Scale = (1 << ScaleLog);
826   return false;
827 }
828
829 // Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
830 // allows us to fold the shift into this addressing mode. Returns false if the
831 // transform succeeded.
832 static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
833                                         uint64_t Mask,
834                                         SDValue Shift, SDValue X,
835                                         X86ISelAddressMode &AM) {
836   if (Shift.getOpcode() != ISD::SHL ||
837       !isa<ConstantSDNode>(Shift.getOperand(1)))
838     return true;
839
840   // Not likely to be profitable if either the AND or SHIFT node has more
841   // than one use (unless all uses are for address computation). Besides,
842   // isel mechanism requires their node ids to be reused.
843   if (!N.hasOneUse() || !Shift.hasOneUse())
844     return true;
845
846   // Verify that the shift amount is something we can fold.
847   unsigned ShiftAmt = Shift.getConstantOperandVal(1);
848   if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
849     return true;
850
851   MVT VT = N.getSimpleValueType();
852   SDLoc DL(N);
853   SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, DL, VT);
854   SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
855   SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
856
857   // Insert the new nodes into the topological ordering. We must do this in
858   // a valid topological ordering as nothing is going to go back and re-sort
859   // these nodes. We continually insert before 'N' in sequence as this is
860   // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
861   // hierarchy left to express.
862   InsertDAGNode(DAG, N, NewMask);
863   InsertDAGNode(DAG, N, NewAnd);
864   InsertDAGNode(DAG, N, NewShift);
865   DAG.ReplaceAllUsesWith(N, NewShift);
866
867   AM.Scale = 1 << ShiftAmt;
868   AM.IndexReg = NewAnd;
869   return false;
870 }
871
872 // Implement some heroics to detect shifts of masked values where the mask can
873 // be replaced by extending the shift and undoing that in the addressing mode
874 // scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
875 // (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
876 // the addressing mode. This results in code such as:
877 //
878 //   int f(short *y, int *lookup_table) {
879 //     ...
880 //     return *y + lookup_table[*y >> 11];
881 //   }
882 //
883 // Turning into:
884 //   movzwl (%rdi), %eax
885 //   movl %eax, %ecx
886 //   shrl $11, %ecx
887 //   addl (%rsi,%rcx,4), %eax
888 //
889 // Instead of:
890 //   movzwl (%rdi), %eax
891 //   movl %eax, %ecx
892 //   shrl $9, %ecx
893 //   andl $124, %rcx
894 //   addl (%rsi,%rcx), %eax
895 //
896 // Note that this function assumes the mask is provided as a mask *after* the
897 // value is shifted. The input chain may or may not match that, but computing
898 // such a mask is trivial.
899 static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
900                                     uint64_t Mask,
901                                     SDValue Shift, SDValue X,
902                                     X86ISelAddressMode &AM) {
903   if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
904       !isa<ConstantSDNode>(Shift.getOperand(1)))
905     return true;
906
907   unsigned ShiftAmt = Shift.getConstantOperandVal(1);
908   unsigned MaskLZ = countLeadingZeros(Mask);
909   unsigned MaskTZ = countTrailingZeros(Mask);
910
911   // The amount of shift we're trying to fit into the addressing mode is taken
912   // from the trailing zeros of the mask.
913   unsigned AMShiftAmt = MaskTZ;
914
915   // There is nothing we can do here unless the mask is removing some bits.
916   // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
917   if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
918
919   // We also need to ensure that mask is a continuous run of bits.
920   if (countTrailingOnes(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
921
922   // Scale the leading zero count down based on the actual size of the value.
923   // Also scale it down based on the size of the shift.
924   MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt;
925
926   // The final check is to ensure that any masked out high bits of X are
927   // already known to be zero. Otherwise, the mask has a semantic impact
928   // other than masking out a couple of low bits. Unfortunately, because of
929   // the mask, zero extensions will be removed from operands in some cases.
930   // This code works extra hard to look through extensions because we can
931   // replace them with zero extensions cheaply if necessary.
932   bool ReplacingAnyExtend = false;
933   if (X.getOpcode() == ISD::ANY_EXTEND) {
934     unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() -
935                           X.getOperand(0).getSimpleValueType().getSizeInBits();
936     // Assume that we'll replace the any-extend with a zero-extend, and
937     // narrow the search to the extended value.
938     X = X.getOperand(0);
939     MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
940     ReplacingAnyExtend = true;
941   }
942   APInt MaskedHighBits =
943     APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ);
944   APInt KnownZero, KnownOne;
945   DAG.computeKnownBits(X, KnownZero, KnownOne);
946   if (MaskedHighBits != KnownZero) return true;
947
948   // We've identified a pattern that can be transformed into a single shift
949   // and an addressing mode. Make it so.
950   MVT VT = N.getSimpleValueType();
951   if (ReplacingAnyExtend) {
952     assert(X.getValueType() != VT);
953     // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
954     SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
955     InsertDAGNode(DAG, N, NewX);
956     X = NewX;
957   }
958   SDLoc DL(N);
959   SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, DL, MVT::i8);
960   SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
961   SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, DL, MVT::i8);
962   SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
963
964   // Insert the new nodes into the topological ordering. We must do this in
965   // a valid topological ordering as nothing is going to go back and re-sort
966   // these nodes. We continually insert before 'N' in sequence as this is
967   // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
968   // hierarchy left to express.
969   InsertDAGNode(DAG, N, NewSRLAmt);
970   InsertDAGNode(DAG, N, NewSRL);
971   InsertDAGNode(DAG, N, NewSHLAmt);
972   InsertDAGNode(DAG, N, NewSHL);
973   DAG.ReplaceAllUsesWith(N, NewSHL);
974
975   AM.Scale = 1 << AMShiftAmt;
976   AM.IndexReg = NewSRL;
977   return false;
978 }
979
980 bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
981                                               unsigned Depth) {
982   SDLoc dl(N);
983   DEBUG({
984       dbgs() << "MatchAddress: ";
985       AM.dump();
986     });
987   // Limit recursion.
988   if (Depth > 5)
989     return MatchAddressBase(N, AM);
990
991   // If this is already a %rip relative address, we can only merge immediates
992   // into it.  Instead of handling this in every case, we handle it here.
993   // RIP relative addressing: %rip + 32-bit displacement!
994   if (AM.isRIPRelative()) {
995     // FIXME: JumpTable and ExternalSymbol address currently don't like
996     // displacements.  It isn't very important, but this should be fixed for
997     // consistency.
998     if (!AM.ES && AM.JT != -1) return true;
999
1000     if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
1001       if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
1002         return false;
1003     return true;
1004   }
1005
1006   switch (N.getOpcode()) {
1007   default: break;
1008   case ISD::FRAME_ALLOC_RECOVER: {
1009     if (!AM.hasSymbolicDisplacement())
1010       if (const auto *ESNode = dyn_cast<ExternalSymbolSDNode>(N.getOperand(0)))
1011         if (ESNode->getOpcode() == ISD::TargetExternalSymbol) {
1012           AM.ES = ESNode->getSymbol();
1013           return false;
1014         }
1015     break;
1016   }
1017   case ISD::Constant: {
1018     uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
1019     if (!FoldOffsetIntoAddress(Val, AM))
1020       return false;
1021     break;
1022   }
1023
1024   case X86ISD::Wrapper:
1025   case X86ISD::WrapperRIP:
1026     if (!MatchWrapper(N, AM))
1027       return false;
1028     break;
1029
1030   case ISD::LOAD:
1031     if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
1032       return false;
1033     break;
1034
1035   case ISD::FrameIndex:
1036     if (AM.BaseType == X86ISelAddressMode::RegBase &&
1037         AM.Base_Reg.getNode() == nullptr &&
1038         (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
1039       AM.BaseType = X86ISelAddressMode::FrameIndexBase;
1040       AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
1041       return false;
1042     }
1043     break;
1044
1045   case ISD::SHL:
1046     if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1)
1047       break;
1048
1049     if (ConstantSDNode
1050           *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
1051       unsigned Val = CN->getZExtValue();
1052       // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1053       // that the base operand remains free for further matching. If
1054       // the base doesn't end up getting used, a post-processing step
1055       // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
1056       if (Val == 1 || Val == 2 || Val == 3) {
1057         AM.Scale = 1 << Val;
1058         SDValue ShVal = N.getNode()->getOperand(0);
1059
1060         // Okay, we know that we have a scale by now.  However, if the scaled
1061         // value is an add of something and a constant, we can fold the
1062         // constant into the disp field here.
1063         if (CurDAG->isBaseWithConstantOffset(ShVal)) {
1064           AM.IndexReg = ShVal.getNode()->getOperand(0);
1065           ConstantSDNode *AddVal =
1066             cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
1067           uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
1068           if (!FoldOffsetIntoAddress(Disp, AM))
1069             return false;
1070         }
1071
1072         AM.IndexReg = ShVal;
1073         return false;
1074       }
1075     }
1076     break;
1077
1078   case ISD::SRL: {
1079     // Scale must not be used already.
1080     if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
1081
1082     SDValue And = N.getOperand(0);
1083     if (And.getOpcode() != ISD::AND) break;
1084     SDValue X = And.getOperand(0);
1085
1086     // We only handle up to 64-bit values here as those are what matter for
1087     // addressing mode optimizations.
1088     if (X.getSimpleValueType().getSizeInBits() > 64) break;
1089
1090     // The mask used for the transform is expected to be post-shift, but we
1091     // found the shift first so just apply the shift to the mask before passing
1092     // it down.
1093     if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1094         !isa<ConstantSDNode>(And.getOperand(1)))
1095       break;
1096     uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1097
1098     // Try to fold the mask and shift into the scale, and return false if we
1099     // succeed.
1100     if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
1101       return false;
1102     break;
1103   }
1104
1105   case ISD::SMUL_LOHI:
1106   case ISD::UMUL_LOHI:
1107     // A mul_lohi where we need the low part can be folded as a plain multiply.
1108     if (N.getResNo() != 0) break;
1109     // FALL THROUGH
1110   case ISD::MUL:
1111   case X86ISD::MUL_IMM:
1112     // X*[3,5,9] -> X+X*[2,4,8]
1113     if (AM.BaseType == X86ISelAddressMode::RegBase &&
1114         AM.Base_Reg.getNode() == nullptr &&
1115         AM.IndexReg.getNode() == nullptr) {
1116       if (ConstantSDNode
1117             *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
1118         if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1119             CN->getZExtValue() == 9) {
1120           AM.Scale = unsigned(CN->getZExtValue())-1;
1121
1122           SDValue MulVal = N.getNode()->getOperand(0);
1123           SDValue Reg;
1124
1125           // Okay, we know that we have a scale by now.  However, if the scaled
1126           // value is an add of something and a constant, we can fold the
1127           // constant into the disp field here.
1128           if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1129               isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1130             Reg = MulVal.getNode()->getOperand(0);
1131             ConstantSDNode *AddVal =
1132               cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
1133             uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1134             if (FoldOffsetIntoAddress(Disp, AM))
1135               Reg = N.getNode()->getOperand(0);
1136           } else {
1137             Reg = N.getNode()->getOperand(0);
1138           }
1139
1140           AM.IndexReg = AM.Base_Reg = Reg;
1141           return false;
1142         }
1143     }
1144     break;
1145
1146   case ISD::SUB: {
1147     // Given A-B, if A can be completely folded into the address and
1148     // the index field with the index field unused, use -B as the index.
1149     // This is a win if a has multiple parts that can be folded into
1150     // the address. Also, this saves a mov if the base register has
1151     // other uses, since it avoids a two-address sub instruction, however
1152     // it costs an additional mov if the index register has other uses.
1153
1154     // Add an artificial use to this node so that we can keep track of
1155     // it if it gets CSE'd with a different node.
1156     HandleSDNode Handle(N);
1157
1158     // Test if the LHS of the sub can be folded.
1159     X86ISelAddressMode Backup = AM;
1160     if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
1161       AM = Backup;
1162       break;
1163     }
1164     // Test if the index field is free for use.
1165     if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
1166       AM = Backup;
1167       break;
1168     }
1169
1170     int Cost = 0;
1171     SDValue RHS = Handle.getValue().getNode()->getOperand(1);
1172     // If the RHS involves a register with multiple uses, this
1173     // transformation incurs an extra mov, due to the neg instruction
1174     // clobbering its operand.
1175     if (!RHS.getNode()->hasOneUse() ||
1176         RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1177         RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1178         RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1179         (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
1180          RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
1181       ++Cost;
1182     // If the base is a register with multiple uses, this
1183     // transformation may save a mov.
1184     if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1185          AM.Base_Reg.getNode() &&
1186          !AM.Base_Reg.getNode()->hasOneUse()) ||
1187         AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1188       --Cost;
1189     // If the folded LHS was interesting, this transformation saves
1190     // address arithmetic.
1191     if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1192         ((AM.Disp != 0) && (Backup.Disp == 0)) +
1193         (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1194       --Cost;
1195     // If it doesn't look like it may be an overall win, don't do it.
1196     if (Cost >= 0) {
1197       AM = Backup;
1198       break;
1199     }
1200
1201     // Ok, the transformation is legal and appears profitable. Go for it.
1202     SDValue Zero = CurDAG->getConstant(0, dl, N.getValueType());
1203     SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1204     AM.IndexReg = Neg;
1205     AM.Scale = 1;
1206
1207     // Insert the new nodes into the topological ordering.
1208     InsertDAGNode(*CurDAG, N, Zero);
1209     InsertDAGNode(*CurDAG, N, Neg);
1210     return false;
1211   }
1212
1213   case ISD::ADD: {
1214     // Add an artificial use to this node so that we can keep track of
1215     // it if it gets CSE'd with a different node.
1216     HandleSDNode Handle(N);
1217
1218     X86ISelAddressMode Backup = AM;
1219     if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1220         !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
1221       return false;
1222     AM = Backup;
1223
1224     // Try again after commuting the operands.
1225     if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1226         !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
1227       return false;
1228     AM = Backup;
1229
1230     // If we couldn't fold both operands into the address at the same time,
1231     // see if we can just put each operand into a register and fold at least
1232     // the add.
1233     if (AM.BaseType == X86ISelAddressMode::RegBase &&
1234         !AM.Base_Reg.getNode() &&
1235         !AM.IndexReg.getNode()) {
1236       N = Handle.getValue();
1237       AM.Base_Reg = N.getOperand(0);
1238       AM.IndexReg = N.getOperand(1);
1239       AM.Scale = 1;
1240       return false;
1241     }
1242     N = Handle.getValue();
1243     break;
1244   }
1245
1246   case ISD::OR:
1247     // Handle "X | C" as "X + C" iff X is known to have C bits clear.
1248     if (CurDAG->isBaseWithConstantOffset(N)) {
1249       X86ISelAddressMode Backup = AM;
1250       ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
1251
1252       // Start with the LHS as an addr mode.
1253       if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1254           !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
1255         return false;
1256       AM = Backup;
1257     }
1258     break;
1259
1260   case ISD::AND: {
1261     // Perform some heroic transforms on an and of a constant-count shift
1262     // with a constant to enable use of the scaled offset field.
1263
1264     // Scale must not be used already.
1265     if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
1266
1267     SDValue Shift = N.getOperand(0);
1268     if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
1269     SDValue X = Shift.getOperand(0);
1270
1271     // We only handle up to 64-bit values here as those are what matter for
1272     // addressing mode optimizations.
1273     if (X.getSimpleValueType().getSizeInBits() > 64) break;
1274
1275     if (!isa<ConstantSDNode>(N.getOperand(1)))
1276       break;
1277     uint64_t Mask = N.getConstantOperandVal(1);
1278
1279     // Try to fold the mask and shift into an extract and scale.
1280     if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
1281       return false;
1282
1283     // Try to fold the mask and shift directly into the scale.
1284     if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
1285       return false;
1286
1287     // Try to swap the mask and shift to place shifts which can be done as
1288     // a scale on the outside of the mask.
1289     if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
1290       return false;
1291     break;
1292   }
1293   }
1294
1295   return MatchAddressBase(N, AM);
1296 }
1297
1298 /// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1299 /// specified addressing mode without any further recursion.
1300 bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
1301   // Is the base register already occupied?
1302   if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
1303     // If so, check to see if the scale index register is set.
1304     if (!AM.IndexReg.getNode()) {
1305       AM.IndexReg = N;
1306       AM.Scale = 1;
1307       return false;
1308     }
1309
1310     // Otherwise, we cannot select it.
1311     return true;
1312   }
1313
1314   // Default, generate it as a register.
1315   AM.BaseType = X86ISelAddressMode::RegBase;
1316   AM.Base_Reg = N;
1317   return false;
1318 }
1319
1320 /// SelectAddr - returns true if it is able pattern match an addressing mode.
1321 /// It returns the operands which make up the maximal addressing mode it can
1322 /// match by reference.
1323 ///
1324 /// Parent is the parent node of the addr operand that is being matched.  It
1325 /// is always a load, store, atomic node, or null.  It is only null when
1326 /// checking memory operands for inline asm nodes.
1327 bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
1328                                  SDValue &Scale, SDValue &Index,
1329                                  SDValue &Disp, SDValue &Segment) {
1330   X86ISelAddressMode AM;
1331
1332   if (Parent &&
1333       // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1334       // that are not a MemSDNode, and thus don't have proper addrspace info.
1335       Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
1336       Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
1337       Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1338       Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1339       Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
1340     unsigned AddrSpace =
1341       cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1342     // AddrSpace 256 -> GS, 257 -> FS.
1343     if (AddrSpace == 256)
1344       AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1345     if (AddrSpace == 257)
1346       AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1347   }
1348
1349   if (MatchAddress(N, AM))
1350     return false;
1351
1352   MVT VT = N.getSimpleValueType();
1353   if (AM.BaseType == X86ISelAddressMode::RegBase) {
1354     if (!AM.Base_Reg.getNode())
1355       AM.Base_Reg = CurDAG->getRegister(0, VT);
1356   }
1357
1358   if (!AM.IndexReg.getNode())
1359     AM.IndexReg = CurDAG->getRegister(0, VT);
1360
1361   getAddressOperands(AM, SDLoc(N), Base, Scale, Index, Disp, Segment);
1362   return true;
1363 }
1364
1365 /// SelectScalarSSELoad - Match a scalar SSE load.  In particular, we want to
1366 /// match a load whose top elements are either undef or zeros.  The load flavor
1367 /// is derived from the type of N, which is either v4f32 or v2f64.
1368 ///
1369 /// We also return:
1370 ///   PatternChainNode: this is the matched node that has a chain input and
1371 ///   output.
1372 bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
1373                                           SDValue N, SDValue &Base,
1374                                           SDValue &Scale, SDValue &Index,
1375                                           SDValue &Disp, SDValue &Segment,
1376                                           SDValue &PatternNodeWithChain) {
1377   if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
1378     PatternNodeWithChain = N.getOperand(0);
1379     if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1380         PatternNodeWithChain.hasOneUse() &&
1381         IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1382         IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
1383       LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
1384       if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
1385         return false;
1386       return true;
1387     }
1388   }
1389
1390   // Also handle the case where we explicitly require zeros in the top
1391   // elements.  This is a vector shuffle from the zero vector.
1392   if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
1393       // Check to see if the top elements are all zeros (or bitcast of zeros).
1394       N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
1395       N.getOperand(0).getNode()->hasOneUse() &&
1396       ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
1397       N.getOperand(0).getOperand(0).hasOneUse() &&
1398       IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1399       IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
1400     // Okay, this is a zero extending load.  Fold it.
1401     LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
1402     if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
1403       return false;
1404     PatternNodeWithChain = SDValue(LD, 0);
1405     return true;
1406   }
1407   return false;
1408 }
1409
1410
1411 bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1412   if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1413     uint64_t ImmVal = CN->getZExtValue();
1414     if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1415       return false;
1416
1417     Imm = CurDAG->getTargetConstant(ImmVal, SDLoc(N), MVT::i64);
1418     return true;
1419   }
1420
1421   // In static codegen with small code model, we can get the address of a label
1422   // into a register with 'movl'. TableGen has already made sure we're looking
1423   // at a label of some kind.
1424   assert(N->getOpcode() == X86ISD::Wrapper &&
1425          "Unexpected node type for MOV32ri64");
1426   N = N.getOperand(0);
1427
1428   if (N->getOpcode() != ISD::TargetConstantPool &&
1429       N->getOpcode() != ISD::TargetJumpTable &&
1430       N->getOpcode() != ISD::TargetGlobalAddress &&
1431       N->getOpcode() != ISD::TargetExternalSymbol &&
1432       N->getOpcode() != ISD::TargetBlockAddress)
1433     return false;
1434
1435   Imm = N;
1436   return TM.getCodeModel() == CodeModel::Small;
1437 }
1438
1439 bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base,
1440                                          SDValue &Scale, SDValue &Index,
1441                                          SDValue &Disp, SDValue &Segment) {
1442   if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment))
1443     return false;
1444
1445   SDLoc DL(N);
1446   RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base);
1447   if (RN && RN->getReg() == 0)
1448     Base = CurDAG->getRegister(0, MVT::i64);
1449   else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(Base)) {
1450     // Base could already be %rip, particularly in the x32 ABI.
1451     Base = SDValue(CurDAG->getMachineNode(
1452                        TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1453                        CurDAG->getTargetConstant(0, DL, MVT::i64),
1454                        Base,
1455                        CurDAG->getTargetConstant(X86::sub_32bit, DL, MVT::i32)),
1456                    0);
1457   }
1458
1459   RN = dyn_cast<RegisterSDNode>(Index);
1460   if (RN && RN->getReg() == 0)
1461     Index = CurDAG->getRegister(0, MVT::i64);
1462   else {
1463     assert(Index.getValueType() == MVT::i32 &&
1464            "Expect to be extending 32-bit registers for use in LEA");
1465     Index = SDValue(CurDAG->getMachineNode(
1466                         TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1467                         CurDAG->getTargetConstant(0, DL, MVT::i64),
1468                         Index,
1469                         CurDAG->getTargetConstant(X86::sub_32bit, DL,
1470                                                   MVT::i32)),
1471                     0);
1472   }
1473
1474   return true;
1475 }
1476
1477 /// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1478 /// mode it matches can be cost effectively emitted as an LEA instruction.
1479 bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
1480                                     SDValue &Base, SDValue &Scale,
1481                                     SDValue &Index, SDValue &Disp,
1482                                     SDValue &Segment) {
1483   X86ISelAddressMode AM;
1484
1485   // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1486   // segments.
1487   SDValue Copy = AM.Segment;
1488   SDValue T = CurDAG->getRegister(0, MVT::i32);
1489   AM.Segment = T;
1490   if (MatchAddress(N, AM))
1491     return false;
1492   assert (T == AM.Segment);
1493   AM.Segment = Copy;
1494
1495   MVT VT = N.getSimpleValueType();
1496   unsigned Complexity = 0;
1497   if (AM.BaseType == X86ISelAddressMode::RegBase)
1498     if (AM.Base_Reg.getNode())
1499       Complexity = 1;
1500     else
1501       AM.Base_Reg = CurDAG->getRegister(0, VT);
1502   else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1503     Complexity = 4;
1504
1505   if (AM.IndexReg.getNode())
1506     Complexity++;
1507   else
1508     AM.IndexReg = CurDAG->getRegister(0, VT);
1509
1510   // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1511   // a simple shift.
1512   if (AM.Scale > 1)
1513     Complexity++;
1514
1515   // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1516   // to a LEA. This is determined with some expermentation but is by no means
1517   // optimal (especially for code size consideration). LEA is nice because of
1518   // its three-address nature. Tweak the cost function again when we can run
1519   // convertToThreeAddress() at register allocation time.
1520   if (AM.hasSymbolicDisplacement()) {
1521     // For X86-64, we should always use lea to materialize RIP relative
1522     // addresses.
1523     if (Subtarget->is64Bit())
1524       Complexity = 4;
1525     else
1526       Complexity += 2;
1527   }
1528
1529   if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
1530     Complexity++;
1531
1532   // If it isn't worth using an LEA, reject it.
1533   if (Complexity <= 2)
1534     return false;
1535
1536   getAddressOperands(AM, SDLoc(N), Base, Scale, Index, Disp, Segment);
1537   return true;
1538 }
1539
1540 /// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
1541 bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
1542                                         SDValue &Scale, SDValue &Index,
1543                                         SDValue &Disp, SDValue &Segment) {
1544   assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1545   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1546
1547   X86ISelAddressMode AM;
1548   AM.GV = GA->getGlobal();
1549   AM.Disp += GA->getOffset();
1550   AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
1551   AM.SymbolFlags = GA->getTargetFlags();
1552
1553   if (N.getValueType() == MVT::i32) {
1554     AM.Scale = 1;
1555     AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
1556   } else {
1557     AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
1558   }
1559
1560   getAddressOperands(AM, SDLoc(N), Base, Scale, Index, Disp, Segment);
1561   return true;
1562 }
1563
1564
1565 bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
1566                                   SDValue &Base, SDValue &Scale,
1567                                   SDValue &Index, SDValue &Disp,
1568                                   SDValue &Segment) {
1569   if (!ISD::isNON_EXTLoad(N.getNode()) ||
1570       !IsProfitableToFold(N, P, P) ||
1571       !IsLegalToFold(N, P, P, OptLevel))
1572     return false;
1573
1574   return SelectAddr(N.getNode(),
1575                     N.getOperand(1), Base, Scale, Index, Disp, Segment);
1576 }
1577
1578 /// getGlobalBaseReg - Return an SDNode that returns the value of
1579 /// the global base register. Output instructions required to
1580 /// initialize the global base register, if necessary.
1581 ///
1582 SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
1583   unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
1584   return CurDAG->getRegister(GlobalBaseReg, TLI->getPointerTy()).getNode();
1585 }
1586
1587 /// Atomic opcode table
1588 ///
1589 enum AtomicOpc {
1590   ADD,
1591   SUB,
1592   INC,
1593   DEC,
1594   OR,
1595   AND,
1596   XOR,
1597   AtomicOpcEnd
1598 };
1599
1600 enum AtomicSz {
1601   ConstantI8,
1602   I8,
1603   SextConstantI16,
1604   ConstantI16,
1605   I16,
1606   SextConstantI32,
1607   ConstantI32,
1608   I32,
1609   SextConstantI64,
1610   ConstantI64,
1611   I64,
1612   AtomicSzEnd
1613 };
1614
1615 static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
1616   {
1617     X86::LOCK_ADD8mi,
1618     X86::LOCK_ADD8mr,
1619     X86::LOCK_ADD16mi8,
1620     X86::LOCK_ADD16mi,
1621     X86::LOCK_ADD16mr,
1622     X86::LOCK_ADD32mi8,
1623     X86::LOCK_ADD32mi,
1624     X86::LOCK_ADD32mr,
1625     X86::LOCK_ADD64mi8,
1626     X86::LOCK_ADD64mi32,
1627     X86::LOCK_ADD64mr,
1628   },
1629   {
1630     X86::LOCK_SUB8mi,
1631     X86::LOCK_SUB8mr,
1632     X86::LOCK_SUB16mi8,
1633     X86::LOCK_SUB16mi,
1634     X86::LOCK_SUB16mr,
1635     X86::LOCK_SUB32mi8,
1636     X86::LOCK_SUB32mi,
1637     X86::LOCK_SUB32mr,
1638     X86::LOCK_SUB64mi8,
1639     X86::LOCK_SUB64mi32,
1640     X86::LOCK_SUB64mr,
1641   },
1642   {
1643     0,
1644     X86::LOCK_INC8m,
1645     0,
1646     0,
1647     X86::LOCK_INC16m,
1648     0,
1649     0,
1650     X86::LOCK_INC32m,
1651     0,
1652     0,
1653     X86::LOCK_INC64m,
1654   },
1655   {
1656     0,
1657     X86::LOCK_DEC8m,
1658     0,
1659     0,
1660     X86::LOCK_DEC16m,
1661     0,
1662     0,
1663     X86::LOCK_DEC32m,
1664     0,
1665     0,
1666     X86::LOCK_DEC64m,
1667   },
1668   {
1669     X86::LOCK_OR8mi,
1670     X86::LOCK_OR8mr,
1671     X86::LOCK_OR16mi8,
1672     X86::LOCK_OR16mi,
1673     X86::LOCK_OR16mr,
1674     X86::LOCK_OR32mi8,
1675     X86::LOCK_OR32mi,
1676     X86::LOCK_OR32mr,
1677     X86::LOCK_OR64mi8,
1678     X86::LOCK_OR64mi32,
1679     X86::LOCK_OR64mr,
1680   },
1681   {
1682     X86::LOCK_AND8mi,
1683     X86::LOCK_AND8mr,
1684     X86::LOCK_AND16mi8,
1685     X86::LOCK_AND16mi,
1686     X86::LOCK_AND16mr,
1687     X86::LOCK_AND32mi8,
1688     X86::LOCK_AND32mi,
1689     X86::LOCK_AND32mr,
1690     X86::LOCK_AND64mi8,
1691     X86::LOCK_AND64mi32,
1692     X86::LOCK_AND64mr,
1693   },
1694   {
1695     X86::LOCK_XOR8mi,
1696     X86::LOCK_XOR8mr,
1697     X86::LOCK_XOR16mi8,
1698     X86::LOCK_XOR16mi,
1699     X86::LOCK_XOR16mr,
1700     X86::LOCK_XOR32mi8,
1701     X86::LOCK_XOR32mi,
1702     X86::LOCK_XOR32mr,
1703     X86::LOCK_XOR64mi8,
1704     X86::LOCK_XOR64mi32,
1705     X86::LOCK_XOR64mr,
1706   }
1707 };
1708
1709 // Return the target constant operand for atomic-load-op and do simple
1710 // translations, such as from atomic-load-add to lock-sub. The return value is
1711 // one of the following 3 cases:
1712 // + target-constant, the operand could be supported as a target constant.
1713 // + empty, the operand is not needed any more with the new op selected.
1714 // + non-empty, otherwise.
1715 static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
1716                                                 SDLoc dl,
1717                                                 enum AtomicOpc &Op, MVT NVT,
1718                                                 SDValue Val,
1719                                                 const X86Subtarget *Subtarget) {
1720   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1721     int64_t CNVal = CN->getSExtValue();
1722     // Quit if not 32-bit imm.
1723     if ((int32_t)CNVal != CNVal)
1724       return Val;
1725     // Quit if INT32_MIN: it would be negated as it is negative and overflow,
1726     // producing an immediate that does not fit in the 32 bits available for
1727     // an immediate operand to sub. However, it still fits in 32 bits for the
1728     // add (since it is not negated) so we can return target-constant.
1729     if (CNVal == INT32_MIN)
1730       return CurDAG->getTargetConstant(CNVal, dl, NVT);
1731     // For atomic-load-add, we could do some optimizations.
1732     if (Op == ADD) {
1733       // Translate to INC/DEC if ADD by 1 or -1.
1734       if (((CNVal == 1) || (CNVal == -1)) && !Subtarget->slowIncDec()) {
1735         Op = (CNVal == 1) ? INC : DEC;
1736         // No more constant operand after being translated into INC/DEC.
1737         return SDValue();
1738       }
1739       // Translate to SUB if ADD by negative value.
1740       if (CNVal < 0) {
1741         Op = SUB;
1742         CNVal = -CNVal;
1743       }
1744     }
1745     return CurDAG->getTargetConstant(CNVal, dl, NVT);
1746   }
1747
1748   // If the value operand is single-used, try to optimize it.
1749   if (Op == ADD && Val.hasOneUse()) {
1750     // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1751     if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1752       Op = SUB;
1753       return Val.getOperand(1);
1754     }
1755     // A special case for i16, which needs truncating as, in most cases, it's
1756     // promoted to i32. We will translate
1757     // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1758     if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1759         Val.getOperand(0).getOpcode() == ISD::SUB &&
1760         X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1761       Op = SUB;
1762       Val = Val.getOperand(0);
1763       return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1764                                             Val.getOperand(1));
1765     }
1766   }
1767
1768   return Val;
1769 }
1770
1771 SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) {
1772   if (Node->hasAnyUseOfValue(0))
1773     return nullptr;
1774
1775   SDLoc dl(Node);
1776
1777   // Optimize common patterns for __sync_or_and_fetch and similar arith
1778   // operations where the result is not used. This allows us to use the "lock"
1779   // version of the arithmetic instruction.
1780   SDValue Chain = Node->getOperand(0);
1781   SDValue Ptr = Node->getOperand(1);
1782   SDValue Val = Node->getOperand(2);
1783   SDValue Base, Scale, Index, Disp, Segment;
1784   if (!SelectAddr(Node, Ptr, Base, Scale, Index, Disp, Segment))
1785     return nullptr;
1786
1787   // Which index into the table.
1788   enum AtomicOpc Op;
1789   switch (Node->getOpcode()) {
1790     default:
1791       return nullptr;
1792     case ISD::ATOMIC_LOAD_OR:
1793       Op = OR;
1794       break;
1795     case ISD::ATOMIC_LOAD_AND:
1796       Op = AND;
1797       break;
1798     case ISD::ATOMIC_LOAD_XOR:
1799       Op = XOR;
1800       break;
1801     case ISD::ATOMIC_LOAD_ADD:
1802       Op = ADD;
1803       break;
1804   }
1805
1806   Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val, Subtarget);
1807   bool isUnOp = !Val.getNode();
1808   bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
1809
1810   unsigned Opc = 0;
1811   switch (NVT.SimpleTy) {
1812     default: return nullptr;
1813     case MVT::i8:
1814       if (isCN)
1815         Opc = AtomicOpcTbl[Op][ConstantI8];
1816       else
1817         Opc = AtomicOpcTbl[Op][I8];
1818       break;
1819     case MVT::i16:
1820       if (isCN) {
1821         if (immSext8(Val.getNode()))
1822           Opc = AtomicOpcTbl[Op][SextConstantI16];
1823         else
1824           Opc = AtomicOpcTbl[Op][ConstantI16];
1825       } else
1826         Opc = AtomicOpcTbl[Op][I16];
1827       break;
1828     case MVT::i32:
1829       if (isCN) {
1830         if (immSext8(Val.getNode()))
1831           Opc = AtomicOpcTbl[Op][SextConstantI32];
1832         else
1833           Opc = AtomicOpcTbl[Op][ConstantI32];
1834       } else
1835         Opc = AtomicOpcTbl[Op][I32];
1836       break;
1837     case MVT::i64:
1838       if (isCN) {
1839         if (immSext8(Val.getNode()))
1840           Opc = AtomicOpcTbl[Op][SextConstantI64];
1841         else if (i64immSExt32(Val.getNode()))
1842           Opc = AtomicOpcTbl[Op][ConstantI64];
1843         else
1844           llvm_unreachable("True 64 bits constant in SelectAtomicLoadArith");
1845       } else
1846         Opc = AtomicOpcTbl[Op][I64];
1847       break;
1848   }
1849
1850   assert(Opc != 0 && "Invalid arith lock transform!");
1851
1852   // Building the new node.
1853   SDValue Ret;
1854   if (isUnOp) {
1855     SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Chain };
1856     Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
1857   } else {
1858     SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Val, Chain };
1859     Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
1860   }
1861
1862   // Copying the MachineMemOperand.
1863   MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1864   MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1865   cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1866
1867   // We need to have two outputs as that is what the original instruction had.
1868   // So we add a dummy, undefined output. This is safe as we checked first
1869   // that no-one uses our output anyway.
1870   SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1871                                                  dl, NVT), 0);
1872   SDValue RetVals[] = { Undef, Ret };
1873   return CurDAG->getMergeValues(RetVals, dl).getNode();
1874 }
1875
1876 /// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1877 /// any uses which require the SF or OF bits to be accurate.
1878 static bool HasNoSignedComparisonUses(SDNode *N) {
1879   // Examine each user of the node.
1880   for (SDNode::use_iterator UI = N->use_begin(),
1881          UE = N->use_end(); UI != UE; ++UI) {
1882     // Only examine CopyToReg uses.
1883     if (UI->getOpcode() != ISD::CopyToReg)
1884       return false;
1885     // Only examine CopyToReg uses that copy to EFLAGS.
1886     if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1887           X86::EFLAGS)
1888       return false;
1889     // Examine each user of the CopyToReg use.
1890     for (SDNode::use_iterator FlagUI = UI->use_begin(),
1891            FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1892       // Only examine the Flag result.
1893       if (FlagUI.getUse().getResNo() != 1) continue;
1894       // Anything unusual: assume conservatively.
1895       if (!FlagUI->isMachineOpcode()) return false;
1896       // Examine the opcode of the user.
1897       switch (FlagUI->getMachineOpcode()) {
1898       // These comparisons don't treat the most significant bit specially.
1899       case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1900       case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1901       case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1902       case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
1903       case X86::JA_1: case X86::JAE_1: case X86::JB_1: case X86::JBE_1:
1904       case X86::JE_1: case X86::JNE_1: case X86::JP_1: case X86::JNP_1:
1905       case X86::CMOVA16rr: case X86::CMOVA16rm:
1906       case X86::CMOVA32rr: case X86::CMOVA32rm:
1907       case X86::CMOVA64rr: case X86::CMOVA64rm:
1908       case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1909       case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1910       case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1911       case X86::CMOVB16rr: case X86::CMOVB16rm:
1912       case X86::CMOVB32rr: case X86::CMOVB32rm:
1913       case X86::CMOVB64rr: case X86::CMOVB64rm:
1914       case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1915       case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1916       case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1917       case X86::CMOVE16rr: case X86::CMOVE16rm:
1918       case X86::CMOVE32rr: case X86::CMOVE32rm:
1919       case X86::CMOVE64rr: case X86::CMOVE64rm:
1920       case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1921       case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1922       case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1923       case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1924       case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1925       case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1926       case X86::CMOVP16rr: case X86::CMOVP16rm:
1927       case X86::CMOVP32rr: case X86::CMOVP32rm:
1928       case X86::CMOVP64rr: case X86::CMOVP64rm:
1929         continue;
1930       // Anything else: assume conservatively.
1931       default: return false;
1932       }
1933     }
1934   }
1935   return true;
1936 }
1937
1938 /// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1939 /// is suitable for doing the {load; increment or decrement; store} to modify
1940 /// transformation.
1941 static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
1942                                 SDValue StoredVal, SelectionDAG *CurDAG,
1943                                 LoadSDNode* &LoadNode, SDValue &InputChain) {
1944
1945   // is the value stored the result of a DEC or INC?
1946   if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1947
1948   // is the stored value result 0 of the load?
1949   if (StoredVal.getResNo() != 0) return false;
1950
1951   // are there other uses of the loaded value than the inc or dec?
1952   if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1953
1954   // is the store non-extending and non-indexed?
1955   if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
1956     return false;
1957
1958   SDValue Load = StoredVal->getOperand(0);
1959   // Is the stored value a non-extending and non-indexed load?
1960   if (!ISD::isNormalLoad(Load.getNode())) return false;
1961
1962   // Return LoadNode by reference.
1963   LoadNode = cast<LoadSDNode>(Load);
1964   // is the size of the value one that we can handle? (i.e. 64, 32, 16, or 8)
1965   EVT LdVT = LoadNode->getMemoryVT();
1966   if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
1967       LdVT != MVT::i8)
1968     return false;
1969
1970   // Is store the only read of the loaded value?
1971   if (!Load.hasOneUse())
1972     return false;
1973
1974   // Is the address of the store the same as the load?
1975   if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1976       LoadNode->getOffset() != StoreNode->getOffset())
1977     return false;
1978
1979   // Check if the chain is produced by the load or is a TokenFactor with
1980   // the load output chain as an operand. Return InputChain by reference.
1981   SDValue Chain = StoreNode->getChain();
1982
1983   bool ChainCheck = false;
1984   if (Chain == Load.getValue(1)) {
1985     ChainCheck = true;
1986     InputChain = LoadNode->getChain();
1987   } else if (Chain.getOpcode() == ISD::TokenFactor) {
1988     SmallVector<SDValue, 4> ChainOps;
1989     for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1990       SDValue Op = Chain.getOperand(i);
1991       if (Op == Load.getValue(1)) {
1992         ChainCheck = true;
1993         continue;
1994       }
1995
1996       // Make sure using Op as part of the chain would not cause a cycle here.
1997       // In theory, we could check whether the chain node is a predecessor of
1998       // the load. But that can be very expensive. Instead visit the uses and
1999       // make sure they all have smaller node id than the load.
2000       int LoadId = LoadNode->getNodeId();
2001       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
2002              UE = UI->use_end(); UI != UE; ++UI) {
2003         if (UI.getUse().getResNo() != 0)
2004           continue;
2005         if (UI->getNodeId() > LoadId)
2006           return false;
2007       }
2008
2009       ChainOps.push_back(Op);
2010     }
2011
2012     if (ChainCheck)
2013       // Make a new TokenFactor with all the other input chains except
2014       // for the load.
2015       InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
2016                                    MVT::Other, ChainOps);
2017   }
2018   if (!ChainCheck)
2019     return false;
2020
2021   return true;
2022 }
2023
2024 /// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
2025 /// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
2026 static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
2027   if (Opc == X86ISD::DEC) {
2028     if (LdVT == MVT::i64) return X86::DEC64m;
2029     if (LdVT == MVT::i32) return X86::DEC32m;
2030     if (LdVT == MVT::i16) return X86::DEC16m;
2031     if (LdVT == MVT::i8)  return X86::DEC8m;
2032   } else {
2033     assert(Opc == X86ISD::INC && "unrecognized opcode");
2034     if (LdVT == MVT::i64) return X86::INC64m;
2035     if (LdVT == MVT::i32) return X86::INC32m;
2036     if (LdVT == MVT::i16) return X86::INC16m;
2037     if (LdVT == MVT::i8)  return X86::INC8m;
2038   }
2039   llvm_unreachable("unrecognized size for LdVT");
2040 }
2041
2042 /// SelectGather - Customized ISel for GATHER operations.
2043 ///
2044 SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
2045   // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
2046   SDValue Chain = Node->getOperand(0);
2047   SDValue VSrc = Node->getOperand(2);
2048   SDValue Base = Node->getOperand(3);
2049   SDValue VIdx = Node->getOperand(4);
2050   SDValue VMask = Node->getOperand(5);
2051   ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
2052   if (!Scale)
2053     return nullptr;
2054
2055   SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2056                                    MVT::Other);
2057
2058   SDLoc DL(Node);
2059
2060   // Memory Operands: Base, Scale, Index, Disp, Segment
2061   SDValue Disp = CurDAG->getTargetConstant(0, DL, MVT::i32);
2062   SDValue Segment = CurDAG->getRegister(0, MVT::i32);
2063   const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue(), DL), VIdx,
2064                           Disp, Segment, VMask, Chain};
2065   SDNode *ResNode = CurDAG->getMachineNode(Opc, DL, VTs, Ops);
2066   // Node has 2 outputs: VDst and MVT::Other.
2067   // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2068   // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2069   // of ResNode.
2070   ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2071   ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
2072   return ResNode;
2073 }
2074
2075 SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
2076   MVT NVT = Node->getSimpleValueType(0);
2077   unsigned Opc, MOpc;
2078   unsigned Opcode = Node->getOpcode();
2079   SDLoc dl(Node);
2080
2081   DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
2082
2083   if (Node->isMachineOpcode()) {
2084     DEBUG(dbgs() << "== ";  Node->dump(CurDAG); dbgs() << '\n');
2085     Node->setNodeId(-1);
2086     return nullptr;   // Already selected.
2087   }
2088
2089   switch (Opcode) {
2090   default: break;
2091   case ISD::INTRINSIC_W_CHAIN: {
2092     unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2093     switch (IntNo) {
2094     default: break;
2095     case Intrinsic::x86_avx2_gather_d_pd:
2096     case Intrinsic::x86_avx2_gather_d_pd_256:
2097     case Intrinsic::x86_avx2_gather_q_pd:
2098     case Intrinsic::x86_avx2_gather_q_pd_256:
2099     case Intrinsic::x86_avx2_gather_d_ps:
2100     case Intrinsic::x86_avx2_gather_d_ps_256:
2101     case Intrinsic::x86_avx2_gather_q_ps:
2102     case Intrinsic::x86_avx2_gather_q_ps_256:
2103     case Intrinsic::x86_avx2_gather_d_q:
2104     case Intrinsic::x86_avx2_gather_d_q_256:
2105     case Intrinsic::x86_avx2_gather_q_q:
2106     case Intrinsic::x86_avx2_gather_q_q_256:
2107     case Intrinsic::x86_avx2_gather_d_d:
2108     case Intrinsic::x86_avx2_gather_d_d_256:
2109     case Intrinsic::x86_avx2_gather_q_d:
2110     case Intrinsic::x86_avx2_gather_q_d_256: {
2111       if (!Subtarget->hasAVX2())
2112         break;
2113       unsigned Opc;
2114       switch (IntNo) {
2115       default: llvm_unreachable("Impossible intrinsic");
2116       case Intrinsic::x86_avx2_gather_d_pd:     Opc = X86::VGATHERDPDrm;  break;
2117       case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2118       case Intrinsic::x86_avx2_gather_q_pd:     Opc = X86::VGATHERQPDrm;  break;
2119       case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2120       case Intrinsic::x86_avx2_gather_d_ps:     Opc = X86::VGATHERDPSrm;  break;
2121       case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2122       case Intrinsic::x86_avx2_gather_q_ps:     Opc = X86::VGATHERQPSrm;  break;
2123       case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2124       case Intrinsic::x86_avx2_gather_d_q:      Opc = X86::VPGATHERDQrm;  break;
2125       case Intrinsic::x86_avx2_gather_d_q_256:  Opc = X86::VPGATHERDQYrm; break;
2126       case Intrinsic::x86_avx2_gather_q_q:      Opc = X86::VPGATHERQQrm;  break;
2127       case Intrinsic::x86_avx2_gather_q_q_256:  Opc = X86::VPGATHERQQYrm; break;
2128       case Intrinsic::x86_avx2_gather_d_d:      Opc = X86::VPGATHERDDrm;  break;
2129       case Intrinsic::x86_avx2_gather_d_d_256:  Opc = X86::VPGATHERDDYrm; break;
2130       case Intrinsic::x86_avx2_gather_q_d:      Opc = X86::VPGATHERQDrm;  break;
2131       case Intrinsic::x86_avx2_gather_q_d_256:  Opc = X86::VPGATHERQDYrm; break;
2132       }
2133       SDNode *RetVal = SelectGather(Node, Opc);
2134       if (RetVal)
2135         // We already called ReplaceUses inside SelectGather.
2136         return nullptr;
2137       break;
2138     }
2139     }
2140     break;
2141   }
2142   case X86ISD::GlobalBaseReg:
2143     return getGlobalBaseReg();
2144
2145   case X86ISD::SHRUNKBLEND: {
2146     // SHRUNKBLEND selects like a regular VSELECT.
2147     SDValue VSelect = CurDAG->getNode(
2148         ISD::VSELECT, SDLoc(Node), Node->getValueType(0), Node->getOperand(0),
2149         Node->getOperand(1), Node->getOperand(2));
2150     ReplaceUses(SDValue(Node, 0), VSelect);
2151     SelectCode(VSelect.getNode());
2152     // We already called ReplaceUses.
2153     return nullptr;
2154   }
2155
2156   case ISD::ATOMIC_LOAD_XOR:
2157   case ISD::ATOMIC_LOAD_AND:
2158   case ISD::ATOMIC_LOAD_OR:
2159   case ISD::ATOMIC_LOAD_ADD: {
2160     SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
2161     if (RetVal)
2162       return RetVal;
2163     break;
2164   }
2165   case ISD::AND:
2166   case ISD::OR:
2167   case ISD::XOR: {
2168     // For operations of the form (x << C1) op C2, check if we can use a smaller
2169     // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2170     SDValue N0 = Node->getOperand(0);
2171     SDValue N1 = Node->getOperand(1);
2172
2173     if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2174       break;
2175
2176     // i8 is unshrinkable, i16 should be promoted to i32.
2177     if (NVT != MVT::i32 && NVT != MVT::i64)
2178       break;
2179
2180     ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2181     ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2182     if (!Cst || !ShlCst)
2183       break;
2184
2185     int64_t Val = Cst->getSExtValue();
2186     uint64_t ShlVal = ShlCst->getZExtValue();
2187
2188     // Make sure that we don't change the operation by removing bits.
2189     // This only matters for OR and XOR, AND is unaffected.
2190     uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2191     if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
2192       break;
2193
2194     unsigned ShlOp, AddOp, Op;
2195     MVT CstVT = NVT;
2196
2197     // Check the minimum bitwidth for the new constant.
2198     // TODO: AND32ri is the same as AND64ri32 with zext imm.
2199     // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2200     // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2201     if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2202       CstVT = MVT::i8;
2203     else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2204       CstVT = MVT::i32;
2205
2206     // Bail if there is no smaller encoding.
2207     if (NVT == CstVT)
2208       break;
2209
2210     switch (NVT.SimpleTy) {
2211     default: llvm_unreachable("Unsupported VT!");
2212     case MVT::i32:
2213       assert(CstVT == MVT::i8);
2214       ShlOp = X86::SHL32ri;
2215       AddOp = X86::ADD32rr;
2216
2217       switch (Opcode) {
2218       default: llvm_unreachable("Impossible opcode");
2219       case ISD::AND: Op = X86::AND32ri8; break;
2220       case ISD::OR:  Op =  X86::OR32ri8; break;
2221       case ISD::XOR: Op = X86::XOR32ri8; break;
2222       }
2223       break;
2224     case MVT::i64:
2225       assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2226       ShlOp = X86::SHL64ri;
2227       AddOp = X86::ADD64rr;
2228
2229       switch (Opcode) {
2230       default: llvm_unreachable("Impossible opcode");
2231       case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2232       case ISD::OR:  Op = CstVT==MVT::i8?  X86::OR64ri8 :  X86::OR64ri32; break;
2233       case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2234       }
2235       break;
2236     }
2237
2238     // Emit the smaller op and the shift.
2239     SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, dl, CstVT);
2240     SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2241     if (ShlVal == 1)
2242       return CurDAG->SelectNodeTo(Node, AddOp, NVT, SDValue(New, 0),
2243                                   SDValue(New, 0));
2244     return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2245                                 getI8Imm(ShlVal, dl));
2246   }
2247   case X86ISD::UMUL8:
2248   case X86ISD::SMUL8: {
2249     SDValue N0 = Node->getOperand(0);
2250     SDValue N1 = Node->getOperand(1);
2251
2252     Opc = (Opcode == X86ISD::SMUL8 ? X86::IMUL8r : X86::MUL8r);
2253
2254     SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, X86::AL,
2255                                           N0, SDValue()).getValue(1);
2256
2257     SDVTList VTs = CurDAG->getVTList(NVT, MVT::i32);
2258     SDValue Ops[] = {N1, InFlag};
2259     SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
2260
2261     ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2262     ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2263     return nullptr;
2264   }
2265
2266   case X86ISD::UMUL: {
2267     SDValue N0 = Node->getOperand(0);
2268     SDValue N1 = Node->getOperand(1);
2269
2270     unsigned LoReg;
2271     switch (NVT.SimpleTy) {
2272     default: llvm_unreachable("Unsupported VT!");
2273     case MVT::i8:  LoReg = X86::AL;  Opc = X86::MUL8r; break;
2274     case MVT::i16: LoReg = X86::AX;  Opc = X86::MUL16r; break;
2275     case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2276     case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
2277     }
2278
2279     SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2280                                           N0, SDValue()).getValue(1);
2281
2282     SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2283     SDValue Ops[] = {N1, InFlag};
2284     SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
2285
2286     ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2287     ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2288     ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
2289     return nullptr;
2290   }
2291
2292   case ISD::SMUL_LOHI:
2293   case ISD::UMUL_LOHI: {
2294     SDValue N0 = Node->getOperand(0);
2295     SDValue N1 = Node->getOperand(1);
2296
2297     bool isSigned = Opcode == ISD::SMUL_LOHI;
2298     bool hasBMI2 = Subtarget->hasBMI2();
2299     if (!isSigned) {
2300       switch (NVT.SimpleTy) {
2301       default: llvm_unreachable("Unsupported VT!");
2302       case MVT::i8:  Opc = X86::MUL8r;  MOpc = X86::MUL8m;  break;
2303       case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
2304       case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2305                      MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2306       case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2307                      MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
2308       }
2309     } else {
2310       switch (NVT.SimpleTy) {
2311       default: llvm_unreachable("Unsupported VT!");
2312       case MVT::i8:  Opc = X86::IMUL8r;  MOpc = X86::IMUL8m;  break;
2313       case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2314       case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2315       case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
2316       }
2317     }
2318
2319     unsigned SrcReg, LoReg, HiReg;
2320     switch (Opc) {
2321     default: llvm_unreachable("Unknown MUL opcode!");
2322     case X86::IMUL8r:
2323     case X86::MUL8r:
2324       SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2325       break;
2326     case X86::IMUL16r:
2327     case X86::MUL16r:
2328       SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2329       break;
2330     case X86::IMUL32r:
2331     case X86::MUL32r:
2332       SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2333       break;
2334     case X86::IMUL64r:
2335     case X86::MUL64r:
2336       SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2337       break;
2338     case X86::MULX32rr:
2339       SrcReg = X86::EDX; LoReg = HiReg = 0;
2340       break;
2341     case X86::MULX64rr:
2342       SrcReg = X86::RDX; LoReg = HiReg = 0;
2343       break;
2344     }
2345
2346     SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
2347     bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
2348     // Multiply is commmutative.
2349     if (!foldedLoad) {
2350       foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
2351       if (foldedLoad)
2352         std::swap(N0, N1);
2353     }
2354
2355     SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
2356                                           N0, SDValue()).getValue(1);
2357     SDValue ResHi, ResLo;
2358
2359     if (foldedLoad) {
2360       SDValue Chain;
2361       SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2362                         InFlag };
2363       if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2364         SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
2365         SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
2366         ResHi = SDValue(CNode, 0);
2367         ResLo = SDValue(CNode, 1);
2368         Chain = SDValue(CNode, 2);
2369         InFlag = SDValue(CNode, 3);
2370       } else {
2371         SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
2372         SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
2373         Chain = SDValue(CNode, 0);
2374         InFlag = SDValue(CNode, 1);
2375       }
2376
2377       // Update the chain.
2378       ReplaceUses(N1.getValue(1), Chain);
2379     } else {
2380       SDValue Ops[] = { N1, InFlag };
2381       if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2382         SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
2383         SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
2384         ResHi = SDValue(CNode, 0);
2385         ResLo = SDValue(CNode, 1);
2386         InFlag = SDValue(CNode, 2);
2387       } else {
2388         SDVTList VTs = CurDAG->getVTList(MVT::Glue);
2389         SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
2390         InFlag = SDValue(CNode, 0);
2391       }
2392     }
2393
2394     // Prevent use of AH in a REX instruction by referencing AX instead.
2395     if (HiReg == X86::AH && Subtarget->is64Bit() &&
2396         !SDValue(Node, 1).use_empty()) {
2397       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2398                                               X86::AX, MVT::i16, InFlag);
2399       InFlag = Result.getValue(2);
2400       // Get the low part if needed. Don't use getCopyFromReg for aliasing
2401       // registers.
2402       if (!SDValue(Node, 0).use_empty())
2403         ReplaceUses(SDValue(Node, 1),
2404           CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2405
2406       // Shift AX down 8 bits.
2407       Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2408                                               Result,
2409                                      CurDAG->getTargetConstant(8, dl, MVT::i8)),
2410                        0);
2411       // Then truncate it down to i8.
2412       ReplaceUses(SDValue(Node, 1),
2413         CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2414     }
2415     // Copy the low half of the result, if it is needed.
2416     if (!SDValue(Node, 0).use_empty()) {
2417       if (!ResLo.getNode()) {
2418         assert(LoReg && "Register for low half is not defined!");
2419         ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2420                                        InFlag);
2421         InFlag = ResLo.getValue(2);
2422       }
2423       ReplaceUses(SDValue(Node, 0), ResLo);
2424       DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
2425     }
2426     // Copy the high half of the result, if it is needed.
2427     if (!SDValue(Node, 1).use_empty()) {
2428       if (!ResHi.getNode()) {
2429         assert(HiReg && "Register for high half is not defined!");
2430         ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2431                                        InFlag);
2432         InFlag = ResHi.getValue(2);
2433       }
2434       ReplaceUses(SDValue(Node, 1), ResHi);
2435       DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
2436     }
2437
2438     return nullptr;
2439   }
2440
2441   case ISD::SDIVREM:
2442   case ISD::UDIVREM:
2443   case X86ISD::SDIVREM8_SEXT_HREG:
2444   case X86ISD::UDIVREM8_ZEXT_HREG: {
2445     SDValue N0 = Node->getOperand(0);
2446     SDValue N1 = Node->getOperand(1);
2447
2448     bool isSigned = (Opcode == ISD::SDIVREM ||
2449                      Opcode == X86ISD::SDIVREM8_SEXT_HREG);
2450     if (!isSigned) {
2451       switch (NVT.SimpleTy) {
2452       default: llvm_unreachable("Unsupported VT!");
2453       case MVT::i8:  Opc = X86::DIV8r;  MOpc = X86::DIV8m;  break;
2454       case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2455       case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2456       case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
2457       }
2458     } else {
2459       switch (NVT.SimpleTy) {
2460       default: llvm_unreachable("Unsupported VT!");
2461       case MVT::i8:  Opc = X86::IDIV8r;  MOpc = X86::IDIV8m;  break;
2462       case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2463       case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2464       case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
2465       }
2466     }
2467
2468     unsigned LoReg, HiReg, ClrReg;
2469     unsigned SExtOpcode;
2470     switch (NVT.SimpleTy) {
2471     default: llvm_unreachable("Unsupported VT!");
2472     case MVT::i8:
2473       LoReg = X86::AL;  ClrReg = HiReg = X86::AH;
2474       SExtOpcode = X86::CBW;
2475       break;
2476     case MVT::i16:
2477       LoReg = X86::AX;  HiReg = X86::DX;
2478       ClrReg = X86::DX;
2479       SExtOpcode = X86::CWD;
2480       break;
2481     case MVT::i32:
2482       LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
2483       SExtOpcode = X86::CDQ;
2484       break;
2485     case MVT::i64:
2486       LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
2487       SExtOpcode = X86::CQO;
2488       break;
2489     }
2490
2491     SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
2492     bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
2493     bool signBitIsZero = CurDAG->SignBitIsZero(N0);
2494
2495     SDValue InFlag;
2496     if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
2497       // Special case for div8, just use a move with zero extension to AX to
2498       // clear the upper 8 bits (AH).
2499       SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
2500       if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
2501         SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2502         Move =
2503           SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
2504                                          MVT::Other, Ops), 0);
2505         Chain = Move.getValue(1);
2506         ReplaceUses(N0.getValue(1), Chain);
2507       } else {
2508         Move =
2509           SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
2510         Chain = CurDAG->getEntryNode();
2511       }
2512       Chain  = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
2513       InFlag = Chain.getValue(1);
2514     } else {
2515       InFlag =
2516         CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2517                              LoReg, N0, SDValue()).getValue(1);
2518       if (isSigned && !signBitIsZero) {
2519         // Sign extend the low part into the high part.
2520         InFlag =
2521           SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
2522       } else {
2523         // Zero out the high part, effectively zero extending the input.
2524         SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
2525         switch (NVT.SimpleTy) {
2526         case MVT::i16:
2527           ClrNode =
2528               SDValue(CurDAG->getMachineNode(
2529                           TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2530                           CurDAG->getTargetConstant(X86::sub_16bit, dl,
2531                                                     MVT::i32)),
2532                       0);
2533           break;
2534         case MVT::i32:
2535           break;
2536         case MVT::i64:
2537           ClrNode =
2538               SDValue(CurDAG->getMachineNode(
2539                           TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2540                           CurDAG->getTargetConstant(0, dl, MVT::i64), ClrNode,
2541                           CurDAG->getTargetConstant(X86::sub_32bit, dl,
2542                                                     MVT::i32)),
2543                       0);
2544           break;
2545         default:
2546           llvm_unreachable("Unexpected division source");
2547         }
2548
2549         InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
2550                                       ClrNode, InFlag).getValue(1);
2551       }
2552     }
2553
2554     if (foldedLoad) {
2555       SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2556                         InFlag };
2557       SDNode *CNode =
2558         CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
2559       InFlag = SDValue(CNode, 1);
2560       // Update the chain.
2561       ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2562     } else {
2563       InFlag =
2564         SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
2565     }
2566
2567     // Prevent use of AH in a REX instruction by explicitly copying it to
2568     // an ABCD_L register.
2569     //
2570     // The current assumption of the register allocator is that isel
2571     // won't generate explicit references to the GR8_ABCD_H registers. If
2572     // the allocator and/or the backend get enhanced to be more robust in
2573     // that regard, this can be, and should be, removed.
2574     if (HiReg == X86::AH && !SDValue(Node, 1).use_empty()) {
2575       SDValue AHCopy = CurDAG->getRegister(X86::AH, MVT::i8);
2576       unsigned AHExtOpcode =
2577           isSigned ? X86::MOVSX32_NOREXrr8 : X86::MOVZX32_NOREXrr8;
2578
2579       SDNode *RNode = CurDAG->getMachineNode(AHExtOpcode, dl, MVT::i32,
2580                                              MVT::Glue, AHCopy, InFlag);
2581       SDValue Result(RNode, 0);
2582       InFlag = SDValue(RNode, 1);
2583
2584       if (Opcode == X86ISD::UDIVREM8_ZEXT_HREG ||
2585           Opcode == X86ISD::SDIVREM8_SEXT_HREG) {
2586         if (Node->getValueType(1) == MVT::i64) {
2587           // It's not possible to directly movsx AH to a 64bit register, because
2588           // the latter needs the REX prefix, but the former can't have it.
2589           assert(Opcode != X86ISD::SDIVREM8_SEXT_HREG &&
2590                  "Unexpected i64 sext of h-register");
2591           Result =
2592               SDValue(CurDAG->getMachineNode(
2593                           TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2594                           CurDAG->getTargetConstant(0, dl, MVT::i64), Result,
2595                           CurDAG->getTargetConstant(X86::sub_32bit, dl,
2596                                                     MVT::i32)),
2597                       0);
2598         }
2599       } else {
2600         Result =
2601             CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result);
2602       }
2603       ReplaceUses(SDValue(Node, 1), Result);
2604       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
2605     }
2606     // Copy the division (low) result, if it is needed.
2607     if (!SDValue(Node, 0).use_empty()) {
2608       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2609                                                 LoReg, NVT, InFlag);
2610       InFlag = Result.getValue(2);
2611       ReplaceUses(SDValue(Node, 0), Result);
2612       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
2613     }
2614     // Copy the remainder (high) result, if it is needed.
2615     if (!SDValue(Node, 1).use_empty()) {
2616       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2617                                               HiReg, NVT, InFlag);
2618       InFlag = Result.getValue(2);
2619       ReplaceUses(SDValue(Node, 1), Result);
2620       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
2621     }
2622     return nullptr;
2623   }
2624
2625   case X86ISD::CMP:
2626   case X86ISD::SUB: {
2627     // Sometimes a SUB is used to perform comparison.
2628     if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2629       // This node is not a CMP.
2630       break;
2631     SDValue N0 = Node->getOperand(0);
2632     SDValue N1 = Node->getOperand(1);
2633
2634     if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2635         HasNoSignedComparisonUses(Node))
2636       N0 = N0.getOperand(0);
2637
2638     // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2639     // use a smaller encoding.
2640     // Look past the truncate if CMP is the only use of it.
2641     if ((N0.getNode()->getOpcode() == ISD::AND ||
2642          (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2643         N0.getNode()->hasOneUse() &&
2644         N0.getValueType() != MVT::i8 &&
2645         X86::isZeroNode(N1)) {
2646       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2647       if (!C) break;
2648
2649       // For example, convert "testl %eax, $8" to "testb %al, $8"
2650       if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2651           (!(C->getZExtValue() & 0x80) ||
2652            HasNoSignedComparisonUses(Node))) {
2653         SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), dl, MVT::i8);
2654         SDValue Reg = N0.getNode()->getOperand(0);
2655
2656         // On x86-32, only the ABCD registers have 8-bit subregisters.
2657         if (!Subtarget->is64Bit()) {
2658           const TargetRegisterClass *TRC;
2659           switch (N0.getSimpleValueType().SimpleTy) {
2660           case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2661           case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2662           default: llvm_unreachable("Unsupported TEST operand type!");
2663           }
2664           SDValue RC = CurDAG->getTargetConstant(TRC->getID(), dl, MVT::i32);
2665           Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2666                                                Reg.getValueType(), Reg, RC), 0);
2667         }
2668
2669         // Extract the l-register.
2670         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
2671                                                         MVT::i8, Reg);
2672
2673         // Emit a testb.
2674         SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2675                                                  Subreg, Imm);
2676         // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2677         // one, do not call ReplaceAllUsesWith.
2678         ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2679                     SDValue(NewNode, 0));
2680         return nullptr;
2681       }
2682
2683       // For example, "testl %eax, $2048" to "testb %ah, $8".
2684       if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2685           (!(C->getZExtValue() & 0x8000) ||
2686            HasNoSignedComparisonUses(Node))) {
2687         // Shift the immediate right by 8 bits.
2688         SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2689                                                        dl, MVT::i8);
2690         SDValue Reg = N0.getNode()->getOperand(0);
2691
2692         // Put the value in an ABCD register.
2693         const TargetRegisterClass *TRC;
2694         switch (N0.getSimpleValueType().SimpleTy) {
2695         case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2696         case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2697         case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2698         default: llvm_unreachable("Unsupported TEST operand type!");
2699         }
2700         SDValue RC = CurDAG->getTargetConstant(TRC->getID(), dl, MVT::i32);
2701         Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2702                                              Reg.getValueType(), Reg, RC), 0);
2703
2704         // Extract the h-register.
2705         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
2706                                                         MVT::i8, Reg);
2707
2708         // Emit a testb.  The EXTRACT_SUBREG becomes a COPY that can only
2709         // target GR8_NOREX registers, so make sure the register class is
2710         // forced.
2711         SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2712                                                  MVT::i32, Subreg, ShiftedImm);
2713         // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2714         // one, do not call ReplaceAllUsesWith.
2715         ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2716                     SDValue(NewNode, 0));
2717         return nullptr;
2718       }
2719
2720       // For example, "testl %eax, $32776" to "testw %ax, $32776".
2721       if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
2722           N0.getValueType() != MVT::i16 &&
2723           (!(C->getZExtValue() & 0x8000) ||
2724            HasNoSignedComparisonUses(Node))) {
2725         SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), dl,
2726                                                 MVT::i16);
2727         SDValue Reg = N0.getNode()->getOperand(0);
2728
2729         // Extract the 16-bit subregister.
2730         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
2731                                                         MVT::i16, Reg);
2732
2733         // Emit a testw.
2734         SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2735                                                  Subreg, Imm);
2736         // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2737         // one, do not call ReplaceAllUsesWith.
2738         ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2739                     SDValue(NewNode, 0));
2740         return nullptr;
2741       }
2742
2743       // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2744       if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
2745           N0.getValueType() == MVT::i64 &&
2746           (!(C->getZExtValue() & 0x80000000) ||
2747            HasNoSignedComparisonUses(Node))) {
2748         SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), dl,
2749                                                 MVT::i32);
2750         SDValue Reg = N0.getNode()->getOperand(0);
2751
2752         // Extract the 32-bit subregister.
2753         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
2754                                                         MVT::i32, Reg);
2755
2756         // Emit a testl.
2757         SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2758                                                  Subreg, Imm);
2759         // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2760         // one, do not call ReplaceAllUsesWith.
2761         ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2762                     SDValue(NewNode, 0));
2763         return nullptr;
2764       }
2765     }
2766     break;
2767   }
2768   case ISD::STORE: {
2769     // Change a chain of {load; incr or dec; store} of the same value into
2770     // a simple increment or decrement through memory of that value, if the
2771     // uses of the modified value and its address are suitable.
2772     // The DEC64m tablegen pattern is currently not able to match the case where
2773     // the EFLAGS on the original DEC are used. (This also applies to
2774     // {INC,DEC}X{64,32,16,8}.)
2775     // We'll need to improve tablegen to allow flags to be transferred from a
2776     // node in the pattern to the result node.  probably with a new keyword
2777     // for example, we have this
2778     // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2779     //  [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2780     //   (implicit EFLAGS)]>;
2781     // but maybe need something like this
2782     // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2783     //  [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2784     //   (transferrable EFLAGS)]>;
2785
2786     StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
2787     SDValue StoredVal = StoreNode->getOperand(1);
2788     unsigned Opc = StoredVal->getOpcode();
2789
2790     LoadSDNode *LoadNode = nullptr;
2791     SDValue InputChain;
2792     if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2793                              LoadNode, InputChain))
2794       break;
2795
2796     SDValue Base, Scale, Index, Disp, Segment;
2797     if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2798                     Base, Scale, Index, Disp, Segment))
2799       break;
2800
2801     MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2802     MemOp[0] = StoreNode->getMemOperand();
2803     MemOp[1] = LoadNode->getMemOperand();
2804     const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
2805     EVT LdVT = LoadNode->getMemoryVT();
2806     unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2807     MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
2808                                                    SDLoc(Node),
2809                                                    MVT::i32, MVT::Other, Ops);
2810     Result->setMemRefs(MemOp, MemOp + 2);
2811
2812     ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2813     ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2814
2815     return Result;
2816   }
2817   }
2818
2819   SDNode *ResNode = SelectCode(Node);
2820
2821   DEBUG(dbgs() << "=> ";
2822         if (ResNode == nullptr || ResNode == Node)
2823           Node->dump(CurDAG);
2824         else
2825           ResNode->dump(CurDAG);
2826         dbgs() << '\n');
2827
2828   return ResNode;
2829 }
2830
2831 bool X86DAGToDAGISel::
2832 SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
2833                              std::vector<SDValue> &OutOps) {
2834   SDValue Op0, Op1, Op2, Op3, Op4;
2835   switch (ConstraintID) {
2836   case InlineAsm::Constraint_o: // offsetable        ??
2837   case InlineAsm::Constraint_v: // not offsetable    ??
2838   default: return true;
2839   case InlineAsm::Constraint_m: // memory
2840     if (!SelectAddr(nullptr, Op, Op0, Op1, Op2, Op3, Op4))
2841       return true;
2842     break;
2843   }
2844
2845   OutOps.push_back(Op0);
2846   OutOps.push_back(Op1);
2847   OutOps.push_back(Op2);
2848   OutOps.push_back(Op3);
2849   OutOps.push_back(Op4);
2850   return false;
2851 }
2852
2853 /// createX86ISelDag - This pass converts a legalized DAG into a
2854 /// X86-specific DAG, ready for instruction scheduling.
2855 ///
2856 FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2857                                      CodeGenOpt::Level OptLevel) {
2858   return new X86DAGToDAGISel(TM, OptLevel);
2859 }