6d4f817ad67c1a7c3a8333fef18c1d99a6390c50
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "X86ISelLowering.h"
16 #include "Utils/X86ShuffleDecode.h"
17 #include "X86CallingConv.h"
18 #include "X86FrameLowering.h"
19 #include "X86InstrBuilder.h"
20 #include "X86MachineFunctionInfo.h"
21 #include "X86TargetMachine.h"
22 #include "X86TargetObjectFile.h"
23 #include "llvm/ADT/SmallBitVector.h"
24 #include "llvm/ADT/SmallSet.h"
25 #include "llvm/ADT/Statistic.h"
26 #include "llvm/ADT/StringExtras.h"
27 #include "llvm/ADT/StringSwitch.h"
28 #include "llvm/CodeGen/IntrinsicLowering.h"
29 #include "llvm/CodeGen/MachineFrameInfo.h"
30 #include "llvm/CodeGen/MachineFunction.h"
31 #include "llvm/CodeGen/MachineInstrBuilder.h"
32 #include "llvm/CodeGen/MachineJumpTableInfo.h"
33 #include "llvm/CodeGen/MachineModuleInfo.h"
34 #include "llvm/CodeGen/MachineRegisterInfo.h"
35 #include "llvm/CodeGen/WinEHFuncInfo.h"
36 #include "llvm/IR/CallSite.h"
37 #include "llvm/IR/CallingConv.h"
38 #include "llvm/IR/Constants.h"
39 #include "llvm/IR/DerivedTypes.h"
40 #include "llvm/IR/Function.h"
41 #include "llvm/IR/GlobalAlias.h"
42 #include "llvm/IR/GlobalVariable.h"
43 #include "llvm/IR/Instructions.h"
44 #include "llvm/IR/Intrinsics.h"
45 #include "llvm/MC/MCAsmInfo.h"
46 #include "llvm/MC/MCContext.h"
47 #include "llvm/MC/MCExpr.h"
48 #include "llvm/MC/MCSymbol.h"
49 #include "llvm/Support/CommandLine.h"
50 #include "llvm/Support/Debug.h"
51 #include "llvm/Support/ErrorHandling.h"
52 #include "llvm/Support/MathExtras.h"
53 #include "llvm/Target/TargetOptions.h"
54 #include "X86IntrinsicsInfo.h"
55 #include <bitset>
56 #include <numeric>
57 #include <cctype>
58 using namespace llvm;
59
60 #define DEBUG_TYPE "x86-isel"
61
62 STATISTIC(NumTailCalls, "Number of tail calls");
63
64 static cl::opt<bool> ExperimentalVectorWideningLegalization(
65     "x86-experimental-vector-widening-legalization", cl::init(false),
66     cl::desc("Enable an experimental vector type legalization through widening "
67              "rather than promotion."),
68     cl::Hidden);
69
70 // Forward declarations.
71 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
72                        SDValue V2);
73
74 X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
75                                      const X86Subtarget &STI)
76     : TargetLowering(TM), Subtarget(&STI) {
77   X86ScalarSSEf64 = Subtarget->hasSSE2();
78   X86ScalarSSEf32 = Subtarget->hasSSE1();
79   TD = getDataLayout();
80
81   // Set up the TargetLowering object.
82   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
83
84   // X86 is weird. It always uses i8 for shift amounts and setcc results.
85   setBooleanContents(ZeroOrOneBooleanContent);
86   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
87   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
88
89   // For 64-bit, since we have so many registers, use the ILP scheduler.
90   // For 32-bit, use the register pressure specific scheduling.
91   // For Atom, always use ILP scheduling.
92   if (Subtarget->isAtom())
93     setSchedulingPreference(Sched::ILP);
94   else if (Subtarget->is64Bit())
95     setSchedulingPreference(Sched::ILP);
96   else
97     setSchedulingPreference(Sched::RegPressure);
98   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
99   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
100
101   // Bypass expensive divides on Atom when compiling with O2.
102   if (TM.getOptLevel() >= CodeGenOpt::Default) {
103     if (Subtarget->hasSlowDivide32())
104       addBypassSlowDiv(32, 8);
105     if (Subtarget->hasSlowDivide64() && Subtarget->is64Bit())
106       addBypassSlowDiv(64, 16);
107   }
108
109   if (Subtarget->isTargetKnownWindowsMSVC()) {
110     // Setup Windows compiler runtime calls.
111     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
112     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
113     setLibcallName(RTLIB::SREM_I64, "_allrem");
114     setLibcallName(RTLIB::UREM_I64, "_aullrem");
115     setLibcallName(RTLIB::MUL_I64, "_allmul");
116     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
117     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
118     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
119     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
120     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
121
122     // The _ftol2 runtime function has an unusual calling conv, which
123     // is modeled by a special pseudo-instruction.
124     setLibcallName(RTLIB::FPTOUINT_F64_I64, nullptr);
125     setLibcallName(RTLIB::FPTOUINT_F32_I64, nullptr);
126     setLibcallName(RTLIB::FPTOUINT_F64_I32, nullptr);
127     setLibcallName(RTLIB::FPTOUINT_F32_I32, nullptr);
128   }
129
130   if (Subtarget->isTargetDarwin()) {
131     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
132     setUseUnderscoreSetJmp(false);
133     setUseUnderscoreLongJmp(false);
134   } else if (Subtarget->isTargetWindowsGNU()) {
135     // MS runtime is weird: it exports _setjmp, but longjmp!
136     setUseUnderscoreSetJmp(true);
137     setUseUnderscoreLongJmp(false);
138   } else {
139     setUseUnderscoreSetJmp(true);
140     setUseUnderscoreLongJmp(true);
141   }
142
143   // Set up the register classes.
144   addRegisterClass(MVT::i8, &X86::GR8RegClass);
145   addRegisterClass(MVT::i16, &X86::GR16RegClass);
146   addRegisterClass(MVT::i32, &X86::GR32RegClass);
147   if (Subtarget->is64Bit())
148     addRegisterClass(MVT::i64, &X86::GR64RegClass);
149
150   for (MVT VT : MVT::integer_valuetypes())
151     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
152
153   // We don't accept any truncstore of integer registers.
154   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
155   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
156   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
157   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
158   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
159   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
160
161   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
162
163   // SETOEQ and SETUNE require checking two conditions.
164   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
165   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
166   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
167   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
168   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
169   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
170
171   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
172   // operation.
173   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
174   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
175   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
176
177   if (Subtarget->is64Bit()) {
178     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
179     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
180   } else if (!Subtarget->useSoftFloat()) {
181     // We have an algorithm for SSE2->double, and we turn this into a
182     // 64-bit FILD followed by conditional FADD for other targets.
183     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
184     // We have an algorithm for SSE2, and we turn this into a 64-bit
185     // FILD for other targets.
186     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
187   }
188
189   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
190   // this operation.
191   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
192   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
193
194   if (!Subtarget->useSoftFloat()) {
195     // SSE has no i16 to fp conversion, only i32
196     if (X86ScalarSSEf32) {
197       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
198       // f32 and f64 cases are Legal, f80 case is not
199       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
200     } else {
201       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
202       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
203     }
204   } else {
205     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
206     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
207   }
208
209   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
210   // are Legal, f80 is custom lowered.
211   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
212   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
213
214   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
215   // this operation.
216   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
217   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
218
219   if (X86ScalarSSEf32) {
220     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
221     // f32 and f64 cases are Legal, f80 case is not
222     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
223   } else {
224     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
225     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
226   }
227
228   // Handle FP_TO_UINT by promoting the destination to a larger signed
229   // conversion.
230   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
231   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
232   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
233
234   if (Subtarget->is64Bit()) {
235     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
236     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
237   } else if (!Subtarget->useSoftFloat()) {
238     // Since AVX is a superset of SSE3, only check for SSE here.
239     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
240       // Expand FP_TO_UINT into a select.
241       // FIXME: We would like to use a Custom expander here eventually to do
242       // the optimal thing for SSE vs. the default expansion in the legalizer.
243       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
244     else
245       // With SSE3 we can use fisttpll to convert to a signed i64; without
246       // SSE, we're stuck with a fistpll.
247       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
248   }
249
250   if (isTargetFTOL()) {
251     // Use the _ftol2 runtime function, which has a pseudo-instruction
252     // to handle its weird calling convention.
253     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
254   }
255
256   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
257   if (!X86ScalarSSEf64) {
258     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
259     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
260     if (Subtarget->is64Bit()) {
261       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
262       // Without SSE, i64->f64 goes through memory.
263       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
264     }
265   }
266
267   // Scalar integer divide and remainder are lowered to use operations that
268   // produce two results, to match the available instructions. This exposes
269   // the two-result form to trivial CSE, which is able to combine x/y and x%y
270   // into a single instruction.
271   //
272   // Scalar integer multiply-high is also lowered to use two-result
273   // operations, to match the available instructions. However, plain multiply
274   // (low) operations are left as Legal, as there are single-result
275   // instructions for this in x86. Using the two-result multiply instructions
276   // when both high and low results are needed must be arranged by dagcombine.
277   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
278     MVT VT = IntVTs[i];
279     setOperationAction(ISD::MULHS, VT, Expand);
280     setOperationAction(ISD::MULHU, VT, Expand);
281     setOperationAction(ISD::SDIV, VT, Expand);
282     setOperationAction(ISD::UDIV, VT, Expand);
283     setOperationAction(ISD::SREM, VT, Expand);
284     setOperationAction(ISD::UREM, VT, Expand);
285
286     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
287     setOperationAction(ISD::ADDC, VT, Custom);
288     setOperationAction(ISD::ADDE, VT, Custom);
289     setOperationAction(ISD::SUBC, VT, Custom);
290     setOperationAction(ISD::SUBE, VT, Custom);
291   }
292
293   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
294   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
295   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
296   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
297   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
298   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
299   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
300   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
301   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
302   setOperationAction(ISD::SELECT_CC        , MVT::f32,   Expand);
303   setOperationAction(ISD::SELECT_CC        , MVT::f64,   Expand);
304   setOperationAction(ISD::SELECT_CC        , MVT::f80,   Expand);
305   setOperationAction(ISD::SELECT_CC        , MVT::i8,    Expand);
306   setOperationAction(ISD::SELECT_CC        , MVT::i16,   Expand);
307   setOperationAction(ISD::SELECT_CC        , MVT::i32,   Expand);
308   setOperationAction(ISD::SELECT_CC        , MVT::i64,   Expand);
309   if (Subtarget->is64Bit())
310     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
311   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
312   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
313   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
314   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
315   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
316   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
317   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
318   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
319
320   // Promote the i8 variants and force them on up to i32 which has a shorter
321   // encoding.
322   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
323   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
324   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
325   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
326   if (Subtarget->hasBMI()) {
327     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
328     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
329     if (Subtarget->is64Bit())
330       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
331   } else {
332     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
333     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
334     if (Subtarget->is64Bit())
335       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
336   }
337
338   if (Subtarget->hasLZCNT()) {
339     // When promoting the i8 variants, force them to i32 for a shorter
340     // encoding.
341     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
342     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
343     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
344     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
345     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
346     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
347     if (Subtarget->is64Bit())
348       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
349   } else {
350     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
351     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
352     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
353     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
354     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
355     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
356     if (Subtarget->is64Bit()) {
357       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
358       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
359     }
360   }
361
362   // Special handling for half-precision floating point conversions.
363   // If we don't have F16C support, then lower half float conversions
364   // into library calls.
365   if (Subtarget->useSoftFloat() || !Subtarget->hasF16C()) {
366     setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
367     setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
368   }
369
370   // There's never any support for operations beyond MVT::f32.
371   setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
372   setOperationAction(ISD::FP16_TO_FP, MVT::f80, Expand);
373   setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
374   setOperationAction(ISD::FP_TO_FP16, MVT::f80, Expand);
375
376   setLoadExtAction(ISD::EXTLOAD, MVT::f32, MVT::f16, Expand);
377   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f16, Expand);
378   setLoadExtAction(ISD::EXTLOAD, MVT::f80, MVT::f16, Expand);
379   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
380   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
381   setTruncStoreAction(MVT::f80, MVT::f16, Expand);
382
383   if (Subtarget->hasPOPCNT()) {
384     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
385   } else {
386     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
387     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
388     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
389     if (Subtarget->is64Bit())
390       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
391   }
392
393   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
394
395   if (!Subtarget->hasMOVBE())
396     setOperationAction(ISD::BSWAP          , MVT::i16  , Expand);
397
398   // These should be promoted to a larger select which is supported.
399   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
400   // X86 wants to expand cmov itself.
401   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
402   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
403   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
404   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
405   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
406   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
407   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
408   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
409   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
410   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
411   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
412   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
413   if (Subtarget->is64Bit()) {
414     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
415     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
416   }
417   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
418   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
419   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
420   // support continuation, user-level threading, and etc.. As a result, no
421   // other SjLj exception interfaces are implemented and please don't build
422   // your own exception handling based on them.
423   // LLVM/Clang supports zero-cost DWARF exception handling.
424   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
425   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
426
427   // Darwin ABI issue.
428   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
429   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
430   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
431   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
432   if (Subtarget->is64Bit())
433     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
434   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
435   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
436   if (Subtarget->is64Bit()) {
437     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
438     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
439     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
440     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
441     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
442   }
443   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
444   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
445   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
446   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
447   if (Subtarget->is64Bit()) {
448     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
449     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
450     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
451   }
452
453   if (Subtarget->hasSSE1())
454     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
455
456   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
457
458   // Expand certain atomics
459   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
460     MVT VT = IntVTs[i];
461     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Custom);
462     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
463     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
464   }
465
466   if (Subtarget->hasCmpxchg16b()) {
467     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i128, Custom);
468   }
469
470   // FIXME - use subtarget debug flags
471   if (!Subtarget->isTargetDarwin() && !Subtarget->isTargetELF() &&
472       !Subtarget->isTargetCygMing() && !Subtarget->isTargetWin64()) {
473     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
474   }
475
476   if (Subtarget->is64Bit()) {
477     setExceptionPointerRegister(X86::RAX);
478     setExceptionSelectorRegister(X86::RDX);
479   } else {
480     setExceptionPointerRegister(X86::EAX);
481     setExceptionSelectorRegister(X86::EDX);
482   }
483   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
484   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
485
486   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
487   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
488
489   setOperationAction(ISD::TRAP, MVT::Other, Legal);
490   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
491
492   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
493   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
494   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
495   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
496     // TargetInfo::X86_64ABIBuiltinVaList
497     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
498     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
499   } else {
500     // TargetInfo::CharPtrBuiltinVaList
501     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
502     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
503   }
504
505   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
506   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
507
508   setOperationAction(ISD::DYNAMIC_STACKALLOC, getPointerTy(), Custom);
509
510   // GC_TRANSITION_START and GC_TRANSITION_END need custom lowering.
511   setOperationAction(ISD::GC_TRANSITION_START, MVT::Other, Custom);
512   setOperationAction(ISD::GC_TRANSITION_END, MVT::Other, Custom);
513
514   if (!Subtarget->useSoftFloat() && X86ScalarSSEf64) {
515     // f32 and f64 use SSE.
516     // Set up the FP register classes.
517     addRegisterClass(MVT::f32, &X86::FR32RegClass);
518     addRegisterClass(MVT::f64, &X86::FR64RegClass);
519
520     // Use ANDPD to simulate FABS.
521     setOperationAction(ISD::FABS , MVT::f64, Custom);
522     setOperationAction(ISD::FABS , MVT::f32, Custom);
523
524     // Use XORP to simulate FNEG.
525     setOperationAction(ISD::FNEG , MVT::f64, Custom);
526     setOperationAction(ISD::FNEG , MVT::f32, Custom);
527
528     // Use ANDPD and ORPD to simulate FCOPYSIGN.
529     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
530     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
531
532     // Lower this to FGETSIGNx86 plus an AND.
533     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
534     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
535
536     // We don't support sin/cos/fmod
537     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
538     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
539     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
540     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
541     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
542     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
543
544     // Expand FP immediates into loads from the stack, except for the special
545     // cases we handle.
546     addLegalFPImmediate(APFloat(+0.0)); // xorpd
547     addLegalFPImmediate(APFloat(+0.0f)); // xorps
548   } else if (!Subtarget->useSoftFloat() && X86ScalarSSEf32) {
549     // Use SSE for f32, x87 for f64.
550     // Set up the FP register classes.
551     addRegisterClass(MVT::f32, &X86::FR32RegClass);
552     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
553
554     // Use ANDPS to simulate FABS.
555     setOperationAction(ISD::FABS , MVT::f32, Custom);
556
557     // Use XORP to simulate FNEG.
558     setOperationAction(ISD::FNEG , MVT::f32, Custom);
559
560     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
561
562     // Use ANDPS and ORPS to simulate FCOPYSIGN.
563     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
564     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
565
566     // We don't support sin/cos/fmod
567     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
568     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
569     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
570
571     // Special cases we handle for FP constants.
572     addLegalFPImmediate(APFloat(+0.0f)); // xorps
573     addLegalFPImmediate(APFloat(+0.0)); // FLD0
574     addLegalFPImmediate(APFloat(+1.0)); // FLD1
575     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
576     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
577
578     if (!TM.Options.UnsafeFPMath) {
579       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
580       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
581       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
582     }
583   } else if (!Subtarget->useSoftFloat()) {
584     // f32 and f64 in x87.
585     // Set up the FP register classes.
586     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
587     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
588
589     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
590     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
591     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
592     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
593
594     if (!TM.Options.UnsafeFPMath) {
595       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
596       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
597       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
598       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
599       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
600       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
601     }
602     addLegalFPImmediate(APFloat(+0.0)); // FLD0
603     addLegalFPImmediate(APFloat(+1.0)); // FLD1
604     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
605     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
606     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
607     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
608     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
609     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
610   }
611
612   // We don't support FMA.
613   setOperationAction(ISD::FMA, MVT::f64, Expand);
614   setOperationAction(ISD::FMA, MVT::f32, Expand);
615
616   // Long double always uses X87.
617   if (!Subtarget->useSoftFloat()) {
618     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
619     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
620     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
621     {
622       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
623       addLegalFPImmediate(TmpFlt);  // FLD0
624       TmpFlt.changeSign();
625       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
626
627       bool ignored;
628       APFloat TmpFlt2(+1.0);
629       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
630                       &ignored);
631       addLegalFPImmediate(TmpFlt2);  // FLD1
632       TmpFlt2.changeSign();
633       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
634     }
635
636     if (!TM.Options.UnsafeFPMath) {
637       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
638       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
639       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
640     }
641
642     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
643     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
644     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
645     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
646     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
647     setOperationAction(ISD::FMA, MVT::f80, Expand);
648   }
649
650   // Always use a library call for pow.
651   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
652   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
653   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
654
655   setOperationAction(ISD::FLOG, MVT::f80, Expand);
656   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
657   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
658   setOperationAction(ISD::FEXP, MVT::f80, Expand);
659   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
660   setOperationAction(ISD::FMINNUM, MVT::f80, Expand);
661   setOperationAction(ISD::FMAXNUM, MVT::f80, Expand);
662
663   // First set operation action for all vector types to either promote
664   // (for widening) or expand (for scalarization). Then we will selectively
665   // turn on ones that can be effectively codegen'd.
666   for (MVT VT : MVT::vector_valuetypes()) {
667     setOperationAction(ISD::ADD , VT, Expand);
668     setOperationAction(ISD::SUB , VT, Expand);
669     setOperationAction(ISD::FADD, VT, Expand);
670     setOperationAction(ISD::FNEG, VT, Expand);
671     setOperationAction(ISD::FSUB, VT, Expand);
672     setOperationAction(ISD::MUL , VT, Expand);
673     setOperationAction(ISD::FMUL, VT, Expand);
674     setOperationAction(ISD::SDIV, VT, Expand);
675     setOperationAction(ISD::UDIV, VT, Expand);
676     setOperationAction(ISD::FDIV, VT, Expand);
677     setOperationAction(ISD::SREM, VT, Expand);
678     setOperationAction(ISD::UREM, VT, Expand);
679     setOperationAction(ISD::LOAD, VT, Expand);
680     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
681     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
682     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
683     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
684     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
685     setOperationAction(ISD::FABS, VT, Expand);
686     setOperationAction(ISD::FSIN, VT, Expand);
687     setOperationAction(ISD::FSINCOS, VT, Expand);
688     setOperationAction(ISD::FCOS, VT, Expand);
689     setOperationAction(ISD::FSINCOS, VT, Expand);
690     setOperationAction(ISD::FREM, VT, Expand);
691     setOperationAction(ISD::FMA,  VT, Expand);
692     setOperationAction(ISD::FPOWI, VT, Expand);
693     setOperationAction(ISD::FSQRT, VT, Expand);
694     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
695     setOperationAction(ISD::FFLOOR, VT, Expand);
696     setOperationAction(ISD::FCEIL, VT, Expand);
697     setOperationAction(ISD::FTRUNC, VT, Expand);
698     setOperationAction(ISD::FRINT, VT, Expand);
699     setOperationAction(ISD::FNEARBYINT, VT, Expand);
700     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
701     setOperationAction(ISD::MULHS, VT, Expand);
702     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
703     setOperationAction(ISD::MULHU, VT, Expand);
704     setOperationAction(ISD::SDIVREM, VT, Expand);
705     setOperationAction(ISD::UDIVREM, VT, Expand);
706     setOperationAction(ISD::FPOW, VT, Expand);
707     setOperationAction(ISD::CTPOP, VT, Expand);
708     setOperationAction(ISD::CTTZ, VT, Expand);
709     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
710     setOperationAction(ISD::CTLZ, VT, Expand);
711     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
712     setOperationAction(ISD::SHL, VT, Expand);
713     setOperationAction(ISD::SRA, VT, Expand);
714     setOperationAction(ISD::SRL, VT, Expand);
715     setOperationAction(ISD::ROTL, VT, Expand);
716     setOperationAction(ISD::ROTR, VT, Expand);
717     setOperationAction(ISD::BSWAP, VT, Expand);
718     setOperationAction(ISD::SETCC, VT, Expand);
719     setOperationAction(ISD::FLOG, VT, Expand);
720     setOperationAction(ISD::FLOG2, VT, Expand);
721     setOperationAction(ISD::FLOG10, VT, Expand);
722     setOperationAction(ISD::FEXP, VT, Expand);
723     setOperationAction(ISD::FEXP2, VT, Expand);
724     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
725     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
726     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
727     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
728     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
729     setOperationAction(ISD::TRUNCATE, VT, Expand);
730     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
731     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
732     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
733     setOperationAction(ISD::VSELECT, VT, Expand);
734     setOperationAction(ISD::SELECT_CC, VT, Expand);
735     for (MVT InnerVT : MVT::vector_valuetypes()) {
736       setTruncStoreAction(InnerVT, VT, Expand);
737
738       setLoadExtAction(ISD::SEXTLOAD, InnerVT, VT, Expand);
739       setLoadExtAction(ISD::ZEXTLOAD, InnerVT, VT, Expand);
740
741       // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like
742       // types, we have to deal with them whether we ask for Expansion or not.
743       // Setting Expand causes its own optimisation problems though, so leave
744       // them legal.
745       if (VT.getVectorElementType() == MVT::i1)
746         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
747
748       // EXTLOAD for MVT::f16 vectors is not legal because f16 vectors are
749       // split/scalarized right now.
750       if (VT.getVectorElementType() == MVT::f16)
751         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
752     }
753   }
754
755   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
756   // with -msoft-float, disable use of MMX as well.
757   if (!Subtarget->useSoftFloat() && Subtarget->hasMMX()) {
758     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
759     // No operations on x86mmx supported, everything uses intrinsics.
760   }
761
762   // MMX-sized vectors (other than x86mmx) are expected to be expanded
763   // into smaller operations.
764   for (MVT MMXTy : {MVT::v8i8, MVT::v4i16, MVT::v2i32, MVT::v1i64}) {
765     setOperationAction(ISD::MULHS,              MMXTy,      Expand);
766     setOperationAction(ISD::AND,                MMXTy,      Expand);
767     setOperationAction(ISD::OR,                 MMXTy,      Expand);
768     setOperationAction(ISD::XOR,                MMXTy,      Expand);
769     setOperationAction(ISD::SCALAR_TO_VECTOR,   MMXTy,      Expand);
770     setOperationAction(ISD::SELECT,             MMXTy,      Expand);
771     setOperationAction(ISD::BITCAST,            MMXTy,      Expand);
772   }
773   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
774
775   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE1()) {
776     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
777
778     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
779     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
780     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
781     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
782     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
783     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
784     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
785     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
786     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
787     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
788     setOperationAction(ISD::VSELECT,            MVT::v4f32, Custom);
789     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
790     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
791     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Custom);
792   }
793
794   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE2()) {
795     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
796
797     // FIXME: Unfortunately, -soft-float and -no-implicit-float mean XMM
798     // registers cannot be used even for integer operations.
799     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
800     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
801     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
802     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
803
804     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
805     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
806     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
807     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
808     setOperationAction(ISD::MUL,                MVT::v16i8, Custom);
809     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
810     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
811     setOperationAction(ISD::UMUL_LOHI,          MVT::v4i32, Custom);
812     setOperationAction(ISD::SMUL_LOHI,          MVT::v4i32, Custom);
813     setOperationAction(ISD::MULHU,              MVT::v8i16, Legal);
814     setOperationAction(ISD::MULHS,              MVT::v8i16, Legal);
815     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
816     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
817     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
818     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
819     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
820     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
821     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
822     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
823     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
824     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
825     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
826     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
827
828     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
829     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
830     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
831     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
832
833     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
834     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
835     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
836     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
837     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
838
839     setOperationAction(ISD::CTPOP,              MVT::v16i8, Custom);
840     setOperationAction(ISD::CTPOP,              MVT::v8i16, Custom);
841     setOperationAction(ISD::CTPOP,              MVT::v4i32, Custom);
842     setOperationAction(ISD::CTPOP,              MVT::v2i64, Custom);
843
844     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
845     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
846       MVT VT = (MVT::SimpleValueType)i;
847       // Do not attempt to custom lower non-power-of-2 vectors
848       if (!isPowerOf2_32(VT.getVectorNumElements()))
849         continue;
850       // Do not attempt to custom lower non-128-bit vectors
851       if (!VT.is128BitVector())
852         continue;
853       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
854       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
855       setOperationAction(ISD::VSELECT,            VT, Custom);
856       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
857     }
858
859     // We support custom legalizing of sext and anyext loads for specific
860     // memory vector types which we can load as a scalar (or sequence of
861     // scalars) and extend in-register to a legal 128-bit vector type. For sext
862     // loads these must work with a single scalar load.
863     for (MVT VT : MVT::integer_vector_valuetypes()) {
864       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i8, Custom);
865       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i16, Custom);
866       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v8i8, Custom);
867       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i8, Custom);
868       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i16, Custom);
869       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i32, Custom);
870       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i8, Custom);
871       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i16, Custom);
872       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v8i8, Custom);
873     }
874
875     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
876     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
877     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
878     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
879     setOperationAction(ISD::VSELECT,            MVT::v2f64, Custom);
880     setOperationAction(ISD::VSELECT,            MVT::v2i64, Custom);
881     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
882     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
883
884     if (Subtarget->is64Bit()) {
885       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
886       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
887     }
888
889     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
890     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
891       MVT VT = (MVT::SimpleValueType)i;
892
893       // Do not attempt to promote non-128-bit vectors
894       if (!VT.is128BitVector())
895         continue;
896
897       setOperationAction(ISD::AND,    VT, Promote);
898       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
899       setOperationAction(ISD::OR,     VT, Promote);
900       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
901       setOperationAction(ISD::XOR,    VT, Promote);
902       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
903       setOperationAction(ISD::LOAD,   VT, Promote);
904       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
905       setOperationAction(ISD::SELECT, VT, Promote);
906       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
907     }
908
909     // Custom lower v2i64 and v2f64 selects.
910     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
911     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
912     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
913     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
914
915     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
916     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
917
918     setOperationAction(ISD::SINT_TO_FP,         MVT::v2i32, Custom);
919
920     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
921     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
922     // As there is no 64-bit GPR available, we need build a special custom
923     // sequence to convert from v2i32 to v2f32.
924     if (!Subtarget->is64Bit())
925       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
926
927     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
928     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
929
930     for (MVT VT : MVT::fp_vector_valuetypes())
931       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2f32, Legal);
932
933     setOperationAction(ISD::BITCAST,            MVT::v2i32, Custom);
934     setOperationAction(ISD::BITCAST,            MVT::v4i16, Custom);
935     setOperationAction(ISD::BITCAST,            MVT::v8i8,  Custom);
936   }
937
938   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE41()) {
939     for (MVT RoundedTy : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
940       setOperationAction(ISD::FFLOOR,           RoundedTy,  Legal);
941       setOperationAction(ISD::FCEIL,            RoundedTy,  Legal);
942       setOperationAction(ISD::FTRUNC,           RoundedTy,  Legal);
943       setOperationAction(ISD::FRINT,            RoundedTy,  Legal);
944       setOperationAction(ISD::FNEARBYINT,       RoundedTy,  Legal);
945     }
946
947     // FIXME: Do we need to handle scalar-to-vector here?
948     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
949
950     // We directly match byte blends in the backend as they match the VSELECT
951     // condition form.
952     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
953
954     // SSE41 brings specific instructions for doing vector sign extend even in
955     // cases where we don't have SRA.
956     for (MVT VT : MVT::integer_vector_valuetypes()) {
957       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i8, Custom);
958       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i16, Custom);
959       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i32, Custom);
960     }
961
962     // SSE41 also has vector sign/zero extending loads, PMOV[SZ]X
963     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i16, MVT::v8i8,  Legal);
964     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i8,  Legal);
965     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i8,  Legal);
966     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i16, Legal);
967     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i16, Legal);
968     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i32, Legal);
969
970     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i16, MVT::v8i8,  Legal);
971     setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i8,  Legal);
972     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i8,  Legal);
973     setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i16, Legal);
974     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i16, Legal);
975     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i32, Legal);
976
977     // i8 and i16 vectors are custom because the source register and source
978     // source memory operand types are not the same width.  f32 vectors are
979     // custom since the immediate controlling the insert encodes additional
980     // information.
981     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
982     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
983     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
984     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
985
986     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
987     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
988     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
989     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
990
991     // FIXME: these should be Legal, but that's only for the case where
992     // the index is constant.  For now custom expand to deal with that.
993     if (Subtarget->is64Bit()) {
994       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
995       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
996     }
997   }
998
999   if (Subtarget->hasSSE2()) {
1000     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v2i64, Custom);
1001     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v4i32, Custom);
1002     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v8i16, Custom);
1003
1004     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1005     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1006
1007     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1008     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1009
1010     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1011     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1012
1013     // In the customized shift lowering, the legal cases in AVX2 will be
1014     // recognized.
1015     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1016     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1017
1018     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1019     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1020
1021     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1022   }
1023
1024   if (!Subtarget->useSoftFloat() && Subtarget->hasFp256()) {
1025     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1026     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1027     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1028     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1029     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1030     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1031
1032     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1033     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1034     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1035
1036     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1037     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1038     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1039     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1040     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1041     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1042     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1043     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1044     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1045     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1046     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1047     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1048
1049     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1050     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1051     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1052     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1053     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1054     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1055     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1056     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1057     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1058     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1059     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1060     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1061
1062     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1063     // even though v8i16 is a legal type.
1064     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1065     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1066     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1067
1068     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1069     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1070     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1071
1072     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1073     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1074
1075     for (MVT VT : MVT::fp_vector_valuetypes())
1076       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4f32, Legal);
1077
1078     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1079     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1080
1081     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1082     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1083
1084     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1085     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1086
1087     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1088     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1089     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1090     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1091
1092     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1093     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1094     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1095
1096     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1097     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1098     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1099     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1100     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1101     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1102     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1103     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1104     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1105     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1106     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1107     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1108
1109     setOperationAction(ISD::CTPOP,             MVT::v32i8, Custom);
1110     setOperationAction(ISD::CTPOP,             MVT::v16i16, Custom);
1111     setOperationAction(ISD::CTPOP,             MVT::v8i32, Custom);
1112     setOperationAction(ISD::CTPOP,             MVT::v4i64, Custom);
1113
1114     if (Subtarget->hasFMA() || Subtarget->hasFMA4() || Subtarget->hasAVX512()) {
1115       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1116       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1117       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1118       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1119       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1120       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1121     }
1122
1123     if (Subtarget->hasInt256()) {
1124       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1125       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1126       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1127       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1128
1129       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1130       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1131       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1132       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1133
1134       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1135       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1136       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1137       setOperationAction(ISD::MUL,             MVT::v32i8, Custom);
1138
1139       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1140       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1141       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1142       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1143
1144       // The custom lowering for UINT_TO_FP for v8i32 becomes interesting
1145       // when we have a 256bit-wide blend with immediate.
1146       setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Custom);
1147
1148       // AVX2 also has wider vector sign/zero extending loads, VPMOV[SZ]X
1149       setLoadExtAction(ISD::SEXTLOAD, MVT::v16i16, MVT::v16i8, Legal);
1150       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i32,  MVT::v8i8,  Legal);
1151       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i8,  Legal);
1152       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i32,  MVT::v8i16, Legal);
1153       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i16, Legal);
1154       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i32, Legal);
1155
1156       setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i16, MVT::v16i8, Legal);
1157       setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i32,  MVT::v8i8,  Legal);
1158       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i8,  Legal);
1159       setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i32,  MVT::v8i16, Legal);
1160       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i16, Legal);
1161       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i32, Legal);
1162     } else {
1163       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1164       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1165       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1166       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1167
1168       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1169       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1170       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1171       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1172
1173       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1174       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1175       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1176       setOperationAction(ISD::MUL,             MVT::v32i8, Custom);
1177     }
1178
1179     // In the customized shift lowering, the legal cases in AVX2 will be
1180     // recognized.
1181     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1182     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1183
1184     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1185     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1186
1187     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1188
1189     // Custom lower several nodes for 256-bit types.
1190     for (MVT VT : MVT::vector_valuetypes()) {
1191       if (VT.getScalarSizeInBits() >= 32) {
1192         setOperationAction(ISD::MLOAD,  VT, Legal);
1193         setOperationAction(ISD::MSTORE, VT, Legal);
1194       }
1195       // Extract subvector is special because the value type
1196       // (result) is 128-bit but the source is 256-bit wide.
1197       if (VT.is128BitVector()) {
1198         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1199       }
1200       // Do not attempt to custom lower other non-256-bit vectors
1201       if (!VT.is256BitVector())
1202         continue;
1203
1204       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1205       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1206       setOperationAction(ISD::VSELECT,            VT, Custom);
1207       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1208       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1209       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1210       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1211       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1212     }
1213
1214     if (Subtarget->hasInt256())
1215       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1216
1217
1218     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1219     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1220       MVT VT = (MVT::SimpleValueType)i;
1221
1222       // Do not attempt to promote non-256-bit vectors
1223       if (!VT.is256BitVector())
1224         continue;
1225
1226       setOperationAction(ISD::AND,    VT, Promote);
1227       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1228       setOperationAction(ISD::OR,     VT, Promote);
1229       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1230       setOperationAction(ISD::XOR,    VT, Promote);
1231       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1232       setOperationAction(ISD::LOAD,   VT, Promote);
1233       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1234       setOperationAction(ISD::SELECT, VT, Promote);
1235       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1236     }
1237   }
1238
1239   if (!Subtarget->useSoftFloat() && Subtarget->hasAVX512()) {
1240     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1241     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1242     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1243     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1244
1245     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1246     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1247     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1248
1249     for (MVT VT : MVT::fp_vector_valuetypes())
1250       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v8f32, Legal);
1251
1252     setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i32, MVT::v16i8, Legal);
1253     setLoadExtAction(ISD::SEXTLOAD, MVT::v16i32, MVT::v16i8, Legal);
1254     setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i32, MVT::v16i16, Legal);
1255     setLoadExtAction(ISD::SEXTLOAD, MVT::v16i32, MVT::v16i16, Legal);
1256     setLoadExtAction(ISD::ZEXTLOAD, MVT::v32i16, MVT::v32i8, Legal);
1257     setLoadExtAction(ISD::SEXTLOAD, MVT::v32i16, MVT::v32i8, Legal);
1258     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i8,  Legal);
1259     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i8,  Legal);
1260     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i16,  Legal);
1261     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i16,  Legal);
1262     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i32,  Legal);
1263     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i32,  Legal);
1264
1265     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1266     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1267     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1268     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1269     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1270     setOperationAction(ISD::SUB,                MVT::i1,    Custom);
1271     setOperationAction(ISD::ADD,                MVT::i1,    Custom);
1272     setOperationAction(ISD::MUL,                MVT::i1,    Custom);
1273     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1274     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1275     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1276     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1277     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1278
1279     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1280     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1281     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1282     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1283     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1284     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1285
1286     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1287     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1288     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1289     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1290     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1291     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1292     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1293     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1294
1295     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1296     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1297     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1298     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1299     if (Subtarget->is64Bit()) {
1300       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1301       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1302       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1303       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1304     }
1305     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1306     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1307     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1308     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1309     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1310     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i1,   Custom);
1311     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i1,  Custom);
1312     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i8,  Promote);
1313     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i16, Promote);
1314     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1315     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1316     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1317     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i8, Custom);
1318     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i16, Custom);
1319     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1320     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1321
1322     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1323     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1324     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1325     if (Subtarget->hasDQI()) {
1326       setOperationAction(ISD::TRUNCATE,           MVT::v2i1, Custom);
1327       setOperationAction(ISD::TRUNCATE,           MVT::v4i1, Custom);
1328     }
1329     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1330     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1331     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1332     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1333     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1334     setOperationAction(ISD::ANY_EXTEND,         MVT::v16i32, Custom);
1335     setOperationAction(ISD::ANY_EXTEND,         MVT::v8i64, Custom);
1336     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1337     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1338     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1339     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1340     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1341     if (Subtarget->hasDQI()) {
1342       setOperationAction(ISD::SIGN_EXTEND,        MVT::v4i32, Custom);
1343       setOperationAction(ISD::SIGN_EXTEND,        MVT::v2i64, Custom);
1344     }
1345     setOperationAction(ISD::FFLOOR,             MVT::v16f32, Legal);
1346     setOperationAction(ISD::FFLOOR,             MVT::v8f64, Legal);
1347     setOperationAction(ISD::FCEIL,              MVT::v16f32, Legal);
1348     setOperationAction(ISD::FCEIL,              MVT::v8f64, Legal);
1349     setOperationAction(ISD::FTRUNC,             MVT::v16f32, Legal);
1350     setOperationAction(ISD::FTRUNC,             MVT::v8f64, Legal);
1351     setOperationAction(ISD::FRINT,              MVT::v16f32, Legal);
1352     setOperationAction(ISD::FRINT,              MVT::v8f64, Legal);
1353     setOperationAction(ISD::FNEARBYINT,         MVT::v16f32, Legal);
1354     setOperationAction(ISD::FNEARBYINT,         MVT::v8f64, Legal);
1355
1356     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1357     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1358     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1359     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1360     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1361
1362     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1363     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1364
1365     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1366
1367     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1368     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1369     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1370     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1371     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1372     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1373     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1374     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1375     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1376     setOperationAction(ISD::SELECT,             MVT::v16i1, Custom);
1377     setOperationAction(ISD::SELECT,             MVT::v8i1,  Custom);
1378
1379     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1380     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1381
1382     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1383     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1384
1385     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1386
1387     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1388     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1389
1390     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1391     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1392
1393     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1394     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1395
1396     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1397     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1398     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1399     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1400     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1401     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1402
1403     if (Subtarget->hasCDI()) {
1404       setOperationAction(ISD::CTLZ,             MVT::v8i64, Legal);
1405       setOperationAction(ISD::CTLZ,             MVT::v16i32, Legal);
1406     }
1407     if (Subtarget->hasDQI()) {
1408       setOperationAction(ISD::MUL,             MVT::v2i64, Legal);
1409       setOperationAction(ISD::MUL,             MVT::v4i64, Legal);
1410       setOperationAction(ISD::MUL,             MVT::v8i64, Legal);
1411     }
1412     // Custom lower several nodes.
1413     for (MVT VT : MVT::vector_valuetypes()) {
1414       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1415       if (EltSize == 1) {
1416         setOperationAction(ISD::AND, VT, Legal);
1417         setOperationAction(ISD::OR,  VT, Legal);
1418         setOperationAction(ISD::XOR,  VT, Legal);
1419       }
1420       if (EltSize >= 32 && VT.getSizeInBits() <= 512) {
1421         setOperationAction(ISD::MGATHER,  VT, Custom);
1422         setOperationAction(ISD::MSCATTER, VT, Custom);
1423       }
1424       // Extract subvector is special because the value type
1425       // (result) is 256/128-bit but the source is 512-bit wide.
1426       if (VT.is128BitVector() || VT.is256BitVector()) {
1427         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1428       }
1429       if (VT.getVectorElementType() == MVT::i1)
1430         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1431
1432       // Do not attempt to custom lower other non-512-bit vectors
1433       if (!VT.is512BitVector())
1434         continue;
1435
1436       if (EltSize >= 32) {
1437         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1438         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1439         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1440         setOperationAction(ISD::VSELECT,             VT, Legal);
1441         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1442         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1443         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1444         setOperationAction(ISD::MLOAD,               VT, Legal);
1445         setOperationAction(ISD::MSTORE,              VT, Legal);
1446       }
1447     }
1448     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1449       MVT VT = (MVT::SimpleValueType)i;
1450
1451       // Do not attempt to promote non-512-bit vectors.
1452       if (!VT.is512BitVector())
1453         continue;
1454
1455       setOperationAction(ISD::SELECT, VT, Promote);
1456       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1457     }
1458   }// has  AVX-512
1459
1460   if (!Subtarget->useSoftFloat() && Subtarget->hasBWI()) {
1461     addRegisterClass(MVT::v32i16, &X86::VR512RegClass);
1462     addRegisterClass(MVT::v64i8,  &X86::VR512RegClass);
1463
1464     addRegisterClass(MVT::v32i1,  &X86::VK32RegClass);
1465     addRegisterClass(MVT::v64i1,  &X86::VK64RegClass);
1466
1467     setOperationAction(ISD::LOAD,               MVT::v32i16, Legal);
1468     setOperationAction(ISD::LOAD,               MVT::v64i8, Legal);
1469     setOperationAction(ISD::SETCC,              MVT::v32i1, Custom);
1470     setOperationAction(ISD::SETCC,              MVT::v64i1, Custom);
1471     setOperationAction(ISD::ADD,                MVT::v32i16, Legal);
1472     setOperationAction(ISD::ADD,                MVT::v64i8, Legal);
1473     setOperationAction(ISD::SUB,                MVT::v32i16, Legal);
1474     setOperationAction(ISD::SUB,                MVT::v64i8, Legal);
1475     setOperationAction(ISD::MUL,                MVT::v32i16, Legal);
1476     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v32i1, Custom);
1477     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v64i1, Custom);
1478     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v32i1, Custom);
1479     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v64i1, Custom);
1480     setOperationAction(ISD::SELECT,             MVT::v32i1, Custom);
1481     setOperationAction(ISD::SELECT,             MVT::v64i1, Custom);
1482     setOperationAction(ISD::SIGN_EXTEND,        MVT::v32i8, Custom);
1483     setOperationAction(ISD::ZERO_EXTEND,        MVT::v32i8, Custom);
1484     setOperationAction(ISD::SIGN_EXTEND,        MVT::v32i16, Custom);
1485     setOperationAction(ISD::ZERO_EXTEND,        MVT::v32i16, Custom);
1486     setOperationAction(ISD::SIGN_EXTEND,        MVT::v64i8, Custom);
1487     setOperationAction(ISD::ZERO_EXTEND,        MVT::v64i8, Custom);
1488     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v32i1, Custom);
1489     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v64i1, Custom);
1490     setOperationAction(ISD::VSELECT,            MVT::v32i16, Legal);
1491     setOperationAction(ISD::VSELECT,            MVT::v64i8, Legal);
1492     setOperationAction(ISD::TRUNCATE,           MVT::v32i1, Custom);
1493     setOperationAction(ISD::TRUNCATE,           MVT::v64i1, Custom);
1494
1495     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1496       const MVT VT = (MVT::SimpleValueType)i;
1497
1498       const unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1499
1500       // Do not attempt to promote non-512-bit vectors.
1501       if (!VT.is512BitVector())
1502         continue;
1503
1504       if (EltSize < 32) {
1505         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1506         setOperationAction(ISD::VSELECT,             VT, Legal);
1507       }
1508     }
1509   }
1510
1511   if (!Subtarget->useSoftFloat() && Subtarget->hasVLX()) {
1512     addRegisterClass(MVT::v4i1,   &X86::VK4RegClass);
1513     addRegisterClass(MVT::v2i1,   &X86::VK2RegClass);
1514
1515     setOperationAction(ISD::SETCC,              MVT::v4i1, Custom);
1516     setOperationAction(ISD::SETCC,              MVT::v2i1, Custom);
1517     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4i1, Custom);
1518     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1, Custom);
1519     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v8i1, Custom);
1520     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v4i1, Custom);
1521     setOperationAction(ISD::SELECT,             MVT::v4i1, Custom);
1522     setOperationAction(ISD::SELECT,             MVT::v2i1, Custom);
1523     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4i1, Custom);
1524     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i1, Custom);
1525
1526     setOperationAction(ISD::AND,                MVT::v8i32, Legal);
1527     setOperationAction(ISD::OR,                 MVT::v8i32, Legal);
1528     setOperationAction(ISD::XOR,                MVT::v8i32, Legal);
1529     setOperationAction(ISD::AND,                MVT::v4i32, Legal);
1530     setOperationAction(ISD::OR,                 MVT::v4i32, Legal);
1531     setOperationAction(ISD::XOR,                MVT::v4i32, Legal);
1532     setOperationAction(ISD::SRA,                MVT::v2i64, Custom);
1533     setOperationAction(ISD::SRA,                MVT::v4i64, Custom);
1534   }
1535
1536   // We want to custom lower some of our intrinsics.
1537   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1538   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1539   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1540   if (!Subtarget->is64Bit())
1541     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1542
1543   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1544   // handle type legalization for these operations here.
1545   //
1546   // FIXME: We really should do custom legalization for addition and
1547   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1548   // than generic legalization for 64-bit multiplication-with-overflow, though.
1549   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1550     // Add/Sub/Mul with overflow operations are custom lowered.
1551     MVT VT = IntVTs[i];
1552     setOperationAction(ISD::SADDO, VT, Custom);
1553     setOperationAction(ISD::UADDO, VT, Custom);
1554     setOperationAction(ISD::SSUBO, VT, Custom);
1555     setOperationAction(ISD::USUBO, VT, Custom);
1556     setOperationAction(ISD::SMULO, VT, Custom);
1557     setOperationAction(ISD::UMULO, VT, Custom);
1558   }
1559
1560
1561   if (!Subtarget->is64Bit()) {
1562     // These libcalls are not available in 32-bit.
1563     setLibcallName(RTLIB::SHL_I128, nullptr);
1564     setLibcallName(RTLIB::SRL_I128, nullptr);
1565     setLibcallName(RTLIB::SRA_I128, nullptr);
1566   }
1567
1568   // Combine sin / cos into one node or libcall if possible.
1569   if (Subtarget->hasSinCos()) {
1570     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1571     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1572     if (Subtarget->isTargetDarwin()) {
1573       // For MacOSX, we don't want the normal expansion of a libcall to sincos.
1574       // We want to issue a libcall to __sincos_stret to avoid memory traffic.
1575       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1576       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1577     }
1578   }
1579
1580   if (Subtarget->isTargetWin64()) {
1581     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1582     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1583     setOperationAction(ISD::SREM, MVT::i128, Custom);
1584     setOperationAction(ISD::UREM, MVT::i128, Custom);
1585     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1586     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1587   }
1588
1589   // We have target-specific dag combine patterns for the following nodes:
1590   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1591   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1592   setTargetDAGCombine(ISD::BITCAST);
1593   setTargetDAGCombine(ISD::VSELECT);
1594   setTargetDAGCombine(ISD::SELECT);
1595   setTargetDAGCombine(ISD::SHL);
1596   setTargetDAGCombine(ISD::SRA);
1597   setTargetDAGCombine(ISD::SRL);
1598   setTargetDAGCombine(ISD::OR);
1599   setTargetDAGCombine(ISD::AND);
1600   setTargetDAGCombine(ISD::ADD);
1601   setTargetDAGCombine(ISD::FADD);
1602   setTargetDAGCombine(ISD::FSUB);
1603   setTargetDAGCombine(ISD::FMA);
1604   setTargetDAGCombine(ISD::SUB);
1605   setTargetDAGCombine(ISD::LOAD);
1606   setTargetDAGCombine(ISD::MLOAD);
1607   setTargetDAGCombine(ISD::STORE);
1608   setTargetDAGCombine(ISD::MSTORE);
1609   setTargetDAGCombine(ISD::ZERO_EXTEND);
1610   setTargetDAGCombine(ISD::ANY_EXTEND);
1611   setTargetDAGCombine(ISD::SIGN_EXTEND);
1612   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1613   setTargetDAGCombine(ISD::SINT_TO_FP);
1614   setTargetDAGCombine(ISD::SETCC);
1615   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
1616   setTargetDAGCombine(ISD::BUILD_VECTOR);
1617   setTargetDAGCombine(ISD::MUL);
1618   setTargetDAGCombine(ISD::XOR);
1619
1620   computeRegisterProperties(Subtarget->getRegisterInfo());
1621
1622   // On Darwin, -Os means optimize for size without hurting performance,
1623   // do not reduce the limit.
1624   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1625   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1626   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1627   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1628   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1629   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1630   setPrefLoopAlignment(4); // 2^4 bytes.
1631
1632   // Predictable cmov don't hurt on atom because it's in-order.
1633   PredictableSelectIsExpensive = !Subtarget->isAtom();
1634   EnableExtLdPromotion = true;
1635   setPrefFunctionAlignment(4); // 2^4 bytes.
1636
1637   verifyIntrinsicTables();
1638 }
1639
1640 // This has so far only been implemented for 64-bit MachO.
1641 bool X86TargetLowering::useLoadStackGuardNode() const {
1642   return Subtarget->isTargetMachO() && Subtarget->is64Bit();
1643 }
1644
1645 TargetLoweringBase::LegalizeTypeAction
1646 X86TargetLowering::getPreferredVectorAction(EVT VT) const {
1647   if (ExperimentalVectorWideningLegalization &&
1648       VT.getVectorNumElements() != 1 &&
1649       VT.getVectorElementType().getSimpleVT() != MVT::i1)
1650     return TypeWidenVector;
1651
1652   return TargetLoweringBase::getPreferredVectorAction(VT);
1653 }
1654
1655 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1656   if (!VT.isVector())
1657     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1658
1659   const unsigned NumElts = VT.getVectorNumElements();
1660   const EVT EltVT = VT.getVectorElementType();
1661   if (VT.is512BitVector()) {
1662     if (Subtarget->hasAVX512())
1663       if (EltVT == MVT::i32 || EltVT == MVT::i64 ||
1664           EltVT == MVT::f32 || EltVT == MVT::f64)
1665         switch(NumElts) {
1666         case  8: return MVT::v8i1;
1667         case 16: return MVT::v16i1;
1668       }
1669     if (Subtarget->hasBWI())
1670       if (EltVT == MVT::i8 || EltVT == MVT::i16)
1671         switch(NumElts) {
1672         case 32: return MVT::v32i1;
1673         case 64: return MVT::v64i1;
1674       }
1675   }
1676
1677   if (VT.is256BitVector() || VT.is128BitVector()) {
1678     if (Subtarget->hasVLX())
1679       if (EltVT == MVT::i32 || EltVT == MVT::i64 ||
1680           EltVT == MVT::f32 || EltVT == MVT::f64)
1681         switch(NumElts) {
1682         case 2: return MVT::v2i1;
1683         case 4: return MVT::v4i1;
1684         case 8: return MVT::v8i1;
1685       }
1686     if (Subtarget->hasBWI() && Subtarget->hasVLX())
1687       if (EltVT == MVT::i8 || EltVT == MVT::i16)
1688         switch(NumElts) {
1689         case  8: return MVT::v8i1;
1690         case 16: return MVT::v16i1;
1691         case 32: return MVT::v32i1;
1692       }
1693   }
1694
1695   return VT.changeVectorElementTypeToInteger();
1696 }
1697
1698 /// Helper for getByValTypeAlignment to determine
1699 /// the desired ByVal argument alignment.
1700 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1701   if (MaxAlign == 16)
1702     return;
1703   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1704     if (VTy->getBitWidth() == 128)
1705       MaxAlign = 16;
1706   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1707     unsigned EltAlign = 0;
1708     getMaxByValAlign(ATy->getElementType(), EltAlign);
1709     if (EltAlign > MaxAlign)
1710       MaxAlign = EltAlign;
1711   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1712     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1713       unsigned EltAlign = 0;
1714       getMaxByValAlign(STy->getElementType(i), EltAlign);
1715       if (EltAlign > MaxAlign)
1716         MaxAlign = EltAlign;
1717       if (MaxAlign == 16)
1718         break;
1719     }
1720   }
1721 }
1722
1723 /// Return the desired alignment for ByVal aggregate
1724 /// function arguments in the caller parameter area. For X86, aggregates
1725 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1726 /// are at 4-byte boundaries.
1727 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1728   if (Subtarget->is64Bit()) {
1729     // Max of 8 and alignment of type.
1730     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1731     if (TyAlign > 8)
1732       return TyAlign;
1733     return 8;
1734   }
1735
1736   unsigned Align = 4;
1737   if (Subtarget->hasSSE1())
1738     getMaxByValAlign(Ty, Align);
1739   return Align;
1740 }
1741
1742 /// Returns the target specific optimal type for load
1743 /// and store operations as a result of memset, memcpy, and memmove
1744 /// lowering. If DstAlign is zero that means it's safe to destination
1745 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1746 /// means there isn't a need to check it against alignment requirement,
1747 /// probably because the source does not need to be loaded. If 'IsMemset' is
1748 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1749 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1750 /// source is constant so it does not need to be loaded.
1751 /// It returns EVT::Other if the type should be determined using generic
1752 /// target-independent logic.
1753 EVT
1754 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1755                                        unsigned DstAlign, unsigned SrcAlign,
1756                                        bool IsMemset, bool ZeroMemset,
1757                                        bool MemcpyStrSrc,
1758                                        MachineFunction &MF) const {
1759   const Function *F = MF.getFunction();
1760   if ((!IsMemset || ZeroMemset) &&
1761       !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
1762     if (Size >= 16 &&
1763         (Subtarget->isUnalignedMemAccessFast() ||
1764          ((DstAlign == 0 || DstAlign >= 16) &&
1765           (SrcAlign == 0 || SrcAlign >= 16)))) {
1766       if (Size >= 32) {
1767         if (Subtarget->hasInt256())
1768           return MVT::v8i32;
1769         if (Subtarget->hasFp256())
1770           return MVT::v8f32;
1771       }
1772       if (Subtarget->hasSSE2())
1773         return MVT::v4i32;
1774       if (Subtarget->hasSSE1())
1775         return MVT::v4f32;
1776     } else if (!MemcpyStrSrc && Size >= 8 &&
1777                !Subtarget->is64Bit() &&
1778                Subtarget->hasSSE2()) {
1779       // Do not use f64 to lower memcpy if source is string constant. It's
1780       // better to use i32 to avoid the loads.
1781       return MVT::f64;
1782     }
1783   }
1784   if (Subtarget->is64Bit() && Size >= 8)
1785     return MVT::i64;
1786   return MVT::i32;
1787 }
1788
1789 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1790   if (VT == MVT::f32)
1791     return X86ScalarSSEf32;
1792   else if (VT == MVT::f64)
1793     return X86ScalarSSEf64;
1794   return true;
1795 }
1796
1797 bool
1798 X86TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
1799                                                   unsigned,
1800                                                   unsigned,
1801                                                   bool *Fast) const {
1802   if (Fast)
1803     *Fast = Subtarget->isUnalignedMemAccessFast();
1804   return true;
1805 }
1806
1807 /// Return the entry encoding for a jump table in the
1808 /// current function.  The returned value is a member of the
1809 /// MachineJumpTableInfo::JTEntryKind enum.
1810 unsigned X86TargetLowering::getJumpTableEncoding() const {
1811   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1812   // symbol.
1813   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1814       Subtarget->isPICStyleGOT())
1815     return MachineJumpTableInfo::EK_Custom32;
1816
1817   // Otherwise, use the normal jump table encoding heuristics.
1818   return TargetLowering::getJumpTableEncoding();
1819 }
1820
1821 bool X86TargetLowering::useSoftFloat() const {
1822   return Subtarget->useSoftFloat();
1823 }
1824
1825 const MCExpr *
1826 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1827                                              const MachineBasicBlock *MBB,
1828                                              unsigned uid,MCContext &Ctx) const{
1829   assert(MBB->getParent()->getTarget().getRelocationModel() == Reloc::PIC_ &&
1830          Subtarget->isPICStyleGOT());
1831   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1832   // entries.
1833   return MCSymbolRefExpr::create(MBB->getSymbol(),
1834                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1835 }
1836
1837 /// Returns relocation base for the given PIC jumptable.
1838 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1839                                                     SelectionDAG &DAG) const {
1840   if (!Subtarget->is64Bit())
1841     // This doesn't have SDLoc associated with it, but is not really the
1842     // same as a Register.
1843     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1844   return Table;
1845 }
1846
1847 /// This returns the relocation base for the given PIC jumptable,
1848 /// the same as getPICJumpTableRelocBase, but as an MCExpr.
1849 const MCExpr *X86TargetLowering::
1850 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1851                              MCContext &Ctx) const {
1852   // X86-64 uses RIP relative addressing based on the jump table label.
1853   if (Subtarget->isPICStyleRIPRel())
1854     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1855
1856   // Otherwise, the reference is relative to the PIC base.
1857   return MCSymbolRefExpr::create(MF->getPICBaseSymbol(), Ctx);
1858 }
1859
1860 std::pair<const TargetRegisterClass *, uint8_t>
1861 X86TargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
1862                                            MVT VT) const {
1863   const TargetRegisterClass *RRC = nullptr;
1864   uint8_t Cost = 1;
1865   switch (VT.SimpleTy) {
1866   default:
1867     return TargetLowering::findRepresentativeClass(TRI, VT);
1868   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1869     RRC = Subtarget->is64Bit() ? &X86::GR64RegClass : &X86::GR32RegClass;
1870     break;
1871   case MVT::x86mmx:
1872     RRC = &X86::VR64RegClass;
1873     break;
1874   case MVT::f32: case MVT::f64:
1875   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1876   case MVT::v4f32: case MVT::v2f64:
1877   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1878   case MVT::v4f64:
1879     RRC = &X86::VR128RegClass;
1880     break;
1881   }
1882   return std::make_pair(RRC, Cost);
1883 }
1884
1885 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1886                                                unsigned &Offset) const {
1887   if (!Subtarget->isTargetLinux())
1888     return false;
1889
1890   if (Subtarget->is64Bit()) {
1891     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1892     Offset = 0x28;
1893     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1894       AddressSpace = 256;
1895     else
1896       AddressSpace = 257;
1897   } else {
1898     // %gs:0x14 on i386
1899     Offset = 0x14;
1900     AddressSpace = 256;
1901   }
1902   return true;
1903 }
1904
1905 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1906                                             unsigned DestAS) const {
1907   assert(SrcAS != DestAS && "Expected different address spaces!");
1908
1909   return SrcAS < 256 && DestAS < 256;
1910 }
1911
1912 //===----------------------------------------------------------------------===//
1913 //               Return Value Calling Convention Implementation
1914 //===----------------------------------------------------------------------===//
1915
1916 #include "X86GenCallingConv.inc"
1917
1918 bool
1919 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1920                                   MachineFunction &MF, bool isVarArg,
1921                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1922                         LLVMContext &Context) const {
1923   SmallVector<CCValAssign, 16> RVLocs;
1924   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
1925   return CCInfo.CheckReturn(Outs, RetCC_X86);
1926 }
1927
1928 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1929   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
1930   return ScratchRegs;
1931 }
1932
1933 SDValue
1934 X86TargetLowering::LowerReturn(SDValue Chain,
1935                                CallingConv::ID CallConv, bool isVarArg,
1936                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1937                                const SmallVectorImpl<SDValue> &OutVals,
1938                                SDLoc dl, SelectionDAG &DAG) const {
1939   MachineFunction &MF = DAG.getMachineFunction();
1940   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1941
1942   SmallVector<CCValAssign, 16> RVLocs;
1943   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, *DAG.getContext());
1944   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1945
1946   SDValue Flag;
1947   SmallVector<SDValue, 6> RetOps;
1948   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1949   // Operand #1 = Bytes To Pop
1950   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(), dl,
1951                    MVT::i16));
1952
1953   // Copy the result values into the output registers.
1954   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1955     CCValAssign &VA = RVLocs[i];
1956     assert(VA.isRegLoc() && "Can only return in registers!");
1957     SDValue ValToCopy = OutVals[i];
1958     EVT ValVT = ValToCopy.getValueType();
1959
1960     // Promote values to the appropriate types.
1961     if (VA.getLocInfo() == CCValAssign::SExt)
1962       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1963     else if (VA.getLocInfo() == CCValAssign::ZExt)
1964       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1965     else if (VA.getLocInfo() == CCValAssign::AExt) {
1966       if (ValVT.isVector() && ValVT.getScalarType() == MVT::i1)
1967         ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1968       else
1969         ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1970     }
1971     else if (VA.getLocInfo() == CCValAssign::BCvt)
1972       ValToCopy = DAG.getBitcast(VA.getLocVT(), ValToCopy);
1973
1974     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1975            "Unexpected FP-extend for return value.");
1976
1977     // If this is x86-64, and we disabled SSE, we can't return FP values,
1978     // or SSE or MMX vectors.
1979     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1980          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1981           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1982       report_fatal_error("SSE register return with SSE disabled");
1983     }
1984     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1985     // llvm-gcc has never done it right and no one has noticed, so this
1986     // should be OK for now.
1987     if (ValVT == MVT::f64 &&
1988         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1989       report_fatal_error("SSE2 register return with SSE2 disabled");
1990
1991     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1992     // the RET instruction and handled by the FP Stackifier.
1993     if (VA.getLocReg() == X86::FP0 ||
1994         VA.getLocReg() == X86::FP1) {
1995       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1996       // change the value to the FP stack register class.
1997       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1998         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1999       RetOps.push_back(ValToCopy);
2000       // Don't emit a copytoreg.
2001       continue;
2002     }
2003
2004     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
2005     // which is returned in RAX / RDX.
2006     if (Subtarget->is64Bit()) {
2007       if (ValVT == MVT::x86mmx) {
2008         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
2009           ValToCopy = DAG.getBitcast(MVT::i64, ValToCopy);
2010           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
2011                                   ValToCopy);
2012           // If we don't have SSE2 available, convert to v4f32 so the generated
2013           // register is legal.
2014           if (!Subtarget->hasSSE2())
2015             ValToCopy = DAG.getBitcast(MVT::v4f32, ValToCopy);
2016         }
2017       }
2018     }
2019
2020     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
2021     Flag = Chain.getValue(1);
2022     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2023   }
2024
2025   // All x86 ABIs require that for returning structs by value we copy
2026   // the sret argument into %rax/%eax (depending on ABI) for the return.
2027   // We saved the argument into a virtual register in the entry block,
2028   // so now we copy the value out and into %rax/%eax.
2029   //
2030   // Checking Function.hasStructRetAttr() here is insufficient because the IR
2031   // may not have an explicit sret argument. If FuncInfo.CanLowerReturn is
2032   // false, then an sret argument may be implicitly inserted in the SelDAG. In
2033   // either case FuncInfo->setSRetReturnReg() will have been called.
2034   if (unsigned SRetReg = FuncInfo->getSRetReturnReg()) {
2035     SDValue Val = DAG.getCopyFromReg(Chain, dl, SRetReg, getPointerTy());
2036
2037     unsigned RetValReg
2038         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
2039           X86::RAX : X86::EAX;
2040     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
2041     Flag = Chain.getValue(1);
2042
2043     // RAX/EAX now acts like a return value.
2044     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
2045   }
2046
2047   RetOps[0] = Chain;  // Update chain.
2048
2049   // Add the flag if we have it.
2050   if (Flag.getNode())
2051     RetOps.push_back(Flag);
2052
2053   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
2054 }
2055
2056 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2057   if (N->getNumValues() != 1)
2058     return false;
2059   if (!N->hasNUsesOfValue(1, 0))
2060     return false;
2061
2062   SDValue TCChain = Chain;
2063   SDNode *Copy = *N->use_begin();
2064   if (Copy->getOpcode() == ISD::CopyToReg) {
2065     // If the copy has a glue operand, we conservatively assume it isn't safe to
2066     // perform a tail call.
2067     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2068       return false;
2069     TCChain = Copy->getOperand(0);
2070   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
2071     return false;
2072
2073   bool HasRet = false;
2074   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2075        UI != UE; ++UI) {
2076     if (UI->getOpcode() != X86ISD::RET_FLAG)
2077       return false;
2078     // If we are returning more than one value, we can definitely
2079     // not make a tail call see PR19530
2080     if (UI->getNumOperands() > 4)
2081       return false;
2082     if (UI->getNumOperands() == 4 &&
2083         UI->getOperand(UI->getNumOperands()-1).getValueType() != MVT::Glue)
2084       return false;
2085     HasRet = true;
2086   }
2087
2088   if (!HasRet)
2089     return false;
2090
2091   Chain = TCChain;
2092   return true;
2093 }
2094
2095 EVT
2096 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
2097                                             ISD::NodeType ExtendKind) const {
2098   MVT ReturnMVT;
2099   // TODO: Is this also valid on 32-bit?
2100   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
2101     ReturnMVT = MVT::i8;
2102   else
2103     ReturnMVT = MVT::i32;
2104
2105   EVT MinVT = getRegisterType(Context, ReturnMVT);
2106   return VT.bitsLT(MinVT) ? MinVT : VT;
2107 }
2108
2109 /// Lower the result values of a call into the
2110 /// appropriate copies out of appropriate physical registers.
2111 ///
2112 SDValue
2113 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2114                                    CallingConv::ID CallConv, bool isVarArg,
2115                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2116                                    SDLoc dl, SelectionDAG &DAG,
2117                                    SmallVectorImpl<SDValue> &InVals) const {
2118
2119   // Assign locations to each value returned by this call.
2120   SmallVector<CCValAssign, 16> RVLocs;
2121   bool Is64Bit = Subtarget->is64Bit();
2122   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2123                  *DAG.getContext());
2124   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2125
2126   // Copy all of the result registers out of their specified physreg.
2127   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2128     CCValAssign &VA = RVLocs[i];
2129     EVT CopyVT = VA.getLocVT();
2130
2131     // If this is x86-64, and we disabled SSE, we can't return FP values
2132     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2133         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2134       report_fatal_error("SSE register return with SSE disabled");
2135     }
2136
2137     // If we prefer to use the value in xmm registers, copy it out as f80 and
2138     // use a truncate to move it from fp stack reg to xmm reg.
2139     bool RoundAfterCopy = false;
2140     if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
2141         isScalarFPTypeInSSEReg(VA.getValVT())) {
2142       CopyVT = MVT::f80;
2143       RoundAfterCopy = (CopyVT != VA.getLocVT());
2144     }
2145
2146     Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2147                                CopyVT, InFlag).getValue(1);
2148     SDValue Val = Chain.getValue(0);
2149
2150     if (RoundAfterCopy)
2151       Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2152                         // This truncation won't change the value.
2153                         DAG.getIntPtrConstant(1, dl));
2154
2155     if (VA.isExtInLoc() && VA.getValVT().getScalarType() == MVT::i1)
2156       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
2157
2158     InFlag = Chain.getValue(2);
2159     InVals.push_back(Val);
2160   }
2161
2162   return Chain;
2163 }
2164
2165 //===----------------------------------------------------------------------===//
2166 //                C & StdCall & Fast Calling Convention implementation
2167 //===----------------------------------------------------------------------===//
2168 //  StdCall calling convention seems to be standard for many Windows' API
2169 //  routines and around. It differs from C calling convention just a little:
2170 //  callee should clean up the stack, not caller. Symbols should be also
2171 //  decorated in some fancy way :) It doesn't support any vector arguments.
2172 //  For info on fast calling convention see Fast Calling Convention (tail call)
2173 //  implementation LowerX86_32FastCCCallTo.
2174
2175 /// CallIsStructReturn - Determines whether a call uses struct return
2176 /// semantics.
2177 enum StructReturnType {
2178   NotStructReturn,
2179   RegStructReturn,
2180   StackStructReturn
2181 };
2182 static StructReturnType
2183 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2184   if (Outs.empty())
2185     return NotStructReturn;
2186
2187   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2188   if (!Flags.isSRet())
2189     return NotStructReturn;
2190   if (Flags.isInReg())
2191     return RegStructReturn;
2192   return StackStructReturn;
2193 }
2194
2195 /// Determines whether a function uses struct return semantics.
2196 static StructReturnType
2197 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2198   if (Ins.empty())
2199     return NotStructReturn;
2200
2201   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2202   if (!Flags.isSRet())
2203     return NotStructReturn;
2204   if (Flags.isInReg())
2205     return RegStructReturn;
2206   return StackStructReturn;
2207 }
2208
2209 /// Make a copy of an aggregate at address specified by "Src" to address
2210 /// "Dst" with size and alignment information specified by the specific
2211 /// parameter attribute. The copy will be passed as a byval function parameter.
2212 static SDValue
2213 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2214                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2215                           SDLoc dl) {
2216   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
2217
2218   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2219                        /*isVolatile*/false, /*AlwaysInline=*/true,
2220                        /*isTailCall*/false,
2221                        MachinePointerInfo(), MachinePointerInfo());
2222 }
2223
2224 /// Return true if the calling convention is one that
2225 /// supports tail call optimization.
2226 static bool IsTailCallConvention(CallingConv::ID CC) {
2227   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2228           CC == CallingConv::HiPE);
2229 }
2230
2231 /// \brief Return true if the calling convention is a C calling convention.
2232 static bool IsCCallConvention(CallingConv::ID CC) {
2233   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2234           CC == CallingConv::X86_64_SysV);
2235 }
2236
2237 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2238   auto Attr =
2239       CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
2240   if (!CI->isTailCall() || Attr.getValueAsString() == "true")
2241     return false;
2242
2243   CallSite CS(CI);
2244   CallingConv::ID CalleeCC = CS.getCallingConv();
2245   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2246     return false;
2247
2248   return true;
2249 }
2250
2251 /// Return true if the function is being made into
2252 /// a tailcall target by changing its ABI.
2253 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2254                                    bool GuaranteedTailCallOpt) {
2255   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2256 }
2257
2258 SDValue
2259 X86TargetLowering::LowerMemArgument(SDValue Chain,
2260                                     CallingConv::ID CallConv,
2261                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2262                                     SDLoc dl, SelectionDAG &DAG,
2263                                     const CCValAssign &VA,
2264                                     MachineFrameInfo *MFI,
2265                                     unsigned i) const {
2266   // Create the nodes corresponding to a load from this parameter slot.
2267   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2268   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(
2269       CallConv, DAG.getTarget().Options.GuaranteedTailCallOpt);
2270   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2271   EVT ValVT;
2272
2273   // If value is passed by pointer we have address passed instead of the value
2274   // itself.
2275   bool ExtendedInMem = VA.isExtInLoc() &&
2276     VA.getValVT().getScalarType() == MVT::i1;
2277
2278   if (VA.getLocInfo() == CCValAssign::Indirect || ExtendedInMem)
2279     ValVT = VA.getLocVT();
2280   else
2281     ValVT = VA.getValVT();
2282
2283   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2284   // changed with more analysis.
2285   // In case of tail call optimization mark all arguments mutable. Since they
2286   // could be overwritten by lowering of arguments in case of a tail call.
2287   if (Flags.isByVal()) {
2288     unsigned Bytes = Flags.getByValSize();
2289     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2290     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2291     return DAG.getFrameIndex(FI, getPointerTy());
2292   } else {
2293     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2294                                     VA.getLocMemOffset(), isImmutable);
2295     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2296     SDValue Val =  DAG.getLoad(ValVT, dl, Chain, FIN,
2297                                MachinePointerInfo::getFixedStack(FI),
2298                                false, false, false, 0);
2299     return ExtendedInMem ?
2300       DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val) : Val;
2301   }
2302 }
2303
2304 // FIXME: Get this from tablegen.
2305 static ArrayRef<MCPhysReg> get64BitArgumentGPRs(CallingConv::ID CallConv,
2306                                                 const X86Subtarget *Subtarget) {
2307   assert(Subtarget->is64Bit());
2308
2309   if (Subtarget->isCallingConvWin64(CallConv)) {
2310     static const MCPhysReg GPR64ArgRegsWin64[] = {
2311       X86::RCX, X86::RDX, X86::R8,  X86::R9
2312     };
2313     return makeArrayRef(std::begin(GPR64ArgRegsWin64), std::end(GPR64ArgRegsWin64));
2314   }
2315
2316   static const MCPhysReg GPR64ArgRegs64Bit[] = {
2317     X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2318   };
2319   return makeArrayRef(std::begin(GPR64ArgRegs64Bit), std::end(GPR64ArgRegs64Bit));
2320 }
2321
2322 // FIXME: Get this from tablegen.
2323 static ArrayRef<MCPhysReg> get64BitArgumentXMMs(MachineFunction &MF,
2324                                                 CallingConv::ID CallConv,
2325                                                 const X86Subtarget *Subtarget) {
2326   assert(Subtarget->is64Bit());
2327   if (Subtarget->isCallingConvWin64(CallConv)) {
2328     // The XMM registers which might contain var arg parameters are shadowed
2329     // in their paired GPR.  So we only need to save the GPR to their home
2330     // slots.
2331     // TODO: __vectorcall will change this.
2332     return None;
2333   }
2334
2335   const Function *Fn = MF.getFunction();
2336   bool NoImplicitFloatOps = Fn->hasFnAttribute(Attribute::NoImplicitFloat);
2337   bool isSoftFloat = Subtarget->useSoftFloat();
2338   assert(!(isSoftFloat && NoImplicitFloatOps) &&
2339          "SSE register cannot be used when SSE is disabled!");
2340   if (isSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
2341     // Kernel mode asks for SSE to be disabled, so there are no XMM argument
2342     // registers.
2343     return None;
2344
2345   static const MCPhysReg XMMArgRegs64Bit[] = {
2346     X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2347     X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2348   };
2349   return makeArrayRef(std::begin(XMMArgRegs64Bit), std::end(XMMArgRegs64Bit));
2350 }
2351
2352 SDValue
2353 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2354                                         CallingConv::ID CallConv,
2355                                         bool isVarArg,
2356                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2357                                         SDLoc dl,
2358                                         SelectionDAG &DAG,
2359                                         SmallVectorImpl<SDValue> &InVals)
2360                                           const {
2361   MachineFunction &MF = DAG.getMachineFunction();
2362   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2363   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
2364
2365   const Function* Fn = MF.getFunction();
2366   if (Fn->hasExternalLinkage() &&
2367       Subtarget->isTargetCygMing() &&
2368       Fn->getName() == "main")
2369     FuncInfo->setForceFramePointer(true);
2370
2371   MachineFrameInfo *MFI = MF.getFrameInfo();
2372   bool Is64Bit = Subtarget->is64Bit();
2373   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2374
2375   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2376          "Var args not supported with calling convention fastcc, ghc or hipe");
2377
2378   // Assign locations to all of the incoming arguments.
2379   SmallVector<CCValAssign, 16> ArgLocs;
2380   CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext());
2381
2382   // Allocate shadow area for Win64
2383   if (IsWin64)
2384     CCInfo.AllocateStack(32, 8);
2385
2386   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2387
2388   unsigned LastVal = ~0U;
2389   SDValue ArgValue;
2390   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2391     CCValAssign &VA = ArgLocs[i];
2392     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2393     // places.
2394     assert(VA.getValNo() != LastVal &&
2395            "Don't support value assigned to multiple locs yet");
2396     (void)LastVal;
2397     LastVal = VA.getValNo();
2398
2399     if (VA.isRegLoc()) {
2400       EVT RegVT = VA.getLocVT();
2401       const TargetRegisterClass *RC;
2402       if (RegVT == MVT::i32)
2403         RC = &X86::GR32RegClass;
2404       else if (Is64Bit && RegVT == MVT::i64)
2405         RC = &X86::GR64RegClass;
2406       else if (RegVT == MVT::f32)
2407         RC = &X86::FR32RegClass;
2408       else if (RegVT == MVT::f64)
2409         RC = &X86::FR64RegClass;
2410       else if (RegVT.is512BitVector())
2411         RC = &X86::VR512RegClass;
2412       else if (RegVT.is256BitVector())
2413         RC = &X86::VR256RegClass;
2414       else if (RegVT.is128BitVector())
2415         RC = &X86::VR128RegClass;
2416       else if (RegVT == MVT::x86mmx)
2417         RC = &X86::VR64RegClass;
2418       else if (RegVT == MVT::i1)
2419         RC = &X86::VK1RegClass;
2420       else if (RegVT == MVT::v8i1)
2421         RC = &X86::VK8RegClass;
2422       else if (RegVT == MVT::v16i1)
2423         RC = &X86::VK16RegClass;
2424       else if (RegVT == MVT::v32i1)
2425         RC = &X86::VK32RegClass;
2426       else if (RegVT == MVT::v64i1)
2427         RC = &X86::VK64RegClass;
2428       else
2429         llvm_unreachable("Unknown argument type!");
2430
2431       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2432       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2433
2434       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2435       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2436       // right size.
2437       if (VA.getLocInfo() == CCValAssign::SExt)
2438         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2439                                DAG.getValueType(VA.getValVT()));
2440       else if (VA.getLocInfo() == CCValAssign::ZExt)
2441         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2442                                DAG.getValueType(VA.getValVT()));
2443       else if (VA.getLocInfo() == CCValAssign::BCvt)
2444         ArgValue = DAG.getBitcast(VA.getValVT(), ArgValue);
2445
2446       if (VA.isExtInLoc()) {
2447         // Handle MMX values passed in XMM regs.
2448         if (RegVT.isVector() && VA.getValVT().getScalarType() != MVT::i1)
2449           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2450         else
2451           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2452       }
2453     } else {
2454       assert(VA.isMemLoc());
2455       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2456     }
2457
2458     // If value is passed via pointer - do a load.
2459     if (VA.getLocInfo() == CCValAssign::Indirect)
2460       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2461                              MachinePointerInfo(), false, false, false, 0);
2462
2463     InVals.push_back(ArgValue);
2464   }
2465
2466   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2467     // All x86 ABIs require that for returning structs by value we copy the
2468     // sret argument into %rax/%eax (depending on ABI) for the return. Save
2469     // the argument into a virtual register so that we can access it from the
2470     // return points.
2471     if (Ins[i].Flags.isSRet()) {
2472       unsigned Reg = FuncInfo->getSRetReturnReg();
2473       if (!Reg) {
2474         MVT PtrTy = getPointerTy();
2475         Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2476         FuncInfo->setSRetReturnReg(Reg);
2477       }
2478       SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]);
2479       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2480       break;
2481     }
2482   }
2483
2484   unsigned StackSize = CCInfo.getNextStackOffset();
2485   // Align stack specially for tail calls.
2486   if (FuncIsMadeTailCallSafe(CallConv,
2487                              MF.getTarget().Options.GuaranteedTailCallOpt))
2488     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2489
2490   // If the function takes variable number of arguments, make a frame index for
2491   // the start of the first vararg value... for expansion of llvm.va_start. We
2492   // can skip this if there are no va_start calls.
2493   if (MFI->hasVAStart() &&
2494       (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2495                    CallConv != CallingConv::X86_ThisCall))) {
2496     FuncInfo->setVarArgsFrameIndex(
2497         MFI->CreateFixedObject(1, StackSize, true));
2498   }
2499
2500   MachineModuleInfo &MMI = MF.getMMI();
2501   const Function *WinEHParent = nullptr;
2502   if (IsWin64 && MMI.hasWinEHFuncInfo(Fn))
2503     WinEHParent = MMI.getWinEHParent(Fn);
2504   bool IsWinEHOutlined = WinEHParent && WinEHParent != Fn;
2505   bool IsWinEHParent = WinEHParent && WinEHParent == Fn;
2506
2507   // Figure out if XMM registers are in use.
2508   assert(!(Subtarget->useSoftFloat() &&
2509            Fn->hasFnAttribute(Attribute::NoImplicitFloat)) &&
2510          "SSE register cannot be used when SSE is disabled!");
2511
2512   // 64-bit calling conventions support varargs and register parameters, so we
2513   // have to do extra work to spill them in the prologue.
2514   if (Is64Bit && isVarArg && MFI->hasVAStart()) {
2515     // Find the first unallocated argument registers.
2516     ArrayRef<MCPhysReg> ArgGPRs = get64BitArgumentGPRs(CallConv, Subtarget);
2517     ArrayRef<MCPhysReg> ArgXMMs = get64BitArgumentXMMs(MF, CallConv, Subtarget);
2518     unsigned NumIntRegs = CCInfo.getFirstUnallocated(ArgGPRs);
2519     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(ArgXMMs);
2520     assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2521            "SSE register cannot be used when SSE is disabled!");
2522
2523     // Gather all the live in physical registers.
2524     SmallVector<SDValue, 6> LiveGPRs;
2525     SmallVector<SDValue, 8> LiveXMMRegs;
2526     SDValue ALVal;
2527     for (MCPhysReg Reg : ArgGPRs.slice(NumIntRegs)) {
2528       unsigned GPR = MF.addLiveIn(Reg, &X86::GR64RegClass);
2529       LiveGPRs.push_back(
2530           DAG.getCopyFromReg(Chain, dl, GPR, MVT::i64));
2531     }
2532     if (!ArgXMMs.empty()) {
2533       unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2534       ALVal = DAG.getCopyFromReg(Chain, dl, AL, MVT::i8);
2535       for (MCPhysReg Reg : ArgXMMs.slice(NumXMMRegs)) {
2536         unsigned XMMReg = MF.addLiveIn(Reg, &X86::VR128RegClass);
2537         LiveXMMRegs.push_back(
2538             DAG.getCopyFromReg(Chain, dl, XMMReg, MVT::v4f32));
2539       }
2540     }
2541
2542     if (IsWin64) {
2543       // Get to the caller-allocated home save location.  Add 8 to account
2544       // for the return address.
2545       int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2546       FuncInfo->setRegSaveFrameIndex(
2547           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2548       // Fixup to set vararg frame on shadow area (4 x i64).
2549       if (NumIntRegs < 4)
2550         FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2551     } else {
2552       // For X86-64, if there are vararg parameters that are passed via
2553       // registers, then we must store them to their spots on the stack so
2554       // they may be loaded by deferencing the result of va_next.
2555       FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2556       FuncInfo->setVarArgsFPOffset(ArgGPRs.size() * 8 + NumXMMRegs * 16);
2557       FuncInfo->setRegSaveFrameIndex(MFI->CreateStackObject(
2558           ArgGPRs.size() * 8 + ArgXMMs.size() * 16, 16, false));
2559     }
2560
2561     // Store the integer parameter registers.
2562     SmallVector<SDValue, 8> MemOps;
2563     SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2564                                       getPointerTy());
2565     unsigned Offset = FuncInfo->getVarArgsGPOffset();
2566     for (SDValue Val : LiveGPRs) {
2567       SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2568                                 DAG.getIntPtrConstant(Offset, dl));
2569       SDValue Store =
2570         DAG.getStore(Val.getValue(1), dl, Val, FIN,
2571                      MachinePointerInfo::getFixedStack(
2572                        FuncInfo->getRegSaveFrameIndex(), Offset),
2573                      false, false, 0);
2574       MemOps.push_back(Store);
2575       Offset += 8;
2576     }
2577
2578     if (!ArgXMMs.empty() && NumXMMRegs != ArgXMMs.size()) {
2579       // Now store the XMM (fp + vector) parameter registers.
2580       SmallVector<SDValue, 12> SaveXMMOps;
2581       SaveXMMOps.push_back(Chain);
2582       SaveXMMOps.push_back(ALVal);
2583       SaveXMMOps.push_back(DAG.getIntPtrConstant(
2584                              FuncInfo->getRegSaveFrameIndex(), dl));
2585       SaveXMMOps.push_back(DAG.getIntPtrConstant(
2586                              FuncInfo->getVarArgsFPOffset(), dl));
2587       SaveXMMOps.insert(SaveXMMOps.end(), LiveXMMRegs.begin(),
2588                         LiveXMMRegs.end());
2589       MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2590                                    MVT::Other, SaveXMMOps));
2591     }
2592
2593     if (!MemOps.empty())
2594       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2595   } else if (IsWinEHOutlined) {
2596     // Get to the caller-allocated home save location.  Add 8 to account
2597     // for the return address.
2598     int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2599     FuncInfo->setRegSaveFrameIndex(MFI->CreateFixedObject(
2600         /*Size=*/1, /*SPOffset=*/HomeOffset + 8, /*Immutable=*/false));
2601
2602     MMI.getWinEHFuncInfo(Fn)
2603         .CatchHandlerParentFrameObjIdx[const_cast<Function *>(Fn)] =
2604         FuncInfo->getRegSaveFrameIndex();
2605
2606     // Store the second integer parameter (rdx) into rsp+16 relative to the
2607     // stack pointer at the entry of the function.
2608     SDValue RSFIN =
2609         DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), getPointerTy());
2610     unsigned GPR = MF.addLiveIn(X86::RDX, &X86::GR64RegClass);
2611     SDValue Val = DAG.getCopyFromReg(Chain, dl, GPR, MVT::i64);
2612     Chain = DAG.getStore(
2613         Val.getValue(1), dl, Val, RSFIN,
2614         MachinePointerInfo::getFixedStack(FuncInfo->getRegSaveFrameIndex()),
2615         /*isVolatile=*/true, /*isNonTemporal=*/false, /*Alignment=*/0);
2616   }
2617
2618   if (isVarArg && MFI->hasMustTailInVarArgFunc()) {
2619     // Find the largest legal vector type.
2620     MVT VecVT = MVT::Other;
2621     // FIXME: Only some x86_32 calling conventions support AVX512.
2622     if (Subtarget->hasAVX512() &&
2623         (Is64Bit || (CallConv == CallingConv::X86_VectorCall ||
2624                      CallConv == CallingConv::Intel_OCL_BI)))
2625       VecVT = MVT::v16f32;
2626     else if (Subtarget->hasAVX())
2627       VecVT = MVT::v8f32;
2628     else if (Subtarget->hasSSE2())
2629       VecVT = MVT::v4f32;
2630
2631     // We forward some GPRs and some vector types.
2632     SmallVector<MVT, 2> RegParmTypes;
2633     MVT IntVT = Is64Bit ? MVT::i64 : MVT::i32;
2634     RegParmTypes.push_back(IntVT);
2635     if (VecVT != MVT::Other)
2636       RegParmTypes.push_back(VecVT);
2637
2638     // Compute the set of forwarded registers. The rest are scratch.
2639     SmallVectorImpl<ForwardedRegister> &Forwards =
2640         FuncInfo->getForwardedMustTailRegParms();
2641     CCInfo.analyzeMustTailForwardedRegisters(Forwards, RegParmTypes, CC_X86);
2642
2643     // Conservatively forward AL on x86_64, since it might be used for varargs.
2644     if (Is64Bit && !CCInfo.isAllocated(X86::AL)) {
2645       unsigned ALVReg = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2646       Forwards.push_back(ForwardedRegister(ALVReg, X86::AL, MVT::i8));
2647     }
2648
2649     // Copy all forwards from physical to virtual registers.
2650     for (ForwardedRegister &F : Forwards) {
2651       // FIXME: Can we use a less constrained schedule?
2652       SDValue RegVal = DAG.getCopyFromReg(Chain, dl, F.VReg, F.VT);
2653       F.VReg = MF.getRegInfo().createVirtualRegister(getRegClassFor(F.VT));
2654       Chain = DAG.getCopyToReg(Chain, dl, F.VReg, RegVal);
2655     }
2656   }
2657
2658   // Some CCs need callee pop.
2659   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2660                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2661     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2662   } else {
2663     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2664     // If this is an sret function, the return should pop the hidden pointer.
2665     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2666         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2667         argsAreStructReturn(Ins) == StackStructReturn)
2668       FuncInfo->setBytesToPopOnReturn(4);
2669   }
2670
2671   if (!Is64Bit) {
2672     // RegSaveFrameIndex is X86-64 only.
2673     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2674     if (CallConv == CallingConv::X86_FastCall ||
2675         CallConv == CallingConv::X86_ThisCall)
2676       // fastcc functions can't have varargs.
2677       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2678   }
2679
2680   FuncInfo->setArgumentStackSize(StackSize);
2681
2682   if (IsWinEHParent) {
2683     int UnwindHelpFI = MFI->CreateStackObject(8, 8, /*isSS=*/false);
2684     SDValue StackSlot = DAG.getFrameIndex(UnwindHelpFI, MVT::i64);
2685     MMI.getWinEHFuncInfo(MF.getFunction()).UnwindHelpFrameIdx = UnwindHelpFI;
2686     SDValue Neg2 = DAG.getConstant(-2, dl, MVT::i64);
2687     Chain = DAG.getStore(Chain, dl, Neg2, StackSlot,
2688                          MachinePointerInfo::getFixedStack(UnwindHelpFI),
2689                          /*isVolatile=*/true,
2690                          /*isNonTemporal=*/false, /*Alignment=*/0);
2691   }
2692
2693   return Chain;
2694 }
2695
2696 SDValue
2697 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2698                                     SDValue StackPtr, SDValue Arg,
2699                                     SDLoc dl, SelectionDAG &DAG,
2700                                     const CCValAssign &VA,
2701                                     ISD::ArgFlagsTy Flags) const {
2702   unsigned LocMemOffset = VA.getLocMemOffset();
2703   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
2704   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2705   if (Flags.isByVal())
2706     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2707
2708   return DAG.getStore(Chain, dl, Arg, PtrOff,
2709                       MachinePointerInfo::getStack(LocMemOffset),
2710                       false, false, 0);
2711 }
2712
2713 /// Emit a load of return address if tail call
2714 /// optimization is performed and it is required.
2715 SDValue
2716 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2717                                            SDValue &OutRetAddr, SDValue Chain,
2718                                            bool IsTailCall, bool Is64Bit,
2719                                            int FPDiff, SDLoc dl) const {
2720   // Adjust the Return address stack slot.
2721   EVT VT = getPointerTy();
2722   OutRetAddr = getReturnAddressFrameIndex(DAG);
2723
2724   // Load the "old" Return address.
2725   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2726                            false, false, false, 0);
2727   return SDValue(OutRetAddr.getNode(), 1);
2728 }
2729
2730 /// Emit a store of the return address if tail call
2731 /// optimization is performed and it is required (FPDiff!=0).
2732 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2733                                         SDValue Chain, SDValue RetAddrFrIdx,
2734                                         EVT PtrVT, unsigned SlotSize,
2735                                         int FPDiff, SDLoc dl) {
2736   // Store the return address to the appropriate stack slot.
2737   if (!FPDiff) return Chain;
2738   // Calculate the new stack slot for the return address.
2739   int NewReturnAddrFI =
2740     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2741                                          false);
2742   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2743   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2744                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2745                        false, false, 0);
2746   return Chain;
2747 }
2748
2749 SDValue
2750 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2751                              SmallVectorImpl<SDValue> &InVals) const {
2752   SelectionDAG &DAG                     = CLI.DAG;
2753   SDLoc &dl                             = CLI.DL;
2754   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2755   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2756   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2757   SDValue Chain                         = CLI.Chain;
2758   SDValue Callee                        = CLI.Callee;
2759   CallingConv::ID CallConv              = CLI.CallConv;
2760   bool &isTailCall                      = CLI.IsTailCall;
2761   bool isVarArg                         = CLI.IsVarArg;
2762
2763   MachineFunction &MF = DAG.getMachineFunction();
2764   bool Is64Bit        = Subtarget->is64Bit();
2765   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2766   StructReturnType SR = callIsStructReturn(Outs);
2767   bool IsSibcall      = false;
2768   X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2769   auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
2770
2771   if (Attr.getValueAsString() == "true")
2772     isTailCall = false;
2773
2774   if (Subtarget->isPICStyleGOT() &&
2775       !MF.getTarget().Options.GuaranteedTailCallOpt) {
2776     // If we are using a GOT, disable tail calls to external symbols with
2777     // default visibility. Tail calling such a symbol requires using a GOT
2778     // relocation, which forces early binding of the symbol. This breaks code
2779     // that require lazy function symbol resolution. Using musttail or
2780     // GuaranteedTailCallOpt will override this.
2781     GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2782     if (!G || (!G->getGlobal()->hasLocalLinkage() &&
2783                G->getGlobal()->hasDefaultVisibility()))
2784       isTailCall = false;
2785   }
2786
2787   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
2788   if (IsMustTail) {
2789     // Force this to be a tail call.  The verifier rules are enough to ensure
2790     // that we can lower this successfully without moving the return address
2791     // around.
2792     isTailCall = true;
2793   } else if (isTailCall) {
2794     // Check if it's really possible to do a tail call.
2795     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2796                     isVarArg, SR != NotStructReturn,
2797                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2798                     Outs, OutVals, Ins, DAG);
2799
2800     // Sibcalls are automatically detected tailcalls which do not require
2801     // ABI changes.
2802     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2803       IsSibcall = true;
2804
2805     if (isTailCall)
2806       ++NumTailCalls;
2807   }
2808
2809   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2810          "Var args not supported with calling convention fastcc, ghc or hipe");
2811
2812   // Analyze operands of the call, assigning locations to each operand.
2813   SmallVector<CCValAssign, 16> ArgLocs;
2814   CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext());
2815
2816   // Allocate shadow area for Win64
2817   if (IsWin64)
2818     CCInfo.AllocateStack(32, 8);
2819
2820   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2821
2822   // Get a count of how many bytes are to be pushed on the stack.
2823   unsigned NumBytes = CCInfo.getNextStackOffset();
2824   if (IsSibcall)
2825     // This is a sibcall. The memory operands are available in caller's
2826     // own caller's stack.
2827     NumBytes = 0;
2828   else if (MF.getTarget().Options.GuaranteedTailCallOpt &&
2829            IsTailCallConvention(CallConv))
2830     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2831
2832   int FPDiff = 0;
2833   if (isTailCall && !IsSibcall && !IsMustTail) {
2834     // Lower arguments at fp - stackoffset + fpdiff.
2835     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2836
2837     FPDiff = NumBytesCallerPushed - NumBytes;
2838
2839     // Set the delta of movement of the returnaddr stackslot.
2840     // But only set if delta is greater than previous delta.
2841     if (FPDiff < X86Info->getTCReturnAddrDelta())
2842       X86Info->setTCReturnAddrDelta(FPDiff);
2843   }
2844
2845   unsigned NumBytesToPush = NumBytes;
2846   unsigned NumBytesToPop = NumBytes;
2847
2848   // If we have an inalloca argument, all stack space has already been allocated
2849   // for us and be right at the top of the stack.  We don't support multiple
2850   // arguments passed in memory when using inalloca.
2851   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2852     NumBytesToPush = 0;
2853     if (!ArgLocs.back().isMemLoc())
2854       report_fatal_error("cannot use inalloca attribute on a register "
2855                          "parameter");
2856     if (ArgLocs.back().getLocMemOffset() != 0)
2857       report_fatal_error("any parameter with the inalloca attribute must be "
2858                          "the only memory argument");
2859   }
2860
2861   if (!IsSibcall)
2862     Chain = DAG.getCALLSEQ_START(
2863         Chain, DAG.getIntPtrConstant(NumBytesToPush, dl, true), dl);
2864
2865   SDValue RetAddrFrIdx;
2866   // Load return address for tail calls.
2867   if (isTailCall && FPDiff)
2868     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2869                                     Is64Bit, FPDiff, dl);
2870
2871   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2872   SmallVector<SDValue, 8> MemOpChains;
2873   SDValue StackPtr;
2874
2875   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2876   // of tail call optimization arguments are handle later.
2877   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
2878   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2879     // Skip inalloca arguments, they have already been written.
2880     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2881     if (Flags.isInAlloca())
2882       continue;
2883
2884     CCValAssign &VA = ArgLocs[i];
2885     EVT RegVT = VA.getLocVT();
2886     SDValue Arg = OutVals[i];
2887     bool isByVal = Flags.isByVal();
2888
2889     // Promote the value if needed.
2890     switch (VA.getLocInfo()) {
2891     default: llvm_unreachable("Unknown loc info!");
2892     case CCValAssign::Full: break;
2893     case CCValAssign::SExt:
2894       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2895       break;
2896     case CCValAssign::ZExt:
2897       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2898       break;
2899     case CCValAssign::AExt:
2900       if (Arg.getValueType().isVector() &&
2901           Arg.getValueType().getScalarType() == MVT::i1)
2902         Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2903       else if (RegVT.is128BitVector()) {
2904         // Special case: passing MMX values in XMM registers.
2905         Arg = DAG.getBitcast(MVT::i64, Arg);
2906         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2907         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2908       } else
2909         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2910       break;
2911     case CCValAssign::BCvt:
2912       Arg = DAG.getBitcast(RegVT, Arg);
2913       break;
2914     case CCValAssign::Indirect: {
2915       // Store the argument.
2916       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2917       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2918       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2919                            MachinePointerInfo::getFixedStack(FI),
2920                            false, false, 0);
2921       Arg = SpillSlot;
2922       break;
2923     }
2924     }
2925
2926     if (VA.isRegLoc()) {
2927       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2928       if (isVarArg && IsWin64) {
2929         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2930         // shadow reg if callee is a varargs function.
2931         unsigned ShadowReg = 0;
2932         switch (VA.getLocReg()) {
2933         case X86::XMM0: ShadowReg = X86::RCX; break;
2934         case X86::XMM1: ShadowReg = X86::RDX; break;
2935         case X86::XMM2: ShadowReg = X86::R8; break;
2936         case X86::XMM3: ShadowReg = X86::R9; break;
2937         }
2938         if (ShadowReg)
2939           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2940       }
2941     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2942       assert(VA.isMemLoc());
2943       if (!StackPtr.getNode())
2944         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2945                                       getPointerTy());
2946       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2947                                              dl, DAG, VA, Flags));
2948     }
2949   }
2950
2951   if (!MemOpChains.empty())
2952     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
2953
2954   if (Subtarget->isPICStyleGOT()) {
2955     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2956     // GOT pointer.
2957     if (!isTailCall) {
2958       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2959                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2960     } else {
2961       // If we are tail calling and generating PIC/GOT style code load the
2962       // address of the callee into ECX. The value in ecx is used as target of
2963       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2964       // for tail calls on PIC/GOT architectures. Normally we would just put the
2965       // address of GOT into ebx and then call target@PLT. But for tail calls
2966       // ebx would be restored (since ebx is callee saved) before jumping to the
2967       // target@PLT.
2968
2969       // Note: The actual moving to ECX is done further down.
2970       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2971       if (G && !G->getGlobal()->hasLocalLinkage() &&
2972           G->getGlobal()->hasDefaultVisibility())
2973         Callee = LowerGlobalAddress(Callee, DAG);
2974       else if (isa<ExternalSymbolSDNode>(Callee))
2975         Callee = LowerExternalSymbol(Callee, DAG);
2976     }
2977   }
2978
2979   if (Is64Bit && isVarArg && !IsWin64 && !IsMustTail) {
2980     // From AMD64 ABI document:
2981     // For calls that may call functions that use varargs or stdargs
2982     // (prototype-less calls or calls to functions containing ellipsis (...) in
2983     // the declaration) %al is used as hidden argument to specify the number
2984     // of SSE registers used. The contents of %al do not need to match exactly
2985     // the number of registers, but must be an ubound on the number of SSE
2986     // registers used and is in the range 0 - 8 inclusive.
2987
2988     // Count the number of XMM registers allocated.
2989     static const MCPhysReg XMMArgRegs[] = {
2990       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2991       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2992     };
2993     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs);
2994     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2995            && "SSE registers cannot be used when SSE is disabled");
2996
2997     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2998                                         DAG.getConstant(NumXMMRegs, dl,
2999                                                         MVT::i8)));
3000   }
3001
3002   if (isVarArg && IsMustTail) {
3003     const auto &Forwards = X86Info->getForwardedMustTailRegParms();
3004     for (const auto &F : Forwards) {
3005       SDValue Val = DAG.getCopyFromReg(Chain, dl, F.VReg, F.VT);
3006       RegsToPass.push_back(std::make_pair(unsigned(F.PReg), Val));
3007     }
3008   }
3009
3010   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
3011   // don't need this because the eligibility check rejects calls that require
3012   // shuffling arguments passed in memory.
3013   if (!IsSibcall && isTailCall) {
3014     // Force all the incoming stack arguments to be loaded from the stack
3015     // before any new outgoing arguments are stored to the stack, because the
3016     // outgoing stack slots may alias the incoming argument stack slots, and
3017     // the alias isn't otherwise explicit. This is slightly more conservative
3018     // than necessary, because it means that each store effectively depends
3019     // on every argument instead of just those arguments it would clobber.
3020     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
3021
3022     SmallVector<SDValue, 8> MemOpChains2;
3023     SDValue FIN;
3024     int FI = 0;
3025     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3026       CCValAssign &VA = ArgLocs[i];
3027       if (VA.isRegLoc())
3028         continue;
3029       assert(VA.isMemLoc());
3030       SDValue Arg = OutVals[i];
3031       ISD::ArgFlagsTy Flags = Outs[i].Flags;
3032       // Skip inalloca arguments.  They don't require any work.
3033       if (Flags.isInAlloca())
3034         continue;
3035       // Create frame index.
3036       int32_t Offset = VA.getLocMemOffset()+FPDiff;
3037       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
3038       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3039       FIN = DAG.getFrameIndex(FI, getPointerTy());
3040
3041       if (Flags.isByVal()) {
3042         // Copy relative to framepointer.
3043         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset(), dl);
3044         if (!StackPtr.getNode())
3045           StackPtr = DAG.getCopyFromReg(Chain, dl,
3046                                         RegInfo->getStackRegister(),
3047                                         getPointerTy());
3048         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
3049
3050         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
3051                                                          ArgChain,
3052                                                          Flags, DAG, dl));
3053       } else {
3054         // Store relative to framepointer.
3055         MemOpChains2.push_back(
3056           DAG.getStore(ArgChain, dl, Arg, FIN,
3057                        MachinePointerInfo::getFixedStack(FI),
3058                        false, false, 0));
3059       }
3060     }
3061
3062     if (!MemOpChains2.empty())
3063       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
3064
3065     // Store the return address to the appropriate stack slot.
3066     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
3067                                      getPointerTy(), RegInfo->getSlotSize(),
3068                                      FPDiff, dl);
3069   }
3070
3071   // Build a sequence of copy-to-reg nodes chained together with token chain
3072   // and flag operands which copy the outgoing args into registers.
3073   SDValue InFlag;
3074   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3075     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3076                              RegsToPass[i].second, InFlag);
3077     InFlag = Chain.getValue(1);
3078   }
3079
3080   if (DAG.getTarget().getCodeModel() == CodeModel::Large) {
3081     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
3082     // In the 64-bit large code model, we have to make all calls
3083     // through a register, since the call instruction's 32-bit
3084     // pc-relative offset may not be large enough to hold the whole
3085     // address.
3086   } else if (Callee->getOpcode() == ISD::GlobalAddress) {
3087     // If the callee is a GlobalAddress node (quite common, every direct call
3088     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
3089     // it.
3090     GlobalAddressSDNode* G = cast<GlobalAddressSDNode>(Callee);
3091
3092     // We should use extra load for direct calls to dllimported functions in
3093     // non-JIT mode.
3094     const GlobalValue *GV = G->getGlobal();
3095     if (!GV->hasDLLImportStorageClass()) {
3096       unsigned char OpFlags = 0;
3097       bool ExtraLoad = false;
3098       unsigned WrapperKind = ISD::DELETED_NODE;
3099
3100       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
3101       // external symbols most go through the PLT in PIC mode.  If the symbol
3102       // has hidden or protected visibility, or if it is static or local, then
3103       // we don't need to use the PLT - we can directly call it.
3104       if (Subtarget->isTargetELF() &&
3105           DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
3106           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
3107         OpFlags = X86II::MO_PLT;
3108       } else if (Subtarget->isPICStyleStubAny() &&
3109                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
3110                  (!Subtarget->getTargetTriple().isMacOSX() ||
3111                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
3112         // PC-relative references to external symbols should go through $stub,
3113         // unless we're building with the leopard linker or later, which
3114         // automatically synthesizes these stubs.
3115         OpFlags = X86II::MO_DARWIN_STUB;
3116       } else if (Subtarget->isPICStyleRIPRel() && isa<Function>(GV) &&
3117                  cast<Function>(GV)->hasFnAttribute(Attribute::NonLazyBind)) {
3118         // If the function is marked as non-lazy, generate an indirect call
3119         // which loads from the GOT directly. This avoids runtime overhead
3120         // at the cost of eager binding (and one extra byte of encoding).
3121         OpFlags = X86II::MO_GOTPCREL;
3122         WrapperKind = X86ISD::WrapperRIP;
3123         ExtraLoad = true;
3124       }
3125
3126       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
3127                                           G->getOffset(), OpFlags);
3128
3129       // Add a wrapper if needed.
3130       if (WrapperKind != ISD::DELETED_NODE)
3131         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
3132       // Add extra indirection if needed.
3133       if (ExtraLoad)
3134         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
3135                              MachinePointerInfo::getGOT(),
3136                              false, false, false, 0);
3137     }
3138   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3139     unsigned char OpFlags = 0;
3140
3141     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
3142     // external symbols should go through the PLT.
3143     if (Subtarget->isTargetELF() &&
3144         DAG.getTarget().getRelocationModel() == Reloc::PIC_) {
3145       OpFlags = X86II::MO_PLT;
3146     } else if (Subtarget->isPICStyleStubAny() &&
3147                (!Subtarget->getTargetTriple().isMacOSX() ||
3148                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
3149       // PC-relative references to external symbols should go through $stub,
3150       // unless we're building with the leopard linker or later, which
3151       // automatically synthesizes these stubs.
3152       OpFlags = X86II::MO_DARWIN_STUB;
3153     }
3154
3155     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
3156                                          OpFlags);
3157   } else if (Subtarget->isTarget64BitILP32() &&
3158              Callee->getValueType(0) == MVT::i32) {
3159     // Zero-extend the 32-bit Callee address into a 64-bit according to x32 ABI
3160     Callee = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, Callee);
3161   }
3162
3163   // Returns a chain & a flag for retval copy to use.
3164   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3165   SmallVector<SDValue, 8> Ops;
3166
3167   if (!IsSibcall && isTailCall) {
3168     Chain = DAG.getCALLSEQ_END(Chain,
3169                                DAG.getIntPtrConstant(NumBytesToPop, dl, true),
3170                                DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
3171     InFlag = Chain.getValue(1);
3172   }
3173
3174   Ops.push_back(Chain);
3175   Ops.push_back(Callee);
3176
3177   if (isTailCall)
3178     Ops.push_back(DAG.getConstant(FPDiff, dl, MVT::i32));
3179
3180   // Add argument registers to the end of the list so that they are known live
3181   // into the call.
3182   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3183     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3184                                   RegsToPass[i].second.getValueType()));
3185
3186   // Add a register mask operand representing the call-preserved registers.
3187   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
3188   const uint32_t *Mask = TRI->getCallPreservedMask(MF, CallConv);
3189   assert(Mask && "Missing call preserved mask for calling convention");
3190   Ops.push_back(DAG.getRegisterMask(Mask));
3191
3192   if (InFlag.getNode())
3193     Ops.push_back(InFlag);
3194
3195   if (isTailCall) {
3196     // We used to do:
3197     //// If this is the first return lowered for this function, add the regs
3198     //// to the liveout set for the function.
3199     // This isn't right, although it's probably harmless on x86; liveouts
3200     // should be computed from returns not tail calls.  Consider a void
3201     // function making a tail call to a function returning int.
3202     MF.getFrameInfo()->setHasTailCall();
3203     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
3204   }
3205
3206   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
3207   InFlag = Chain.getValue(1);
3208
3209   // Create the CALLSEQ_END node.
3210   unsigned NumBytesForCalleeToPop;
3211   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
3212                        DAG.getTarget().Options.GuaranteedTailCallOpt))
3213     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
3214   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
3215            !Subtarget->getTargetTriple().isOSMSVCRT() &&
3216            SR == StackStructReturn)
3217     // If this is a call to a struct-return function, the callee
3218     // pops the hidden struct pointer, so we have to push it back.
3219     // This is common for Darwin/X86, Linux & Mingw32 targets.
3220     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
3221     NumBytesForCalleeToPop = 4;
3222   else
3223     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
3224
3225   // Returns a flag for retval copy to use.
3226   if (!IsSibcall) {
3227     Chain = DAG.getCALLSEQ_END(Chain,
3228                                DAG.getIntPtrConstant(NumBytesToPop, dl, true),
3229                                DAG.getIntPtrConstant(NumBytesForCalleeToPop, dl,
3230                                                      true),
3231                                InFlag, dl);
3232     InFlag = Chain.getValue(1);
3233   }
3234
3235   // Handle result values, copying them out of physregs into vregs that we
3236   // return.
3237   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3238                          Ins, dl, DAG, InVals);
3239 }
3240
3241 //===----------------------------------------------------------------------===//
3242 //                Fast Calling Convention (tail call) implementation
3243 //===----------------------------------------------------------------------===//
3244
3245 //  Like std call, callee cleans arguments, convention except that ECX is
3246 //  reserved for storing the tail called function address. Only 2 registers are
3247 //  free for argument passing (inreg). Tail call optimization is performed
3248 //  provided:
3249 //                * tailcallopt is enabled
3250 //                * caller/callee are fastcc
3251 //  On X86_64 architecture with GOT-style position independent code only local
3252 //  (within module) calls are supported at the moment.
3253 //  To keep the stack aligned according to platform abi the function
3254 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3255 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3256 //  If a tail called function callee has more arguments than the caller the
3257 //  caller needs to make sure that there is room to move the RETADDR to. This is
3258 //  achieved by reserving an area the size of the argument delta right after the
3259 //  original RETADDR, but before the saved framepointer or the spilled registers
3260 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3261 //  stack layout:
3262 //    arg1
3263 //    arg2
3264 //    RETADDR
3265 //    [ new RETADDR
3266 //      move area ]
3267 //    (possible EBP)
3268 //    ESI
3269 //    EDI
3270 //    local1 ..
3271
3272 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
3273 /// for a 16 byte align requirement.
3274 unsigned
3275 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3276                                                SelectionDAG& DAG) const {
3277   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3278   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
3279   unsigned StackAlignment = TFI.getStackAlignment();
3280   uint64_t AlignMask = StackAlignment - 1;
3281   int64_t Offset = StackSize;
3282   unsigned SlotSize = RegInfo->getSlotSize();
3283   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3284     // Number smaller than 12 so just add the difference.
3285     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3286   } else {
3287     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3288     Offset = ((~AlignMask) & Offset) + StackAlignment +
3289       (StackAlignment-SlotSize);
3290   }
3291   return Offset;
3292 }
3293
3294 /// MatchingStackOffset - Return true if the given stack call argument is
3295 /// already available in the same position (relatively) of the caller's
3296 /// incoming argument stack.
3297 static
3298 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3299                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3300                          const X86InstrInfo *TII) {
3301   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3302   int FI = INT_MAX;
3303   if (Arg.getOpcode() == ISD::CopyFromReg) {
3304     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3305     if (!TargetRegisterInfo::isVirtualRegister(VR))
3306       return false;
3307     MachineInstr *Def = MRI->getVRegDef(VR);
3308     if (!Def)
3309       return false;
3310     if (!Flags.isByVal()) {
3311       if (!TII->isLoadFromStackSlot(Def, FI))
3312         return false;
3313     } else {
3314       unsigned Opcode = Def->getOpcode();
3315       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r ||
3316            Opcode == X86::LEA64_32r) &&
3317           Def->getOperand(1).isFI()) {
3318         FI = Def->getOperand(1).getIndex();
3319         Bytes = Flags.getByValSize();
3320       } else
3321         return false;
3322     }
3323   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3324     if (Flags.isByVal())
3325       // ByVal argument is passed in as a pointer but it's now being
3326       // dereferenced. e.g.
3327       // define @foo(%struct.X* %A) {
3328       //   tail call @bar(%struct.X* byval %A)
3329       // }
3330       return false;
3331     SDValue Ptr = Ld->getBasePtr();
3332     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3333     if (!FINode)
3334       return false;
3335     FI = FINode->getIndex();
3336   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3337     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3338     FI = FINode->getIndex();
3339     Bytes = Flags.getByValSize();
3340   } else
3341     return false;
3342
3343   assert(FI != INT_MAX);
3344   if (!MFI->isFixedObjectIndex(FI))
3345     return false;
3346   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3347 }
3348
3349 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3350 /// for tail call optimization. Targets which want to do tail call
3351 /// optimization should implement this function.
3352 bool
3353 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3354                                                      CallingConv::ID CalleeCC,
3355                                                      bool isVarArg,
3356                                                      bool isCalleeStructRet,
3357                                                      bool isCallerStructRet,
3358                                                      Type *RetTy,
3359                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3360                                     const SmallVectorImpl<SDValue> &OutVals,
3361                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3362                                                      SelectionDAG &DAG) const {
3363   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3364     return false;
3365
3366   // If -tailcallopt is specified, make fastcc functions tail-callable.
3367   const MachineFunction &MF = DAG.getMachineFunction();
3368   const Function *CallerF = MF.getFunction();
3369
3370   // If the function return type is x86_fp80 and the callee return type is not,
3371   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3372   // perform a tailcall optimization here.
3373   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3374     return false;
3375
3376   CallingConv::ID CallerCC = CallerF->getCallingConv();
3377   bool CCMatch = CallerCC == CalleeCC;
3378   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3379   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3380
3381   // Win64 functions have extra shadow space for argument homing. Don't do the
3382   // sibcall if the caller and callee have mismatched expectations for this
3383   // space.
3384   if (IsCalleeWin64 != IsCallerWin64)
3385     return false;
3386
3387   if (DAG.getTarget().Options.GuaranteedTailCallOpt) {
3388     if (IsTailCallConvention(CalleeCC) && CCMatch)
3389       return true;
3390     return false;
3391   }
3392
3393   // Look for obvious safe cases to perform tail call optimization that do not
3394   // require ABI changes. This is what gcc calls sibcall.
3395
3396   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3397   // emit a special epilogue.
3398   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3399   if (RegInfo->needsStackRealignment(MF))
3400     return false;
3401
3402   // Also avoid sibcall optimization if either caller or callee uses struct
3403   // return semantics.
3404   if (isCalleeStructRet || isCallerStructRet)
3405     return false;
3406
3407   // An stdcall/thiscall caller is expected to clean up its arguments; the
3408   // callee isn't going to do that.
3409   // FIXME: this is more restrictive than needed. We could produce a tailcall
3410   // when the stack adjustment matches. For example, with a thiscall that takes
3411   // only one argument.
3412   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3413                    CallerCC == CallingConv::X86_ThisCall))
3414     return false;
3415
3416   // Do not sibcall optimize vararg calls unless all arguments are passed via
3417   // registers.
3418   if (isVarArg && !Outs.empty()) {
3419
3420     // Optimizing for varargs on Win64 is unlikely to be safe without
3421     // additional testing.
3422     if (IsCalleeWin64 || IsCallerWin64)
3423       return false;
3424
3425     SmallVector<CCValAssign, 16> ArgLocs;
3426     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
3427                    *DAG.getContext());
3428
3429     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3430     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3431       if (!ArgLocs[i].isRegLoc())
3432         return false;
3433   }
3434
3435   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3436   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3437   // this into a sibcall.
3438   bool Unused = false;
3439   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3440     if (!Ins[i].Used) {
3441       Unused = true;
3442       break;
3443     }
3444   }
3445   if (Unused) {
3446     SmallVector<CCValAssign, 16> RVLocs;
3447     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(), RVLocs,
3448                    *DAG.getContext());
3449     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3450     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3451       CCValAssign &VA = RVLocs[i];
3452       if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1)
3453         return false;
3454     }
3455   }
3456
3457   // If the calling conventions do not match, then we'd better make sure the
3458   // results are returned in the same way as what the caller expects.
3459   if (!CCMatch) {
3460     SmallVector<CCValAssign, 16> RVLocs1;
3461     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
3462                     *DAG.getContext());
3463     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3464
3465     SmallVector<CCValAssign, 16> RVLocs2;
3466     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
3467                     *DAG.getContext());
3468     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3469
3470     if (RVLocs1.size() != RVLocs2.size())
3471       return false;
3472     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3473       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3474         return false;
3475       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3476         return false;
3477       if (RVLocs1[i].isRegLoc()) {
3478         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3479           return false;
3480       } else {
3481         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3482           return false;
3483       }
3484     }
3485   }
3486
3487   // If the callee takes no arguments then go on to check the results of the
3488   // call.
3489   if (!Outs.empty()) {
3490     // Check if stack adjustment is needed. For now, do not do this if any
3491     // argument is passed on the stack.
3492     SmallVector<CCValAssign, 16> ArgLocs;
3493     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
3494                    *DAG.getContext());
3495
3496     // Allocate shadow area for Win64
3497     if (IsCalleeWin64)
3498       CCInfo.AllocateStack(32, 8);
3499
3500     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3501     if (CCInfo.getNextStackOffset()) {
3502       MachineFunction &MF = DAG.getMachineFunction();
3503       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3504         return false;
3505
3506       // Check if the arguments are already laid out in the right way as
3507       // the caller's fixed stack objects.
3508       MachineFrameInfo *MFI = MF.getFrameInfo();
3509       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3510       const X86InstrInfo *TII = Subtarget->getInstrInfo();
3511       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3512         CCValAssign &VA = ArgLocs[i];
3513         SDValue Arg = OutVals[i];
3514         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3515         if (VA.getLocInfo() == CCValAssign::Indirect)
3516           return false;
3517         if (!VA.isRegLoc()) {
3518           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3519                                    MFI, MRI, TII))
3520             return false;
3521         }
3522       }
3523     }
3524
3525     // If the tailcall address may be in a register, then make sure it's
3526     // possible to register allocate for it. In 32-bit, the call address can
3527     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3528     // callee-saved registers are restored. These happen to be the same
3529     // registers used to pass 'inreg' arguments so watch out for those.
3530     if (!Subtarget->is64Bit() &&
3531         ((!isa<GlobalAddressSDNode>(Callee) &&
3532           !isa<ExternalSymbolSDNode>(Callee)) ||
3533          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3534       unsigned NumInRegs = 0;
3535       // In PIC we need an extra register to formulate the address computation
3536       // for the callee.
3537       unsigned MaxInRegs =
3538         (DAG.getTarget().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3539
3540       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3541         CCValAssign &VA = ArgLocs[i];
3542         if (!VA.isRegLoc())
3543           continue;
3544         unsigned Reg = VA.getLocReg();
3545         switch (Reg) {
3546         default: break;
3547         case X86::EAX: case X86::EDX: case X86::ECX:
3548           if (++NumInRegs == MaxInRegs)
3549             return false;
3550           break;
3551         }
3552       }
3553     }
3554   }
3555
3556   return true;
3557 }
3558
3559 FastISel *
3560 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3561                                   const TargetLibraryInfo *libInfo) const {
3562   return X86::createFastISel(funcInfo, libInfo);
3563 }
3564
3565 //===----------------------------------------------------------------------===//
3566 //                           Other Lowering Hooks
3567 //===----------------------------------------------------------------------===//
3568
3569 static bool MayFoldLoad(SDValue Op) {
3570   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3571 }
3572
3573 static bool MayFoldIntoStore(SDValue Op) {
3574   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3575 }
3576
3577 static bool isTargetShuffle(unsigned Opcode) {
3578   switch(Opcode) {
3579   default: return false;
3580   case X86ISD::BLENDI:
3581   case X86ISD::PSHUFB:
3582   case X86ISD::PSHUFD:
3583   case X86ISD::PSHUFHW:
3584   case X86ISD::PSHUFLW:
3585   case X86ISD::SHUFP:
3586   case X86ISD::PALIGNR:
3587   case X86ISD::MOVLHPS:
3588   case X86ISD::MOVLHPD:
3589   case X86ISD::MOVHLPS:
3590   case X86ISD::MOVLPS:
3591   case X86ISD::MOVLPD:
3592   case X86ISD::MOVSHDUP:
3593   case X86ISD::MOVSLDUP:
3594   case X86ISD::MOVDDUP:
3595   case X86ISD::MOVSS:
3596   case X86ISD::MOVSD:
3597   case X86ISD::UNPCKL:
3598   case X86ISD::UNPCKH:
3599   case X86ISD::VPERMILPI:
3600   case X86ISD::VPERM2X128:
3601   case X86ISD::VPERMI:
3602     return true;
3603   }
3604 }
3605
3606 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3607                                     SDValue V1, unsigned TargetMask,
3608                                     SelectionDAG &DAG) {
3609   switch(Opc) {
3610   default: llvm_unreachable("Unknown x86 shuffle node");
3611   case X86ISD::PSHUFD:
3612   case X86ISD::PSHUFHW:
3613   case X86ISD::PSHUFLW:
3614   case X86ISD::VPERMILPI:
3615   case X86ISD::VPERMI:
3616     return DAG.getNode(Opc, dl, VT, V1,
3617                        DAG.getConstant(TargetMask, dl, MVT::i8));
3618   }
3619 }
3620
3621 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3622                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3623   switch(Opc) {
3624   default: llvm_unreachable("Unknown x86 shuffle node");
3625   case X86ISD::MOVLHPS:
3626   case X86ISD::MOVLHPD:
3627   case X86ISD::MOVHLPS:
3628   case X86ISD::MOVLPS:
3629   case X86ISD::MOVLPD:
3630   case X86ISD::MOVSS:
3631   case X86ISD::MOVSD:
3632   case X86ISD::UNPCKL:
3633   case X86ISD::UNPCKH:
3634     return DAG.getNode(Opc, dl, VT, V1, V2);
3635   }
3636 }
3637
3638 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3639   MachineFunction &MF = DAG.getMachineFunction();
3640   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3641   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3642   int ReturnAddrIndex = FuncInfo->getRAIndex();
3643
3644   if (ReturnAddrIndex == 0) {
3645     // Set up a frame object for the return address.
3646     unsigned SlotSize = RegInfo->getSlotSize();
3647     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3648                                                            -(int64_t)SlotSize,
3649                                                            false);
3650     FuncInfo->setRAIndex(ReturnAddrIndex);
3651   }
3652
3653   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3654 }
3655
3656 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3657                                        bool hasSymbolicDisplacement) {
3658   // Offset should fit into 32 bit immediate field.
3659   if (!isInt<32>(Offset))
3660     return false;
3661
3662   // If we don't have a symbolic displacement - we don't have any extra
3663   // restrictions.
3664   if (!hasSymbolicDisplacement)
3665     return true;
3666
3667   // FIXME: Some tweaks might be needed for medium code model.
3668   if (M != CodeModel::Small && M != CodeModel::Kernel)
3669     return false;
3670
3671   // For small code model we assume that latest object is 16MB before end of 31
3672   // bits boundary. We may also accept pretty large negative constants knowing
3673   // that all objects are in the positive half of address space.
3674   if (M == CodeModel::Small && Offset < 16*1024*1024)
3675     return true;
3676
3677   // For kernel code model we know that all object resist in the negative half
3678   // of 32bits address space. We may not accept negative offsets, since they may
3679   // be just off and we may accept pretty large positive ones.
3680   if (M == CodeModel::Kernel && Offset >= 0)
3681     return true;
3682
3683   return false;
3684 }
3685
3686 /// isCalleePop - Determines whether the callee is required to pop its
3687 /// own arguments. Callee pop is necessary to support tail calls.
3688 bool X86::isCalleePop(CallingConv::ID CallingConv,
3689                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3690   switch (CallingConv) {
3691   default:
3692     return false;
3693   case CallingConv::X86_StdCall:
3694   case CallingConv::X86_FastCall:
3695   case CallingConv::X86_ThisCall:
3696     return !is64Bit;
3697   case CallingConv::Fast:
3698   case CallingConv::GHC:
3699   case CallingConv::HiPE:
3700     if (IsVarArg)
3701       return false;
3702     return TailCallOpt;
3703   }
3704 }
3705
3706 /// \brief Return true if the condition is an unsigned comparison operation.
3707 static bool isX86CCUnsigned(unsigned X86CC) {
3708   switch (X86CC) {
3709   default: llvm_unreachable("Invalid integer condition!");
3710   case X86::COND_E:     return true;
3711   case X86::COND_G:     return false;
3712   case X86::COND_GE:    return false;
3713   case X86::COND_L:     return false;
3714   case X86::COND_LE:    return false;
3715   case X86::COND_NE:    return true;
3716   case X86::COND_B:     return true;
3717   case X86::COND_A:     return true;
3718   case X86::COND_BE:    return true;
3719   case X86::COND_AE:    return true;
3720   }
3721   llvm_unreachable("covered switch fell through?!");
3722 }
3723
3724 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3725 /// specific condition code, returning the condition code and the LHS/RHS of the
3726 /// comparison to make.
3727 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, SDLoc DL, bool isFP,
3728                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3729   if (!isFP) {
3730     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3731       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3732         // X > -1   -> X == 0, jump !sign.
3733         RHS = DAG.getConstant(0, DL, RHS.getValueType());
3734         return X86::COND_NS;
3735       }
3736       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3737         // X < 0   -> X == 0, jump on sign.
3738         return X86::COND_S;
3739       }
3740       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3741         // X < 1   -> X <= 0
3742         RHS = DAG.getConstant(0, DL, RHS.getValueType());
3743         return X86::COND_LE;
3744       }
3745     }
3746
3747     switch (SetCCOpcode) {
3748     default: llvm_unreachable("Invalid integer condition!");
3749     case ISD::SETEQ:  return X86::COND_E;
3750     case ISD::SETGT:  return X86::COND_G;
3751     case ISD::SETGE:  return X86::COND_GE;
3752     case ISD::SETLT:  return X86::COND_L;
3753     case ISD::SETLE:  return X86::COND_LE;
3754     case ISD::SETNE:  return X86::COND_NE;
3755     case ISD::SETULT: return X86::COND_B;
3756     case ISD::SETUGT: return X86::COND_A;
3757     case ISD::SETULE: return X86::COND_BE;
3758     case ISD::SETUGE: return X86::COND_AE;
3759     }
3760   }
3761
3762   // First determine if it is required or is profitable to flip the operands.
3763
3764   // If LHS is a foldable load, but RHS is not, flip the condition.
3765   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3766       !ISD::isNON_EXTLoad(RHS.getNode())) {
3767     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3768     std::swap(LHS, RHS);
3769   }
3770
3771   switch (SetCCOpcode) {
3772   default: break;
3773   case ISD::SETOLT:
3774   case ISD::SETOLE:
3775   case ISD::SETUGT:
3776   case ISD::SETUGE:
3777     std::swap(LHS, RHS);
3778     break;
3779   }
3780
3781   // On a floating point condition, the flags are set as follows:
3782   // ZF  PF  CF   op
3783   //  0 | 0 | 0 | X > Y
3784   //  0 | 0 | 1 | X < Y
3785   //  1 | 0 | 0 | X == Y
3786   //  1 | 1 | 1 | unordered
3787   switch (SetCCOpcode) {
3788   default: llvm_unreachable("Condcode should be pre-legalized away");
3789   case ISD::SETUEQ:
3790   case ISD::SETEQ:   return X86::COND_E;
3791   case ISD::SETOLT:              // flipped
3792   case ISD::SETOGT:
3793   case ISD::SETGT:   return X86::COND_A;
3794   case ISD::SETOLE:              // flipped
3795   case ISD::SETOGE:
3796   case ISD::SETGE:   return X86::COND_AE;
3797   case ISD::SETUGT:              // flipped
3798   case ISD::SETULT:
3799   case ISD::SETLT:   return X86::COND_B;
3800   case ISD::SETUGE:              // flipped
3801   case ISD::SETULE:
3802   case ISD::SETLE:   return X86::COND_BE;
3803   case ISD::SETONE:
3804   case ISD::SETNE:   return X86::COND_NE;
3805   case ISD::SETUO:   return X86::COND_P;
3806   case ISD::SETO:    return X86::COND_NP;
3807   case ISD::SETOEQ:
3808   case ISD::SETUNE:  return X86::COND_INVALID;
3809   }
3810 }
3811
3812 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3813 /// code. Current x86 isa includes the following FP cmov instructions:
3814 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3815 static bool hasFPCMov(unsigned X86CC) {
3816   switch (X86CC) {
3817   default:
3818     return false;
3819   case X86::COND_B:
3820   case X86::COND_BE:
3821   case X86::COND_E:
3822   case X86::COND_P:
3823   case X86::COND_A:
3824   case X86::COND_AE:
3825   case X86::COND_NE:
3826   case X86::COND_NP:
3827     return true;
3828   }
3829 }
3830
3831 /// isFPImmLegal - Returns true if the target can instruction select the
3832 /// specified FP immediate natively. If false, the legalizer will
3833 /// materialize the FP immediate as a load from a constant pool.
3834 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3835   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3836     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3837       return true;
3838   }
3839   return false;
3840 }
3841
3842 bool X86TargetLowering::shouldReduceLoadWidth(SDNode *Load,
3843                                               ISD::LoadExtType ExtTy,
3844                                               EVT NewVT) const {
3845   // "ELF Handling for Thread-Local Storage" specifies that R_X86_64_GOTTPOFF
3846   // relocation target a movq or addq instruction: don't let the load shrink.
3847   SDValue BasePtr = cast<LoadSDNode>(Load)->getBasePtr();
3848   if (BasePtr.getOpcode() == X86ISD::WrapperRIP)
3849     if (const auto *GA = dyn_cast<GlobalAddressSDNode>(BasePtr.getOperand(0)))
3850       return GA->getTargetFlags() != X86II::MO_GOTTPOFF;
3851   return true;
3852 }
3853
3854 /// \brief Returns true if it is beneficial to convert a load of a constant
3855 /// to just the constant itself.
3856 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3857                                                           Type *Ty) const {
3858   assert(Ty->isIntegerTy());
3859
3860   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3861   if (BitSize == 0 || BitSize > 64)
3862     return false;
3863   return true;
3864 }
3865
3866 bool X86TargetLowering::isExtractSubvectorCheap(EVT ResVT,
3867                                                 unsigned Index) const {
3868   if (!isOperationLegalOrCustom(ISD::EXTRACT_SUBVECTOR, ResVT))
3869     return false;
3870
3871   return (Index == 0 || Index == ResVT.getVectorNumElements());
3872 }
3873
3874 bool X86TargetLowering::isCheapToSpeculateCttz() const {
3875   // Speculate cttz only if we can directly use TZCNT.
3876   return Subtarget->hasBMI();
3877 }
3878
3879 bool X86TargetLowering::isCheapToSpeculateCtlz() const {
3880   // Speculate ctlz only if we can directly use LZCNT.
3881   return Subtarget->hasLZCNT();
3882 }
3883
3884 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3885 /// the specified range (L, H].
3886 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3887   return (Val < 0) || (Val >= Low && Val < Hi);
3888 }
3889
3890 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3891 /// specified value.
3892 static bool isUndefOrEqual(int Val, int CmpVal) {
3893   return (Val < 0 || Val == CmpVal);
3894 }
3895
3896 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3897 /// from position Pos and ending in Pos+Size, falls within the specified
3898 /// sequential range (Low, Low+Size]. or is undef.
3899 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3900                                        unsigned Pos, unsigned Size, int Low) {
3901   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3902     if (!isUndefOrEqual(Mask[i], Low))
3903       return false;
3904   return true;
3905 }
3906
3907 /// isVEXTRACTIndex - Return true if the specified
3908 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3909 /// suitable for instruction that extract 128 or 256 bit vectors
3910 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
3911   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
3912   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3913     return false;
3914
3915   // The index should be aligned on a vecWidth-bit boundary.
3916   uint64_t Index =
3917     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3918
3919   MVT VT = N->getSimpleValueType(0);
3920   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
3921   bool Result = (Index * ElSize) % vecWidth == 0;
3922
3923   return Result;
3924 }
3925
3926 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
3927 /// operand specifies a subvector insert that is suitable for input to
3928 /// insertion of 128 or 256-bit subvectors
3929 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
3930   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
3931   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3932     return false;
3933   // The index should be aligned on a vecWidth-bit boundary.
3934   uint64_t Index =
3935     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3936
3937   MVT VT = N->getSimpleValueType(0);
3938   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
3939   bool Result = (Index * ElSize) % vecWidth == 0;
3940
3941   return Result;
3942 }
3943
3944 bool X86::isVINSERT128Index(SDNode *N) {
3945   return isVINSERTIndex(N, 128);
3946 }
3947
3948 bool X86::isVINSERT256Index(SDNode *N) {
3949   return isVINSERTIndex(N, 256);
3950 }
3951
3952 bool X86::isVEXTRACT128Index(SDNode *N) {
3953   return isVEXTRACTIndex(N, 128);
3954 }
3955
3956 bool X86::isVEXTRACT256Index(SDNode *N) {
3957   return isVEXTRACTIndex(N, 256);
3958 }
3959
3960 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
3961   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
3962   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3963     llvm_unreachable("Illegal extract subvector for VEXTRACT");
3964
3965   uint64_t Index =
3966     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3967
3968   MVT VecVT = N->getOperand(0).getSimpleValueType();
3969   MVT ElVT = VecVT.getVectorElementType();
3970
3971   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
3972   return Index / NumElemsPerChunk;
3973 }
3974
3975 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
3976   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
3977   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3978     llvm_unreachable("Illegal insert subvector for VINSERT");
3979
3980   uint64_t Index =
3981     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3982
3983   MVT VecVT = N->getSimpleValueType(0);
3984   MVT ElVT = VecVT.getVectorElementType();
3985
3986   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
3987   return Index / NumElemsPerChunk;
3988 }
3989
3990 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
3991 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3992 /// and VINSERTI128 instructions.
3993 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
3994   return getExtractVEXTRACTImmediate(N, 128);
3995 }
3996
3997 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
3998 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
3999 /// and VINSERTI64x4 instructions.
4000 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4001   return getExtractVEXTRACTImmediate(N, 256);
4002 }
4003
4004 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4005 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4006 /// and VINSERTI128 instructions.
4007 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4008   return getInsertVINSERTImmediate(N, 128);
4009 }
4010
4011 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4012 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4013 /// and VINSERTI64x4 instructions.
4014 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4015   return getInsertVINSERTImmediate(N, 256);
4016 }
4017
4018 /// isZero - Returns true if Elt is a constant integer zero
4019 static bool isZero(SDValue V) {
4020   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
4021   return C && C->isNullValue();
4022 }
4023
4024 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4025 /// constant +0.0.
4026 bool X86::isZeroNode(SDValue Elt) {
4027   if (isZero(Elt))
4028     return true;
4029   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4030     return CFP->getValueAPF().isPosZero();
4031   return false;
4032 }
4033
4034 /// getZeroVector - Returns a vector of specified type with all zero elements.
4035 ///
4036 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4037                              SelectionDAG &DAG, SDLoc dl) {
4038   assert(VT.isVector() && "Expected a vector type");
4039
4040   // Always build SSE zero vectors as <4 x i32> bitcasted
4041   // to their dest type. This ensures they get CSE'd.
4042   SDValue Vec;
4043   if (VT.is128BitVector()) {  // SSE
4044     if (Subtarget->hasSSE2()) {  // SSE2
4045       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4046       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4047     } else { // SSE1
4048       SDValue Cst = DAG.getConstantFP(+0.0, dl, MVT::f32);
4049       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4050     }
4051   } else if (VT.is256BitVector()) { // AVX
4052     if (Subtarget->hasInt256()) { // AVX2
4053       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4054       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4055       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4056     } else {
4057       // 256-bit logic and arithmetic instructions in AVX are all
4058       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4059       SDValue Cst = DAG.getConstantFP(+0.0, dl, MVT::f32);
4060       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4061       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4062     }
4063   } else if (VT.is512BitVector()) { // AVX-512
4064       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4065       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4066                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4067       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4068   } else if (VT.getScalarType() == MVT::i1) {
4069
4070     assert((Subtarget->hasBWI() || VT.getVectorNumElements() <= 16)
4071             && "Unexpected vector type");
4072     assert((Subtarget->hasVLX() || VT.getVectorNumElements() >= 8)
4073             && "Unexpected vector type");
4074     SDValue Cst = DAG.getConstant(0, dl, MVT::i1);
4075     SmallVector<SDValue, 64> Ops(VT.getVectorNumElements(), Cst);
4076     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4077   } else
4078     llvm_unreachable("Unexpected vector type");
4079
4080   return DAG.getBitcast(VT, Vec);
4081 }
4082
4083 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
4084                                 SelectionDAG &DAG, SDLoc dl,
4085                                 unsigned vectorWidth) {
4086   assert((vectorWidth == 128 || vectorWidth == 256) &&
4087          "Unsupported vector width");
4088   EVT VT = Vec.getValueType();
4089   EVT ElVT = VT.getVectorElementType();
4090   unsigned Factor = VT.getSizeInBits()/vectorWidth;
4091   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
4092                                   VT.getVectorNumElements()/Factor);
4093
4094   // Extract from UNDEF is UNDEF.
4095   if (Vec.getOpcode() == ISD::UNDEF)
4096     return DAG.getUNDEF(ResultVT);
4097
4098   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
4099   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
4100
4101   // This is the index of the first element of the vectorWidth-bit chunk
4102   // we want.
4103   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
4104                                * ElemsPerChunk);
4105
4106   // If the input is a buildvector just emit a smaller one.
4107   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
4108     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
4109                        makeArrayRef(Vec->op_begin() + NormalizedIdxVal,
4110                                     ElemsPerChunk));
4111
4112   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal, dl);
4113   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec, VecIdx);
4114 }
4115
4116 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
4117 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
4118 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
4119 /// instructions or a simple subregister reference. Idx is an index in the
4120 /// 128 bits we want.  It need not be aligned to a 128-bit boundary.  That makes
4121 /// lowering EXTRACT_VECTOR_ELT operations easier.
4122 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
4123                                    SelectionDAG &DAG, SDLoc dl) {
4124   assert((Vec.getValueType().is256BitVector() ||
4125           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
4126   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
4127 }
4128
4129 /// Generate a DAG to grab 256-bits from a 512-bit vector.
4130 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
4131                                    SelectionDAG &DAG, SDLoc dl) {
4132   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
4133   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
4134 }
4135
4136 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
4137                                unsigned IdxVal, SelectionDAG &DAG,
4138                                SDLoc dl, unsigned vectorWidth) {
4139   assert((vectorWidth == 128 || vectorWidth == 256) &&
4140          "Unsupported vector width");
4141   // Inserting UNDEF is Result
4142   if (Vec.getOpcode() == ISD::UNDEF)
4143     return Result;
4144   EVT VT = Vec.getValueType();
4145   EVT ElVT = VT.getVectorElementType();
4146   EVT ResultVT = Result.getValueType();
4147
4148   // Insert the relevant vectorWidth bits.
4149   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
4150
4151   // This is the index of the first element of the vectorWidth-bit chunk
4152   // we want.
4153   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
4154                                * ElemsPerChunk);
4155
4156   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal, dl);
4157   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec, VecIdx);
4158 }
4159
4160 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
4161 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
4162 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
4163 /// simple superregister reference.  Idx is an index in the 128 bits
4164 /// we want.  It need not be aligned to a 128-bit boundary.  That makes
4165 /// lowering INSERT_VECTOR_ELT operations easier.
4166 static SDValue Insert128BitVector(SDValue Result, SDValue Vec, unsigned IdxVal,
4167                                   SelectionDAG &DAG, SDLoc dl) {
4168   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
4169
4170   // For insertion into the zero index (low half) of a 256-bit vector, it is
4171   // more efficient to generate a blend with immediate instead of an insert*128.
4172   // We are still creating an INSERT_SUBVECTOR below with an undef node to
4173   // extend the subvector to the size of the result vector. Make sure that
4174   // we are not recursing on that node by checking for undef here.
4175   if (IdxVal == 0 && Result.getValueType().is256BitVector() &&
4176       Result.getOpcode() != ISD::UNDEF) {
4177     EVT ResultVT = Result.getValueType();
4178     SDValue ZeroIndex = DAG.getIntPtrConstant(0, dl);
4179     SDValue Undef = DAG.getUNDEF(ResultVT);
4180     SDValue Vec256 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Undef,
4181                                  Vec, ZeroIndex);
4182
4183     // The blend instruction, and therefore its mask, depend on the data type.
4184     MVT ScalarType = ResultVT.getScalarType().getSimpleVT();
4185     if (ScalarType.isFloatingPoint()) {
4186       // Choose either vblendps (float) or vblendpd (double).
4187       unsigned ScalarSize = ScalarType.getSizeInBits();
4188       assert((ScalarSize == 64 || ScalarSize == 32) && "Unknown float type");
4189       unsigned MaskVal = (ScalarSize == 64) ? 0x03 : 0x0f;
4190       SDValue Mask = DAG.getConstant(MaskVal, dl, MVT::i8);
4191       return DAG.getNode(X86ISD::BLENDI, dl, ResultVT, Result, Vec256, Mask);
4192     }
4193
4194     const X86Subtarget &Subtarget =
4195     static_cast<const X86Subtarget &>(DAG.getSubtarget());
4196
4197     // AVX2 is needed for 256-bit integer blend support.
4198     // Integers must be cast to 32-bit because there is only vpblendd;
4199     // vpblendw can't be used for this because it has a handicapped mask.
4200
4201     // If we don't have AVX2, then cast to float. Using a wrong domain blend
4202     // is still more efficient than using the wrong domain vinsertf128 that
4203     // will be created by InsertSubVector().
4204     MVT CastVT = Subtarget.hasAVX2() ? MVT::v8i32 : MVT::v8f32;
4205
4206     SDValue Mask = DAG.getConstant(0x0f, dl, MVT::i8);
4207     Vec256 = DAG.getBitcast(CastVT, Vec256);
4208     Vec256 = DAG.getNode(X86ISD::BLENDI, dl, CastVT, Result, Vec256, Mask);
4209     return DAG.getBitcast(ResultVT, Vec256);
4210   }
4211
4212   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
4213 }
4214
4215 static SDValue Insert256BitVector(SDValue Result, SDValue Vec, unsigned IdxVal,
4216                                   SelectionDAG &DAG, SDLoc dl) {
4217   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
4218   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
4219 }
4220
4221 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
4222 /// instructions. This is used because creating CONCAT_VECTOR nodes of
4223 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
4224 /// large BUILD_VECTORS.
4225 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
4226                                    unsigned NumElems, SelectionDAG &DAG,
4227                                    SDLoc dl) {
4228   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4229   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
4230 }
4231
4232 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
4233                                    unsigned NumElems, SelectionDAG &DAG,
4234                                    SDLoc dl) {
4235   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4236   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
4237 }
4238
4239 /// getOnesVector - Returns a vector of specified type with all bits set.
4240 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4241 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4242 /// Then bitcast to their original type, ensuring they get CSE'd.
4243 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4244                              SDLoc dl) {
4245   assert(VT.isVector() && "Expected a vector type");
4246
4247   SDValue Cst = DAG.getConstant(~0U, dl, MVT::i32);
4248   SDValue Vec;
4249   if (VT.is256BitVector()) {
4250     if (HasInt256) { // AVX2
4251       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4252       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4253     } else { // AVX
4254       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4255       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4256     }
4257   } else if (VT.is128BitVector()) {
4258     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4259   } else
4260     llvm_unreachable("Unexpected vector type");
4261
4262   return DAG.getBitcast(VT, Vec);
4263 }
4264
4265 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4266 /// operation of specified width.
4267 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4268                        SDValue V2) {
4269   unsigned NumElems = VT.getVectorNumElements();
4270   SmallVector<int, 8> Mask;
4271   Mask.push_back(NumElems);
4272   for (unsigned i = 1; i != NumElems; ++i)
4273     Mask.push_back(i);
4274   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4275 }
4276
4277 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4278 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4279                           SDValue V2) {
4280   unsigned NumElems = VT.getVectorNumElements();
4281   SmallVector<int, 8> Mask;
4282   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4283     Mask.push_back(i);
4284     Mask.push_back(i + NumElems);
4285   }
4286   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4287 }
4288
4289 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4290 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4291                           SDValue V2) {
4292   unsigned NumElems = VT.getVectorNumElements();
4293   SmallVector<int, 8> Mask;
4294   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4295     Mask.push_back(i + Half);
4296     Mask.push_back(i + NumElems + Half);
4297   }
4298   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4299 }
4300
4301 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4302 /// vector of zero or undef vector.  This produces a shuffle where the low
4303 /// element of V2 is swizzled into the zero/undef vector, landing at element
4304 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4305 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4306                                            bool IsZero,
4307                                            const X86Subtarget *Subtarget,
4308                                            SelectionDAG &DAG) {
4309   MVT VT = V2.getSimpleValueType();
4310   SDValue V1 = IsZero
4311     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4312   unsigned NumElems = VT.getVectorNumElements();
4313   SmallVector<int, 16> MaskVec;
4314   for (unsigned i = 0; i != NumElems; ++i)
4315     // If this is the insertion idx, put the low elt of V2 here.
4316     MaskVec.push_back(i == Idx ? NumElems : i);
4317   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4318 }
4319
4320 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4321 /// target specific opcode. Returns true if the Mask could be calculated. Sets
4322 /// IsUnary to true if only uses one source. Note that this will set IsUnary for
4323 /// shuffles which use a single input multiple times, and in those cases it will
4324 /// adjust the mask to only have indices within that single input.
4325 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4326                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4327   unsigned NumElems = VT.getVectorNumElements();
4328   SDValue ImmN;
4329
4330   IsUnary = false;
4331   bool IsFakeUnary = false;
4332   switch(N->getOpcode()) {
4333   case X86ISD::BLENDI:
4334     ImmN = N->getOperand(N->getNumOperands()-1);
4335     DecodeBLENDMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4336     break;
4337   case X86ISD::SHUFP:
4338     ImmN = N->getOperand(N->getNumOperands()-1);
4339     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4340     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4341     break;
4342   case X86ISD::UNPCKH:
4343     DecodeUNPCKHMask(VT, Mask);
4344     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4345     break;
4346   case X86ISD::UNPCKL:
4347     DecodeUNPCKLMask(VT, Mask);
4348     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4349     break;
4350   case X86ISD::MOVHLPS:
4351     DecodeMOVHLPSMask(NumElems, Mask);
4352     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4353     break;
4354   case X86ISD::MOVLHPS:
4355     DecodeMOVLHPSMask(NumElems, Mask);
4356     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4357     break;
4358   case X86ISD::PALIGNR:
4359     ImmN = N->getOperand(N->getNumOperands()-1);
4360     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4361     break;
4362   case X86ISD::PSHUFD:
4363   case X86ISD::VPERMILPI:
4364     ImmN = N->getOperand(N->getNumOperands()-1);
4365     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4366     IsUnary = true;
4367     break;
4368   case X86ISD::PSHUFHW:
4369     ImmN = N->getOperand(N->getNumOperands()-1);
4370     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4371     IsUnary = true;
4372     break;
4373   case X86ISD::PSHUFLW:
4374     ImmN = N->getOperand(N->getNumOperands()-1);
4375     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4376     IsUnary = true;
4377     break;
4378   case X86ISD::PSHUFB: {
4379     IsUnary = true;
4380     SDValue MaskNode = N->getOperand(1);
4381     while (MaskNode->getOpcode() == ISD::BITCAST)
4382       MaskNode = MaskNode->getOperand(0);
4383
4384     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4385       // If we have a build-vector, then things are easy.
4386       EVT VT = MaskNode.getValueType();
4387       assert(VT.isVector() &&
4388              "Can't produce a non-vector with a build_vector!");
4389       if (!VT.isInteger())
4390         return false;
4391
4392       int NumBytesPerElement = VT.getVectorElementType().getSizeInBits() / 8;
4393
4394       SmallVector<uint64_t, 32> RawMask;
4395       for (int i = 0, e = MaskNode->getNumOperands(); i < e; ++i) {
4396         SDValue Op = MaskNode->getOperand(i);
4397         if (Op->getOpcode() == ISD::UNDEF) {
4398           RawMask.push_back((uint64_t)SM_SentinelUndef);
4399           continue;
4400         }
4401         auto *CN = dyn_cast<ConstantSDNode>(Op.getNode());
4402         if (!CN)
4403           return false;
4404         APInt MaskElement = CN->getAPIntValue();
4405
4406         // We now have to decode the element which could be any integer size and
4407         // extract each byte of it.
4408         for (int j = 0; j < NumBytesPerElement; ++j) {
4409           // Note that this is x86 and so always little endian: the low byte is
4410           // the first byte of the mask.
4411           RawMask.push_back(MaskElement.getLoBits(8).getZExtValue());
4412           MaskElement = MaskElement.lshr(8);
4413         }
4414       }
4415       DecodePSHUFBMask(RawMask, Mask);
4416       break;
4417     }
4418
4419     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4420     if (!MaskLoad)
4421       return false;
4422
4423     SDValue Ptr = MaskLoad->getBasePtr();
4424     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4425         Ptr->getOpcode() == X86ISD::WrapperRIP)
4426       Ptr = Ptr->getOperand(0);
4427
4428     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4429     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4430       return false;
4431
4432     if (auto *C = dyn_cast<Constant>(MaskCP->getConstVal())) {
4433       DecodePSHUFBMask(C, Mask);
4434       if (Mask.empty())
4435         return false;
4436       break;
4437     }
4438
4439     return false;
4440   }
4441   case X86ISD::VPERMI:
4442     ImmN = N->getOperand(N->getNumOperands()-1);
4443     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4444     IsUnary = true;
4445     break;
4446   case X86ISD::MOVSS:
4447   case X86ISD::MOVSD:
4448     DecodeScalarMoveMask(VT, /* IsLoad */ false, Mask);
4449     break;
4450   case X86ISD::VPERM2X128:
4451     ImmN = N->getOperand(N->getNumOperands()-1);
4452     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4453     if (Mask.empty()) return false;
4454     break;
4455   case X86ISD::MOVSLDUP:
4456     DecodeMOVSLDUPMask(VT, Mask);
4457     IsUnary = true;
4458     break;
4459   case X86ISD::MOVSHDUP:
4460     DecodeMOVSHDUPMask(VT, Mask);
4461     IsUnary = true;
4462     break;
4463   case X86ISD::MOVDDUP:
4464     DecodeMOVDDUPMask(VT, Mask);
4465     IsUnary = true;
4466     break;
4467   case X86ISD::MOVLHPD:
4468   case X86ISD::MOVLPD:
4469   case X86ISD::MOVLPS:
4470     // Not yet implemented
4471     return false;
4472   default: llvm_unreachable("unknown target shuffle node");
4473   }
4474
4475   // If we have a fake unary shuffle, the shuffle mask is spread across two
4476   // inputs that are actually the same node. Re-map the mask to always point
4477   // into the first input.
4478   if (IsFakeUnary)
4479     for (int &M : Mask)
4480       if (M >= (int)Mask.size())
4481         M -= Mask.size();
4482
4483   return true;
4484 }
4485
4486 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4487 /// element of the result of the vector shuffle.
4488 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4489                                    unsigned Depth) {
4490   if (Depth == 6)
4491     return SDValue();  // Limit search depth.
4492
4493   SDValue V = SDValue(N, 0);
4494   EVT VT = V.getValueType();
4495   unsigned Opcode = V.getOpcode();
4496
4497   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4498   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4499     int Elt = SV->getMaskElt(Index);
4500
4501     if (Elt < 0)
4502       return DAG.getUNDEF(VT.getVectorElementType());
4503
4504     unsigned NumElems = VT.getVectorNumElements();
4505     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4506                                          : SV->getOperand(1);
4507     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
4508   }
4509
4510   // Recurse into target specific vector shuffles to find scalars.
4511   if (isTargetShuffle(Opcode)) {
4512     MVT ShufVT = V.getSimpleValueType();
4513     unsigned NumElems = ShufVT.getVectorNumElements();
4514     SmallVector<int, 16> ShuffleMask;
4515     bool IsUnary;
4516
4517     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
4518       return SDValue();
4519
4520     int Elt = ShuffleMask[Index];
4521     if (Elt < 0)
4522       return DAG.getUNDEF(ShufVT.getVectorElementType());
4523
4524     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
4525                                          : N->getOperand(1);
4526     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
4527                                Depth+1);
4528   }
4529
4530   // Actual nodes that may contain scalar elements
4531   if (Opcode == ISD::BITCAST) {
4532     V = V.getOperand(0);
4533     EVT SrcVT = V.getValueType();
4534     unsigned NumElems = VT.getVectorNumElements();
4535
4536     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4537       return SDValue();
4538   }
4539
4540   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4541     return (Index == 0) ? V.getOperand(0)
4542                         : DAG.getUNDEF(VT.getVectorElementType());
4543
4544   if (V.getOpcode() == ISD::BUILD_VECTOR)
4545     return V.getOperand(Index);
4546
4547   return SDValue();
4548 }
4549
4550 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4551 ///
4552 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4553                                        unsigned NumNonZero, unsigned NumZero,
4554                                        SelectionDAG &DAG,
4555                                        const X86Subtarget* Subtarget,
4556                                        const TargetLowering &TLI) {
4557   if (NumNonZero > 8)
4558     return SDValue();
4559
4560   SDLoc dl(Op);
4561   SDValue V;
4562   bool First = true;
4563
4564   // SSE4.1 - use PINSRB to insert each byte directly.
4565   if (Subtarget->hasSSE41()) {
4566     for (unsigned i = 0; i < 16; ++i) {
4567       bool isNonZero = (NonZeros & (1 << i)) != 0;
4568       if (isNonZero) {
4569         if (First) {
4570           if (NumZero)
4571             V = getZeroVector(MVT::v16i8, Subtarget, DAG, dl);
4572           else
4573             V = DAG.getUNDEF(MVT::v16i8);
4574           First = false;
4575         }
4576         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4577                         MVT::v16i8, V, Op.getOperand(i),
4578                         DAG.getIntPtrConstant(i, dl));
4579       }
4580     }
4581
4582     return V;
4583   }
4584
4585   // Pre-SSE4.1 - merge byte pairs and insert with PINSRW.
4586   for (unsigned i = 0; i < 16; ++i) {
4587     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4588     if (ThisIsNonZero && First) {
4589       if (NumZero)
4590         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4591       else
4592         V = DAG.getUNDEF(MVT::v8i16);
4593       First = false;
4594     }
4595
4596     if ((i & 1) != 0) {
4597       SDValue ThisElt, LastElt;
4598       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4599       if (LastIsNonZero) {
4600         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4601                               MVT::i16, Op.getOperand(i-1));
4602       }
4603       if (ThisIsNonZero) {
4604         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4605         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4606                               ThisElt, DAG.getConstant(8, dl, MVT::i8));
4607         if (LastIsNonZero)
4608           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4609       } else
4610         ThisElt = LastElt;
4611
4612       if (ThisElt.getNode())
4613         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
4614                         DAG.getIntPtrConstant(i/2, dl));
4615     }
4616   }
4617
4618   return DAG.getBitcast(MVT::v16i8, V);
4619 }
4620
4621 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
4622 ///
4623 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
4624                                      unsigned NumNonZero, unsigned NumZero,
4625                                      SelectionDAG &DAG,
4626                                      const X86Subtarget* Subtarget,
4627                                      const TargetLowering &TLI) {
4628   if (NumNonZero > 4)
4629     return SDValue();
4630
4631   SDLoc dl(Op);
4632   SDValue V;
4633   bool First = true;
4634   for (unsigned i = 0; i < 8; ++i) {
4635     bool isNonZero = (NonZeros & (1 << i)) != 0;
4636     if (isNonZero) {
4637       if (First) {
4638         if (NumZero)
4639           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4640         else
4641           V = DAG.getUNDEF(MVT::v8i16);
4642         First = false;
4643       }
4644       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4645                       MVT::v8i16, V, Op.getOperand(i),
4646                       DAG.getIntPtrConstant(i, dl));
4647     }
4648   }
4649
4650   return V;
4651 }
4652
4653 /// LowerBuildVectorv4x32 - Custom lower build_vector of v4i32 or v4f32.
4654 static SDValue LowerBuildVectorv4x32(SDValue Op, SelectionDAG &DAG,
4655                                      const X86Subtarget *Subtarget,
4656                                      const TargetLowering &TLI) {
4657   // Find all zeroable elements.
4658   std::bitset<4> Zeroable;
4659   for (int i=0; i < 4; ++i) {
4660     SDValue Elt = Op->getOperand(i);
4661     Zeroable[i] = (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt));
4662   }
4663   assert(Zeroable.size() - Zeroable.count() > 1 &&
4664          "We expect at least two non-zero elements!");
4665
4666   // We only know how to deal with build_vector nodes where elements are either
4667   // zeroable or extract_vector_elt with constant index.
4668   SDValue FirstNonZero;
4669   unsigned FirstNonZeroIdx;
4670   for (unsigned i=0; i < 4; ++i) {
4671     if (Zeroable[i])
4672       continue;
4673     SDValue Elt = Op->getOperand(i);
4674     if (Elt.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
4675         !isa<ConstantSDNode>(Elt.getOperand(1)))
4676       return SDValue();
4677     // Make sure that this node is extracting from a 128-bit vector.
4678     MVT VT = Elt.getOperand(0).getSimpleValueType();
4679     if (!VT.is128BitVector())
4680       return SDValue();
4681     if (!FirstNonZero.getNode()) {
4682       FirstNonZero = Elt;
4683       FirstNonZeroIdx = i;
4684     }
4685   }
4686
4687   assert(FirstNonZero.getNode() && "Unexpected build vector of all zeros!");
4688   SDValue V1 = FirstNonZero.getOperand(0);
4689   MVT VT = V1.getSimpleValueType();
4690
4691   // See if this build_vector can be lowered as a blend with zero.
4692   SDValue Elt;
4693   unsigned EltMaskIdx, EltIdx;
4694   int Mask[4];
4695   for (EltIdx = 0; EltIdx < 4; ++EltIdx) {
4696     if (Zeroable[EltIdx]) {
4697       // The zero vector will be on the right hand side.
4698       Mask[EltIdx] = EltIdx+4;
4699       continue;
4700     }
4701
4702     Elt = Op->getOperand(EltIdx);
4703     // By construction, Elt is a EXTRACT_VECTOR_ELT with constant index.
4704     EltMaskIdx = cast<ConstantSDNode>(Elt.getOperand(1))->getZExtValue();
4705     if (Elt.getOperand(0) != V1 || EltMaskIdx != EltIdx)
4706       break;
4707     Mask[EltIdx] = EltIdx;
4708   }
4709
4710   if (EltIdx == 4) {
4711     // Let the shuffle legalizer deal with blend operations.
4712     SDValue VZero = getZeroVector(VT, Subtarget, DAG, SDLoc(Op));
4713     if (V1.getSimpleValueType() != VT)
4714       V1 = DAG.getNode(ISD::BITCAST, SDLoc(V1), VT, V1);
4715     return DAG.getVectorShuffle(VT, SDLoc(V1), V1, VZero, &Mask[0]);
4716   }
4717
4718   // See if we can lower this build_vector to a INSERTPS.
4719   if (!Subtarget->hasSSE41())
4720     return SDValue();
4721
4722   SDValue V2 = Elt.getOperand(0);
4723   if (Elt == FirstNonZero && EltIdx == FirstNonZeroIdx)
4724     V1 = SDValue();
4725
4726   bool CanFold = true;
4727   for (unsigned i = EltIdx + 1; i < 4 && CanFold; ++i) {
4728     if (Zeroable[i])
4729       continue;
4730
4731     SDValue Current = Op->getOperand(i);
4732     SDValue SrcVector = Current->getOperand(0);
4733     if (!V1.getNode())
4734       V1 = SrcVector;
4735     CanFold = SrcVector == V1 &&
4736       cast<ConstantSDNode>(Current.getOperand(1))->getZExtValue() == i;
4737   }
4738
4739   if (!CanFold)
4740     return SDValue();
4741
4742   assert(V1.getNode() && "Expected at least two non-zero elements!");
4743   if (V1.getSimpleValueType() != MVT::v4f32)
4744     V1 = DAG.getNode(ISD::BITCAST, SDLoc(V1), MVT::v4f32, V1);
4745   if (V2.getSimpleValueType() != MVT::v4f32)
4746     V2 = DAG.getNode(ISD::BITCAST, SDLoc(V2), MVT::v4f32, V2);
4747
4748   // Ok, we can emit an INSERTPS instruction.
4749   unsigned ZMask = Zeroable.to_ulong();
4750
4751   unsigned InsertPSMask = EltMaskIdx << 6 | EltIdx << 4 | ZMask;
4752   assert((InsertPSMask & ~0xFFu) == 0 && "Invalid mask!");
4753   SDLoc DL(Op);
4754   SDValue Result = DAG.getNode(X86ISD::INSERTPS, DL, MVT::v4f32, V1, V2,
4755                                DAG.getIntPtrConstant(InsertPSMask, DL));
4756   return DAG.getBitcast(VT, Result);
4757 }
4758
4759 /// Return a vector logical shift node.
4760 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
4761                          unsigned NumBits, SelectionDAG &DAG,
4762                          const TargetLowering &TLI, SDLoc dl) {
4763   assert(VT.is128BitVector() && "Unknown type for VShift");
4764   MVT ShVT = MVT::v2i64;
4765   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
4766   SrcOp = DAG.getBitcast(ShVT, SrcOp);
4767   MVT ScalarShiftTy = TLI.getScalarShiftAmountTy(SrcOp.getValueType());
4768   assert(NumBits % 8 == 0 && "Only support byte sized shifts");
4769   SDValue ShiftVal = DAG.getConstant(NumBits/8, dl, ScalarShiftTy);
4770   return DAG.getBitcast(VT, DAG.getNode(Opc, dl, ShVT, SrcOp, ShiftVal));
4771 }
4772
4773 static SDValue
4774 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
4775
4776   // Check if the scalar load can be widened into a vector load. And if
4777   // the address is "base + cst" see if the cst can be "absorbed" into
4778   // the shuffle mask.
4779   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4780     SDValue Ptr = LD->getBasePtr();
4781     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4782       return SDValue();
4783     EVT PVT = LD->getValueType(0);
4784     if (PVT != MVT::i32 && PVT != MVT::f32)
4785       return SDValue();
4786
4787     int FI = -1;
4788     int64_t Offset = 0;
4789     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4790       FI = FINode->getIndex();
4791       Offset = 0;
4792     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
4793                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4794       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4795       Offset = Ptr.getConstantOperandVal(1);
4796       Ptr = Ptr.getOperand(0);
4797     } else {
4798       return SDValue();
4799     }
4800
4801     // FIXME: 256-bit vector instructions don't require a strict alignment,
4802     // improve this code to support it better.
4803     unsigned RequiredAlign = VT.getSizeInBits()/8;
4804     SDValue Chain = LD->getChain();
4805     // Make sure the stack object alignment is at least 16 or 32.
4806     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4807     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
4808       if (MFI->isFixedObjectIndex(FI)) {
4809         // Can't change the alignment. FIXME: It's possible to compute
4810         // the exact stack offset and reference FI + adjust offset instead.
4811         // If someone *really* cares about this. That's the way to implement it.
4812         return SDValue();
4813       } else {
4814         MFI->setObjectAlignment(FI, RequiredAlign);
4815       }
4816     }
4817
4818     // (Offset % 16 or 32) must be multiple of 4. Then address is then
4819     // Ptr + (Offset & ~15).
4820     if (Offset < 0)
4821       return SDValue();
4822     if ((Offset % RequiredAlign) & 3)
4823       return SDValue();
4824     int64_t StartOffset = Offset & ~(RequiredAlign-1);
4825     if (StartOffset) {
4826       SDLoc DL(Ptr);
4827       Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
4828                         DAG.getConstant(StartOffset, DL, Ptr.getValueType()));
4829     }
4830
4831     int EltNo = (Offset - StartOffset) >> 2;
4832     unsigned NumElems = VT.getVectorNumElements();
4833
4834     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4835     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
4836                              LD->getPointerInfo().getWithOffset(StartOffset),
4837                              false, false, false, 0);
4838
4839     SmallVector<int, 8> Mask(NumElems, EltNo);
4840
4841     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
4842   }
4843
4844   return SDValue();
4845 }
4846
4847 /// Given the initializing elements 'Elts' of a vector of type 'VT', see if the
4848 /// elements can be replaced by a single large load which has the same value as
4849 /// a build_vector or insert_subvector whose loaded operands are 'Elts'.
4850 ///
4851 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
4852 ///
4853 /// FIXME: we'd also like to handle the case where the last elements are zero
4854 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4855 /// There's even a handy isZeroNode for that purpose.
4856 static SDValue EltsFromConsecutiveLoads(EVT VT, ArrayRef<SDValue> Elts,
4857                                         SDLoc &DL, SelectionDAG &DAG,
4858                                         bool isAfterLegalize) {
4859   unsigned NumElems = Elts.size();
4860
4861   LoadSDNode *LDBase = nullptr;
4862   unsigned LastLoadedElt = -1U;
4863
4864   // For each element in the initializer, see if we've found a load or an undef.
4865   // If we don't find an initial load element, or later load elements are
4866   // non-consecutive, bail out.
4867   for (unsigned i = 0; i < NumElems; ++i) {
4868     SDValue Elt = Elts[i];
4869     // Look through a bitcast.
4870     if (Elt.getNode() && Elt.getOpcode() == ISD::BITCAST)
4871       Elt = Elt.getOperand(0);
4872     if (!Elt.getNode() ||
4873         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4874       return SDValue();
4875     if (!LDBase) {
4876       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4877         return SDValue();
4878       LDBase = cast<LoadSDNode>(Elt.getNode());
4879       LastLoadedElt = i;
4880       continue;
4881     }
4882     if (Elt.getOpcode() == ISD::UNDEF)
4883       continue;
4884
4885     LoadSDNode *LD = cast<LoadSDNode>(Elt);
4886     EVT LdVT = Elt.getValueType();
4887     // Each loaded element must be the correct fractional portion of the
4888     // requested vector load.
4889     if (LdVT.getSizeInBits() != VT.getSizeInBits() / NumElems)
4890       return SDValue();
4891     if (!DAG.isConsecutiveLoad(LD, LDBase, LdVT.getSizeInBits() / 8, i))
4892       return SDValue();
4893     LastLoadedElt = i;
4894   }
4895
4896   // If we have found an entire vector of loads and undefs, then return a large
4897   // load of the entire vector width starting at the base pointer.  If we found
4898   // consecutive loads for the low half, generate a vzext_load node.
4899   if (LastLoadedElt == NumElems - 1) {
4900     assert(LDBase && "Did not find base load for merging consecutive loads");
4901     EVT EltVT = LDBase->getValueType(0);
4902     // Ensure that the input vector size for the merged loads matches the
4903     // cumulative size of the input elements.
4904     if (VT.getSizeInBits() != EltVT.getSizeInBits() * NumElems)
4905       return SDValue();
4906
4907     if (isAfterLegalize &&
4908         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
4909       return SDValue();
4910
4911     SDValue NewLd = SDValue();
4912
4913     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
4914                         LDBase->getPointerInfo(), LDBase->isVolatile(),
4915                         LDBase->isNonTemporal(), LDBase->isInvariant(),
4916                         LDBase->getAlignment());
4917
4918     if (LDBase->hasAnyUseOfValue(1)) {
4919       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
4920                                      SDValue(LDBase, 1),
4921                                      SDValue(NewLd.getNode(), 1));
4922       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
4923       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
4924                              SDValue(NewLd.getNode(), 1));
4925     }
4926
4927     return NewLd;
4928   }
4929
4930   //TODO: The code below fires only for for loading the low v2i32 / v2f32
4931   //of a v4i32 / v4f32. It's probably worth generalizing.
4932   EVT EltVT = VT.getVectorElementType();
4933   if (NumElems == 4 && LastLoadedElt == 1 && (EltVT.getSizeInBits() == 32) &&
4934       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
4935     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4936     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
4937     SDValue ResNode =
4938         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
4939                                 LDBase->getPointerInfo(),
4940                                 LDBase->getAlignment(),
4941                                 false/*isVolatile*/, true/*ReadMem*/,
4942                                 false/*WriteMem*/);
4943
4944     // Make sure the newly-created LOAD is in the same position as LDBase in
4945     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
4946     // update uses of LDBase's output chain to use the TokenFactor.
4947     if (LDBase->hasAnyUseOfValue(1)) {
4948       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
4949                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
4950       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
4951       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
4952                              SDValue(ResNode.getNode(), 1));
4953     }
4954
4955     return DAG.getBitcast(VT, ResNode);
4956   }
4957   return SDValue();
4958 }
4959
4960 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
4961 /// to generate a splat value for the following cases:
4962 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
4963 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
4964 /// a scalar load, or a constant.
4965 /// The VBROADCAST node is returned when a pattern is found,
4966 /// or SDValue() otherwise.
4967 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
4968                                     SelectionDAG &DAG) {
4969   // VBROADCAST requires AVX.
4970   // TODO: Splats could be generated for non-AVX CPUs using SSE
4971   // instructions, but there's less potential gain for only 128-bit vectors.
4972   if (!Subtarget->hasAVX())
4973     return SDValue();
4974
4975   MVT VT = Op.getSimpleValueType();
4976   SDLoc dl(Op);
4977
4978   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
4979          "Unsupported vector type for broadcast.");
4980
4981   SDValue Ld;
4982   bool ConstSplatVal;
4983
4984   switch (Op.getOpcode()) {
4985     default:
4986       // Unknown pattern found.
4987       return SDValue();
4988
4989     case ISD::BUILD_VECTOR: {
4990       auto *BVOp = cast<BuildVectorSDNode>(Op.getNode());
4991       BitVector UndefElements;
4992       SDValue Splat = BVOp->getSplatValue(&UndefElements);
4993
4994       // We need a splat of a single value to use broadcast, and it doesn't
4995       // make any sense if the value is only in one element of the vector.
4996       if (!Splat || (VT.getVectorNumElements() - UndefElements.count()) <= 1)
4997         return SDValue();
4998
4999       Ld = Splat;
5000       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5001                        Ld.getOpcode() == ISD::ConstantFP);
5002
5003       // Make sure that all of the users of a non-constant load are from the
5004       // BUILD_VECTOR node.
5005       if (!ConstSplatVal && !BVOp->isOnlyUserOf(Ld.getNode()))
5006         return SDValue();
5007       break;
5008     }
5009
5010     case ISD::VECTOR_SHUFFLE: {
5011       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5012
5013       // Shuffles must have a splat mask where the first element is
5014       // broadcasted.
5015       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5016         return SDValue();
5017
5018       SDValue Sc = Op.getOperand(0);
5019       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5020           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5021
5022         if (!Subtarget->hasInt256())
5023           return SDValue();
5024
5025         // Use the register form of the broadcast instruction available on AVX2.
5026         if (VT.getSizeInBits() >= 256)
5027           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5028         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5029       }
5030
5031       Ld = Sc.getOperand(0);
5032       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5033                        Ld.getOpcode() == ISD::ConstantFP);
5034
5035       // The scalar_to_vector node and the suspected
5036       // load node must have exactly one user.
5037       // Constants may have multiple users.
5038
5039       // AVX-512 has register version of the broadcast
5040       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5041         Ld.getValueType().getSizeInBits() >= 32;
5042       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5043           !hasRegVer))
5044         return SDValue();
5045       break;
5046     }
5047   }
5048
5049   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5050   bool IsGE256 = (VT.getSizeInBits() >= 256);
5051
5052   // When optimizing for size, generate up to 5 extra bytes for a broadcast
5053   // instruction to save 8 or more bytes of constant pool data.
5054   // TODO: If multiple splats are generated to load the same constant,
5055   // it may be detrimental to overall size. There needs to be a way to detect
5056   // that condition to know if this is truly a size win.
5057   const Function *F = DAG.getMachineFunction().getFunction();
5058   bool OptForSize = F->hasFnAttribute(Attribute::OptimizeForSize);
5059
5060   // Handle broadcasting a single constant scalar from the constant pool
5061   // into a vector.
5062   // On Sandybridge (no AVX2), it is still better to load a constant vector
5063   // from the constant pool and not to broadcast it from a scalar.
5064   // But override that restriction when optimizing for size.
5065   // TODO: Check if splatting is recommended for other AVX-capable CPUs.
5066   if (ConstSplatVal && (Subtarget->hasAVX2() || OptForSize)) {
5067     EVT CVT = Ld.getValueType();
5068     assert(!CVT.isVector() && "Must not broadcast a vector type");
5069
5070     // Splat f32, i32, v4f64, v4i64 in all cases with AVX2.
5071     // For size optimization, also splat v2f64 and v2i64, and for size opt
5072     // with AVX2, also splat i8 and i16.
5073     // With pattern matching, the VBROADCAST node may become a VMOVDDUP.
5074     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64) ||
5075         (OptForSize && (ScalarSize == 64 || Subtarget->hasAVX2()))) {
5076       const Constant *C = nullptr;
5077       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5078         C = CI->getConstantIntValue();
5079       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5080         C = CF->getConstantFPValue();
5081
5082       assert(C && "Invalid constant type");
5083
5084       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5085       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5086       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5087       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5088                        MachinePointerInfo::getConstantPool(),
5089                        false, false, false, Alignment);
5090
5091       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5092     }
5093   }
5094
5095   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5096
5097   // Handle AVX2 in-register broadcasts.
5098   if (!IsLoad && Subtarget->hasInt256() &&
5099       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5100     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5101
5102   // The scalar source must be a normal load.
5103   if (!IsLoad)
5104     return SDValue();
5105
5106   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64) ||
5107       (Subtarget->hasVLX() && ScalarSize == 64))
5108     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5109
5110   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5111   // double since there is no vbroadcastsd xmm
5112   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5113     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5114       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5115   }
5116
5117   // Unsupported broadcast.
5118   return SDValue();
5119 }
5120
5121 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5122 /// underlying vector and index.
5123 ///
5124 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5125 /// index.
5126 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5127                                          SDValue ExtIdx) {
5128   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5129   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5130     return Idx;
5131
5132   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5133   // lowered this:
5134   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
5135   // to:
5136   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
5137   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
5138   //                           undef)
5139   //                       Constant<0>)
5140   // In this case the vector is the extract_subvector expression and the index
5141   // is 2, as specified by the shuffle.
5142   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
5143   SDValue ShuffleVec = SVOp->getOperand(0);
5144   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
5145   assert(ShuffleVecVT.getVectorElementType() ==
5146          ExtractedFromVec.getSimpleValueType().getVectorElementType());
5147
5148   int ShuffleIdx = SVOp->getMaskElt(Idx);
5149   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
5150     ExtractedFromVec = ShuffleVec;
5151     return ShuffleIdx;
5152   }
5153   return Idx;
5154 }
5155
5156 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5157   MVT VT = Op.getSimpleValueType();
5158
5159   // Skip if insert_vec_elt is not supported.
5160   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5161   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5162     return SDValue();
5163
5164   SDLoc DL(Op);
5165   unsigned NumElems = Op.getNumOperands();
5166
5167   SDValue VecIn1;
5168   SDValue VecIn2;
5169   SmallVector<unsigned, 4> InsertIndices;
5170   SmallVector<int, 8> Mask(NumElems, -1);
5171
5172   for (unsigned i = 0; i != NumElems; ++i) {
5173     unsigned Opc = Op.getOperand(i).getOpcode();
5174
5175     if (Opc == ISD::UNDEF)
5176       continue;
5177
5178     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5179       // Quit if more than 1 elements need inserting.
5180       if (InsertIndices.size() > 1)
5181         return SDValue();
5182
5183       InsertIndices.push_back(i);
5184       continue;
5185     }
5186
5187     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5188     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5189     // Quit if non-constant index.
5190     if (!isa<ConstantSDNode>(ExtIdx))
5191       return SDValue();
5192     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
5193
5194     // Quit if extracted from vector of different type.
5195     if (ExtractedFromVec.getValueType() != VT)
5196       return SDValue();
5197
5198     if (!VecIn1.getNode())
5199       VecIn1 = ExtractedFromVec;
5200     else if (VecIn1 != ExtractedFromVec) {
5201       if (!VecIn2.getNode())
5202         VecIn2 = ExtractedFromVec;
5203       else if (VecIn2 != ExtractedFromVec)
5204         // Quit if more than 2 vectors to shuffle
5205         return SDValue();
5206     }
5207
5208     if (ExtractedFromVec == VecIn1)
5209       Mask[i] = Idx;
5210     else if (ExtractedFromVec == VecIn2)
5211       Mask[i] = Idx + NumElems;
5212   }
5213
5214   if (!VecIn1.getNode())
5215     return SDValue();
5216
5217   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5218   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5219   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5220     unsigned Idx = InsertIndices[i];
5221     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5222                      DAG.getIntPtrConstant(Idx, DL));
5223   }
5224
5225   return NV;
5226 }
5227
5228 static SDValue ConvertI1VectorToInterger(SDValue Op, SelectionDAG &DAG) {
5229   assert(ISD::isBuildVectorOfConstantSDNodes(Op.getNode()) &&
5230          Op.getScalarValueSizeInBits() == 1 &&
5231          "Can not convert non-constant vector");
5232   uint64_t Immediate = 0;
5233   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5234     SDValue In = Op.getOperand(idx);
5235     if (In.getOpcode() != ISD::UNDEF)
5236       Immediate |= cast<ConstantSDNode>(In)->getZExtValue() << idx;
5237   }
5238   SDLoc dl(Op);
5239   MVT VT =
5240    MVT::getIntegerVT(std::max((int)Op.getValueType().getSizeInBits(), 8));
5241   return DAG.getConstant(Immediate, dl, VT);
5242 }
5243 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5244 SDValue
5245 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5246
5247   MVT VT = Op.getSimpleValueType();
5248   assert((VT.getVectorElementType() == MVT::i1) &&
5249          "Unexpected type in LowerBUILD_VECTORvXi1!");
5250
5251   SDLoc dl(Op);
5252   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5253     SDValue Cst = DAG.getTargetConstant(0, dl, MVT::i1);
5254     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5255     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5256   }
5257
5258   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5259     SDValue Cst = DAG.getTargetConstant(1, dl, MVT::i1);
5260     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5261     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5262   }
5263
5264   if (ISD::isBuildVectorOfConstantSDNodes(Op.getNode())) {
5265     SDValue Imm = ConvertI1VectorToInterger(Op, DAG);
5266     if (Imm.getValueSizeInBits() == VT.getSizeInBits())
5267       return DAG.getBitcast(VT, Imm);
5268     SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
5269     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, ExtVec,
5270                         DAG.getIntPtrConstant(0, dl));
5271   }
5272
5273   // Vector has one or more non-const elements
5274   uint64_t Immediate = 0;
5275   SmallVector<unsigned, 16> NonConstIdx;
5276   bool IsSplat = true;
5277   bool HasConstElts = false;
5278   int SplatIdx = -1;
5279   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5280     SDValue In = Op.getOperand(idx);
5281     if (In.getOpcode() == ISD::UNDEF)
5282       continue;
5283     if (!isa<ConstantSDNode>(In))
5284       NonConstIdx.push_back(idx);
5285     else {
5286       Immediate |= cast<ConstantSDNode>(In)->getZExtValue() << idx;
5287       HasConstElts = true;
5288     }
5289     if (SplatIdx == -1)
5290       SplatIdx = idx;
5291     else if (In != Op.getOperand(SplatIdx))
5292       IsSplat = false;
5293   }
5294
5295   // for splat use " (select i1 splat_elt, all-ones, all-zeroes)"
5296   if (IsSplat)
5297     return DAG.getNode(ISD::SELECT, dl, VT, Op.getOperand(SplatIdx),
5298                        DAG.getConstant(1, dl, VT),
5299                        DAG.getConstant(0, dl, VT));
5300
5301   // insert elements one by one
5302   SDValue DstVec;
5303   SDValue Imm;
5304   if (Immediate) {
5305     MVT ImmVT = MVT::getIntegerVT(std::max((int)VT.getSizeInBits(), 8));
5306     Imm = DAG.getConstant(Immediate, dl, ImmVT);
5307   }
5308   else if (HasConstElts)
5309     Imm = DAG.getConstant(0, dl, VT);
5310   else
5311     Imm = DAG.getUNDEF(VT);
5312   if (Imm.getValueSizeInBits() == VT.getSizeInBits())
5313     DstVec = DAG.getBitcast(VT, Imm);
5314   else {
5315     SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
5316     DstVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, ExtVec,
5317                          DAG.getIntPtrConstant(0, dl));
5318   }
5319
5320   for (unsigned i = 0; i < NonConstIdx.size(); ++i) {
5321     unsigned InsertIdx = NonConstIdx[i];
5322     DstVec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
5323                          Op.getOperand(InsertIdx),
5324                          DAG.getIntPtrConstant(InsertIdx, dl));
5325   }
5326   return DstVec;
5327 }
5328
5329 /// \brief Return true if \p N implements a horizontal binop and return the
5330 /// operands for the horizontal binop into V0 and V1.
5331 ///
5332 /// This is a helper function of LowerToHorizontalOp().
5333 /// This function checks that the build_vector \p N in input implements a
5334 /// horizontal operation. Parameter \p Opcode defines the kind of horizontal
5335 /// operation to match.
5336 /// For example, if \p Opcode is equal to ISD::ADD, then this function
5337 /// checks if \p N implements a horizontal arithmetic add; if instead \p Opcode
5338 /// is equal to ISD::SUB, then this function checks if this is a horizontal
5339 /// arithmetic sub.
5340 ///
5341 /// This function only analyzes elements of \p N whose indices are
5342 /// in range [BaseIdx, LastIdx).
5343 static bool isHorizontalBinOp(const BuildVectorSDNode *N, unsigned Opcode,
5344                               SelectionDAG &DAG,
5345                               unsigned BaseIdx, unsigned LastIdx,
5346                               SDValue &V0, SDValue &V1) {
5347   EVT VT = N->getValueType(0);
5348
5349   assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!");
5350   assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx &&
5351          "Invalid Vector in input!");
5352
5353   bool IsCommutable = (Opcode == ISD::ADD || Opcode == ISD::FADD);
5354   bool CanFold = true;
5355   unsigned ExpectedVExtractIdx = BaseIdx;
5356   unsigned NumElts = LastIdx - BaseIdx;
5357   V0 = DAG.getUNDEF(VT);
5358   V1 = DAG.getUNDEF(VT);
5359
5360   // Check if N implements a horizontal binop.
5361   for (unsigned i = 0, e = NumElts; i != e && CanFold; ++i) {
5362     SDValue Op = N->getOperand(i + BaseIdx);
5363
5364     // Skip UNDEFs.
5365     if (Op->getOpcode() == ISD::UNDEF) {
5366       // Update the expected vector extract index.
5367       if (i * 2 == NumElts)
5368         ExpectedVExtractIdx = BaseIdx;
5369       ExpectedVExtractIdx += 2;
5370       continue;
5371     }
5372
5373     CanFold = Op->getOpcode() == Opcode && Op->hasOneUse();
5374
5375     if (!CanFold)
5376       break;
5377
5378     SDValue Op0 = Op.getOperand(0);
5379     SDValue Op1 = Op.getOperand(1);
5380
5381     // Try to match the following pattern:
5382     // (BINOP (extract_vector_elt A, I), (extract_vector_elt A, I+1))
5383     CanFold = (Op0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5384         Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5385         Op0.getOperand(0) == Op1.getOperand(0) &&
5386         isa<ConstantSDNode>(Op0.getOperand(1)) &&
5387         isa<ConstantSDNode>(Op1.getOperand(1)));
5388     if (!CanFold)
5389       break;
5390
5391     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
5392     unsigned I1 = cast<ConstantSDNode>(Op1.getOperand(1))->getZExtValue();
5393
5394     if (i * 2 < NumElts) {
5395       if (V0.getOpcode() == ISD::UNDEF) {
5396         V0 = Op0.getOperand(0);
5397         if (V0.getValueType() != VT)
5398           return false;
5399       }
5400     } else {
5401       if (V1.getOpcode() == ISD::UNDEF) {
5402         V1 = Op0.getOperand(0);
5403         if (V1.getValueType() != VT)
5404           return false;
5405       }
5406       if (i * 2 == NumElts)
5407         ExpectedVExtractIdx = BaseIdx;
5408     }
5409
5410     SDValue Expected = (i * 2 < NumElts) ? V0 : V1;
5411     if (I0 == ExpectedVExtractIdx)
5412       CanFold = I1 == I0 + 1 && Op0.getOperand(0) == Expected;
5413     else if (IsCommutable && I1 == ExpectedVExtractIdx) {
5414       // Try to match the following dag sequence:
5415       // (BINOP (extract_vector_elt A, I+1), (extract_vector_elt A, I))
5416       CanFold = I0 == I1 + 1 && Op1.getOperand(0) == Expected;
5417     } else
5418       CanFold = false;
5419
5420     ExpectedVExtractIdx += 2;
5421   }
5422
5423   return CanFold;
5424 }
5425
5426 /// \brief Emit a sequence of two 128-bit horizontal add/sub followed by
5427 /// a concat_vector.
5428 ///
5429 /// This is a helper function of LowerToHorizontalOp().
5430 /// This function expects two 256-bit vectors called V0 and V1.
5431 /// At first, each vector is split into two separate 128-bit vectors.
5432 /// Then, the resulting 128-bit vectors are used to implement two
5433 /// horizontal binary operations.
5434 ///
5435 /// The kind of horizontal binary operation is defined by \p X86Opcode.
5436 ///
5437 /// \p Mode specifies how the 128-bit parts of V0 and V1 are passed in input to
5438 /// the two new horizontal binop.
5439 /// When Mode is set, the first horizontal binop dag node would take as input
5440 /// the lower 128-bit of V0 and the upper 128-bit of V0. The second
5441 /// horizontal binop dag node would take as input the lower 128-bit of V1
5442 /// and the upper 128-bit of V1.
5443 ///   Example:
5444 ///     HADD V0_LO, V0_HI
5445 ///     HADD V1_LO, V1_HI
5446 ///
5447 /// Otherwise, the first horizontal binop dag node takes as input the lower
5448 /// 128-bit of V0 and the lower 128-bit of V1, and the second horizontal binop
5449 /// dag node takes the upper 128-bit of V0 and the upper 128-bit of V1.
5450 ///   Example:
5451 ///     HADD V0_LO, V1_LO
5452 ///     HADD V0_HI, V1_HI
5453 ///
5454 /// If \p isUndefLO is set, then the algorithm propagates UNDEF to the lower
5455 /// 128-bits of the result. If \p isUndefHI is set, then UNDEF is propagated to
5456 /// the upper 128-bits of the result.
5457 static SDValue ExpandHorizontalBinOp(const SDValue &V0, const SDValue &V1,
5458                                      SDLoc DL, SelectionDAG &DAG,
5459                                      unsigned X86Opcode, bool Mode,
5460                                      bool isUndefLO, bool isUndefHI) {
5461   EVT VT = V0.getValueType();
5462   assert(VT.is256BitVector() && VT == V1.getValueType() &&
5463          "Invalid nodes in input!");
5464
5465   unsigned NumElts = VT.getVectorNumElements();
5466   SDValue V0_LO = Extract128BitVector(V0, 0, DAG, DL);
5467   SDValue V0_HI = Extract128BitVector(V0, NumElts/2, DAG, DL);
5468   SDValue V1_LO = Extract128BitVector(V1, 0, DAG, DL);
5469   SDValue V1_HI = Extract128BitVector(V1, NumElts/2, DAG, DL);
5470   EVT NewVT = V0_LO.getValueType();
5471
5472   SDValue LO = DAG.getUNDEF(NewVT);
5473   SDValue HI = DAG.getUNDEF(NewVT);
5474
5475   if (Mode) {
5476     // Don't emit a horizontal binop if the result is expected to be UNDEF.
5477     if (!isUndefLO && V0->getOpcode() != ISD::UNDEF)
5478       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V0_HI);
5479     if (!isUndefHI && V1->getOpcode() != ISD::UNDEF)
5480       HI = DAG.getNode(X86Opcode, DL, NewVT, V1_LO, V1_HI);
5481   } else {
5482     // Don't emit a horizontal binop if the result is expected to be UNDEF.
5483     if (!isUndefLO && (V0_LO->getOpcode() != ISD::UNDEF ||
5484                        V1_LO->getOpcode() != ISD::UNDEF))
5485       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V1_LO);
5486
5487     if (!isUndefHI && (V0_HI->getOpcode() != ISD::UNDEF ||
5488                        V1_HI->getOpcode() != ISD::UNDEF))
5489       HI = DAG.getNode(X86Opcode, DL, NewVT, V0_HI, V1_HI);
5490   }
5491
5492   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LO, HI);
5493 }
5494
5495 /// Try to fold a build_vector that performs an 'addsub' to an X86ISD::ADDSUB
5496 /// node.
5497 static SDValue LowerToAddSub(const BuildVectorSDNode *BV,
5498                              const X86Subtarget *Subtarget, SelectionDAG &DAG) {
5499   EVT VT = BV->getValueType(0);
5500   if ((!Subtarget->hasSSE3() || (VT != MVT::v4f32 && VT != MVT::v2f64)) &&
5501       (!Subtarget->hasAVX() || (VT != MVT::v8f32 && VT != MVT::v4f64)))
5502     return SDValue();
5503
5504   SDLoc DL(BV);
5505   unsigned NumElts = VT.getVectorNumElements();
5506   SDValue InVec0 = DAG.getUNDEF(VT);
5507   SDValue InVec1 = DAG.getUNDEF(VT);
5508
5509   assert((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v4f32 ||
5510           VT == MVT::v2f64) && "build_vector with an invalid type found!");
5511
5512   // Odd-numbered elements in the input build vector are obtained from
5513   // adding two integer/float elements.
5514   // Even-numbered elements in the input build vector are obtained from
5515   // subtracting two integer/float elements.
5516   unsigned ExpectedOpcode = ISD::FSUB;
5517   unsigned NextExpectedOpcode = ISD::FADD;
5518   bool AddFound = false;
5519   bool SubFound = false;
5520
5521   for (unsigned i = 0, e = NumElts; i != e; ++i) {
5522     SDValue Op = BV->getOperand(i);
5523
5524     // Skip 'undef' values.
5525     unsigned Opcode = Op.getOpcode();
5526     if (Opcode == ISD::UNDEF) {
5527       std::swap(ExpectedOpcode, NextExpectedOpcode);
5528       continue;
5529     }
5530
5531     // Early exit if we found an unexpected opcode.
5532     if (Opcode != ExpectedOpcode)
5533       return SDValue();
5534
5535     SDValue Op0 = Op.getOperand(0);
5536     SDValue Op1 = Op.getOperand(1);
5537
5538     // Try to match the following pattern:
5539     // (BINOP (extract_vector_elt A, i), (extract_vector_elt B, i))
5540     // Early exit if we cannot match that sequence.
5541     if (Op0.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5542         Op1.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5543         !isa<ConstantSDNode>(Op0.getOperand(1)) ||
5544         !isa<ConstantSDNode>(Op1.getOperand(1)) ||
5545         Op0.getOperand(1) != Op1.getOperand(1))
5546       return SDValue();
5547
5548     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
5549     if (I0 != i)
5550       return SDValue();
5551
5552     // We found a valid add/sub node. Update the information accordingly.
5553     if (i & 1)
5554       AddFound = true;
5555     else
5556       SubFound = true;
5557
5558     // Update InVec0 and InVec1.
5559     if (InVec0.getOpcode() == ISD::UNDEF) {
5560       InVec0 = Op0.getOperand(0);
5561       if (InVec0.getValueType() != VT)
5562         return SDValue();
5563     }
5564     if (InVec1.getOpcode() == ISD::UNDEF) {
5565       InVec1 = Op1.getOperand(0);
5566       if (InVec1.getValueType() != VT)
5567         return SDValue();
5568     }
5569
5570     // Make sure that operands in input to each add/sub node always
5571     // come from a same pair of vectors.
5572     if (InVec0 != Op0.getOperand(0)) {
5573       if (ExpectedOpcode == ISD::FSUB)
5574         return SDValue();
5575
5576       // FADD is commutable. Try to commute the operands
5577       // and then test again.
5578       std::swap(Op0, Op1);
5579       if (InVec0 != Op0.getOperand(0))
5580         return SDValue();
5581     }
5582
5583     if (InVec1 != Op1.getOperand(0))
5584       return SDValue();
5585
5586     // Update the pair of expected opcodes.
5587     std::swap(ExpectedOpcode, NextExpectedOpcode);
5588   }
5589
5590   // Don't try to fold this build_vector into an ADDSUB if the inputs are undef.
5591   if (AddFound && SubFound && InVec0.getOpcode() != ISD::UNDEF &&
5592       InVec1.getOpcode() != ISD::UNDEF)
5593     return DAG.getNode(X86ISD::ADDSUB, DL, VT, InVec0, InVec1);
5594
5595   return SDValue();
5596 }
5597
5598 /// Lower BUILD_VECTOR to a horizontal add/sub operation if possible.
5599 static SDValue LowerToHorizontalOp(const BuildVectorSDNode *BV,
5600                                    const X86Subtarget *Subtarget,
5601                                    SelectionDAG &DAG) {
5602   EVT VT = BV->getValueType(0);
5603   unsigned NumElts = VT.getVectorNumElements();
5604   unsigned NumUndefsLO = 0;
5605   unsigned NumUndefsHI = 0;
5606   unsigned Half = NumElts/2;
5607
5608   // Count the number of UNDEF operands in the build_vector in input.
5609   for (unsigned i = 0, e = Half; i != e; ++i)
5610     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
5611       NumUndefsLO++;
5612
5613   for (unsigned i = Half, e = NumElts; i != e; ++i)
5614     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
5615       NumUndefsHI++;
5616
5617   // Early exit if this is either a build_vector of all UNDEFs or all the
5618   // operands but one are UNDEF.
5619   if (NumUndefsLO + NumUndefsHI + 1 >= NumElts)
5620     return SDValue();
5621
5622   SDLoc DL(BV);
5623   SDValue InVec0, InVec1;
5624   if ((VT == MVT::v4f32 || VT == MVT::v2f64) && Subtarget->hasSSE3()) {
5625     // Try to match an SSE3 float HADD/HSUB.
5626     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
5627       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
5628
5629     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
5630       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
5631   } else if ((VT == MVT::v4i32 || VT == MVT::v8i16) && Subtarget->hasSSSE3()) {
5632     // Try to match an SSSE3 integer HADD/HSUB.
5633     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
5634       return DAG.getNode(X86ISD::HADD, DL, VT, InVec0, InVec1);
5635
5636     if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
5637       return DAG.getNode(X86ISD::HSUB, DL, VT, InVec0, InVec1);
5638   }
5639
5640   if (!Subtarget->hasAVX())
5641     return SDValue();
5642
5643   if ((VT == MVT::v8f32 || VT == MVT::v4f64)) {
5644     // Try to match an AVX horizontal add/sub of packed single/double
5645     // precision floating point values from 256-bit vectors.
5646     SDValue InVec2, InVec3;
5647     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, Half, InVec0, InVec1) &&
5648         isHorizontalBinOp(BV, ISD::FADD, DAG, Half, NumElts, InVec2, InVec3) &&
5649         ((InVec0.getOpcode() == ISD::UNDEF ||
5650           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5651         ((InVec1.getOpcode() == ISD::UNDEF ||
5652           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5653       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
5654
5655     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, Half, InVec0, InVec1) &&
5656         isHorizontalBinOp(BV, ISD::FSUB, DAG, Half, NumElts, InVec2, InVec3) &&
5657         ((InVec0.getOpcode() == ISD::UNDEF ||
5658           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5659         ((InVec1.getOpcode() == ISD::UNDEF ||
5660           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5661       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
5662   } else if (VT == MVT::v8i32 || VT == MVT::v16i16) {
5663     // Try to match an AVX2 horizontal add/sub of signed integers.
5664     SDValue InVec2, InVec3;
5665     unsigned X86Opcode;
5666     bool CanFold = true;
5667
5668     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, Half, InVec0, InVec1) &&
5669         isHorizontalBinOp(BV, ISD::ADD, DAG, Half, NumElts, InVec2, InVec3) &&
5670         ((InVec0.getOpcode() == ISD::UNDEF ||
5671           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5672         ((InVec1.getOpcode() == ISD::UNDEF ||
5673           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5674       X86Opcode = X86ISD::HADD;
5675     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, Half, InVec0, InVec1) &&
5676         isHorizontalBinOp(BV, ISD::SUB, DAG, Half, NumElts, InVec2, InVec3) &&
5677         ((InVec0.getOpcode() == ISD::UNDEF ||
5678           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5679         ((InVec1.getOpcode() == ISD::UNDEF ||
5680           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5681       X86Opcode = X86ISD::HSUB;
5682     else
5683       CanFold = false;
5684
5685     if (CanFold) {
5686       // Fold this build_vector into a single horizontal add/sub.
5687       // Do this only if the target has AVX2.
5688       if (Subtarget->hasAVX2())
5689         return DAG.getNode(X86Opcode, DL, VT, InVec0, InVec1);
5690
5691       // Do not try to expand this build_vector into a pair of horizontal
5692       // add/sub if we can emit a pair of scalar add/sub.
5693       if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
5694         return SDValue();
5695
5696       // Convert this build_vector into a pair of horizontal binop followed by
5697       // a concat vector.
5698       bool isUndefLO = NumUndefsLO == Half;
5699       bool isUndefHI = NumUndefsHI == Half;
5700       return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, false,
5701                                    isUndefLO, isUndefHI);
5702     }
5703   }
5704
5705   if ((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v8i32 ||
5706        VT == MVT::v16i16) && Subtarget->hasAVX()) {
5707     unsigned X86Opcode;
5708     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
5709       X86Opcode = X86ISD::HADD;
5710     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
5711       X86Opcode = X86ISD::HSUB;
5712     else if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
5713       X86Opcode = X86ISD::FHADD;
5714     else if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
5715       X86Opcode = X86ISD::FHSUB;
5716     else
5717       return SDValue();
5718
5719     // Don't try to expand this build_vector into a pair of horizontal add/sub
5720     // if we can simply emit a pair of scalar add/sub.
5721     if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
5722       return SDValue();
5723
5724     // Convert this build_vector into two horizontal add/sub followed by
5725     // a concat vector.
5726     bool isUndefLO = NumUndefsLO == Half;
5727     bool isUndefHI = NumUndefsHI == Half;
5728     return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, true,
5729                                  isUndefLO, isUndefHI);
5730   }
5731
5732   return SDValue();
5733 }
5734
5735 SDValue
5736 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5737   SDLoc dl(Op);
5738
5739   MVT VT = Op.getSimpleValueType();
5740   MVT ExtVT = VT.getVectorElementType();
5741   unsigned NumElems = Op.getNumOperands();
5742
5743   // Generate vectors for predicate vectors.
5744   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5745     return LowerBUILD_VECTORvXi1(Op, DAG);
5746
5747   // Vectors containing all zeros can be matched by pxor and xorps later
5748   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5749     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5750     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5751     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5752       return Op;
5753
5754     return getZeroVector(VT, Subtarget, DAG, dl);
5755   }
5756
5757   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5758   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5759   // vpcmpeqd on 256-bit vectors.
5760   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5761     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5762       return Op;
5763
5764     if (!VT.is512BitVector())
5765       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5766   }
5767
5768   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(Op.getNode());
5769   if (SDValue AddSub = LowerToAddSub(BV, Subtarget, DAG))
5770     return AddSub;
5771   if (SDValue HorizontalOp = LowerToHorizontalOp(BV, Subtarget, DAG))
5772     return HorizontalOp;
5773   if (SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG))
5774     return Broadcast;
5775
5776   unsigned EVTBits = ExtVT.getSizeInBits();
5777
5778   unsigned NumZero  = 0;
5779   unsigned NumNonZero = 0;
5780   unsigned NonZeros = 0;
5781   bool IsAllConstants = true;
5782   SmallSet<SDValue, 8> Values;
5783   for (unsigned i = 0; i < NumElems; ++i) {
5784     SDValue Elt = Op.getOperand(i);
5785     if (Elt.getOpcode() == ISD::UNDEF)
5786       continue;
5787     Values.insert(Elt);
5788     if (Elt.getOpcode() != ISD::Constant &&
5789         Elt.getOpcode() != ISD::ConstantFP)
5790       IsAllConstants = false;
5791     if (X86::isZeroNode(Elt))
5792       NumZero++;
5793     else {
5794       NonZeros |= (1 << i);
5795       NumNonZero++;
5796     }
5797   }
5798
5799   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5800   if (NumNonZero == 0)
5801     return DAG.getUNDEF(VT);
5802
5803   // Special case for single non-zero, non-undef, element.
5804   if (NumNonZero == 1) {
5805     unsigned Idx = countTrailingZeros(NonZeros);
5806     SDValue Item = Op.getOperand(Idx);
5807
5808     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5809     // the value are obviously zero, truncate the value to i32 and do the
5810     // insertion that way.  Only do this if the value is non-constant or if the
5811     // value is a constant being inserted into element 0.  It is cheaper to do
5812     // a constant pool load than it is to do a movd + shuffle.
5813     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5814         (!IsAllConstants || Idx == 0)) {
5815       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5816         // Handle SSE only.
5817         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5818         EVT VecVT = MVT::v4i32;
5819
5820         // Truncate the value (which may itself be a constant) to i32, and
5821         // convert it to a vector with movd (S2V+shuffle to zero extend).
5822         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5823         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5824         return DAG.getBitcast(VT, getShuffleVectorZeroOrUndef(
5825                                       Item, Idx * 2, true, Subtarget, DAG));
5826       }
5827     }
5828
5829     // If we have a constant or non-constant insertion into the low element of
5830     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5831     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5832     // depending on what the source datatype is.
5833     if (Idx == 0) {
5834       if (NumZero == 0)
5835         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5836
5837       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5838           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5839         if (VT.is512BitVector()) {
5840           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5841           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5842                              Item, DAG.getIntPtrConstant(0, dl));
5843         }
5844         assert((VT.is128BitVector() || VT.is256BitVector()) &&
5845                "Expected an SSE value type!");
5846         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5847         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5848         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5849       }
5850
5851       // We can't directly insert an i8 or i16 into a vector, so zero extend
5852       // it to i32 first.
5853       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5854         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5855         if (VT.is256BitVector()) {
5856           if (Subtarget->hasAVX()) {
5857             Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v8i32, Item);
5858             Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5859           } else {
5860             // Without AVX, we need to extend to a 128-bit vector and then
5861             // insert into the 256-bit vector.
5862             Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5863             SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5864             Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5865           }
5866         } else {
5867           assert(VT.is128BitVector() && "Expected an SSE value type!");
5868           Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5869           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5870         }
5871         return DAG.getBitcast(VT, Item);
5872       }
5873     }
5874
5875     // Is it a vector logical left shift?
5876     if (NumElems == 2 && Idx == 1 &&
5877         X86::isZeroNode(Op.getOperand(0)) &&
5878         !X86::isZeroNode(Op.getOperand(1))) {
5879       unsigned NumBits = VT.getSizeInBits();
5880       return getVShift(true, VT,
5881                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5882                                    VT, Op.getOperand(1)),
5883                        NumBits/2, DAG, *this, dl);
5884     }
5885
5886     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5887       return SDValue();
5888
5889     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5890     // is a non-constant being inserted into an element other than the low one,
5891     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5892     // movd/movss) to move this into the low element, then shuffle it into
5893     // place.
5894     if (EVTBits == 32) {
5895       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5896       return getShuffleVectorZeroOrUndef(Item, Idx, NumZero > 0, Subtarget, DAG);
5897     }
5898   }
5899
5900   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5901   if (Values.size() == 1) {
5902     if (EVTBits == 32) {
5903       // Instead of a shuffle like this:
5904       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5905       // Check if it's possible to issue this instead.
5906       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5907       unsigned Idx = countTrailingZeros(NonZeros);
5908       SDValue Item = Op.getOperand(Idx);
5909       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5910         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5911     }
5912     return SDValue();
5913   }
5914
5915   // A vector full of immediates; various special cases are already
5916   // handled, so this is best done with a single constant-pool load.
5917   if (IsAllConstants)
5918     return SDValue();
5919
5920   // For AVX-length vectors, see if we can use a vector load to get all of the
5921   // elements, otherwise build the individual 128-bit pieces and use
5922   // shuffles to put them in place.
5923   if (VT.is256BitVector() || VT.is512BitVector()) {
5924     SmallVector<SDValue, 64> V(Op->op_begin(), Op->op_begin() + NumElems);
5925
5926     // Check for a build vector of consecutive loads.
5927     if (SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false))
5928       return LD;
5929
5930     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5931
5932     // Build both the lower and upper subvector.
5933     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
5934                                 makeArrayRef(&V[0], NumElems/2));
5935     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
5936                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
5937
5938     // Recreate the wider vector with the lower and upper part.
5939     if (VT.is256BitVector())
5940       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5941     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5942   }
5943
5944   // Let legalizer expand 2-wide build_vectors.
5945   if (EVTBits == 64) {
5946     if (NumNonZero == 1) {
5947       // One half is zero or undef.
5948       unsigned Idx = countTrailingZeros(NonZeros);
5949       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5950                                  Op.getOperand(Idx));
5951       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5952     }
5953     return SDValue();
5954   }
5955
5956   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5957   if (EVTBits == 8 && NumElems == 16)
5958     if (SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5959                                         Subtarget, *this))
5960       return V;
5961
5962   if (EVTBits == 16 && NumElems == 8)
5963     if (SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
5964                                       Subtarget, *this))
5965       return V;
5966
5967   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
5968   if (EVTBits == 32 && NumElems == 4)
5969     if (SDValue V = LowerBuildVectorv4x32(Op, DAG, Subtarget, *this))
5970       return V;
5971
5972   // If element VT is == 32 bits, turn it into a number of shuffles.
5973   SmallVector<SDValue, 8> V(NumElems);
5974   if (NumElems == 4 && NumZero > 0) {
5975     for (unsigned i = 0; i < 4; ++i) {
5976       bool isZero = !(NonZeros & (1 << i));
5977       if (isZero)
5978         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
5979       else
5980         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5981     }
5982
5983     for (unsigned i = 0; i < 2; ++i) {
5984       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5985         default: break;
5986         case 0:
5987           V[i] = V[i*2];  // Must be a zero vector.
5988           break;
5989         case 1:
5990           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
5991           break;
5992         case 2:
5993           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
5994           break;
5995         case 3:
5996           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
5997           break;
5998       }
5999     }
6000
6001     bool Reverse1 = (NonZeros & 0x3) == 2;
6002     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6003     int MaskVec[] = {
6004       Reverse1 ? 1 : 0,
6005       Reverse1 ? 0 : 1,
6006       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6007       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6008     };
6009     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6010   }
6011
6012   if (Values.size() > 1 && VT.is128BitVector()) {
6013     // Check for a build vector of consecutive loads.
6014     for (unsigned i = 0; i < NumElems; ++i)
6015       V[i] = Op.getOperand(i);
6016
6017     // Check for elements which are consecutive loads.
6018     if (SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false))
6019       return LD;
6020
6021     // Check for a build vector from mostly shuffle plus few inserting.
6022     if (SDValue Sh = buildFromShuffleMostly(Op, DAG))
6023       return Sh;
6024
6025     // For SSE 4.1, use insertps to put the high elements into the low element.
6026     if (Subtarget->hasSSE41()) {
6027       SDValue Result;
6028       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6029         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6030       else
6031         Result = DAG.getUNDEF(VT);
6032
6033       for (unsigned i = 1; i < NumElems; ++i) {
6034         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6035         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6036                              Op.getOperand(i), DAG.getIntPtrConstant(i, dl));
6037       }
6038       return Result;
6039     }
6040
6041     // Otherwise, expand into a number of unpckl*, start by extending each of
6042     // our (non-undef) elements to the full vector width with the element in the
6043     // bottom slot of the vector (which generates no code for SSE).
6044     for (unsigned i = 0; i < NumElems; ++i) {
6045       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6046         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6047       else
6048         V[i] = DAG.getUNDEF(VT);
6049     }
6050
6051     // Next, we iteratively mix elements, e.g. for v4f32:
6052     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6053     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6054     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6055     unsigned EltStride = NumElems >> 1;
6056     while (EltStride != 0) {
6057       for (unsigned i = 0; i < EltStride; ++i) {
6058         // If V[i+EltStride] is undef and this is the first round of mixing,
6059         // then it is safe to just drop this shuffle: V[i] is already in the
6060         // right place, the one element (since it's the first round) being
6061         // inserted as undef can be dropped.  This isn't safe for successive
6062         // rounds because they will permute elements within both vectors.
6063         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6064             EltStride == NumElems/2)
6065           continue;
6066
6067         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6068       }
6069       EltStride >>= 1;
6070     }
6071     return V[0];
6072   }
6073   return SDValue();
6074 }
6075
6076 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6077 // to create 256-bit vectors from two other 128-bit ones.
6078 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6079   SDLoc dl(Op);
6080   MVT ResVT = Op.getSimpleValueType();
6081
6082   assert((ResVT.is256BitVector() ||
6083           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6084
6085   SDValue V1 = Op.getOperand(0);
6086   SDValue V2 = Op.getOperand(1);
6087   unsigned NumElems = ResVT.getVectorNumElements();
6088   if (ResVT.is256BitVector())
6089     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6090
6091   if (Op.getNumOperands() == 4) {
6092     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6093                                 ResVT.getVectorNumElements()/2);
6094     SDValue V3 = Op.getOperand(2);
6095     SDValue V4 = Op.getOperand(3);
6096     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6097       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6098   }
6099   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6100 }
6101
6102 static SDValue LowerCONCAT_VECTORSvXi1(SDValue Op,
6103                                        const X86Subtarget *Subtarget,
6104                                        SelectionDAG & DAG) {
6105   SDLoc dl(Op);
6106   MVT ResVT = Op.getSimpleValueType();
6107   unsigned NumOfOperands = Op.getNumOperands();
6108
6109   assert(isPowerOf2_32(NumOfOperands) &&
6110          "Unexpected number of operands in CONCAT_VECTORS");
6111
6112   if (NumOfOperands > 2) {
6113     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6114                                   ResVT.getVectorNumElements()/2);
6115     SmallVector<SDValue, 2> Ops;
6116     for (unsigned i = 0; i < NumOfOperands/2; i++)
6117       Ops.push_back(Op.getOperand(i));
6118     SDValue Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT, Ops);
6119     Ops.clear();
6120     for (unsigned i = NumOfOperands/2; i < NumOfOperands; i++)
6121       Ops.push_back(Op.getOperand(i));
6122     SDValue Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT, Ops);
6123     return DAG.getNode(ISD::CONCAT_VECTORS, dl, ResVT, Lo, Hi);
6124   }
6125
6126   SDValue V1 = Op.getOperand(0);
6127   SDValue V2 = Op.getOperand(1);
6128   bool IsZeroV1 = ISD::isBuildVectorAllZeros(V1.getNode());
6129   bool IsZeroV2 = ISD::isBuildVectorAllZeros(V2.getNode());
6130
6131   if (IsZeroV1 && IsZeroV2)
6132     return getZeroVector(ResVT, Subtarget, DAG, dl);
6133
6134   SDValue ZeroIdx = DAG.getIntPtrConstant(0, dl);
6135   SDValue Undef = DAG.getUNDEF(ResVT);
6136   unsigned NumElems = ResVT.getVectorNumElements();
6137   SDValue ShiftBits = DAG.getConstant(NumElems/2, dl, MVT::i8);
6138
6139   V2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V2, ZeroIdx);
6140   V2 = DAG.getNode(X86ISD::VSHLI, dl, ResVT, V2, ShiftBits);
6141   if (IsZeroV1)
6142     return V2;
6143
6144   V1 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V1, ZeroIdx);
6145   // Zero the upper bits of V1
6146   V1 = DAG.getNode(X86ISD::VSHLI, dl, ResVT, V1, ShiftBits);
6147   V1 = DAG.getNode(X86ISD::VSRLI, dl, ResVT, V1, ShiftBits);
6148   if (IsZeroV2)
6149     return V1;
6150   return DAG.getNode(ISD::OR, dl, ResVT, V1, V2);
6151 }
6152
6153 static SDValue LowerCONCAT_VECTORS(SDValue Op,
6154                                    const X86Subtarget *Subtarget,
6155                                    SelectionDAG &DAG) {
6156   MVT VT = Op.getSimpleValueType();
6157   if (VT.getVectorElementType() == MVT::i1)
6158     return LowerCONCAT_VECTORSvXi1(Op, Subtarget, DAG);
6159
6160   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6161          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6162           Op.getNumOperands() == 4)));
6163
6164   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6165   // from two other 128-bit ones.
6166
6167   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6168   return LowerAVXCONCAT_VECTORS(Op, DAG);
6169 }
6170
6171
6172 //===----------------------------------------------------------------------===//
6173 // Vector shuffle lowering
6174 //
6175 // This is an experimental code path for lowering vector shuffles on x86. It is
6176 // designed to handle arbitrary vector shuffles and blends, gracefully
6177 // degrading performance as necessary. It works hard to recognize idiomatic
6178 // shuffles and lower them to optimal instruction patterns without leaving
6179 // a framework that allows reasonably efficient handling of all vector shuffle
6180 // patterns.
6181 //===----------------------------------------------------------------------===//
6182
6183 /// \brief Tiny helper function to identify a no-op mask.
6184 ///
6185 /// This is a somewhat boring predicate function. It checks whether the mask
6186 /// array input, which is assumed to be a single-input shuffle mask of the kind
6187 /// used by the X86 shuffle instructions (not a fully general
6188 /// ShuffleVectorSDNode mask) requires any shuffles to occur. Both undef and an
6189 /// in-place shuffle are 'no-op's.
6190 static bool isNoopShuffleMask(ArrayRef<int> Mask) {
6191   for (int i = 0, Size = Mask.size(); i < Size; ++i)
6192     if (Mask[i] != -1 && Mask[i] != i)
6193       return false;
6194   return true;
6195 }
6196
6197 /// \brief Helper function to classify a mask as a single-input mask.
6198 ///
6199 /// This isn't a generic single-input test because in the vector shuffle
6200 /// lowering we canonicalize single inputs to be the first input operand. This
6201 /// means we can more quickly test for a single input by only checking whether
6202 /// an input from the second operand exists. We also assume that the size of
6203 /// mask corresponds to the size of the input vectors which isn't true in the
6204 /// fully general case.
6205 static bool isSingleInputShuffleMask(ArrayRef<int> Mask) {
6206   for (int M : Mask)
6207     if (M >= (int)Mask.size())
6208       return false;
6209   return true;
6210 }
6211
6212 /// \brief Test whether there are elements crossing 128-bit lanes in this
6213 /// shuffle mask.
6214 ///
6215 /// X86 divides up its shuffles into in-lane and cross-lane shuffle operations
6216 /// and we routinely test for these.
6217 static bool is128BitLaneCrossingShuffleMask(MVT VT, ArrayRef<int> Mask) {
6218   int LaneSize = 128 / VT.getScalarSizeInBits();
6219   int Size = Mask.size();
6220   for (int i = 0; i < Size; ++i)
6221     if (Mask[i] >= 0 && (Mask[i] % Size) / LaneSize != i / LaneSize)
6222       return true;
6223   return false;
6224 }
6225
6226 /// \brief Test whether a shuffle mask is equivalent within each 128-bit lane.
6227 ///
6228 /// This checks a shuffle mask to see if it is performing the same
6229 /// 128-bit lane-relative shuffle in each 128-bit lane. This trivially implies
6230 /// that it is also not lane-crossing. It may however involve a blend from the
6231 /// same lane of a second vector.
6232 ///
6233 /// The specific repeated shuffle mask is populated in \p RepeatedMask, as it is
6234 /// non-trivial to compute in the face of undef lanes. The representation is
6235 /// *not* suitable for use with existing 128-bit shuffles as it will contain
6236 /// entries from both V1 and V2 inputs to the wider mask.
6237 static bool
6238 is128BitLaneRepeatedShuffleMask(MVT VT, ArrayRef<int> Mask,
6239                                 SmallVectorImpl<int> &RepeatedMask) {
6240   int LaneSize = 128 / VT.getScalarSizeInBits();
6241   RepeatedMask.resize(LaneSize, -1);
6242   int Size = Mask.size();
6243   for (int i = 0; i < Size; ++i) {
6244     if (Mask[i] < 0)
6245       continue;
6246     if ((Mask[i] % Size) / LaneSize != i / LaneSize)
6247       // This entry crosses lanes, so there is no way to model this shuffle.
6248       return false;
6249
6250     // Ok, handle the in-lane shuffles by detecting if and when they repeat.
6251     if (RepeatedMask[i % LaneSize] == -1)
6252       // This is the first non-undef entry in this slot of a 128-bit lane.
6253       RepeatedMask[i % LaneSize] =
6254           Mask[i] < Size ? Mask[i] % LaneSize : Mask[i] % LaneSize + Size;
6255     else if (RepeatedMask[i % LaneSize] + (i / LaneSize) * LaneSize != Mask[i])
6256       // Found a mismatch with the repeated mask.
6257       return false;
6258   }
6259   return true;
6260 }
6261
6262 /// \brief Checks whether a shuffle mask is equivalent to an explicit list of
6263 /// arguments.
6264 ///
6265 /// This is a fast way to test a shuffle mask against a fixed pattern:
6266 ///
6267 ///   if (isShuffleEquivalent(Mask, 3, 2, {1, 0})) { ... }
6268 ///
6269 /// It returns true if the mask is exactly as wide as the argument list, and
6270 /// each element of the mask is either -1 (signifying undef) or the value given
6271 /// in the argument.
6272 static bool isShuffleEquivalent(SDValue V1, SDValue V2, ArrayRef<int> Mask,
6273                                 ArrayRef<int> ExpectedMask) {
6274   if (Mask.size() != ExpectedMask.size())
6275     return false;
6276
6277   int Size = Mask.size();
6278
6279   // If the values are build vectors, we can look through them to find
6280   // equivalent inputs that make the shuffles equivalent.
6281   auto *BV1 = dyn_cast<BuildVectorSDNode>(V1);
6282   auto *BV2 = dyn_cast<BuildVectorSDNode>(V2);
6283
6284   for (int i = 0; i < Size; ++i)
6285     if (Mask[i] != -1 && Mask[i] != ExpectedMask[i]) {
6286       auto *MaskBV = Mask[i] < Size ? BV1 : BV2;
6287       auto *ExpectedBV = ExpectedMask[i] < Size ? BV1 : BV2;
6288       if (!MaskBV || !ExpectedBV ||
6289           MaskBV->getOperand(Mask[i] % Size) !=
6290               ExpectedBV->getOperand(ExpectedMask[i] % Size))
6291         return false;
6292     }
6293
6294   return true;
6295 }
6296
6297 /// \brief Get a 4-lane 8-bit shuffle immediate for a mask.
6298 ///
6299 /// This helper function produces an 8-bit shuffle immediate corresponding to
6300 /// the ubiquitous shuffle encoding scheme used in x86 instructions for
6301 /// shuffling 4 lanes. It can be used with most of the PSHUF instructions for
6302 /// example.
6303 ///
6304 /// NB: We rely heavily on "undef" masks preserving the input lane.
6305 static SDValue getV4X86ShuffleImm8ForMask(ArrayRef<int> Mask, SDLoc DL,
6306                                           SelectionDAG &DAG) {
6307   assert(Mask.size() == 4 && "Only 4-lane shuffle masks");
6308   assert(Mask[0] >= -1 && Mask[0] < 4 && "Out of bound mask element!");
6309   assert(Mask[1] >= -1 && Mask[1] < 4 && "Out of bound mask element!");
6310   assert(Mask[2] >= -1 && Mask[2] < 4 && "Out of bound mask element!");
6311   assert(Mask[3] >= -1 && Mask[3] < 4 && "Out of bound mask element!");
6312
6313   unsigned Imm = 0;
6314   Imm |= (Mask[0] == -1 ? 0 : Mask[0]) << 0;
6315   Imm |= (Mask[1] == -1 ? 1 : Mask[1]) << 2;
6316   Imm |= (Mask[2] == -1 ? 2 : Mask[2]) << 4;
6317   Imm |= (Mask[3] == -1 ? 3 : Mask[3]) << 6;
6318   return DAG.getConstant(Imm, DL, MVT::i8);
6319 }
6320
6321 /// \brief Try to emit a blend instruction for a shuffle using bit math.
6322 ///
6323 /// This is used as a fallback approach when first class blend instructions are
6324 /// unavailable. Currently it is only suitable for integer vectors, but could
6325 /// be generalized for floating point vectors if desirable.
6326 static SDValue lowerVectorShuffleAsBitBlend(SDLoc DL, MVT VT, SDValue V1,
6327                                             SDValue V2, ArrayRef<int> Mask,
6328                                             SelectionDAG &DAG) {
6329   assert(VT.isInteger() && "Only supports integer vector types!");
6330   MVT EltVT = VT.getScalarType();
6331   int NumEltBits = EltVT.getSizeInBits();
6332   SDValue Zero = DAG.getConstant(0, DL, EltVT);
6333   SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL,
6334                                     EltVT);
6335   SmallVector<SDValue, 16> MaskOps;
6336   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6337     if (Mask[i] != -1 && Mask[i] != i && Mask[i] != i + Size)
6338       return SDValue(); // Shuffled input!
6339     MaskOps.push_back(Mask[i] < Size ? AllOnes : Zero);
6340   }
6341
6342   SDValue V1Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, MaskOps);
6343   V1 = DAG.getNode(ISD::AND, DL, VT, V1, V1Mask);
6344   // We have to cast V2 around.
6345   MVT MaskVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits() / 64);
6346   V2 = DAG.getBitcast(VT, DAG.getNode(X86ISD::ANDNP, DL, MaskVT,
6347                                       DAG.getBitcast(MaskVT, V1Mask),
6348                                       DAG.getBitcast(MaskVT, V2)));
6349   return DAG.getNode(ISD::OR, DL, VT, V1, V2);
6350 }
6351
6352 /// \brief Try to emit a blend instruction for a shuffle.
6353 ///
6354 /// This doesn't do any checks for the availability of instructions for blending
6355 /// these values. It relies on the availability of the X86ISD::BLENDI pattern to
6356 /// be matched in the backend with the type given. What it does check for is
6357 /// that the shuffle mask is in fact a blend.
6358 static SDValue lowerVectorShuffleAsBlend(SDLoc DL, MVT VT, SDValue V1,
6359                                          SDValue V2, ArrayRef<int> Mask,
6360                                          const X86Subtarget *Subtarget,
6361                                          SelectionDAG &DAG) {
6362   unsigned BlendMask = 0;
6363   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6364     if (Mask[i] >= Size) {
6365       if (Mask[i] != i + Size)
6366         return SDValue(); // Shuffled V2 input!
6367       BlendMask |= 1u << i;
6368       continue;
6369     }
6370     if (Mask[i] >= 0 && Mask[i] != i)
6371       return SDValue(); // Shuffled V1 input!
6372   }
6373   switch (VT.SimpleTy) {
6374   case MVT::v2f64:
6375   case MVT::v4f32:
6376   case MVT::v4f64:
6377   case MVT::v8f32:
6378     return DAG.getNode(X86ISD::BLENDI, DL, VT, V1, V2,
6379                        DAG.getConstant(BlendMask, DL, MVT::i8));
6380
6381   case MVT::v4i64:
6382   case MVT::v8i32:
6383     assert(Subtarget->hasAVX2() && "256-bit integer blends require AVX2!");
6384     // FALLTHROUGH
6385   case MVT::v2i64:
6386   case MVT::v4i32:
6387     // If we have AVX2 it is faster to use VPBLENDD when the shuffle fits into
6388     // that instruction.
6389     if (Subtarget->hasAVX2()) {
6390       // Scale the blend by the number of 32-bit dwords per element.
6391       int Scale =  VT.getScalarSizeInBits() / 32;
6392       BlendMask = 0;
6393       for (int i = 0, Size = Mask.size(); i < Size; ++i)
6394         if (Mask[i] >= Size)
6395           for (int j = 0; j < Scale; ++j)
6396             BlendMask |= 1u << (i * Scale + j);
6397
6398       MVT BlendVT = VT.getSizeInBits() > 128 ? MVT::v8i32 : MVT::v4i32;
6399       V1 = DAG.getBitcast(BlendVT, V1);
6400       V2 = DAG.getBitcast(BlendVT, V2);
6401       return DAG.getBitcast(
6402           VT, DAG.getNode(X86ISD::BLENDI, DL, BlendVT, V1, V2,
6403                           DAG.getConstant(BlendMask, DL, MVT::i8)));
6404     }
6405     // FALLTHROUGH
6406   case MVT::v8i16: {
6407     // For integer shuffles we need to expand the mask and cast the inputs to
6408     // v8i16s prior to blending.
6409     int Scale = 8 / VT.getVectorNumElements();
6410     BlendMask = 0;
6411     for (int i = 0, Size = Mask.size(); i < Size; ++i)
6412       if (Mask[i] >= Size)
6413         for (int j = 0; j < Scale; ++j)
6414           BlendMask |= 1u << (i * Scale + j);
6415
6416     V1 = DAG.getBitcast(MVT::v8i16, V1);
6417     V2 = DAG.getBitcast(MVT::v8i16, V2);
6418     return DAG.getBitcast(VT,
6419                           DAG.getNode(X86ISD::BLENDI, DL, MVT::v8i16, V1, V2,
6420                                       DAG.getConstant(BlendMask, DL, MVT::i8)));
6421   }
6422
6423   case MVT::v16i16: {
6424     assert(Subtarget->hasAVX2() && "256-bit integer blends require AVX2!");
6425     SmallVector<int, 8> RepeatedMask;
6426     if (is128BitLaneRepeatedShuffleMask(MVT::v16i16, Mask, RepeatedMask)) {
6427       // We can lower these with PBLENDW which is mirrored across 128-bit lanes.
6428       assert(RepeatedMask.size() == 8 && "Repeated mask size doesn't match!");
6429       BlendMask = 0;
6430       for (int i = 0; i < 8; ++i)
6431         if (RepeatedMask[i] >= 16)
6432           BlendMask |= 1u << i;
6433       return DAG.getNode(X86ISD::BLENDI, DL, MVT::v16i16, V1, V2,
6434                          DAG.getConstant(BlendMask, DL, MVT::i8));
6435     }
6436   }
6437     // FALLTHROUGH
6438   case MVT::v16i8:
6439   case MVT::v32i8: {
6440     assert((VT.getSizeInBits() == 128 || Subtarget->hasAVX2()) &&
6441            "256-bit byte-blends require AVX2 support!");
6442
6443     // Scale the blend by the number of bytes per element.
6444     int Scale = VT.getScalarSizeInBits() / 8;
6445
6446     // This form of blend is always done on bytes. Compute the byte vector
6447     // type.
6448     MVT BlendVT = MVT::getVectorVT(MVT::i8, VT.getSizeInBits() / 8);
6449
6450     // Compute the VSELECT mask. Note that VSELECT is really confusing in the
6451     // mix of LLVM's code generator and the x86 backend. We tell the code
6452     // generator that boolean values in the elements of an x86 vector register
6453     // are -1 for true and 0 for false. We then use the LLVM semantics of 'true'
6454     // mapping a select to operand #1, and 'false' mapping to operand #2. The
6455     // reality in x86 is that vector masks (pre-AVX-512) use only the high bit
6456     // of the element (the remaining are ignored) and 0 in that high bit would
6457     // mean operand #1 while 1 in the high bit would mean operand #2. So while
6458     // the LLVM model for boolean values in vector elements gets the relevant
6459     // bit set, it is set backwards and over constrained relative to x86's
6460     // actual model.
6461     SmallVector<SDValue, 32> VSELECTMask;
6462     for (int i = 0, Size = Mask.size(); i < Size; ++i)
6463       for (int j = 0; j < Scale; ++j)
6464         VSELECTMask.push_back(
6465             Mask[i] < 0 ? DAG.getUNDEF(MVT::i8)
6466                         : DAG.getConstant(Mask[i] < Size ? -1 : 0, DL,
6467                                           MVT::i8));
6468
6469     V1 = DAG.getBitcast(BlendVT, V1);
6470     V2 = DAG.getBitcast(BlendVT, V2);
6471     return DAG.getBitcast(VT, DAG.getNode(ISD::VSELECT, DL, BlendVT,
6472                                           DAG.getNode(ISD::BUILD_VECTOR, DL,
6473                                                       BlendVT, VSELECTMask),
6474                                           V1, V2));
6475   }
6476
6477   default:
6478     llvm_unreachable("Not a supported integer vector type!");
6479   }
6480 }
6481
6482 /// \brief Try to lower as a blend of elements from two inputs followed by
6483 /// a single-input permutation.
6484 ///
6485 /// This matches the pattern where we can blend elements from two inputs and
6486 /// then reduce the shuffle to a single-input permutation.
6487 static SDValue lowerVectorShuffleAsBlendAndPermute(SDLoc DL, MVT VT, SDValue V1,
6488                                                    SDValue V2,
6489                                                    ArrayRef<int> Mask,
6490                                                    SelectionDAG &DAG) {
6491   // We build up the blend mask while checking whether a blend is a viable way
6492   // to reduce the shuffle.
6493   SmallVector<int, 32> BlendMask(Mask.size(), -1);
6494   SmallVector<int, 32> PermuteMask(Mask.size(), -1);
6495
6496   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6497     if (Mask[i] < 0)
6498       continue;
6499
6500     assert(Mask[i] < Size * 2 && "Shuffle input is out of bounds.");
6501
6502     if (BlendMask[Mask[i] % Size] == -1)
6503       BlendMask[Mask[i] % Size] = Mask[i];
6504     else if (BlendMask[Mask[i] % Size] != Mask[i])
6505       return SDValue(); // Can't blend in the needed input!
6506
6507     PermuteMask[i] = Mask[i] % Size;
6508   }
6509
6510   SDValue V = DAG.getVectorShuffle(VT, DL, V1, V2, BlendMask);
6511   return DAG.getVectorShuffle(VT, DL, V, DAG.getUNDEF(VT), PermuteMask);
6512 }
6513
6514 /// \brief Generic routine to decompose a shuffle and blend into indepndent
6515 /// blends and permutes.
6516 ///
6517 /// This matches the extremely common pattern for handling combined
6518 /// shuffle+blend operations on newer X86 ISAs where we have very fast blend
6519 /// operations. It will try to pick the best arrangement of shuffles and
6520 /// blends.
6521 static SDValue lowerVectorShuffleAsDecomposedShuffleBlend(SDLoc DL, MVT VT,
6522                                                           SDValue V1,
6523                                                           SDValue V2,
6524                                                           ArrayRef<int> Mask,
6525                                                           SelectionDAG &DAG) {
6526   // Shuffle the input elements into the desired positions in V1 and V2 and
6527   // blend them together.
6528   SmallVector<int, 32> V1Mask(Mask.size(), -1);
6529   SmallVector<int, 32> V2Mask(Mask.size(), -1);
6530   SmallVector<int, 32> BlendMask(Mask.size(), -1);
6531   for (int i = 0, Size = Mask.size(); i < Size; ++i)
6532     if (Mask[i] >= 0 && Mask[i] < Size) {
6533       V1Mask[i] = Mask[i];
6534       BlendMask[i] = i;
6535     } else if (Mask[i] >= Size) {
6536       V2Mask[i] = Mask[i] - Size;
6537       BlendMask[i] = i + Size;
6538     }
6539
6540   // Try to lower with the simpler initial blend strategy unless one of the
6541   // input shuffles would be a no-op. We prefer to shuffle inputs as the
6542   // shuffle may be able to fold with a load or other benefit. However, when
6543   // we'll have to do 2x as many shuffles in order to achieve this, blending
6544   // first is a better strategy.
6545   if (!isNoopShuffleMask(V1Mask) && !isNoopShuffleMask(V2Mask))
6546     if (SDValue BlendPerm =
6547             lowerVectorShuffleAsBlendAndPermute(DL, VT, V1, V2, Mask, DAG))
6548       return BlendPerm;
6549
6550   V1 = DAG.getVectorShuffle(VT, DL, V1, DAG.getUNDEF(VT), V1Mask);
6551   V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Mask);
6552   return DAG.getVectorShuffle(VT, DL, V1, V2, BlendMask);
6553 }
6554
6555 /// \brief Try to lower a vector shuffle as a byte rotation.
6556 ///
6557 /// SSSE3 has a generic PALIGNR instruction in x86 that will do an arbitrary
6558 /// byte-rotation of the concatenation of two vectors; pre-SSSE3 can use
6559 /// a PSRLDQ/PSLLDQ/POR pattern to get a similar effect. This routine will
6560 /// try to generically lower a vector shuffle through such an pattern. It
6561 /// does not check for the profitability of lowering either as PALIGNR or
6562 /// PSRLDQ/PSLLDQ/POR, only whether the mask is valid to lower in that form.
6563 /// This matches shuffle vectors that look like:
6564 ///
6565 ///   v8i16 [11, 12, 13, 14, 15, 0, 1, 2]
6566 ///
6567 /// Essentially it concatenates V1 and V2, shifts right by some number of
6568 /// elements, and takes the low elements as the result. Note that while this is
6569 /// specified as a *right shift* because x86 is little-endian, it is a *left
6570 /// rotate* of the vector lanes.
6571 static SDValue lowerVectorShuffleAsByteRotate(SDLoc DL, MVT VT, SDValue V1,
6572                                               SDValue V2,
6573                                               ArrayRef<int> Mask,
6574                                               const X86Subtarget *Subtarget,
6575                                               SelectionDAG &DAG) {
6576   assert(!isNoopShuffleMask(Mask) && "We shouldn't lower no-op shuffles!");
6577
6578   int NumElts = Mask.size();
6579   int NumLanes = VT.getSizeInBits() / 128;
6580   int NumLaneElts = NumElts / NumLanes;
6581
6582   // We need to detect various ways of spelling a rotation:
6583   //   [11, 12, 13, 14, 15,  0,  1,  2]
6584   //   [-1, 12, 13, 14, -1, -1,  1, -1]
6585   //   [-1, -1, -1, -1, -1, -1,  1,  2]
6586   //   [ 3,  4,  5,  6,  7,  8,  9, 10]
6587   //   [-1,  4,  5,  6, -1, -1,  9, -1]
6588   //   [-1,  4,  5,  6, -1, -1, -1, -1]
6589   int Rotation = 0;
6590   SDValue Lo, Hi;
6591   for (int l = 0; l < NumElts; l += NumLaneElts) {
6592     for (int i = 0; i < NumLaneElts; ++i) {
6593       if (Mask[l + i] == -1)
6594         continue;
6595       assert(Mask[l + i] >= 0 && "Only -1 is a valid negative mask element!");
6596
6597       // Get the mod-Size index and lane correct it.
6598       int LaneIdx = (Mask[l + i] % NumElts) - l;
6599       // Make sure it was in this lane.
6600       if (LaneIdx < 0 || LaneIdx >= NumLaneElts)
6601         return SDValue();
6602
6603       // Determine where a rotated vector would have started.
6604       int StartIdx = i - LaneIdx;
6605       if (StartIdx == 0)
6606         // The identity rotation isn't interesting, stop.
6607         return SDValue();
6608
6609       // If we found the tail of a vector the rotation must be the missing
6610       // front. If we found the head of a vector, it must be how much of the
6611       // head.
6612       int CandidateRotation = StartIdx < 0 ? -StartIdx : NumLaneElts - StartIdx;
6613
6614       if (Rotation == 0)
6615         Rotation = CandidateRotation;
6616       else if (Rotation != CandidateRotation)
6617         // The rotations don't match, so we can't match this mask.
6618         return SDValue();
6619
6620       // Compute which value this mask is pointing at.
6621       SDValue MaskV = Mask[l + i] < NumElts ? V1 : V2;
6622
6623       // Compute which of the two target values this index should be assigned
6624       // to. This reflects whether the high elements are remaining or the low
6625       // elements are remaining.
6626       SDValue &TargetV = StartIdx < 0 ? Hi : Lo;
6627
6628       // Either set up this value if we've not encountered it before, or check
6629       // that it remains consistent.
6630       if (!TargetV)
6631         TargetV = MaskV;
6632       else if (TargetV != MaskV)
6633         // This may be a rotation, but it pulls from the inputs in some
6634         // unsupported interleaving.
6635         return SDValue();
6636     }
6637   }
6638
6639   // Check that we successfully analyzed the mask, and normalize the results.
6640   assert(Rotation != 0 && "Failed to locate a viable rotation!");
6641   assert((Lo || Hi) && "Failed to find a rotated input vector!");
6642   if (!Lo)
6643     Lo = Hi;
6644   else if (!Hi)
6645     Hi = Lo;
6646
6647   // The actual rotate instruction rotates bytes, so we need to scale the
6648   // rotation based on how many bytes are in the vector lane.
6649   int Scale = 16 / NumLaneElts;
6650
6651   // SSSE3 targets can use the palignr instruction.
6652   if (Subtarget->hasSSSE3()) {
6653     // Cast the inputs to i8 vector of correct length to match PALIGNR.
6654     MVT AlignVT = MVT::getVectorVT(MVT::i8, 16 * NumLanes);
6655     Lo = DAG.getBitcast(AlignVT, Lo);
6656     Hi = DAG.getBitcast(AlignVT, Hi);
6657
6658     return DAG.getBitcast(
6659         VT, DAG.getNode(X86ISD::PALIGNR, DL, AlignVT, Hi, Lo,
6660                         DAG.getConstant(Rotation * Scale, DL, MVT::i8)));
6661   }
6662
6663   assert(VT.getSizeInBits() == 128 &&
6664          "Rotate-based lowering only supports 128-bit lowering!");
6665   assert(Mask.size() <= 16 &&
6666          "Can shuffle at most 16 bytes in a 128-bit vector!");
6667
6668   // Default SSE2 implementation
6669   int LoByteShift = 16 - Rotation * Scale;
6670   int HiByteShift = Rotation * Scale;
6671
6672   // Cast the inputs to v2i64 to match PSLLDQ/PSRLDQ.
6673   Lo = DAG.getBitcast(MVT::v2i64, Lo);
6674   Hi = DAG.getBitcast(MVT::v2i64, Hi);
6675
6676   SDValue LoShift = DAG.getNode(X86ISD::VSHLDQ, DL, MVT::v2i64, Lo,
6677                                 DAG.getConstant(LoByteShift, DL, MVT::i8));
6678   SDValue HiShift = DAG.getNode(X86ISD::VSRLDQ, DL, MVT::v2i64, Hi,
6679                                 DAG.getConstant(HiByteShift, DL, MVT::i8));
6680   return DAG.getBitcast(VT,
6681                         DAG.getNode(ISD::OR, DL, MVT::v2i64, LoShift, HiShift));
6682 }
6683
6684 /// \brief Compute whether each element of a shuffle is zeroable.
6685 ///
6686 /// A "zeroable" vector shuffle element is one which can be lowered to zero.
6687 /// Either it is an undef element in the shuffle mask, the element of the input
6688 /// referenced is undef, or the element of the input referenced is known to be
6689 /// zero. Many x86 shuffles can zero lanes cheaply and we often want to handle
6690 /// as many lanes with this technique as possible to simplify the remaining
6691 /// shuffle.
6692 static SmallBitVector computeZeroableShuffleElements(ArrayRef<int> Mask,
6693                                                      SDValue V1, SDValue V2) {
6694   SmallBitVector Zeroable(Mask.size(), false);
6695
6696   while (V1.getOpcode() == ISD::BITCAST)
6697     V1 = V1->getOperand(0);
6698   while (V2.getOpcode() == ISD::BITCAST)
6699     V2 = V2->getOperand(0);
6700
6701   bool V1IsZero = ISD::isBuildVectorAllZeros(V1.getNode());
6702   bool V2IsZero = ISD::isBuildVectorAllZeros(V2.getNode());
6703
6704   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6705     int M = Mask[i];
6706     // Handle the easy cases.
6707     if (M < 0 || (M >= 0 && M < Size && V1IsZero) || (M >= Size && V2IsZero)) {
6708       Zeroable[i] = true;
6709       continue;
6710     }
6711
6712     // If this is an index into a build_vector node (which has the same number
6713     // of elements), dig out the input value and use it.
6714     SDValue V = M < Size ? V1 : V2;
6715     if (V.getOpcode() != ISD::BUILD_VECTOR || Size != (int)V.getNumOperands())
6716       continue;
6717
6718     SDValue Input = V.getOperand(M % Size);
6719     // The UNDEF opcode check really should be dead code here, but not quite
6720     // worth asserting on (it isn't invalid, just unexpected).
6721     if (Input.getOpcode() == ISD::UNDEF || X86::isZeroNode(Input))
6722       Zeroable[i] = true;
6723   }
6724
6725   return Zeroable;
6726 }
6727
6728 /// \brief Try to emit a bitmask instruction for a shuffle.
6729 ///
6730 /// This handles cases where we can model a blend exactly as a bitmask due to
6731 /// one of the inputs being zeroable.
6732 static SDValue lowerVectorShuffleAsBitMask(SDLoc DL, MVT VT, SDValue V1,
6733                                            SDValue V2, ArrayRef<int> Mask,
6734                                            SelectionDAG &DAG) {
6735   MVT EltVT = VT.getScalarType();
6736   int NumEltBits = EltVT.getSizeInBits();
6737   MVT IntEltVT = MVT::getIntegerVT(NumEltBits);
6738   SDValue Zero = DAG.getConstant(0, DL, IntEltVT);
6739   SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL,
6740                                     IntEltVT);
6741   if (EltVT.isFloatingPoint()) {
6742     Zero = DAG.getBitcast(EltVT, Zero);
6743     AllOnes = DAG.getBitcast(EltVT, AllOnes);
6744   }
6745   SmallVector<SDValue, 16> VMaskOps(Mask.size(), Zero);
6746   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
6747   SDValue V;
6748   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6749     if (Zeroable[i])
6750       continue;
6751     if (Mask[i] % Size != i)
6752       return SDValue(); // Not a blend.
6753     if (!V)
6754       V = Mask[i] < Size ? V1 : V2;
6755     else if (V != (Mask[i] < Size ? V1 : V2))
6756       return SDValue(); // Can only let one input through the mask.
6757
6758     VMaskOps[i] = AllOnes;
6759   }
6760   if (!V)
6761     return SDValue(); // No non-zeroable elements!
6762
6763   SDValue VMask = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, VMaskOps);
6764   V = DAG.getNode(VT.isFloatingPoint()
6765                   ? (unsigned) X86ISD::FAND : (unsigned) ISD::AND,
6766                   DL, VT, V, VMask);
6767   return V;
6768 }
6769
6770 /// \brief Try to lower a vector shuffle as a bit shift (shifts in zeros).
6771 ///
6772 /// Attempts to match a shuffle mask against the PSLL(W/D/Q/DQ) and
6773 /// PSRL(W/D/Q/DQ) SSE2 and AVX2 logical bit-shift instructions. The function
6774 /// matches elements from one of the input vectors shuffled to the left or
6775 /// right with zeroable elements 'shifted in'. It handles both the strictly
6776 /// bit-wise element shifts and the byte shift across an entire 128-bit double
6777 /// quad word lane.
6778 ///
6779 /// PSHL : (little-endian) left bit shift.
6780 /// [ zz, 0, zz,  2 ]
6781 /// [ -1, 4, zz, -1 ]
6782 /// PSRL : (little-endian) right bit shift.
6783 /// [  1, zz,  3, zz]
6784 /// [ -1, -1,  7, zz]
6785 /// PSLLDQ : (little-endian) left byte shift
6786 /// [ zz,  0,  1,  2,  3,  4,  5,  6]
6787 /// [ zz, zz, -1, -1,  2,  3,  4, -1]
6788 /// [ zz, zz, zz, zz, zz, zz, -1,  1]
6789 /// PSRLDQ : (little-endian) right byte shift
6790 /// [  5, 6,  7, zz, zz, zz, zz, zz]
6791 /// [ -1, 5,  6,  7, zz, zz, zz, zz]
6792 /// [  1, 2, -1, -1, -1, -1, zz, zz]
6793 static SDValue lowerVectorShuffleAsShift(SDLoc DL, MVT VT, SDValue V1,
6794                                          SDValue V2, ArrayRef<int> Mask,
6795                                          SelectionDAG &DAG) {
6796   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
6797
6798   int Size = Mask.size();
6799   assert(Size == (int)VT.getVectorNumElements() && "Unexpected mask size");
6800
6801   auto CheckZeros = [&](int Shift, int Scale, bool Left) {
6802     for (int i = 0; i < Size; i += Scale)
6803       for (int j = 0; j < Shift; ++j)
6804         if (!Zeroable[i + j + (Left ? 0 : (Scale - Shift))])
6805           return false;
6806
6807     return true;
6808   };
6809
6810   auto MatchShift = [&](int Shift, int Scale, bool Left, SDValue V) {
6811     for (int i = 0; i != Size; i += Scale) {
6812       unsigned Pos = Left ? i + Shift : i;
6813       unsigned Low = Left ? i : i + Shift;
6814       unsigned Len = Scale - Shift;
6815       if (!isSequentialOrUndefInRange(Mask, Pos, Len,
6816                                       Low + (V == V1 ? 0 : Size)))
6817         return SDValue();
6818     }
6819
6820     int ShiftEltBits = VT.getScalarSizeInBits() * Scale;
6821     bool ByteShift = ShiftEltBits > 64;
6822     unsigned OpCode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI)
6823                            : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI);
6824     int ShiftAmt = Shift * VT.getScalarSizeInBits() / (ByteShift ? 8 : 1);
6825
6826     // Normalize the scale for byte shifts to still produce an i64 element
6827     // type.
6828     Scale = ByteShift ? Scale / 2 : Scale;
6829
6830     // We need to round trip through the appropriate type for the shift.
6831     MVT ShiftSVT = MVT::getIntegerVT(VT.getScalarSizeInBits() * Scale);
6832     MVT ShiftVT = MVT::getVectorVT(ShiftSVT, Size / Scale);
6833     assert(DAG.getTargetLoweringInfo().isTypeLegal(ShiftVT) &&
6834            "Illegal integer vector type");
6835     V = DAG.getBitcast(ShiftVT, V);
6836
6837     V = DAG.getNode(OpCode, DL, ShiftVT, V,
6838                     DAG.getConstant(ShiftAmt, DL, MVT::i8));
6839     return DAG.getBitcast(VT, V);
6840   };
6841
6842   // SSE/AVX supports logical shifts up to 64-bit integers - so we can just
6843   // keep doubling the size of the integer elements up to that. We can
6844   // then shift the elements of the integer vector by whole multiples of
6845   // their width within the elements of the larger integer vector. Test each
6846   // multiple to see if we can find a match with the moved element indices
6847   // and that the shifted in elements are all zeroable.
6848   for (int Scale = 2; Scale * VT.getScalarSizeInBits() <= 128; Scale *= 2)
6849     for (int Shift = 1; Shift != Scale; ++Shift)
6850       for (bool Left : {true, false})
6851         if (CheckZeros(Shift, Scale, Left))
6852           for (SDValue V : {V1, V2})
6853             if (SDValue Match = MatchShift(Shift, Scale, Left, V))
6854               return Match;
6855
6856   // no match
6857   return SDValue();
6858 }
6859
6860 /// \brief Lower a vector shuffle as a zero or any extension.
6861 ///
6862 /// Given a specific number of elements, element bit width, and extension
6863 /// stride, produce either a zero or any extension based on the available
6864 /// features of the subtarget.
6865 static SDValue lowerVectorShuffleAsSpecificZeroOrAnyExtend(
6866     SDLoc DL, MVT VT, int Scale, bool AnyExt, SDValue InputV,
6867     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6868   assert(Scale > 1 && "Need a scale to extend.");
6869   int NumElements = VT.getVectorNumElements();
6870   int EltBits = VT.getScalarSizeInBits();
6871   assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
6872          "Only 8, 16, and 32 bit elements can be extended.");
6873   assert(Scale * EltBits <= 64 && "Cannot zero extend past 64 bits.");
6874
6875   // Found a valid zext mask! Try various lowering strategies based on the
6876   // input type and available ISA extensions.
6877   if (Subtarget->hasSSE41()) {
6878     MVT ExtVT = MVT::getVectorVT(MVT::getIntegerVT(EltBits * Scale),
6879                                  NumElements / Scale);
6880     return DAG.getBitcast(VT, DAG.getNode(X86ISD::VZEXT, DL, ExtVT, InputV));
6881   }
6882
6883   // For any extends we can cheat for larger element sizes and use shuffle
6884   // instructions that can fold with a load and/or copy.
6885   if (AnyExt && EltBits == 32) {
6886     int PSHUFDMask[4] = {0, -1, 1, -1};
6887     return DAG.getBitcast(
6888         VT, DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
6889                         DAG.getBitcast(MVT::v4i32, InputV),
6890                         getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
6891   }
6892   if (AnyExt && EltBits == 16 && Scale > 2) {
6893     int PSHUFDMask[4] = {0, -1, 0, -1};
6894     InputV = DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
6895                          DAG.getBitcast(MVT::v4i32, InputV),
6896                          getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG));
6897     int PSHUFHWMask[4] = {1, -1, -1, -1};
6898     return DAG.getBitcast(
6899         VT, DAG.getNode(X86ISD::PSHUFHW, DL, MVT::v8i16,
6900                         DAG.getBitcast(MVT::v8i16, InputV),
6901                         getV4X86ShuffleImm8ForMask(PSHUFHWMask, DL, DAG)));
6902   }
6903
6904   // If this would require more than 2 unpack instructions to expand, use
6905   // pshufb when available. We can only use more than 2 unpack instructions
6906   // when zero extending i8 elements which also makes it easier to use pshufb.
6907   if (Scale > 4 && EltBits == 8 && Subtarget->hasSSSE3()) {
6908     assert(NumElements == 16 && "Unexpected byte vector width!");
6909     SDValue PSHUFBMask[16];
6910     for (int i = 0; i < 16; ++i)
6911       PSHUFBMask[i] =
6912           DAG.getConstant((i % Scale == 0) ? i / Scale : 0x80, DL, MVT::i8);
6913     InputV = DAG.getBitcast(MVT::v16i8, InputV);
6914     return DAG.getBitcast(VT,
6915                           DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8, InputV,
6916                                       DAG.getNode(ISD::BUILD_VECTOR, DL,
6917                                                   MVT::v16i8, PSHUFBMask)));
6918   }
6919
6920   // Otherwise emit a sequence of unpacks.
6921   do {
6922     MVT InputVT = MVT::getVectorVT(MVT::getIntegerVT(EltBits), NumElements);
6923     SDValue Ext = AnyExt ? DAG.getUNDEF(InputVT)
6924                          : getZeroVector(InputVT, Subtarget, DAG, DL);
6925     InputV = DAG.getBitcast(InputVT, InputV);
6926     InputV = DAG.getNode(X86ISD::UNPCKL, DL, InputVT, InputV, Ext);
6927     Scale /= 2;
6928     EltBits *= 2;
6929     NumElements /= 2;
6930   } while (Scale > 1);
6931   return DAG.getBitcast(VT, InputV);
6932 }
6933
6934 /// \brief Try to lower a vector shuffle as a zero extension on any microarch.
6935 ///
6936 /// This routine will try to do everything in its power to cleverly lower
6937 /// a shuffle which happens to match the pattern of a zero extend. It doesn't
6938 /// check for the profitability of this lowering,  it tries to aggressively
6939 /// match this pattern. It will use all of the micro-architectural details it
6940 /// can to emit an efficient lowering. It handles both blends with all-zero
6941 /// inputs to explicitly zero-extend and undef-lanes (sometimes undef due to
6942 /// masking out later).
6943 ///
6944 /// The reason we have dedicated lowering for zext-style shuffles is that they
6945 /// are both incredibly common and often quite performance sensitive.
6946 static SDValue lowerVectorShuffleAsZeroOrAnyExtend(
6947     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
6948     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6949   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
6950
6951   int Bits = VT.getSizeInBits();
6952   int NumElements = VT.getVectorNumElements();
6953   assert(VT.getScalarSizeInBits() <= 32 &&
6954          "Exceeds 32-bit integer zero extension limit");
6955   assert((int)Mask.size() == NumElements && "Unexpected shuffle mask size");
6956
6957   // Define a helper function to check a particular ext-scale and lower to it if
6958   // valid.
6959   auto Lower = [&](int Scale) -> SDValue {
6960     SDValue InputV;
6961     bool AnyExt = true;
6962     for (int i = 0; i < NumElements; ++i) {
6963       if (Mask[i] == -1)
6964         continue; // Valid anywhere but doesn't tell us anything.
6965       if (i % Scale != 0) {
6966         // Each of the extended elements need to be zeroable.
6967         if (!Zeroable[i])
6968           return SDValue();
6969
6970         // We no longer are in the anyext case.
6971         AnyExt = false;
6972         continue;
6973       }
6974
6975       // Each of the base elements needs to be consecutive indices into the
6976       // same input vector.
6977       SDValue V = Mask[i] < NumElements ? V1 : V2;
6978       if (!InputV)
6979         InputV = V;
6980       else if (InputV != V)
6981         return SDValue(); // Flip-flopping inputs.
6982
6983       if (Mask[i] % NumElements != i / Scale)
6984         return SDValue(); // Non-consecutive strided elements.
6985     }
6986
6987     // If we fail to find an input, we have a zero-shuffle which should always
6988     // have already been handled.
6989     // FIXME: Maybe handle this here in case during blending we end up with one?
6990     if (!InputV)
6991       return SDValue();
6992
6993     return lowerVectorShuffleAsSpecificZeroOrAnyExtend(
6994         DL, VT, Scale, AnyExt, InputV, Subtarget, DAG);
6995   };
6996
6997   // The widest scale possible for extending is to a 64-bit integer.
6998   assert(Bits % 64 == 0 &&
6999          "The number of bits in a vector must be divisible by 64 on x86!");
7000   int NumExtElements = Bits / 64;
7001
7002   // Each iteration, try extending the elements half as much, but into twice as
7003   // many elements.
7004   for (; NumExtElements < NumElements; NumExtElements *= 2) {
7005     assert(NumElements % NumExtElements == 0 &&
7006            "The input vector size must be divisible by the extended size.");
7007     if (SDValue V = Lower(NumElements / NumExtElements))
7008       return V;
7009   }
7010
7011   // General extends failed, but 128-bit vectors may be able to use MOVQ.
7012   if (Bits != 128)
7013     return SDValue();
7014
7015   // Returns one of the source operands if the shuffle can be reduced to a
7016   // MOVQ, copying the lower 64-bits and zero-extending to the upper 64-bits.
7017   auto CanZExtLowHalf = [&]() {
7018     for (int i = NumElements / 2; i != NumElements; ++i)
7019       if (!Zeroable[i])
7020         return SDValue();
7021     if (isSequentialOrUndefInRange(Mask, 0, NumElements / 2, 0))
7022       return V1;
7023     if (isSequentialOrUndefInRange(Mask, 0, NumElements / 2, NumElements))
7024       return V2;
7025     return SDValue();
7026   };
7027
7028   if (SDValue V = CanZExtLowHalf()) {
7029     V = DAG.getBitcast(MVT::v2i64, V);
7030     V = DAG.getNode(X86ISD::VZEXT_MOVL, DL, MVT::v2i64, V);
7031     return DAG.getBitcast(VT, V);
7032   }
7033
7034   // No viable ext lowering found.
7035   return SDValue();
7036 }
7037
7038 /// \brief Try to get a scalar value for a specific element of a vector.
7039 ///
7040 /// Looks through BUILD_VECTOR and SCALAR_TO_VECTOR nodes to find a scalar.
7041 static SDValue getScalarValueForVectorElement(SDValue V, int Idx,
7042                                               SelectionDAG &DAG) {
7043   MVT VT = V.getSimpleValueType();
7044   MVT EltVT = VT.getVectorElementType();
7045   while (V.getOpcode() == ISD::BITCAST)
7046     V = V.getOperand(0);
7047   // If the bitcasts shift the element size, we can't extract an equivalent
7048   // element from it.
7049   MVT NewVT = V.getSimpleValueType();
7050   if (!NewVT.isVector() || NewVT.getScalarSizeInBits() != VT.getScalarSizeInBits())
7051     return SDValue();
7052
7053   if (V.getOpcode() == ISD::BUILD_VECTOR ||
7054       (Idx == 0 && V.getOpcode() == ISD::SCALAR_TO_VECTOR)) {
7055     // Ensure the scalar operand is the same size as the destination.
7056     // FIXME: Add support for scalar truncation where possible.
7057     SDValue S = V.getOperand(Idx);
7058     if (EltVT.getSizeInBits() == S.getSimpleValueType().getSizeInBits())
7059       return DAG.getNode(ISD::BITCAST, SDLoc(V), EltVT, S);
7060   }
7061
7062   return SDValue();
7063 }
7064
7065 /// \brief Helper to test for a load that can be folded with x86 shuffles.
7066 ///
7067 /// This is particularly important because the set of instructions varies
7068 /// significantly based on whether the operand is a load or not.
7069 static bool isShuffleFoldableLoad(SDValue V) {
7070   while (V.getOpcode() == ISD::BITCAST)
7071     V = V.getOperand(0);
7072
7073   return ISD::isNON_EXTLoad(V.getNode());
7074 }
7075
7076 /// \brief Try to lower insertion of a single element into a zero vector.
7077 ///
7078 /// This is a common pattern that we have especially efficient patterns to lower
7079 /// across all subtarget feature sets.
7080 static SDValue lowerVectorShuffleAsElementInsertion(
7081     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
7082     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7083   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7084   MVT ExtVT = VT;
7085   MVT EltVT = VT.getVectorElementType();
7086
7087   int V2Index = std::find_if(Mask.begin(), Mask.end(),
7088                              [&Mask](int M) { return M >= (int)Mask.size(); }) -
7089                 Mask.begin();
7090   bool IsV1Zeroable = true;
7091   for (int i = 0, Size = Mask.size(); i < Size; ++i)
7092     if (i != V2Index && !Zeroable[i]) {
7093       IsV1Zeroable = false;
7094       break;
7095     }
7096
7097   // Check for a single input from a SCALAR_TO_VECTOR node.
7098   // FIXME: All of this should be canonicalized into INSERT_VECTOR_ELT and
7099   // all the smarts here sunk into that routine. However, the current
7100   // lowering of BUILD_VECTOR makes that nearly impossible until the old
7101   // vector shuffle lowering is dead.
7102   if (SDValue V2S = getScalarValueForVectorElement(
7103           V2, Mask[V2Index] - Mask.size(), DAG)) {
7104     // We need to zext the scalar if it is smaller than an i32.
7105     V2S = DAG.getBitcast(EltVT, V2S);
7106     if (EltVT == MVT::i8 || EltVT == MVT::i16) {
7107       // Using zext to expand a narrow element won't work for non-zero
7108       // insertions.
7109       if (!IsV1Zeroable)
7110         return SDValue();
7111
7112       // Zero-extend directly to i32.
7113       ExtVT = MVT::v4i32;
7114       V2S = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, V2S);
7115     }
7116     V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, ExtVT, V2S);
7117   } else if (Mask[V2Index] != (int)Mask.size() || EltVT == MVT::i8 ||
7118              EltVT == MVT::i16) {
7119     // Either not inserting from the low element of the input or the input
7120     // element size is too small to use VZEXT_MOVL to clear the high bits.
7121     return SDValue();
7122   }
7123
7124   if (!IsV1Zeroable) {
7125     // If V1 can't be treated as a zero vector we have fewer options to lower
7126     // this. We can't support integer vectors or non-zero targets cheaply, and
7127     // the V1 elements can't be permuted in any way.
7128     assert(VT == ExtVT && "Cannot change extended type when non-zeroable!");
7129     if (!VT.isFloatingPoint() || V2Index != 0)
7130       return SDValue();
7131     SmallVector<int, 8> V1Mask(Mask.begin(), Mask.end());
7132     V1Mask[V2Index] = -1;
7133     if (!isNoopShuffleMask(V1Mask))
7134       return SDValue();
7135     // This is essentially a special case blend operation, but if we have
7136     // general purpose blend operations, they are always faster. Bail and let
7137     // the rest of the lowering handle these as blends.
7138     if (Subtarget->hasSSE41())
7139       return SDValue();
7140
7141     // Otherwise, use MOVSD or MOVSS.
7142     assert((EltVT == MVT::f32 || EltVT == MVT::f64) &&
7143            "Only two types of floating point element types to handle!");
7144     return DAG.getNode(EltVT == MVT::f32 ? X86ISD::MOVSS : X86ISD::MOVSD, DL,
7145                        ExtVT, V1, V2);
7146   }
7147
7148   // This lowering only works for the low element with floating point vectors.
7149   if (VT.isFloatingPoint() && V2Index != 0)
7150     return SDValue();
7151
7152   V2 = DAG.getNode(X86ISD::VZEXT_MOVL, DL, ExtVT, V2);
7153   if (ExtVT != VT)
7154     V2 = DAG.getBitcast(VT, V2);
7155
7156   if (V2Index != 0) {
7157     // If we have 4 or fewer lanes we can cheaply shuffle the element into
7158     // the desired position. Otherwise it is more efficient to do a vector
7159     // shift left. We know that we can do a vector shift left because all
7160     // the inputs are zero.
7161     if (VT.isFloatingPoint() || VT.getVectorNumElements() <= 4) {
7162       SmallVector<int, 4> V2Shuffle(Mask.size(), 1);
7163       V2Shuffle[V2Index] = 0;
7164       V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Shuffle);
7165     } else {
7166       V2 = DAG.getBitcast(MVT::v2i64, V2);
7167       V2 = DAG.getNode(
7168           X86ISD::VSHLDQ, DL, MVT::v2i64, V2,
7169           DAG.getConstant(
7170               V2Index * EltVT.getSizeInBits()/8, DL,
7171               DAG.getTargetLoweringInfo().getScalarShiftAmountTy(MVT::v2i64)));
7172       V2 = DAG.getBitcast(VT, V2);
7173     }
7174   }
7175   return V2;
7176 }
7177
7178 /// \brief Try to lower broadcast of a single element.
7179 ///
7180 /// For convenience, this code also bundles all of the subtarget feature set
7181 /// filtering. While a little annoying to re-dispatch on type here, there isn't
7182 /// a convenient way to factor it out.
7183 static SDValue lowerVectorShuffleAsBroadcast(SDLoc DL, MVT VT, SDValue V,
7184                                              ArrayRef<int> Mask,
7185                                              const X86Subtarget *Subtarget,
7186                                              SelectionDAG &DAG) {
7187   if (!Subtarget->hasAVX())
7188     return SDValue();
7189   if (VT.isInteger() && !Subtarget->hasAVX2())
7190     return SDValue();
7191
7192   // Check that the mask is a broadcast.
7193   int BroadcastIdx = -1;
7194   for (int M : Mask)
7195     if (M >= 0 && BroadcastIdx == -1)
7196       BroadcastIdx = M;
7197     else if (M >= 0 && M != BroadcastIdx)
7198       return SDValue();
7199
7200   assert(BroadcastIdx < (int)Mask.size() && "We only expect to be called with "
7201                                             "a sorted mask where the broadcast "
7202                                             "comes from V1.");
7203
7204   // Go up the chain of (vector) values to find a scalar load that we can
7205   // combine with the broadcast.
7206   for (;;) {
7207     switch (V.getOpcode()) {
7208     case ISD::CONCAT_VECTORS: {
7209       int OperandSize = Mask.size() / V.getNumOperands();
7210       V = V.getOperand(BroadcastIdx / OperandSize);
7211       BroadcastIdx %= OperandSize;
7212       continue;
7213     }
7214
7215     case ISD::INSERT_SUBVECTOR: {
7216       SDValue VOuter = V.getOperand(0), VInner = V.getOperand(1);
7217       auto ConstantIdx = dyn_cast<ConstantSDNode>(V.getOperand(2));
7218       if (!ConstantIdx)
7219         break;
7220
7221       int BeginIdx = (int)ConstantIdx->getZExtValue();
7222       int EndIdx =
7223           BeginIdx + (int)VInner.getValueType().getVectorNumElements();
7224       if (BroadcastIdx >= BeginIdx && BroadcastIdx < EndIdx) {
7225         BroadcastIdx -= BeginIdx;
7226         V = VInner;
7227       } else {
7228         V = VOuter;
7229       }
7230       continue;
7231     }
7232     }
7233     break;
7234   }
7235
7236   // Check if this is a broadcast of a scalar. We special case lowering
7237   // for scalars so that we can more effectively fold with loads.
7238   if (V.getOpcode() == ISD::BUILD_VECTOR ||
7239       (V.getOpcode() == ISD::SCALAR_TO_VECTOR && BroadcastIdx == 0)) {
7240     V = V.getOperand(BroadcastIdx);
7241
7242     // If the scalar isn't a load, we can't broadcast from it in AVX1.
7243     // Only AVX2 has register broadcasts.
7244     if (!Subtarget->hasAVX2() && !isShuffleFoldableLoad(V))
7245       return SDValue();
7246   } else if (BroadcastIdx != 0 || !Subtarget->hasAVX2()) {
7247     // We can't broadcast from a vector register without AVX2, and we can only
7248     // broadcast from the zero-element of a vector register.
7249     return SDValue();
7250   }
7251
7252   return DAG.getNode(X86ISD::VBROADCAST, DL, VT, V);
7253 }
7254
7255 // Check for whether we can use INSERTPS to perform the shuffle. We only use
7256 // INSERTPS when the V1 elements are already in the correct locations
7257 // because otherwise we can just always use two SHUFPS instructions which
7258 // are much smaller to encode than a SHUFPS and an INSERTPS. We can also
7259 // perform INSERTPS if a single V1 element is out of place and all V2
7260 // elements are zeroable.
7261 static SDValue lowerVectorShuffleAsInsertPS(SDValue Op, SDValue V1, SDValue V2,
7262                                             ArrayRef<int> Mask,
7263                                             SelectionDAG &DAG) {
7264   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
7265   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7266   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7267   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7268
7269   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7270
7271   unsigned ZMask = 0;
7272   int V1DstIndex = -1;
7273   int V2DstIndex = -1;
7274   bool V1UsedInPlace = false;
7275
7276   for (int i = 0; i < 4; ++i) {
7277     // Synthesize a zero mask from the zeroable elements (includes undefs).
7278     if (Zeroable[i]) {
7279       ZMask |= 1 << i;
7280       continue;
7281     }
7282
7283     // Flag if we use any V1 inputs in place.
7284     if (i == Mask[i]) {
7285       V1UsedInPlace = true;
7286       continue;
7287     }
7288
7289     // We can only insert a single non-zeroable element.
7290     if (V1DstIndex != -1 || V2DstIndex != -1)
7291       return SDValue();
7292
7293     if (Mask[i] < 4) {
7294       // V1 input out of place for insertion.
7295       V1DstIndex = i;
7296     } else {
7297       // V2 input for insertion.
7298       V2DstIndex = i;
7299     }
7300   }
7301
7302   // Don't bother if we have no (non-zeroable) element for insertion.
7303   if (V1DstIndex == -1 && V2DstIndex == -1)
7304     return SDValue();
7305
7306   // Determine element insertion src/dst indices. The src index is from the
7307   // start of the inserted vector, not the start of the concatenated vector.
7308   unsigned V2SrcIndex = 0;
7309   if (V1DstIndex != -1) {
7310     // If we have a V1 input out of place, we use V1 as the V2 element insertion
7311     // and don't use the original V2 at all.
7312     V2SrcIndex = Mask[V1DstIndex];
7313     V2DstIndex = V1DstIndex;
7314     V2 = V1;
7315   } else {
7316     V2SrcIndex = Mask[V2DstIndex] - 4;
7317   }
7318
7319   // If no V1 inputs are used in place, then the result is created only from
7320   // the zero mask and the V2 insertion - so remove V1 dependency.
7321   if (!V1UsedInPlace)
7322     V1 = DAG.getUNDEF(MVT::v4f32);
7323
7324   unsigned InsertPSMask = V2SrcIndex << 6 | V2DstIndex << 4 | ZMask;
7325   assert((InsertPSMask & ~0xFFu) == 0 && "Invalid mask!");
7326
7327   // Insert the V2 element into the desired position.
7328   SDLoc DL(Op);
7329   return DAG.getNode(X86ISD::INSERTPS, DL, MVT::v4f32, V1, V2,
7330                      DAG.getConstant(InsertPSMask, DL, MVT::i8));
7331 }
7332
7333 /// \brief Try to lower a shuffle as a permute of the inputs followed by an
7334 /// UNPCK instruction.
7335 ///
7336 /// This specifically targets cases where we end up with alternating between
7337 /// the two inputs, and so can permute them into something that feeds a single
7338 /// UNPCK instruction. Note that this routine only targets integer vectors
7339 /// because for floating point vectors we have a generalized SHUFPS lowering
7340 /// strategy that handles everything that doesn't *exactly* match an unpack,
7341 /// making this clever lowering unnecessary.
7342 static SDValue lowerVectorShuffleAsUnpack(SDLoc DL, MVT VT, SDValue V1,
7343                                           SDValue V2, ArrayRef<int> Mask,
7344                                           SelectionDAG &DAG) {
7345   assert(!VT.isFloatingPoint() &&
7346          "This routine only supports integer vectors.");
7347   assert(!isSingleInputShuffleMask(Mask) &&
7348          "This routine should only be used when blending two inputs.");
7349   assert(Mask.size() >= 2 && "Single element masks are invalid.");
7350
7351   int Size = Mask.size();
7352
7353   int NumLoInputs = std::count_if(Mask.begin(), Mask.end(), [Size](int M) {
7354     return M >= 0 && M % Size < Size / 2;
7355   });
7356   int NumHiInputs = std::count_if(
7357       Mask.begin(), Mask.end(), [Size](int M) { return M % Size >= Size / 2; });
7358
7359   bool UnpackLo = NumLoInputs >= NumHiInputs;
7360
7361   auto TryUnpack = [&](MVT UnpackVT, int Scale) {
7362     SmallVector<int, 32> V1Mask(Mask.size(), -1);
7363     SmallVector<int, 32> V2Mask(Mask.size(), -1);
7364
7365     for (int i = 0; i < Size; ++i) {
7366       if (Mask[i] < 0)
7367         continue;
7368
7369       // Each element of the unpack contains Scale elements from this mask.
7370       int UnpackIdx = i / Scale;
7371
7372       // We only handle the case where V1 feeds the first slots of the unpack.
7373       // We rely on canonicalization to ensure this is the case.
7374       if ((UnpackIdx % 2 == 0) != (Mask[i] < Size))
7375         return SDValue();
7376
7377       // Setup the mask for this input. The indexing is tricky as we have to
7378       // handle the unpack stride.
7379       SmallVectorImpl<int> &VMask = (UnpackIdx % 2 == 0) ? V1Mask : V2Mask;
7380       VMask[(UnpackIdx / 2) * Scale + i % Scale + (UnpackLo ? 0 : Size / 2)] =
7381           Mask[i] % Size;
7382     }
7383
7384     // If we will have to shuffle both inputs to use the unpack, check whether
7385     // we can just unpack first and shuffle the result. If so, skip this unpack.
7386     if ((NumLoInputs == 0 || NumHiInputs == 0) && !isNoopShuffleMask(V1Mask) &&
7387         !isNoopShuffleMask(V2Mask))
7388       return SDValue();
7389
7390     // Shuffle the inputs into place.
7391     V1 = DAG.getVectorShuffle(VT, DL, V1, DAG.getUNDEF(VT), V1Mask);
7392     V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Mask);
7393
7394     // Cast the inputs to the type we will use to unpack them.
7395     V1 = DAG.getBitcast(UnpackVT, V1);
7396     V2 = DAG.getBitcast(UnpackVT, V2);
7397
7398     // Unpack the inputs and cast the result back to the desired type.
7399     return DAG.getBitcast(
7400         VT, DAG.getNode(UnpackLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
7401                         UnpackVT, V1, V2));
7402   };
7403
7404   // We try each unpack from the largest to the smallest to try and find one
7405   // that fits this mask.
7406   int OrigNumElements = VT.getVectorNumElements();
7407   int OrigScalarSize = VT.getScalarSizeInBits();
7408   for (int ScalarSize = 64; ScalarSize >= OrigScalarSize; ScalarSize /= 2) {
7409     int Scale = ScalarSize / OrigScalarSize;
7410     int NumElements = OrigNumElements / Scale;
7411     MVT UnpackVT = MVT::getVectorVT(MVT::getIntegerVT(ScalarSize), NumElements);
7412     if (SDValue Unpack = TryUnpack(UnpackVT, Scale))
7413       return Unpack;
7414   }
7415
7416   // If none of the unpack-rooted lowerings worked (or were profitable) try an
7417   // initial unpack.
7418   if (NumLoInputs == 0 || NumHiInputs == 0) {
7419     assert((NumLoInputs > 0 || NumHiInputs > 0) &&
7420            "We have to have *some* inputs!");
7421     int HalfOffset = NumLoInputs == 0 ? Size / 2 : 0;
7422
7423     // FIXME: We could consider the total complexity of the permute of each
7424     // possible unpacking. Or at the least we should consider how many
7425     // half-crossings are created.
7426     // FIXME: We could consider commuting the unpacks.
7427
7428     SmallVector<int, 32> PermMask;
7429     PermMask.assign(Size, -1);
7430     for (int i = 0; i < Size; ++i) {
7431       if (Mask[i] < 0)
7432         continue;
7433
7434       assert(Mask[i] % Size >= HalfOffset && "Found input from wrong half!");
7435
7436       PermMask[i] =
7437           2 * ((Mask[i] % Size) - HalfOffset) + (Mask[i] < Size ? 0 : 1);
7438     }
7439     return DAG.getVectorShuffle(
7440         VT, DL, DAG.getNode(NumLoInputs == 0 ? X86ISD::UNPCKH : X86ISD::UNPCKL,
7441                             DL, VT, V1, V2),
7442         DAG.getUNDEF(VT), PermMask);
7443   }
7444
7445   return SDValue();
7446 }
7447
7448 /// \brief Handle lowering of 2-lane 64-bit floating point shuffles.
7449 ///
7450 /// This is the basis function for the 2-lane 64-bit shuffles as we have full
7451 /// support for floating point shuffles but not integer shuffles. These
7452 /// instructions will incur a domain crossing penalty on some chips though so
7453 /// it is better to avoid lowering through this for integer vectors where
7454 /// possible.
7455 static SDValue lowerV2F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7456                                        const X86Subtarget *Subtarget,
7457                                        SelectionDAG &DAG) {
7458   SDLoc DL(Op);
7459   assert(Op.getSimpleValueType() == MVT::v2f64 && "Bad shuffle type!");
7460   assert(V1.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
7461   assert(V2.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
7462   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7463   ArrayRef<int> Mask = SVOp->getMask();
7464   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
7465
7466   if (isSingleInputShuffleMask(Mask)) {
7467     // Use low duplicate instructions for masks that match their pattern.
7468     if (Subtarget->hasSSE3())
7469       if (isShuffleEquivalent(V1, V2, Mask, {0, 0}))
7470         return DAG.getNode(X86ISD::MOVDDUP, DL, MVT::v2f64, V1);
7471
7472     // Straight shuffle of a single input vector. Simulate this by using the
7473     // single input as both of the "inputs" to this instruction..
7474     unsigned SHUFPDMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1);
7475
7476     if (Subtarget->hasAVX()) {
7477       // If we have AVX, we can use VPERMILPS which will allow folding a load
7478       // into the shuffle.
7479       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v2f64, V1,
7480                          DAG.getConstant(SHUFPDMask, DL, MVT::i8));
7481     }
7482
7483     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v2f64, V1, V1,
7484                        DAG.getConstant(SHUFPDMask, DL, MVT::i8));
7485   }
7486   assert(Mask[0] >= 0 && Mask[0] < 2 && "Non-canonicalized blend!");
7487   assert(Mask[1] >= 2 && "Non-canonicalized blend!");
7488
7489   // If we have a single input, insert that into V1 if we can do so cheaply.
7490   if ((Mask[0] >= 2) + (Mask[1] >= 2) == 1) {
7491     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
7492             DL, MVT::v2f64, V1, V2, Mask, Subtarget, DAG))
7493       return Insertion;
7494     // Try inverting the insertion since for v2 masks it is easy to do and we
7495     // can't reliably sort the mask one way or the other.
7496     int InverseMask[2] = {Mask[0] < 0 ? -1 : (Mask[0] ^ 2),
7497                           Mask[1] < 0 ? -1 : (Mask[1] ^ 2)};
7498     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
7499             DL, MVT::v2f64, V2, V1, InverseMask, Subtarget, DAG))
7500       return Insertion;
7501   }
7502
7503   // Try to use one of the special instruction patterns to handle two common
7504   // blend patterns if a zero-blend above didn't work.
7505   if (isShuffleEquivalent(V1, V2, Mask, {0, 3}) ||
7506       isShuffleEquivalent(V1, V2, Mask, {1, 3}))
7507     if (SDValue V1S = getScalarValueForVectorElement(V1, Mask[0], DAG))
7508       // We can either use a special instruction to load over the low double or
7509       // to move just the low double.
7510       return DAG.getNode(
7511           isShuffleFoldableLoad(V1S) ? X86ISD::MOVLPD : X86ISD::MOVSD,
7512           DL, MVT::v2f64, V2,
7513           DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64, V1S));
7514
7515   if (Subtarget->hasSSE41())
7516     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v2f64, V1, V2, Mask,
7517                                                   Subtarget, DAG))
7518       return Blend;
7519
7520   // Use dedicated unpack instructions for masks that match their pattern.
7521   if (isShuffleEquivalent(V1, V2, Mask, {0, 2}))
7522     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2f64, V1, V2);
7523   if (isShuffleEquivalent(V1, V2, Mask, {1, 3}))
7524     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v2f64, V1, V2);
7525
7526   unsigned SHUFPDMask = (Mask[0] == 1) | (((Mask[1] - 2) == 1) << 1);
7527   return DAG.getNode(X86ISD::SHUFP, DL, MVT::v2f64, V1, V2,
7528                      DAG.getConstant(SHUFPDMask, DL, MVT::i8));
7529 }
7530
7531 /// \brief Handle lowering of 2-lane 64-bit integer shuffles.
7532 ///
7533 /// Tries to lower a 2-lane 64-bit shuffle using shuffle operations provided by
7534 /// the integer unit to minimize domain crossing penalties. However, for blends
7535 /// it falls back to the floating point shuffle operation with appropriate bit
7536 /// casting.
7537 static SDValue lowerV2I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7538                                        const X86Subtarget *Subtarget,
7539                                        SelectionDAG &DAG) {
7540   SDLoc DL(Op);
7541   assert(Op.getSimpleValueType() == MVT::v2i64 && "Bad shuffle type!");
7542   assert(V1.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
7543   assert(V2.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
7544   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7545   ArrayRef<int> Mask = SVOp->getMask();
7546   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
7547
7548   if (isSingleInputShuffleMask(Mask)) {
7549     // Check for being able to broadcast a single element.
7550     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v2i64, V1,
7551                                                           Mask, Subtarget, DAG))
7552       return Broadcast;
7553
7554     // Straight shuffle of a single input vector. For everything from SSE2
7555     // onward this has a single fast instruction with no scary immediates.
7556     // We have to map the mask as it is actually a v4i32 shuffle instruction.
7557     V1 = DAG.getBitcast(MVT::v4i32, V1);
7558     int WidenedMask[4] = {
7559         std::max(Mask[0], 0) * 2, std::max(Mask[0], 0) * 2 + 1,
7560         std::max(Mask[1], 0) * 2, std::max(Mask[1], 0) * 2 + 1};
7561     return DAG.getBitcast(
7562         MVT::v2i64,
7563         DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
7564                     getV4X86ShuffleImm8ForMask(WidenedMask, DL, DAG)));
7565   }
7566   assert(Mask[0] != -1 && "No undef lanes in multi-input v2 shuffles!");
7567   assert(Mask[1] != -1 && "No undef lanes in multi-input v2 shuffles!");
7568   assert(Mask[0] < 2 && "We sort V1 to be the first input.");
7569   assert(Mask[1] >= 2 && "We sort V2 to be the second input.");
7570
7571   // If we have a blend of two PACKUS operations an the blend aligns with the
7572   // low and half halves, we can just merge the PACKUS operations. This is
7573   // particularly important as it lets us merge shuffles that this routine itself
7574   // creates.
7575   auto GetPackNode = [](SDValue V) {
7576     while (V.getOpcode() == ISD::BITCAST)
7577       V = V.getOperand(0);
7578
7579     return V.getOpcode() == X86ISD::PACKUS ? V : SDValue();
7580   };
7581   if (SDValue V1Pack = GetPackNode(V1))
7582     if (SDValue V2Pack = GetPackNode(V2))
7583       return DAG.getBitcast(MVT::v2i64,
7584                             DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8,
7585                                         Mask[0] == 0 ? V1Pack.getOperand(0)
7586                                                      : V1Pack.getOperand(1),
7587                                         Mask[1] == 2 ? V2Pack.getOperand(0)
7588                                                      : V2Pack.getOperand(1)));
7589
7590   // Try to use shift instructions.
7591   if (SDValue Shift =
7592           lowerVectorShuffleAsShift(DL, MVT::v2i64, V1, V2, Mask, DAG))
7593     return Shift;
7594
7595   // When loading a scalar and then shuffling it into a vector we can often do
7596   // the insertion cheaply.
7597   if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
7598           DL, MVT::v2i64, V1, V2, Mask, Subtarget, DAG))
7599     return Insertion;
7600   // Try inverting the insertion since for v2 masks it is easy to do and we
7601   // can't reliably sort the mask one way or the other.
7602   int InverseMask[2] = {Mask[0] ^ 2, Mask[1] ^ 2};
7603   if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
7604           DL, MVT::v2i64, V2, V1, InverseMask, Subtarget, DAG))
7605     return Insertion;
7606
7607   // We have different paths for blend lowering, but they all must use the
7608   // *exact* same predicate.
7609   bool IsBlendSupported = Subtarget->hasSSE41();
7610   if (IsBlendSupported)
7611     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v2i64, V1, V2, Mask,
7612                                                   Subtarget, DAG))
7613       return Blend;
7614
7615   // Use dedicated unpack instructions for masks that match their pattern.
7616   if (isShuffleEquivalent(V1, V2, Mask, {0, 2}))
7617     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, V1, V2);
7618   if (isShuffleEquivalent(V1, V2, Mask, {1, 3}))
7619     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v2i64, V1, V2);
7620
7621   // Try to use byte rotation instructions.
7622   // Its more profitable for pre-SSSE3 to use shuffles/unpacks.
7623   if (Subtarget->hasSSSE3())
7624     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
7625             DL, MVT::v2i64, V1, V2, Mask, Subtarget, DAG))
7626       return Rotate;
7627
7628   // If we have direct support for blends, we should lower by decomposing into
7629   // a permute. That will be faster than the domain cross.
7630   if (IsBlendSupported)
7631     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v2i64, V1, V2,
7632                                                       Mask, DAG);
7633
7634   // We implement this with SHUFPD which is pretty lame because it will likely
7635   // incur 2 cycles of stall for integer vectors on Nehalem and older chips.
7636   // However, all the alternatives are still more cycles and newer chips don't
7637   // have this problem. It would be really nice if x86 had better shuffles here.
7638   V1 = DAG.getBitcast(MVT::v2f64, V1);
7639   V2 = DAG.getBitcast(MVT::v2f64, V2);
7640   return DAG.getBitcast(MVT::v2i64,
7641                         DAG.getVectorShuffle(MVT::v2f64, DL, V1, V2, Mask));
7642 }
7643
7644 /// \brief Test whether this can be lowered with a single SHUFPS instruction.
7645 ///
7646 /// This is used to disable more specialized lowerings when the shufps lowering
7647 /// will happen to be efficient.
7648 static bool isSingleSHUFPSMask(ArrayRef<int> Mask) {
7649   // This routine only handles 128-bit shufps.
7650   assert(Mask.size() == 4 && "Unsupported mask size!");
7651
7652   // To lower with a single SHUFPS we need to have the low half and high half
7653   // each requiring a single input.
7654   if (Mask[0] != -1 && Mask[1] != -1 && (Mask[0] < 4) != (Mask[1] < 4))
7655     return false;
7656   if (Mask[2] != -1 && Mask[3] != -1 && (Mask[2] < 4) != (Mask[3] < 4))
7657     return false;
7658
7659   return true;
7660 }
7661
7662 /// \brief Lower a vector shuffle using the SHUFPS instruction.
7663 ///
7664 /// This is a helper routine dedicated to lowering vector shuffles using SHUFPS.
7665 /// It makes no assumptions about whether this is the *best* lowering, it simply
7666 /// uses it.
7667 static SDValue lowerVectorShuffleWithSHUFPS(SDLoc DL, MVT VT,
7668                                             ArrayRef<int> Mask, SDValue V1,
7669                                             SDValue V2, SelectionDAG &DAG) {
7670   SDValue LowV = V1, HighV = V2;
7671   int NewMask[4] = {Mask[0], Mask[1], Mask[2], Mask[3]};
7672
7673   int NumV2Elements =
7674       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
7675
7676   if (NumV2Elements == 1) {
7677     int V2Index =
7678         std::find_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; }) -
7679         Mask.begin();
7680
7681     // Compute the index adjacent to V2Index and in the same half by toggling
7682     // the low bit.
7683     int V2AdjIndex = V2Index ^ 1;
7684
7685     if (Mask[V2AdjIndex] == -1) {
7686       // Handles all the cases where we have a single V2 element and an undef.
7687       // This will only ever happen in the high lanes because we commute the
7688       // vector otherwise.
7689       if (V2Index < 2)
7690         std::swap(LowV, HighV);
7691       NewMask[V2Index] -= 4;
7692     } else {
7693       // Handle the case where the V2 element ends up adjacent to a V1 element.
7694       // To make this work, blend them together as the first step.
7695       int V1Index = V2AdjIndex;
7696       int BlendMask[4] = {Mask[V2Index] - 4, 0, Mask[V1Index], 0};
7697       V2 = DAG.getNode(X86ISD::SHUFP, DL, VT, V2, V1,
7698                        getV4X86ShuffleImm8ForMask(BlendMask, DL, DAG));
7699
7700       // Now proceed to reconstruct the final blend as we have the necessary
7701       // high or low half formed.
7702       if (V2Index < 2) {
7703         LowV = V2;
7704         HighV = V1;
7705       } else {
7706         HighV = V2;
7707       }
7708       NewMask[V1Index] = 2; // We put the V1 element in V2[2].
7709       NewMask[V2Index] = 0; // We shifted the V2 element into V2[0].
7710     }
7711   } else if (NumV2Elements == 2) {
7712     if (Mask[0] < 4 && Mask[1] < 4) {
7713       // Handle the easy case where we have V1 in the low lanes and V2 in the
7714       // high lanes.
7715       NewMask[2] -= 4;
7716       NewMask[3] -= 4;
7717     } else if (Mask[2] < 4 && Mask[3] < 4) {
7718       // We also handle the reversed case because this utility may get called
7719       // when we detect a SHUFPS pattern but can't easily commute the shuffle to
7720       // arrange things in the right direction.
7721       NewMask[0] -= 4;
7722       NewMask[1] -= 4;
7723       HighV = V1;
7724       LowV = V2;
7725     } else {
7726       // We have a mixture of V1 and V2 in both low and high lanes. Rather than
7727       // trying to place elements directly, just blend them and set up the final
7728       // shuffle to place them.
7729
7730       // The first two blend mask elements are for V1, the second two are for
7731       // V2.
7732       int BlendMask[4] = {Mask[0] < 4 ? Mask[0] : Mask[1],
7733                           Mask[2] < 4 ? Mask[2] : Mask[3],
7734                           (Mask[0] >= 4 ? Mask[0] : Mask[1]) - 4,
7735                           (Mask[2] >= 4 ? Mask[2] : Mask[3]) - 4};
7736       V1 = DAG.getNode(X86ISD::SHUFP, DL, VT, V1, V2,
7737                        getV4X86ShuffleImm8ForMask(BlendMask, DL, DAG));
7738
7739       // Now we do a normal shuffle of V1 by giving V1 as both operands to
7740       // a blend.
7741       LowV = HighV = V1;
7742       NewMask[0] = Mask[0] < 4 ? 0 : 2;
7743       NewMask[1] = Mask[0] < 4 ? 2 : 0;
7744       NewMask[2] = Mask[2] < 4 ? 1 : 3;
7745       NewMask[3] = Mask[2] < 4 ? 3 : 1;
7746     }
7747   }
7748   return DAG.getNode(X86ISD::SHUFP, DL, VT, LowV, HighV,
7749                      getV4X86ShuffleImm8ForMask(NewMask, DL, DAG));
7750 }
7751
7752 /// \brief Lower 4-lane 32-bit floating point shuffles.
7753 ///
7754 /// Uses instructions exclusively from the floating point unit to minimize
7755 /// domain crossing penalties, as these are sufficient to implement all v4f32
7756 /// shuffles.
7757 static SDValue lowerV4F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7758                                        const X86Subtarget *Subtarget,
7759                                        SelectionDAG &DAG) {
7760   SDLoc DL(Op);
7761   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
7762   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7763   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7764   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7765   ArrayRef<int> Mask = SVOp->getMask();
7766   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7767
7768   int NumV2Elements =
7769       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
7770
7771   if (NumV2Elements == 0) {
7772     // Check for being able to broadcast a single element.
7773     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4f32, V1,
7774                                                           Mask, Subtarget, DAG))
7775       return Broadcast;
7776
7777     // Use even/odd duplicate instructions for masks that match their pattern.
7778     if (Subtarget->hasSSE3()) {
7779       if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2}))
7780         return DAG.getNode(X86ISD::MOVSLDUP, DL, MVT::v4f32, V1);
7781       if (isShuffleEquivalent(V1, V2, Mask, {1, 1, 3, 3}))
7782         return DAG.getNode(X86ISD::MOVSHDUP, DL, MVT::v4f32, V1);
7783     }
7784
7785     if (Subtarget->hasAVX()) {
7786       // If we have AVX, we can use VPERMILPS which will allow folding a load
7787       // into the shuffle.
7788       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v4f32, V1,
7789                          getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
7790     }
7791
7792     // Otherwise, use a straight shuffle of a single input vector. We pass the
7793     // input vector to both operands to simulate this with a SHUFPS.
7794     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V1,
7795                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
7796   }
7797
7798   // There are special ways we can lower some single-element blends. However, we
7799   // have custom ways we can lower more complex single-element blends below that
7800   // we defer to if both this and BLENDPS fail to match, so restrict this to
7801   // when the V2 input is targeting element 0 of the mask -- that is the fast
7802   // case here.
7803   if (NumV2Elements == 1 && Mask[0] >= 4)
7804     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v4f32, V1, V2,
7805                                                          Mask, Subtarget, DAG))
7806       return V;
7807
7808   if (Subtarget->hasSSE41()) {
7809     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4f32, V1, V2, Mask,
7810                                                   Subtarget, DAG))
7811       return Blend;
7812
7813     // Use INSERTPS if we can complete the shuffle efficiently.
7814     if (SDValue V = lowerVectorShuffleAsInsertPS(Op, V1, V2, Mask, DAG))
7815       return V;
7816
7817     if (!isSingleSHUFPSMask(Mask))
7818       if (SDValue BlendPerm = lowerVectorShuffleAsBlendAndPermute(
7819               DL, MVT::v4f32, V1, V2, Mask, DAG))
7820         return BlendPerm;
7821   }
7822
7823   // Use dedicated unpack instructions for masks that match their pattern.
7824   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 1, 5}))
7825     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f32, V1, V2);
7826   if (isShuffleEquivalent(V1, V2, Mask, {2, 6, 3, 7}))
7827     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f32, V1, V2);
7828   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 5, 1}))
7829     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f32, V2, V1);
7830   if (isShuffleEquivalent(V1, V2, Mask, {6, 2, 7, 3}))
7831     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f32, V2, V1);
7832
7833   // Otherwise fall back to a SHUFPS lowering strategy.
7834   return lowerVectorShuffleWithSHUFPS(DL, MVT::v4f32, Mask, V1, V2, DAG);
7835 }
7836
7837 /// \brief Lower 4-lane i32 vector shuffles.
7838 ///
7839 /// We try to handle these with integer-domain shuffles where we can, but for
7840 /// blends we use the floating point domain blend instructions.
7841 static SDValue lowerV4I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7842                                        const X86Subtarget *Subtarget,
7843                                        SelectionDAG &DAG) {
7844   SDLoc DL(Op);
7845   assert(Op.getSimpleValueType() == MVT::v4i32 && "Bad shuffle type!");
7846   assert(V1.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
7847   assert(V2.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
7848   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7849   ArrayRef<int> Mask = SVOp->getMask();
7850   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7851
7852   // Whenever we can lower this as a zext, that instruction is strictly faster
7853   // than any alternative. It also allows us to fold memory operands into the
7854   // shuffle in many cases.
7855   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v4i32, V1, V2,
7856                                                          Mask, Subtarget, DAG))
7857     return ZExt;
7858
7859   int NumV2Elements =
7860       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
7861
7862   if (NumV2Elements == 0) {
7863     // Check for being able to broadcast a single element.
7864     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4i32, V1,
7865                                                           Mask, Subtarget, DAG))
7866       return Broadcast;
7867
7868     // Straight shuffle of a single input vector. For everything from SSE2
7869     // onward this has a single fast instruction with no scary immediates.
7870     // We coerce the shuffle pattern to be compatible with UNPCK instructions
7871     // but we aren't actually going to use the UNPCK instruction because doing
7872     // so prevents folding a load into this instruction or making a copy.
7873     const int UnpackLoMask[] = {0, 0, 1, 1};
7874     const int UnpackHiMask[] = {2, 2, 3, 3};
7875     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 1, 1}))
7876       Mask = UnpackLoMask;
7877     else if (isShuffleEquivalent(V1, V2, Mask, {2, 2, 3, 3}))
7878       Mask = UnpackHiMask;
7879
7880     return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
7881                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
7882   }
7883
7884   // Try to use shift instructions.
7885   if (SDValue Shift =
7886           lowerVectorShuffleAsShift(DL, MVT::v4i32, V1, V2, Mask, DAG))
7887     return Shift;
7888
7889   // There are special ways we can lower some single-element blends.
7890   if (NumV2Elements == 1)
7891     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v4i32, V1, V2,
7892                                                          Mask, Subtarget, DAG))
7893       return V;
7894
7895   // We have different paths for blend lowering, but they all must use the
7896   // *exact* same predicate.
7897   bool IsBlendSupported = Subtarget->hasSSE41();
7898   if (IsBlendSupported)
7899     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4i32, V1, V2, Mask,
7900                                                   Subtarget, DAG))
7901       return Blend;
7902
7903   if (SDValue Masked =
7904           lowerVectorShuffleAsBitMask(DL, MVT::v4i32, V1, V2, Mask, DAG))
7905     return Masked;
7906
7907   // Use dedicated unpack instructions for masks that match their pattern.
7908   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 1, 5}))
7909     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i32, V1, V2);
7910   if (isShuffleEquivalent(V1, V2, Mask, {2, 6, 3, 7}))
7911     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i32, V1, V2);
7912   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 5, 1}))
7913     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i32, V2, V1);
7914   if (isShuffleEquivalent(V1, V2, Mask, {6, 2, 7, 3}))
7915     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i32, V2, V1);
7916
7917   // Try to use byte rotation instructions.
7918   // Its more profitable for pre-SSSE3 to use shuffles/unpacks.
7919   if (Subtarget->hasSSSE3())
7920     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
7921             DL, MVT::v4i32, V1, V2, Mask, Subtarget, DAG))
7922       return Rotate;
7923
7924   // If we have direct support for blends, we should lower by decomposing into
7925   // a permute. That will be faster than the domain cross.
7926   if (IsBlendSupported)
7927     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4i32, V1, V2,
7928                                                       Mask, DAG);
7929
7930   // Try to lower by permuting the inputs into an unpack instruction.
7931   if (SDValue Unpack =
7932           lowerVectorShuffleAsUnpack(DL, MVT::v4i32, V1, V2, Mask, DAG))
7933     return Unpack;
7934
7935   // We implement this with SHUFPS because it can blend from two vectors.
7936   // Because we're going to eventually use SHUFPS, we use SHUFPS even to build
7937   // up the inputs, bypassing domain shift penalties that we would encur if we
7938   // directly used PSHUFD on Nehalem and older. For newer chips, this isn't
7939   // relevant.
7940   return DAG.getBitcast(
7941       MVT::v4i32,
7942       DAG.getVectorShuffle(MVT::v4f32, DL, DAG.getBitcast(MVT::v4f32, V1),
7943                            DAG.getBitcast(MVT::v4f32, V2), Mask));
7944 }
7945
7946 /// \brief Lowering of single-input v8i16 shuffles is the cornerstone of SSE2
7947 /// shuffle lowering, and the most complex part.
7948 ///
7949 /// The lowering strategy is to try to form pairs of input lanes which are
7950 /// targeted at the same half of the final vector, and then use a dword shuffle
7951 /// to place them onto the right half, and finally unpack the paired lanes into
7952 /// their final position.
7953 ///
7954 /// The exact breakdown of how to form these dword pairs and align them on the
7955 /// correct sides is really tricky. See the comments within the function for
7956 /// more of the details.
7957 ///
7958 /// This code also handles repeated 128-bit lanes of v8i16 shuffles, but each
7959 /// lane must shuffle the *exact* same way. In fact, you must pass a v8 Mask to
7960 /// this routine for it to work correctly. To shuffle a 256-bit or 512-bit i16
7961 /// vector, form the analogous 128-bit 8-element Mask.
7962 static SDValue lowerV8I16GeneralSingleInputVectorShuffle(
7963     SDLoc DL, MVT VT, SDValue V, MutableArrayRef<int> Mask,
7964     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7965   assert(VT.getScalarType() == MVT::i16 && "Bad input type!");
7966   MVT PSHUFDVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() / 2);
7967
7968   assert(Mask.size() == 8 && "Shuffle mask length doen't match!");
7969   MutableArrayRef<int> LoMask = Mask.slice(0, 4);
7970   MutableArrayRef<int> HiMask = Mask.slice(4, 4);
7971
7972   SmallVector<int, 4> LoInputs;
7973   std::copy_if(LoMask.begin(), LoMask.end(), std::back_inserter(LoInputs),
7974                [](int M) { return M >= 0; });
7975   std::sort(LoInputs.begin(), LoInputs.end());
7976   LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()), LoInputs.end());
7977   SmallVector<int, 4> HiInputs;
7978   std::copy_if(HiMask.begin(), HiMask.end(), std::back_inserter(HiInputs),
7979                [](int M) { return M >= 0; });
7980   std::sort(HiInputs.begin(), HiInputs.end());
7981   HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end());
7982   int NumLToL =
7983       std::lower_bound(LoInputs.begin(), LoInputs.end(), 4) - LoInputs.begin();
7984   int NumHToL = LoInputs.size() - NumLToL;
7985   int NumLToH =
7986       std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin();
7987   int NumHToH = HiInputs.size() - NumLToH;
7988   MutableArrayRef<int> LToLInputs(LoInputs.data(), NumLToL);
7989   MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH);
7990   MutableArrayRef<int> HToLInputs(LoInputs.data() + NumLToL, NumHToL);
7991   MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH);
7992
7993   // Simplify the 1-into-3 and 3-into-1 cases with a single pshufd. For all
7994   // such inputs we can swap two of the dwords across the half mark and end up
7995   // with <=2 inputs to each half in each half. Once there, we can fall through
7996   // to the generic code below. For example:
7997   //
7998   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
7999   // Mask:  [0, 1, 2, 7, 4, 5, 6, 3] -----------------> [0, 1, 4, 7, 2, 3, 6, 5]
8000   //
8001   // However in some very rare cases we have a 1-into-3 or 3-into-1 on one half
8002   // and an existing 2-into-2 on the other half. In this case we may have to
8003   // pre-shuffle the 2-into-2 half to avoid turning it into a 3-into-1 or
8004   // 1-into-3 which could cause us to cycle endlessly fixing each side in turn.
8005   // Fortunately, we don't have to handle anything but a 2-into-2 pattern
8006   // because any other situation (including a 3-into-1 or 1-into-3 in the other
8007   // half than the one we target for fixing) will be fixed when we re-enter this
8008   // path. We will also combine away any sequence of PSHUFD instructions that
8009   // result into a single instruction. Here is an example of the tricky case:
8010   //
8011   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
8012   // Mask:  [3, 7, 1, 0, 2, 7, 3, 5] -THIS-IS-BAD!!!!-> [5, 7, 1, 0, 4, 7, 5, 3]
8013   //
8014   // This now has a 1-into-3 in the high half! Instead, we do two shuffles:
8015   //
8016   // Input: [a, b, c, d, e, f, g, h] PSHUFHW[0,2,1,3]-> [a, b, c, d, e, g, f, h]
8017   // Mask:  [3, 7, 1, 0, 2, 7, 3, 5] -----------------> [3, 7, 1, 0, 2, 7, 3, 6]
8018   //
8019   // Input: [a, b, c, d, e, g, f, h] -PSHUFD[0,2,1,3]-> [a, b, e, g, c, d, f, h]
8020   // Mask:  [3, 7, 1, 0, 2, 7, 3, 6] -----------------> [5, 7, 1, 0, 4, 7, 5, 6]
8021   //
8022   // The result is fine to be handled by the generic logic.
8023   auto balanceSides = [&](ArrayRef<int> AToAInputs, ArrayRef<int> BToAInputs,
8024                           ArrayRef<int> BToBInputs, ArrayRef<int> AToBInputs,
8025                           int AOffset, int BOffset) {
8026     assert((AToAInputs.size() == 3 || AToAInputs.size() == 1) &&
8027            "Must call this with A having 3 or 1 inputs from the A half.");
8028     assert((BToAInputs.size() == 1 || BToAInputs.size() == 3) &&
8029            "Must call this with B having 1 or 3 inputs from the B half.");
8030     assert(AToAInputs.size() + BToAInputs.size() == 4 &&
8031            "Must call this with either 3:1 or 1:3 inputs (summing to 4).");
8032
8033     // Compute the index of dword with only one word among the three inputs in
8034     // a half by taking the sum of the half with three inputs and subtracting
8035     // the sum of the actual three inputs. The difference is the remaining
8036     // slot.
8037     int ADWord, BDWord;
8038     int &TripleDWord = AToAInputs.size() == 3 ? ADWord : BDWord;
8039     int &OneInputDWord = AToAInputs.size() == 3 ? BDWord : ADWord;
8040     int TripleInputOffset = AToAInputs.size() == 3 ? AOffset : BOffset;
8041     ArrayRef<int> TripleInputs = AToAInputs.size() == 3 ? AToAInputs : BToAInputs;
8042     int OneInput = AToAInputs.size() == 3 ? BToAInputs[0] : AToAInputs[0];
8043     int TripleInputSum = 0 + 1 + 2 + 3 + (4 * TripleInputOffset);
8044     int TripleNonInputIdx =
8045         TripleInputSum - std::accumulate(TripleInputs.begin(), TripleInputs.end(), 0);
8046     TripleDWord = TripleNonInputIdx / 2;
8047
8048     // We use xor with one to compute the adjacent DWord to whichever one the
8049     // OneInput is in.
8050     OneInputDWord = (OneInput / 2) ^ 1;
8051
8052     // Check for one tricky case: We're fixing a 3<-1 or a 1<-3 shuffle for AToA
8053     // and BToA inputs. If there is also such a problem with the BToB and AToB
8054     // inputs, we don't try to fix it necessarily -- we'll recurse and see it in
8055     // the next pass. However, if we have a 2<-2 in the BToB and AToB inputs, it
8056     // is essential that we don't *create* a 3<-1 as then we might oscillate.
8057     if (BToBInputs.size() == 2 && AToBInputs.size() == 2) {
8058       // Compute how many inputs will be flipped by swapping these DWords. We
8059       // need
8060       // to balance this to ensure we don't form a 3-1 shuffle in the other
8061       // half.
8062       int NumFlippedAToBInputs =
8063           std::count(AToBInputs.begin(), AToBInputs.end(), 2 * ADWord) +
8064           std::count(AToBInputs.begin(), AToBInputs.end(), 2 * ADWord + 1);
8065       int NumFlippedBToBInputs =
8066           std::count(BToBInputs.begin(), BToBInputs.end(), 2 * BDWord) +
8067           std::count(BToBInputs.begin(), BToBInputs.end(), 2 * BDWord + 1);
8068       if ((NumFlippedAToBInputs == 1 &&
8069            (NumFlippedBToBInputs == 0 || NumFlippedBToBInputs == 2)) ||
8070           (NumFlippedBToBInputs == 1 &&
8071            (NumFlippedAToBInputs == 0 || NumFlippedAToBInputs == 2))) {
8072         // We choose whether to fix the A half or B half based on whether that
8073         // half has zero flipped inputs. At zero, we may not be able to fix it
8074         // with that half. We also bias towards fixing the B half because that
8075         // will more commonly be the high half, and we have to bias one way.
8076         auto FixFlippedInputs = [&V, &DL, &Mask, &DAG](int PinnedIdx, int DWord,
8077                                                        ArrayRef<int> Inputs) {
8078           int FixIdx = PinnedIdx ^ 1; // The adjacent slot to the pinned slot.
8079           bool IsFixIdxInput = std::find(Inputs.begin(), Inputs.end(),
8080                                          PinnedIdx ^ 1) != Inputs.end();
8081           // Determine whether the free index is in the flipped dword or the
8082           // unflipped dword based on where the pinned index is. We use this bit
8083           // in an xor to conditionally select the adjacent dword.
8084           int FixFreeIdx = 2 * (DWord ^ (PinnedIdx / 2 == DWord));
8085           bool IsFixFreeIdxInput = std::find(Inputs.begin(), Inputs.end(),
8086                                              FixFreeIdx) != Inputs.end();
8087           if (IsFixIdxInput == IsFixFreeIdxInput)
8088             FixFreeIdx += 1;
8089           IsFixFreeIdxInput = std::find(Inputs.begin(), Inputs.end(),
8090                                         FixFreeIdx) != Inputs.end();
8091           assert(IsFixIdxInput != IsFixFreeIdxInput &&
8092                  "We need to be changing the number of flipped inputs!");
8093           int PSHUFHalfMask[] = {0, 1, 2, 3};
8094           std::swap(PSHUFHalfMask[FixFreeIdx % 4], PSHUFHalfMask[FixIdx % 4]);
8095           V = DAG.getNode(FixIdx < 4 ? X86ISD::PSHUFLW : X86ISD::PSHUFHW, DL,
8096                           MVT::v8i16, V,
8097                           getV4X86ShuffleImm8ForMask(PSHUFHalfMask, DL, DAG));
8098
8099           for (int &M : Mask)
8100             if (M != -1 && M == FixIdx)
8101               M = FixFreeIdx;
8102             else if (M != -1 && M == FixFreeIdx)
8103               M = FixIdx;
8104         };
8105         if (NumFlippedBToBInputs != 0) {
8106           int BPinnedIdx =
8107               BToAInputs.size() == 3 ? TripleNonInputIdx : OneInput;
8108           FixFlippedInputs(BPinnedIdx, BDWord, BToBInputs);
8109         } else {
8110           assert(NumFlippedAToBInputs != 0 && "Impossible given predicates!");
8111           int APinnedIdx =
8112               AToAInputs.size() == 3 ? TripleNonInputIdx : OneInput;
8113           FixFlippedInputs(APinnedIdx, ADWord, AToBInputs);
8114         }
8115       }
8116     }
8117
8118     int PSHUFDMask[] = {0, 1, 2, 3};
8119     PSHUFDMask[ADWord] = BDWord;
8120     PSHUFDMask[BDWord] = ADWord;
8121     V = DAG.getBitcast(
8122         VT,
8123         DAG.getNode(X86ISD::PSHUFD, DL, PSHUFDVT, DAG.getBitcast(PSHUFDVT, V),
8124                     getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
8125
8126     // Adjust the mask to match the new locations of A and B.
8127     for (int &M : Mask)
8128       if (M != -1 && M/2 == ADWord)
8129         M = 2 * BDWord + M % 2;
8130       else if (M != -1 && M/2 == BDWord)
8131         M = 2 * ADWord + M % 2;
8132
8133     // Recurse back into this routine to re-compute state now that this isn't
8134     // a 3 and 1 problem.
8135     return lowerV8I16GeneralSingleInputVectorShuffle(DL, VT, V, Mask, Subtarget,
8136                                                      DAG);
8137   };
8138   if ((NumLToL == 3 && NumHToL == 1) || (NumLToL == 1 && NumHToL == 3))
8139     return balanceSides(LToLInputs, HToLInputs, HToHInputs, LToHInputs, 0, 4);
8140   else if ((NumHToH == 3 && NumLToH == 1) || (NumHToH == 1 && NumLToH == 3))
8141     return balanceSides(HToHInputs, LToHInputs, LToLInputs, HToLInputs, 4, 0);
8142
8143   // At this point there are at most two inputs to the low and high halves from
8144   // each half. That means the inputs can always be grouped into dwords and
8145   // those dwords can then be moved to the correct half with a dword shuffle.
8146   // We use at most one low and one high word shuffle to collect these paired
8147   // inputs into dwords, and finally a dword shuffle to place them.
8148   int PSHUFLMask[4] = {-1, -1, -1, -1};
8149   int PSHUFHMask[4] = {-1, -1, -1, -1};
8150   int PSHUFDMask[4] = {-1, -1, -1, -1};
8151
8152   // First fix the masks for all the inputs that are staying in their
8153   // original halves. This will then dictate the targets of the cross-half
8154   // shuffles.
8155   auto fixInPlaceInputs =
8156       [&PSHUFDMask](ArrayRef<int> InPlaceInputs, ArrayRef<int> IncomingInputs,
8157                     MutableArrayRef<int> SourceHalfMask,
8158                     MutableArrayRef<int> HalfMask, int HalfOffset) {
8159     if (InPlaceInputs.empty())
8160       return;
8161     if (InPlaceInputs.size() == 1) {
8162       SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
8163           InPlaceInputs[0] - HalfOffset;
8164       PSHUFDMask[InPlaceInputs[0] / 2] = InPlaceInputs[0] / 2;
8165       return;
8166     }
8167     if (IncomingInputs.empty()) {
8168       // Just fix all of the in place inputs.
8169       for (int Input : InPlaceInputs) {
8170         SourceHalfMask[Input - HalfOffset] = Input - HalfOffset;
8171         PSHUFDMask[Input / 2] = Input / 2;
8172       }
8173       return;
8174     }
8175
8176     assert(InPlaceInputs.size() == 2 && "Cannot handle 3 or 4 inputs!");
8177     SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
8178         InPlaceInputs[0] - HalfOffset;
8179     // Put the second input next to the first so that they are packed into
8180     // a dword. We find the adjacent index by toggling the low bit.
8181     int AdjIndex = InPlaceInputs[0] ^ 1;
8182     SourceHalfMask[AdjIndex - HalfOffset] = InPlaceInputs[1] - HalfOffset;
8183     std::replace(HalfMask.begin(), HalfMask.end(), InPlaceInputs[1], AdjIndex);
8184     PSHUFDMask[AdjIndex / 2] = AdjIndex / 2;
8185   };
8186   fixInPlaceInputs(LToLInputs, HToLInputs, PSHUFLMask, LoMask, 0);
8187   fixInPlaceInputs(HToHInputs, LToHInputs, PSHUFHMask, HiMask, 4);
8188
8189   // Now gather the cross-half inputs and place them into a free dword of
8190   // their target half.
8191   // FIXME: This operation could almost certainly be simplified dramatically to
8192   // look more like the 3-1 fixing operation.
8193   auto moveInputsToRightHalf = [&PSHUFDMask](
8194       MutableArrayRef<int> IncomingInputs, ArrayRef<int> ExistingInputs,
8195       MutableArrayRef<int> SourceHalfMask, MutableArrayRef<int> HalfMask,
8196       MutableArrayRef<int> FinalSourceHalfMask, int SourceOffset,
8197       int DestOffset) {
8198     auto isWordClobbered = [](ArrayRef<int> SourceHalfMask, int Word) {
8199       return SourceHalfMask[Word] != -1 && SourceHalfMask[Word] != Word;
8200     };
8201     auto isDWordClobbered = [&isWordClobbered](ArrayRef<int> SourceHalfMask,
8202                                                int Word) {
8203       int LowWord = Word & ~1;
8204       int HighWord = Word | 1;
8205       return isWordClobbered(SourceHalfMask, LowWord) ||
8206              isWordClobbered(SourceHalfMask, HighWord);
8207     };
8208
8209     if (IncomingInputs.empty())
8210       return;
8211
8212     if (ExistingInputs.empty()) {
8213       // Map any dwords with inputs from them into the right half.
8214       for (int Input : IncomingInputs) {
8215         // If the source half mask maps over the inputs, turn those into
8216         // swaps and use the swapped lane.
8217         if (isWordClobbered(SourceHalfMask, Input - SourceOffset)) {
8218           if (SourceHalfMask[SourceHalfMask[Input - SourceOffset]] == -1) {
8219             SourceHalfMask[SourceHalfMask[Input - SourceOffset]] =
8220                 Input - SourceOffset;
8221             // We have to swap the uses in our half mask in one sweep.
8222             for (int &M : HalfMask)
8223               if (M == SourceHalfMask[Input - SourceOffset] + SourceOffset)
8224                 M = Input;
8225               else if (M == Input)
8226                 M = SourceHalfMask[Input - SourceOffset] + SourceOffset;
8227           } else {
8228             assert(SourceHalfMask[SourceHalfMask[Input - SourceOffset]] ==
8229                        Input - SourceOffset &&
8230                    "Previous placement doesn't match!");
8231           }
8232           // Note that this correctly re-maps both when we do a swap and when
8233           // we observe the other side of the swap above. We rely on that to
8234           // avoid swapping the members of the input list directly.
8235           Input = SourceHalfMask[Input - SourceOffset] + SourceOffset;
8236         }
8237
8238         // Map the input's dword into the correct half.
8239         if (PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] == -1)
8240           PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] = Input / 2;
8241         else
8242           assert(PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] ==
8243                      Input / 2 &&
8244                  "Previous placement doesn't match!");
8245       }
8246
8247       // And just directly shift any other-half mask elements to be same-half
8248       // as we will have mirrored the dword containing the element into the
8249       // same position within that half.
8250       for (int &M : HalfMask)
8251         if (M >= SourceOffset && M < SourceOffset + 4) {
8252           M = M - SourceOffset + DestOffset;
8253           assert(M >= 0 && "This should never wrap below zero!");
8254         }
8255       return;
8256     }
8257
8258     // Ensure we have the input in a viable dword of its current half. This
8259     // is particularly tricky because the original position may be clobbered
8260     // by inputs being moved and *staying* in that half.
8261     if (IncomingInputs.size() == 1) {
8262       if (isWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
8263         int InputFixed = std::find(std::begin(SourceHalfMask),
8264                                    std::end(SourceHalfMask), -1) -
8265                          std::begin(SourceHalfMask) + SourceOffset;
8266         SourceHalfMask[InputFixed - SourceOffset] =
8267             IncomingInputs[0] - SourceOffset;
8268         std::replace(HalfMask.begin(), HalfMask.end(), IncomingInputs[0],
8269                      InputFixed);
8270         IncomingInputs[0] = InputFixed;
8271       }
8272     } else if (IncomingInputs.size() == 2) {
8273       if (IncomingInputs[0] / 2 != IncomingInputs[1] / 2 ||
8274           isDWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
8275         // We have two non-adjacent or clobbered inputs we need to extract from
8276         // the source half. To do this, we need to map them into some adjacent
8277         // dword slot in the source mask.
8278         int InputsFixed[2] = {IncomingInputs[0] - SourceOffset,
8279                               IncomingInputs[1] - SourceOffset};
8280
8281         // If there is a free slot in the source half mask adjacent to one of
8282         // the inputs, place the other input in it. We use (Index XOR 1) to
8283         // compute an adjacent index.
8284         if (!isWordClobbered(SourceHalfMask, InputsFixed[0]) &&
8285             SourceHalfMask[InputsFixed[0] ^ 1] == -1) {
8286           SourceHalfMask[InputsFixed[0]] = InputsFixed[0];
8287           SourceHalfMask[InputsFixed[0] ^ 1] = InputsFixed[1];
8288           InputsFixed[1] = InputsFixed[0] ^ 1;
8289         } else if (!isWordClobbered(SourceHalfMask, InputsFixed[1]) &&
8290                    SourceHalfMask[InputsFixed[1] ^ 1] == -1) {
8291           SourceHalfMask[InputsFixed[1]] = InputsFixed[1];
8292           SourceHalfMask[InputsFixed[1] ^ 1] = InputsFixed[0];
8293           InputsFixed[0] = InputsFixed[1] ^ 1;
8294         } else if (SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1)] == -1 &&
8295                    SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1) + 1] == -1) {
8296           // The two inputs are in the same DWord but it is clobbered and the
8297           // adjacent DWord isn't used at all. Move both inputs to the free
8298           // slot.
8299           SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1)] = InputsFixed[0];
8300           SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1) + 1] = InputsFixed[1];
8301           InputsFixed[0] = 2 * ((InputsFixed[0] / 2) ^ 1);
8302           InputsFixed[1] = 2 * ((InputsFixed[0] / 2) ^ 1) + 1;
8303         } else {
8304           // The only way we hit this point is if there is no clobbering
8305           // (because there are no off-half inputs to this half) and there is no
8306           // free slot adjacent to one of the inputs. In this case, we have to
8307           // swap an input with a non-input.
8308           for (int i = 0; i < 4; ++i)
8309             assert((SourceHalfMask[i] == -1 || SourceHalfMask[i] == i) &&
8310                    "We can't handle any clobbers here!");
8311           assert(InputsFixed[1] != (InputsFixed[0] ^ 1) &&
8312                  "Cannot have adjacent inputs here!");
8313
8314           SourceHalfMask[InputsFixed[0] ^ 1] = InputsFixed[1];
8315           SourceHalfMask[InputsFixed[1]] = InputsFixed[0] ^ 1;
8316
8317           // We also have to update the final source mask in this case because
8318           // it may need to undo the above swap.
8319           for (int &M : FinalSourceHalfMask)
8320             if (M == (InputsFixed[0] ^ 1) + SourceOffset)
8321               M = InputsFixed[1] + SourceOffset;
8322             else if (M == InputsFixed[1] + SourceOffset)
8323               M = (InputsFixed[0] ^ 1) + SourceOffset;
8324
8325           InputsFixed[1] = InputsFixed[0] ^ 1;
8326         }
8327
8328         // Point everything at the fixed inputs.
8329         for (int &M : HalfMask)
8330           if (M == IncomingInputs[0])
8331             M = InputsFixed[0] + SourceOffset;
8332           else if (M == IncomingInputs[1])
8333             M = InputsFixed[1] + SourceOffset;
8334
8335         IncomingInputs[0] = InputsFixed[0] + SourceOffset;
8336         IncomingInputs[1] = InputsFixed[1] + SourceOffset;
8337       }
8338     } else {
8339       llvm_unreachable("Unhandled input size!");
8340     }
8341
8342     // Now hoist the DWord down to the right half.
8343     int FreeDWord = (PSHUFDMask[DestOffset / 2] == -1 ? 0 : 1) + DestOffset / 2;
8344     assert(PSHUFDMask[FreeDWord] == -1 && "DWord not free");
8345     PSHUFDMask[FreeDWord] = IncomingInputs[0] / 2;
8346     for (int &M : HalfMask)
8347       for (int Input : IncomingInputs)
8348         if (M == Input)
8349           M = FreeDWord * 2 + Input % 2;
8350   };
8351   moveInputsToRightHalf(HToLInputs, LToLInputs, PSHUFHMask, LoMask, HiMask,
8352                         /*SourceOffset*/ 4, /*DestOffset*/ 0);
8353   moveInputsToRightHalf(LToHInputs, HToHInputs, PSHUFLMask, HiMask, LoMask,
8354                         /*SourceOffset*/ 0, /*DestOffset*/ 4);
8355
8356   // Now enact all the shuffles we've computed to move the inputs into their
8357   // target half.
8358   if (!isNoopShuffleMask(PSHUFLMask))
8359     V = DAG.getNode(X86ISD::PSHUFLW, DL, VT, V,
8360                     getV4X86ShuffleImm8ForMask(PSHUFLMask, DL, DAG));
8361   if (!isNoopShuffleMask(PSHUFHMask))
8362     V = DAG.getNode(X86ISD::PSHUFHW, DL, VT, V,
8363                     getV4X86ShuffleImm8ForMask(PSHUFHMask, DL, DAG));
8364   if (!isNoopShuffleMask(PSHUFDMask))
8365     V = DAG.getBitcast(
8366         VT,
8367         DAG.getNode(X86ISD::PSHUFD, DL, PSHUFDVT, DAG.getBitcast(PSHUFDVT, V),
8368                     getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
8369
8370   // At this point, each half should contain all its inputs, and we can then
8371   // just shuffle them into their final position.
8372   assert(std::count_if(LoMask.begin(), LoMask.end(),
8373                        [](int M) { return M >= 4; }) == 0 &&
8374          "Failed to lift all the high half inputs to the low mask!");
8375   assert(std::count_if(HiMask.begin(), HiMask.end(),
8376                        [](int M) { return M >= 0 && M < 4; }) == 0 &&
8377          "Failed to lift all the low half inputs to the high mask!");
8378
8379   // Do a half shuffle for the low mask.
8380   if (!isNoopShuffleMask(LoMask))
8381     V = DAG.getNode(X86ISD::PSHUFLW, DL, VT, V,
8382                     getV4X86ShuffleImm8ForMask(LoMask, DL, DAG));
8383
8384   // Do a half shuffle with the high mask after shifting its values down.
8385   for (int &M : HiMask)
8386     if (M >= 0)
8387       M -= 4;
8388   if (!isNoopShuffleMask(HiMask))
8389     V = DAG.getNode(X86ISD::PSHUFHW, DL, VT, V,
8390                     getV4X86ShuffleImm8ForMask(HiMask, DL, DAG));
8391
8392   return V;
8393 }
8394
8395 /// \brief Helper to form a PSHUFB-based shuffle+blend.
8396 static SDValue lowerVectorShuffleAsPSHUFB(SDLoc DL, MVT VT, SDValue V1,
8397                                           SDValue V2, ArrayRef<int> Mask,
8398                                           SelectionDAG &DAG, bool &V1InUse,
8399                                           bool &V2InUse) {
8400   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
8401   SDValue V1Mask[16];
8402   SDValue V2Mask[16];
8403   V1InUse = false;
8404   V2InUse = false;
8405
8406   int Size = Mask.size();
8407   int Scale = 16 / Size;
8408   for (int i = 0; i < 16; ++i) {
8409     if (Mask[i / Scale] == -1) {
8410       V1Mask[i] = V2Mask[i] = DAG.getUNDEF(MVT::i8);
8411     } else {
8412       const int ZeroMask = 0x80;
8413       int V1Idx = Mask[i / Scale] < Size ? Mask[i / Scale] * Scale + i % Scale
8414                                           : ZeroMask;
8415       int V2Idx = Mask[i / Scale] < Size
8416                       ? ZeroMask
8417                       : (Mask[i / Scale] - Size) * Scale + i % Scale;
8418       if (Zeroable[i / Scale])
8419         V1Idx = V2Idx = ZeroMask;
8420       V1Mask[i] = DAG.getConstant(V1Idx, DL, MVT::i8);
8421       V2Mask[i] = DAG.getConstant(V2Idx, DL, MVT::i8);
8422       V1InUse |= (ZeroMask != V1Idx);
8423       V2InUse |= (ZeroMask != V2Idx);
8424     }
8425   }
8426
8427   if (V1InUse)
8428     V1 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8,
8429                      DAG.getBitcast(MVT::v16i8, V1),
8430                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V1Mask));
8431   if (V2InUse)
8432     V2 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8,
8433                      DAG.getBitcast(MVT::v16i8, V2),
8434                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V2Mask));
8435
8436   // If we need shuffled inputs from both, blend the two.
8437   SDValue V;
8438   if (V1InUse && V2InUse)
8439     V = DAG.getNode(ISD::OR, DL, MVT::v16i8, V1, V2);
8440   else
8441     V = V1InUse ? V1 : V2;
8442
8443   // Cast the result back to the correct type.
8444   return DAG.getBitcast(VT, V);
8445 }
8446
8447 /// \brief Generic lowering of 8-lane i16 shuffles.
8448 ///
8449 /// This handles both single-input shuffles and combined shuffle/blends with
8450 /// two inputs. The single input shuffles are immediately delegated to
8451 /// a dedicated lowering routine.
8452 ///
8453 /// The blends are lowered in one of three fundamental ways. If there are few
8454 /// enough inputs, it delegates to a basic UNPCK-based strategy. If the shuffle
8455 /// of the input is significantly cheaper when lowered as an interleaving of
8456 /// the two inputs, try to interleave them. Otherwise, blend the low and high
8457 /// halves of the inputs separately (making them have relatively few inputs)
8458 /// and then concatenate them.
8459 static SDValue lowerV8I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8460                                        const X86Subtarget *Subtarget,
8461                                        SelectionDAG &DAG) {
8462   SDLoc DL(Op);
8463   assert(Op.getSimpleValueType() == MVT::v8i16 && "Bad shuffle type!");
8464   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
8465   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
8466   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8467   ArrayRef<int> OrigMask = SVOp->getMask();
8468   int MaskStorage[8] = {OrigMask[0], OrigMask[1], OrigMask[2], OrigMask[3],
8469                         OrigMask[4], OrigMask[5], OrigMask[6], OrigMask[7]};
8470   MutableArrayRef<int> Mask(MaskStorage);
8471
8472   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
8473
8474   // Whenever we can lower this as a zext, that instruction is strictly faster
8475   // than any alternative.
8476   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(
8477           DL, MVT::v8i16, V1, V2, OrigMask, Subtarget, DAG))
8478     return ZExt;
8479
8480   auto isV1 = [](int M) { return M >= 0 && M < 8; };
8481   (void)isV1;
8482   auto isV2 = [](int M) { return M >= 8; };
8483
8484   int NumV2Inputs = std::count_if(Mask.begin(), Mask.end(), isV2);
8485
8486   if (NumV2Inputs == 0) {
8487     // Check for being able to broadcast a single element.
8488     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8i16, V1,
8489                                                           Mask, Subtarget, DAG))
8490       return Broadcast;
8491
8492     // Try to use shift instructions.
8493     if (SDValue Shift =
8494             lowerVectorShuffleAsShift(DL, MVT::v8i16, V1, V1, Mask, DAG))
8495       return Shift;
8496
8497     // Use dedicated unpack instructions for masks that match their pattern.
8498     if (isShuffleEquivalent(V1, V1, Mask, {0, 0, 1, 1, 2, 2, 3, 3}))
8499       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, V1, V1);
8500     if (isShuffleEquivalent(V1, V1, Mask, {4, 4, 5, 5, 6, 6, 7, 7}))
8501       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i16, V1, V1);
8502
8503     // Try to use byte rotation instructions.
8504     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(DL, MVT::v8i16, V1, V1,
8505                                                         Mask, Subtarget, DAG))
8506       return Rotate;
8507
8508     return lowerV8I16GeneralSingleInputVectorShuffle(DL, MVT::v8i16, V1, Mask,
8509                                                      Subtarget, DAG);
8510   }
8511
8512   assert(std::any_of(Mask.begin(), Mask.end(), isV1) &&
8513          "All single-input shuffles should be canonicalized to be V1-input "
8514          "shuffles.");
8515
8516   // Try to use shift instructions.
8517   if (SDValue Shift =
8518           lowerVectorShuffleAsShift(DL, MVT::v8i16, V1, V2, Mask, DAG))
8519     return Shift;
8520
8521   // There are special ways we can lower some single-element blends.
8522   if (NumV2Inputs == 1)
8523     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v8i16, V1, V2,
8524                                                          Mask, Subtarget, DAG))
8525       return V;
8526
8527   // We have different paths for blend lowering, but they all must use the
8528   // *exact* same predicate.
8529   bool IsBlendSupported = Subtarget->hasSSE41();
8530   if (IsBlendSupported)
8531     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8i16, V1, V2, Mask,
8532                                                   Subtarget, DAG))
8533       return Blend;
8534
8535   if (SDValue Masked =
8536           lowerVectorShuffleAsBitMask(DL, MVT::v8i16, V1, V2, Mask, DAG))
8537     return Masked;
8538
8539   // Use dedicated unpack instructions for masks that match their pattern.
8540   if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 2, 10, 3, 11}))
8541     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, V1, V2);
8542   if (isShuffleEquivalent(V1, V2, Mask, {4, 12, 5, 13, 6, 14, 7, 15}))
8543     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i16, V1, V2);
8544
8545   // Try to use byte rotation instructions.
8546   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
8547           DL, MVT::v8i16, V1, V2, Mask, Subtarget, DAG))
8548     return Rotate;
8549
8550   if (SDValue BitBlend =
8551           lowerVectorShuffleAsBitBlend(DL, MVT::v8i16, V1, V2, Mask, DAG))
8552     return BitBlend;
8553
8554   if (SDValue Unpack =
8555           lowerVectorShuffleAsUnpack(DL, MVT::v8i16, V1, V2, Mask, DAG))
8556     return Unpack;
8557
8558   // If we can't directly blend but can use PSHUFB, that will be better as it
8559   // can both shuffle and set up the inefficient blend.
8560   if (!IsBlendSupported && Subtarget->hasSSSE3()) {
8561     bool V1InUse, V2InUse;
8562     return lowerVectorShuffleAsPSHUFB(DL, MVT::v8i16, V1, V2, Mask, DAG,
8563                                       V1InUse, V2InUse);
8564   }
8565
8566   // We can always bit-blend if we have to so the fallback strategy is to
8567   // decompose into single-input permutes and blends.
8568   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8i16, V1, V2,
8569                                                       Mask, DAG);
8570 }
8571
8572 /// \brief Check whether a compaction lowering can be done by dropping even
8573 /// elements and compute how many times even elements must be dropped.
8574 ///
8575 /// This handles shuffles which take every Nth element where N is a power of
8576 /// two. Example shuffle masks:
8577 ///
8578 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14,  0,  2,  4,  6,  8, 10, 12, 14
8579 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30
8580 ///  N = 2:  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12
8581 ///  N = 2:  0,  4,  8, 12, 16, 20, 24, 28,  0,  4,  8, 12, 16, 20, 24, 28
8582 ///  N = 3:  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8
8583 ///  N = 3:  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24
8584 ///
8585 /// Any of these lanes can of course be undef.
8586 ///
8587 /// This routine only supports N <= 3.
8588 /// FIXME: Evaluate whether either AVX or AVX-512 have any opportunities here
8589 /// for larger N.
8590 ///
8591 /// \returns N above, or the number of times even elements must be dropped if
8592 /// there is such a number. Otherwise returns zero.
8593 static int canLowerByDroppingEvenElements(ArrayRef<int> Mask) {
8594   // Figure out whether we're looping over two inputs or just one.
8595   bool IsSingleInput = isSingleInputShuffleMask(Mask);
8596
8597   // The modulus for the shuffle vector entries is based on whether this is
8598   // a single input or not.
8599   int ShuffleModulus = Mask.size() * (IsSingleInput ? 1 : 2);
8600   assert(isPowerOf2_32((uint32_t)ShuffleModulus) &&
8601          "We should only be called with masks with a power-of-2 size!");
8602
8603   uint64_t ModMask = (uint64_t)ShuffleModulus - 1;
8604
8605   // We track whether the input is viable for all power-of-2 strides 2^1, 2^2,
8606   // and 2^3 simultaneously. This is because we may have ambiguity with
8607   // partially undef inputs.
8608   bool ViableForN[3] = {true, true, true};
8609
8610   for (int i = 0, e = Mask.size(); i < e; ++i) {
8611     // Ignore undef lanes, we'll optimistically collapse them to the pattern we
8612     // want.
8613     if (Mask[i] == -1)
8614       continue;
8615
8616     bool IsAnyViable = false;
8617     for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
8618       if (ViableForN[j]) {
8619         uint64_t N = j + 1;
8620
8621         // The shuffle mask must be equal to (i * 2^N) % M.
8622         if ((uint64_t)Mask[i] == (((uint64_t)i << N) & ModMask))
8623           IsAnyViable = true;
8624         else
8625           ViableForN[j] = false;
8626       }
8627     // Early exit if we exhaust the possible powers of two.
8628     if (!IsAnyViable)
8629       break;
8630   }
8631
8632   for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
8633     if (ViableForN[j])
8634       return j + 1;
8635
8636   // Return 0 as there is no viable power of two.
8637   return 0;
8638 }
8639
8640 /// \brief Generic lowering of v16i8 shuffles.
8641 ///
8642 /// This is a hybrid strategy to lower v16i8 vectors. It first attempts to
8643 /// detect any complexity reducing interleaving. If that doesn't help, it uses
8644 /// UNPCK to spread the i8 elements across two i16-element vectors, and uses
8645 /// the existing lowering for v8i16 blends on each half, finally PACK-ing them
8646 /// back together.
8647 static SDValue lowerV16I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8648                                        const X86Subtarget *Subtarget,
8649                                        SelectionDAG &DAG) {
8650   SDLoc DL(Op);
8651   assert(Op.getSimpleValueType() == MVT::v16i8 && "Bad shuffle type!");
8652   assert(V1.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
8653   assert(V2.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
8654   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8655   ArrayRef<int> Mask = SVOp->getMask();
8656   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
8657
8658   // Try to use shift instructions.
8659   if (SDValue Shift =
8660           lowerVectorShuffleAsShift(DL, MVT::v16i8, V1, V2, Mask, DAG))
8661     return Shift;
8662
8663   // Try to use byte rotation instructions.
8664   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
8665           DL, MVT::v16i8, V1, V2, Mask, Subtarget, DAG))
8666     return Rotate;
8667
8668   // Try to use a zext lowering.
8669   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(
8670           DL, MVT::v16i8, V1, V2, Mask, Subtarget, DAG))
8671     return ZExt;
8672
8673   int NumV2Elements =
8674       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 16; });
8675
8676   // For single-input shuffles, there are some nicer lowering tricks we can use.
8677   if (NumV2Elements == 0) {
8678     // Check for being able to broadcast a single element.
8679     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v16i8, V1,
8680                                                           Mask, Subtarget, DAG))
8681       return Broadcast;
8682
8683     // Check whether we can widen this to an i16 shuffle by duplicating bytes.
8684     // Notably, this handles splat and partial-splat shuffles more efficiently.
8685     // However, it only makes sense if the pre-duplication shuffle simplifies
8686     // things significantly. Currently, this means we need to be able to
8687     // express the pre-duplication shuffle as an i16 shuffle.
8688     //
8689     // FIXME: We should check for other patterns which can be widened into an
8690     // i16 shuffle as well.
8691     auto canWidenViaDuplication = [](ArrayRef<int> Mask) {
8692       for (int i = 0; i < 16; i += 2)
8693         if (Mask[i] != -1 && Mask[i + 1] != -1 && Mask[i] != Mask[i + 1])
8694           return false;
8695
8696       return true;
8697     };
8698     auto tryToWidenViaDuplication = [&]() -> SDValue {
8699       if (!canWidenViaDuplication(Mask))
8700         return SDValue();
8701       SmallVector<int, 4> LoInputs;
8702       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(LoInputs),
8703                    [](int M) { return M >= 0 && M < 8; });
8704       std::sort(LoInputs.begin(), LoInputs.end());
8705       LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()),
8706                      LoInputs.end());
8707       SmallVector<int, 4> HiInputs;
8708       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(HiInputs),
8709                    [](int M) { return M >= 8; });
8710       std::sort(HiInputs.begin(), HiInputs.end());
8711       HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()),
8712                      HiInputs.end());
8713
8714       bool TargetLo = LoInputs.size() >= HiInputs.size();
8715       ArrayRef<int> InPlaceInputs = TargetLo ? LoInputs : HiInputs;
8716       ArrayRef<int> MovingInputs = TargetLo ? HiInputs : LoInputs;
8717
8718       int PreDupI16Shuffle[] = {-1, -1, -1, -1, -1, -1, -1, -1};
8719       SmallDenseMap<int, int, 8> LaneMap;
8720       for (int I : InPlaceInputs) {
8721         PreDupI16Shuffle[I/2] = I/2;
8722         LaneMap[I] = I;
8723       }
8724       int j = TargetLo ? 0 : 4, je = j + 4;
8725       for (int i = 0, ie = MovingInputs.size(); i < ie; ++i) {
8726         // Check if j is already a shuffle of this input. This happens when
8727         // there are two adjacent bytes after we move the low one.
8728         if (PreDupI16Shuffle[j] != MovingInputs[i] / 2) {
8729           // If we haven't yet mapped the input, search for a slot into which
8730           // we can map it.
8731           while (j < je && PreDupI16Shuffle[j] != -1)
8732             ++j;
8733
8734           if (j == je)
8735             // We can't place the inputs into a single half with a simple i16 shuffle, so bail.
8736             return SDValue();
8737
8738           // Map this input with the i16 shuffle.
8739           PreDupI16Shuffle[j] = MovingInputs[i] / 2;
8740         }
8741
8742         // Update the lane map based on the mapping we ended up with.
8743         LaneMap[MovingInputs[i]] = 2 * j + MovingInputs[i] % 2;
8744       }
8745       V1 = DAG.getBitcast(
8746           MVT::v16i8,
8747           DAG.getVectorShuffle(MVT::v8i16, DL, DAG.getBitcast(MVT::v8i16, V1),
8748                                DAG.getUNDEF(MVT::v8i16), PreDupI16Shuffle));
8749
8750       // Unpack the bytes to form the i16s that will be shuffled into place.
8751       V1 = DAG.getNode(TargetLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
8752                        MVT::v16i8, V1, V1);
8753
8754       int PostDupI16Shuffle[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8755       for (int i = 0; i < 16; ++i)
8756         if (Mask[i] != -1) {
8757           int MappedMask = LaneMap[Mask[i]] - (TargetLo ? 0 : 8);
8758           assert(MappedMask < 8 && "Invalid v8 shuffle mask!");
8759           if (PostDupI16Shuffle[i / 2] == -1)
8760             PostDupI16Shuffle[i / 2] = MappedMask;
8761           else
8762             assert(PostDupI16Shuffle[i / 2] == MappedMask &&
8763                    "Conflicting entrties in the original shuffle!");
8764         }
8765       return DAG.getBitcast(
8766           MVT::v16i8,
8767           DAG.getVectorShuffle(MVT::v8i16, DL, DAG.getBitcast(MVT::v8i16, V1),
8768                                DAG.getUNDEF(MVT::v8i16), PostDupI16Shuffle));
8769     };
8770     if (SDValue V = tryToWidenViaDuplication())
8771       return V;
8772   }
8773
8774   // Use dedicated unpack instructions for masks that match their pattern.
8775   if (isShuffleEquivalent(V1, V2, Mask, {// Low half.
8776                                          0, 16, 1, 17, 2, 18, 3, 19,
8777                                          // High half.
8778                                          4, 20, 5, 21, 6, 22, 7, 23}))
8779     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V1, V2);
8780   if (isShuffleEquivalent(V1, V2, Mask, {// Low half.
8781                                          8, 24, 9, 25, 10, 26, 11, 27,
8782                                          // High half.
8783                                          12, 28, 13, 29, 14, 30, 15, 31}))
8784     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V1, V2);
8785
8786   // Check for SSSE3 which lets us lower all v16i8 shuffles much more directly
8787   // with PSHUFB. It is important to do this before we attempt to generate any
8788   // blends but after all of the single-input lowerings. If the single input
8789   // lowerings can find an instruction sequence that is faster than a PSHUFB, we
8790   // want to preserve that and we can DAG combine any longer sequences into
8791   // a PSHUFB in the end. But once we start blending from multiple inputs,
8792   // the complexity of DAG combining bad patterns back into PSHUFB is too high,
8793   // and there are *very* few patterns that would actually be faster than the
8794   // PSHUFB approach because of its ability to zero lanes.
8795   //
8796   // FIXME: The only exceptions to the above are blends which are exact
8797   // interleavings with direct instructions supporting them. We currently don't
8798   // handle those well here.
8799   if (Subtarget->hasSSSE3()) {
8800     bool V1InUse = false;
8801     bool V2InUse = false;
8802
8803     SDValue PSHUFB = lowerVectorShuffleAsPSHUFB(DL, MVT::v16i8, V1, V2, Mask,
8804                                                 DAG, V1InUse, V2InUse);
8805
8806     // If both V1 and V2 are in use and we can use a direct blend or an unpack,
8807     // do so. This avoids using them to handle blends-with-zero which is
8808     // important as a single pshufb is significantly faster for that.
8809     if (V1InUse && V2InUse) {
8810       if (Subtarget->hasSSE41())
8811         if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v16i8, V1, V2,
8812                                                       Mask, Subtarget, DAG))
8813           return Blend;
8814
8815       // We can use an unpack to do the blending rather than an or in some
8816       // cases. Even though the or may be (very minorly) more efficient, we
8817       // preference this lowering because there are common cases where part of
8818       // the complexity of the shuffles goes away when we do the final blend as
8819       // an unpack.
8820       // FIXME: It might be worth trying to detect if the unpack-feeding
8821       // shuffles will both be pshufb, in which case we shouldn't bother with
8822       // this.
8823       if (SDValue Unpack =
8824               lowerVectorShuffleAsUnpack(DL, MVT::v16i8, V1, V2, Mask, DAG))
8825         return Unpack;
8826     }
8827
8828     return PSHUFB;
8829   }
8830
8831   // There are special ways we can lower some single-element blends.
8832   if (NumV2Elements == 1)
8833     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v16i8, V1, V2,
8834                                                          Mask, Subtarget, DAG))
8835       return V;
8836
8837   if (SDValue BitBlend =
8838           lowerVectorShuffleAsBitBlend(DL, MVT::v16i8, V1, V2, Mask, DAG))
8839     return BitBlend;
8840
8841   // Check whether a compaction lowering can be done. This handles shuffles
8842   // which take every Nth element for some even N. See the helper function for
8843   // details.
8844   //
8845   // We special case these as they can be particularly efficiently handled with
8846   // the PACKUSB instruction on x86 and they show up in common patterns of
8847   // rearranging bytes to truncate wide elements.
8848   if (int NumEvenDrops = canLowerByDroppingEvenElements(Mask)) {
8849     // NumEvenDrops is the power of two stride of the elements. Another way of
8850     // thinking about it is that we need to drop the even elements this many
8851     // times to get the original input.
8852     bool IsSingleInput = isSingleInputShuffleMask(Mask);
8853
8854     // First we need to zero all the dropped bytes.
8855     assert(NumEvenDrops <= 3 &&
8856            "No support for dropping even elements more than 3 times.");
8857     // We use the mask type to pick which bytes are preserved based on how many
8858     // elements are dropped.
8859     MVT MaskVTs[] = { MVT::v8i16, MVT::v4i32, MVT::v2i64 };
8860     SDValue ByteClearMask = DAG.getBitcast(
8861         MVT::v16i8, DAG.getConstant(0xFF, DL, MaskVTs[NumEvenDrops - 1]));
8862     V1 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V1, ByteClearMask);
8863     if (!IsSingleInput)
8864       V2 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V2, ByteClearMask);
8865
8866     // Now pack things back together.
8867     V1 = DAG.getBitcast(MVT::v8i16, V1);
8868     V2 = IsSingleInput ? V1 : DAG.getBitcast(MVT::v8i16, V2);
8869     SDValue Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, V1, V2);
8870     for (int i = 1; i < NumEvenDrops; ++i) {
8871       Result = DAG.getBitcast(MVT::v8i16, Result);
8872       Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, Result, Result);
8873     }
8874
8875     return Result;
8876   }
8877
8878   // Handle multi-input cases by blending single-input shuffles.
8879   if (NumV2Elements > 0)
8880     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v16i8, V1, V2,
8881                                                       Mask, DAG);
8882
8883   // The fallback path for single-input shuffles widens this into two v8i16
8884   // vectors with unpacks, shuffles those, and then pulls them back together
8885   // with a pack.
8886   SDValue V = V1;
8887
8888   int LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8889   int HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
8890   for (int i = 0; i < 16; ++i)
8891     if (Mask[i] >= 0)
8892       (i < 8 ? LoBlendMask[i] : HiBlendMask[i % 8]) = Mask[i];
8893
8894   SDValue Zero = getZeroVector(MVT::v8i16, Subtarget, DAG, DL);
8895
8896   SDValue VLoHalf, VHiHalf;
8897   // Check if any of the odd lanes in the v16i8 are used. If not, we can mask
8898   // them out and avoid using UNPCK{L,H} to extract the elements of V as
8899   // i16s.
8900   if (std::none_of(std::begin(LoBlendMask), std::end(LoBlendMask),
8901                    [](int M) { return M >= 0 && M % 2 == 1; }) &&
8902       std::none_of(std::begin(HiBlendMask), std::end(HiBlendMask),
8903                    [](int M) { return M >= 0 && M % 2 == 1; })) {
8904     // Use a mask to drop the high bytes.
8905     VLoHalf = DAG.getBitcast(MVT::v8i16, V);
8906     VLoHalf = DAG.getNode(ISD::AND, DL, MVT::v8i16, VLoHalf,
8907                      DAG.getConstant(0x00FF, DL, MVT::v8i16));
8908
8909     // This will be a single vector shuffle instead of a blend so nuke VHiHalf.
8910     VHiHalf = DAG.getUNDEF(MVT::v8i16);
8911
8912     // Squash the masks to point directly into VLoHalf.
8913     for (int &M : LoBlendMask)
8914       if (M >= 0)
8915         M /= 2;
8916     for (int &M : HiBlendMask)
8917       if (M >= 0)
8918         M /= 2;
8919   } else {
8920     // Otherwise just unpack the low half of V into VLoHalf and the high half into
8921     // VHiHalf so that we can blend them as i16s.
8922     VLoHalf = DAG.getBitcast(
8923         MVT::v8i16, DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V, Zero));
8924     VHiHalf = DAG.getBitcast(
8925         MVT::v8i16, DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V, Zero));
8926   }
8927
8928   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, VLoHalf, VHiHalf, LoBlendMask);
8929   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, VLoHalf, VHiHalf, HiBlendMask);
8930
8931   return DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, LoV, HiV);
8932 }
8933
8934 /// \brief Dispatching routine to lower various 128-bit x86 vector shuffles.
8935 ///
8936 /// This routine breaks down the specific type of 128-bit shuffle and
8937 /// dispatches to the lowering routines accordingly.
8938 static SDValue lower128BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8939                                         MVT VT, const X86Subtarget *Subtarget,
8940                                         SelectionDAG &DAG) {
8941   switch (VT.SimpleTy) {
8942   case MVT::v2i64:
8943     return lowerV2I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
8944   case MVT::v2f64:
8945     return lowerV2F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
8946   case MVT::v4i32:
8947     return lowerV4I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
8948   case MVT::v4f32:
8949     return lowerV4F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
8950   case MVT::v8i16:
8951     return lowerV8I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
8952   case MVT::v16i8:
8953     return lowerV16I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
8954
8955   default:
8956     llvm_unreachable("Unimplemented!");
8957   }
8958 }
8959
8960 /// \brief Helper function to test whether a shuffle mask could be
8961 /// simplified by widening the elements being shuffled.
8962 ///
8963 /// Appends the mask for wider elements in WidenedMask if valid. Otherwise
8964 /// leaves it in an unspecified state.
8965 ///
8966 /// NOTE: This must handle normal vector shuffle masks and *target* vector
8967 /// shuffle masks. The latter have the special property of a '-2' representing
8968 /// a zero-ed lane of a vector.
8969 static bool canWidenShuffleElements(ArrayRef<int> Mask,
8970                                     SmallVectorImpl<int> &WidenedMask) {
8971   for (int i = 0, Size = Mask.size(); i < Size; i += 2) {
8972     // If both elements are undef, its trivial.
8973     if (Mask[i] == SM_SentinelUndef && Mask[i + 1] == SM_SentinelUndef) {
8974       WidenedMask.push_back(SM_SentinelUndef);
8975       continue;
8976     }
8977
8978     // Check for an undef mask and a mask value properly aligned to fit with
8979     // a pair of values. If we find such a case, use the non-undef mask's value.
8980     if (Mask[i] == SM_SentinelUndef && Mask[i + 1] >= 0 && Mask[i + 1] % 2 == 1) {
8981       WidenedMask.push_back(Mask[i + 1] / 2);
8982       continue;
8983     }
8984     if (Mask[i + 1] == SM_SentinelUndef && Mask[i] >= 0 && Mask[i] % 2 == 0) {
8985       WidenedMask.push_back(Mask[i] / 2);
8986       continue;
8987     }
8988
8989     // When zeroing, we need to spread the zeroing across both lanes to widen.
8990     if (Mask[i] == SM_SentinelZero || Mask[i + 1] == SM_SentinelZero) {
8991       if ((Mask[i] == SM_SentinelZero || Mask[i] == SM_SentinelUndef) &&
8992           (Mask[i + 1] == SM_SentinelZero || Mask[i + 1] == SM_SentinelUndef)) {
8993         WidenedMask.push_back(SM_SentinelZero);
8994         continue;
8995       }
8996       return false;
8997     }
8998
8999     // Finally check if the two mask values are adjacent and aligned with
9000     // a pair.
9001     if (Mask[i] != SM_SentinelUndef && Mask[i] % 2 == 0 && Mask[i] + 1 == Mask[i + 1]) {
9002       WidenedMask.push_back(Mask[i] / 2);
9003       continue;
9004     }
9005
9006     // Otherwise we can't safely widen the elements used in this shuffle.
9007     return false;
9008   }
9009   assert(WidenedMask.size() == Mask.size() / 2 &&
9010          "Incorrect size of mask after widening the elements!");
9011
9012   return true;
9013 }
9014
9015 /// \brief Generic routine to split vector shuffle into half-sized shuffles.
9016 ///
9017 /// This routine just extracts two subvectors, shuffles them independently, and
9018 /// then concatenates them back together. This should work effectively with all
9019 /// AVX vector shuffle types.
9020 static SDValue splitAndLowerVectorShuffle(SDLoc DL, MVT VT, SDValue V1,
9021                                           SDValue V2, ArrayRef<int> Mask,
9022                                           SelectionDAG &DAG) {
9023   assert(VT.getSizeInBits() >= 256 &&
9024          "Only for 256-bit or wider vector shuffles!");
9025   assert(V1.getSimpleValueType() == VT && "Bad operand type!");
9026   assert(V2.getSimpleValueType() == VT && "Bad operand type!");
9027
9028   ArrayRef<int> LoMask = Mask.slice(0, Mask.size() / 2);
9029   ArrayRef<int> HiMask = Mask.slice(Mask.size() / 2);
9030
9031   int NumElements = VT.getVectorNumElements();
9032   int SplitNumElements = NumElements / 2;
9033   MVT ScalarVT = VT.getScalarType();
9034   MVT SplitVT = MVT::getVectorVT(ScalarVT, NumElements / 2);
9035
9036   // Rather than splitting build-vectors, just build two narrower build
9037   // vectors. This helps shuffling with splats and zeros.
9038   auto SplitVector = [&](SDValue V) {
9039     while (V.getOpcode() == ISD::BITCAST)
9040       V = V->getOperand(0);
9041
9042     MVT OrigVT = V.getSimpleValueType();
9043     int OrigNumElements = OrigVT.getVectorNumElements();
9044     int OrigSplitNumElements = OrigNumElements / 2;
9045     MVT OrigScalarVT = OrigVT.getScalarType();
9046     MVT OrigSplitVT = MVT::getVectorVT(OrigScalarVT, OrigNumElements / 2);
9047
9048     SDValue LoV, HiV;
9049
9050     auto *BV = dyn_cast<BuildVectorSDNode>(V);
9051     if (!BV) {
9052       LoV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigSplitVT, V,
9053                         DAG.getIntPtrConstant(0, DL));
9054       HiV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigSplitVT, V,
9055                         DAG.getIntPtrConstant(OrigSplitNumElements, DL));
9056     } else {
9057
9058       SmallVector<SDValue, 16> LoOps, HiOps;
9059       for (int i = 0; i < OrigSplitNumElements; ++i) {
9060         LoOps.push_back(BV->getOperand(i));
9061         HiOps.push_back(BV->getOperand(i + OrigSplitNumElements));
9062       }
9063       LoV = DAG.getNode(ISD::BUILD_VECTOR, DL, OrigSplitVT, LoOps);
9064       HiV = DAG.getNode(ISD::BUILD_VECTOR, DL, OrigSplitVT, HiOps);
9065     }
9066     return std::make_pair(DAG.getBitcast(SplitVT, LoV),
9067                           DAG.getBitcast(SplitVT, HiV));
9068   };
9069
9070   SDValue LoV1, HiV1, LoV2, HiV2;
9071   std::tie(LoV1, HiV1) = SplitVector(V1);
9072   std::tie(LoV2, HiV2) = SplitVector(V2);
9073
9074   // Now create two 4-way blends of these half-width vectors.
9075   auto HalfBlend = [&](ArrayRef<int> HalfMask) {
9076     bool UseLoV1 = false, UseHiV1 = false, UseLoV2 = false, UseHiV2 = false;
9077     SmallVector<int, 32> V1BlendMask, V2BlendMask, BlendMask;
9078     for (int i = 0; i < SplitNumElements; ++i) {
9079       int M = HalfMask[i];
9080       if (M >= NumElements) {
9081         if (M >= NumElements + SplitNumElements)
9082           UseHiV2 = true;
9083         else
9084           UseLoV2 = true;
9085         V2BlendMask.push_back(M - NumElements);
9086         V1BlendMask.push_back(-1);
9087         BlendMask.push_back(SplitNumElements + i);
9088       } else if (M >= 0) {
9089         if (M >= SplitNumElements)
9090           UseHiV1 = true;
9091         else
9092           UseLoV1 = true;
9093         V2BlendMask.push_back(-1);
9094         V1BlendMask.push_back(M);
9095         BlendMask.push_back(i);
9096       } else {
9097         V2BlendMask.push_back(-1);
9098         V1BlendMask.push_back(-1);
9099         BlendMask.push_back(-1);
9100       }
9101     }
9102
9103     // Because the lowering happens after all combining takes place, we need to
9104     // manually combine these blend masks as much as possible so that we create
9105     // a minimal number of high-level vector shuffle nodes.
9106
9107     // First try just blending the halves of V1 or V2.
9108     if (!UseLoV1 && !UseHiV1 && !UseLoV2 && !UseHiV2)
9109       return DAG.getUNDEF(SplitVT);
9110     if (!UseLoV2 && !UseHiV2)
9111       return DAG.getVectorShuffle(SplitVT, DL, LoV1, HiV1, V1BlendMask);
9112     if (!UseLoV1 && !UseHiV1)
9113       return DAG.getVectorShuffle(SplitVT, DL, LoV2, HiV2, V2BlendMask);
9114
9115     SDValue V1Blend, V2Blend;
9116     if (UseLoV1 && UseHiV1) {
9117       V1Blend =
9118         DAG.getVectorShuffle(SplitVT, DL, LoV1, HiV1, V1BlendMask);
9119     } else {
9120       // We only use half of V1 so map the usage down into the final blend mask.
9121       V1Blend = UseLoV1 ? LoV1 : HiV1;
9122       for (int i = 0; i < SplitNumElements; ++i)
9123         if (BlendMask[i] >= 0 && BlendMask[i] < SplitNumElements)
9124           BlendMask[i] = V1BlendMask[i] - (UseLoV1 ? 0 : SplitNumElements);
9125     }
9126     if (UseLoV2 && UseHiV2) {
9127       V2Blend =
9128         DAG.getVectorShuffle(SplitVT, DL, LoV2, HiV2, V2BlendMask);
9129     } else {
9130       // We only use half of V2 so map the usage down into the final blend mask.
9131       V2Blend = UseLoV2 ? LoV2 : HiV2;
9132       for (int i = 0; i < SplitNumElements; ++i)
9133         if (BlendMask[i] >= SplitNumElements)
9134           BlendMask[i] = V2BlendMask[i] + (UseLoV2 ? SplitNumElements : 0);
9135     }
9136     return DAG.getVectorShuffle(SplitVT, DL, V1Blend, V2Blend, BlendMask);
9137   };
9138   SDValue Lo = HalfBlend(LoMask);
9139   SDValue Hi = HalfBlend(HiMask);
9140   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi);
9141 }
9142
9143 /// \brief Either split a vector in halves or decompose the shuffles and the
9144 /// blend.
9145 ///
9146 /// This is provided as a good fallback for many lowerings of non-single-input
9147 /// shuffles with more than one 128-bit lane. In those cases, we want to select
9148 /// between splitting the shuffle into 128-bit components and stitching those
9149 /// back together vs. extracting the single-input shuffles and blending those
9150 /// results.
9151 static SDValue lowerVectorShuffleAsSplitOrBlend(SDLoc DL, MVT VT, SDValue V1,
9152                                                 SDValue V2, ArrayRef<int> Mask,
9153                                                 SelectionDAG &DAG) {
9154   assert(!isSingleInputShuffleMask(Mask) && "This routine must not be used to "
9155                                             "lower single-input shuffles as it "
9156                                             "could then recurse on itself.");
9157   int Size = Mask.size();
9158
9159   // If this can be modeled as a broadcast of two elements followed by a blend,
9160   // prefer that lowering. This is especially important because broadcasts can
9161   // often fold with memory operands.
9162   auto DoBothBroadcast = [&] {
9163     int V1BroadcastIdx = -1, V2BroadcastIdx = -1;
9164     for (int M : Mask)
9165       if (M >= Size) {
9166         if (V2BroadcastIdx == -1)
9167           V2BroadcastIdx = M - Size;
9168         else if (M - Size != V2BroadcastIdx)
9169           return false;
9170       } else if (M >= 0) {
9171         if (V1BroadcastIdx == -1)
9172           V1BroadcastIdx = M;
9173         else if (M != V1BroadcastIdx)
9174           return false;
9175       }
9176     return true;
9177   };
9178   if (DoBothBroadcast())
9179     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask,
9180                                                       DAG);
9181
9182   // If the inputs all stem from a single 128-bit lane of each input, then we
9183   // split them rather than blending because the split will decompose to
9184   // unusually few instructions.
9185   int LaneCount = VT.getSizeInBits() / 128;
9186   int LaneSize = Size / LaneCount;
9187   SmallBitVector LaneInputs[2];
9188   LaneInputs[0].resize(LaneCount, false);
9189   LaneInputs[1].resize(LaneCount, false);
9190   for (int i = 0; i < Size; ++i)
9191     if (Mask[i] >= 0)
9192       LaneInputs[Mask[i] / Size][(Mask[i] % Size) / LaneSize] = true;
9193   if (LaneInputs[0].count() <= 1 && LaneInputs[1].count() <= 1)
9194     return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
9195
9196   // Otherwise, just fall back to decomposed shuffles and a blend. This requires
9197   // that the decomposed single-input shuffles don't end up here.
9198   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask, DAG);
9199 }
9200
9201 /// \brief Lower a vector shuffle crossing multiple 128-bit lanes as
9202 /// a permutation and blend of those lanes.
9203 ///
9204 /// This essentially blends the out-of-lane inputs to each lane into the lane
9205 /// from a permuted copy of the vector. This lowering strategy results in four
9206 /// instructions in the worst case for a single-input cross lane shuffle which
9207 /// is lower than any other fully general cross-lane shuffle strategy I'm aware
9208 /// of. Special cases for each particular shuffle pattern should be handled
9209 /// prior to trying this lowering.
9210 static SDValue lowerVectorShuffleAsLanePermuteAndBlend(SDLoc DL, MVT VT,
9211                                                        SDValue V1, SDValue V2,
9212                                                        ArrayRef<int> Mask,
9213                                                        SelectionDAG &DAG) {
9214   // FIXME: This should probably be generalized for 512-bit vectors as well.
9215   assert(VT.getSizeInBits() == 256 && "Only for 256-bit vector shuffles!");
9216   int LaneSize = Mask.size() / 2;
9217
9218   // If there are only inputs from one 128-bit lane, splitting will in fact be
9219   // less expensive. The flags track whether the given lane contains an element
9220   // that crosses to another lane.
9221   bool LaneCrossing[2] = {false, false};
9222   for (int i = 0, Size = Mask.size(); i < Size; ++i)
9223     if (Mask[i] >= 0 && (Mask[i] % Size) / LaneSize != i / LaneSize)
9224       LaneCrossing[(Mask[i] % Size) / LaneSize] = true;
9225   if (!LaneCrossing[0] || !LaneCrossing[1])
9226     return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
9227
9228   if (isSingleInputShuffleMask(Mask)) {
9229     SmallVector<int, 32> FlippedBlendMask;
9230     for (int i = 0, Size = Mask.size(); i < Size; ++i)
9231       FlippedBlendMask.push_back(
9232           Mask[i] < 0 ? -1 : (((Mask[i] % Size) / LaneSize == i / LaneSize)
9233                                   ? Mask[i]
9234                                   : Mask[i] % LaneSize +
9235                                         (i / LaneSize) * LaneSize + Size));
9236
9237     // Flip the vector, and blend the results which should now be in-lane. The
9238     // VPERM2X128 mask uses the low 2 bits for the low source and bits 4 and
9239     // 5 for the high source. The value 3 selects the high half of source 2 and
9240     // the value 2 selects the low half of source 2. We only use source 2 to
9241     // allow folding it into a memory operand.
9242     unsigned PERMMask = 3 | 2 << 4;
9243     SDValue Flipped = DAG.getNode(X86ISD::VPERM2X128, DL, VT, DAG.getUNDEF(VT),
9244                                   V1, DAG.getConstant(PERMMask, DL, MVT::i8));
9245     return DAG.getVectorShuffle(VT, DL, V1, Flipped, FlippedBlendMask);
9246   }
9247
9248   // This now reduces to two single-input shuffles of V1 and V2 which at worst
9249   // will be handled by the above logic and a blend of the results, much like
9250   // other patterns in AVX.
9251   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask, DAG);
9252 }
9253
9254 /// \brief Handle lowering 2-lane 128-bit shuffles.
9255 static SDValue lowerV2X128VectorShuffle(SDLoc DL, MVT VT, SDValue V1,
9256                                         SDValue V2, ArrayRef<int> Mask,
9257                                         const X86Subtarget *Subtarget,
9258                                         SelectionDAG &DAG) {
9259   // TODO: If minimizing size and one of the inputs is a zero vector and the
9260   // the zero vector has only one use, we could use a VPERM2X128 to save the
9261   // instruction bytes needed to explicitly generate the zero vector.
9262
9263   // Blends are faster and handle all the non-lane-crossing cases.
9264   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, VT, V1, V2, Mask,
9265                                                 Subtarget, DAG))
9266     return Blend;
9267
9268   bool IsV1Zero = ISD::isBuildVectorAllZeros(V1.getNode());
9269   bool IsV2Zero = ISD::isBuildVectorAllZeros(V2.getNode());
9270
9271   // If either input operand is a zero vector, use VPERM2X128 because its mask
9272   // allows us to replace the zero input with an implicit zero.
9273   if (!IsV1Zero && !IsV2Zero) {
9274     // Check for patterns which can be matched with a single insert of a 128-bit
9275     // subvector.
9276     bool OnlyUsesV1 = isShuffleEquivalent(V1, V2, Mask, {0, 1, 0, 1});
9277     if (OnlyUsesV1 || isShuffleEquivalent(V1, V2, Mask, {0, 1, 4, 5})) {
9278       MVT SubVT = MVT::getVectorVT(VT.getVectorElementType(),
9279                                    VT.getVectorNumElements() / 2);
9280       SDValue LoV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVT, V1,
9281                                 DAG.getIntPtrConstant(0, DL));
9282       SDValue HiV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVT,
9283                                 OnlyUsesV1 ? V1 : V2,
9284                                 DAG.getIntPtrConstant(0, DL));
9285       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LoV, HiV);
9286     }
9287   }
9288
9289   // Otherwise form a 128-bit permutation. After accounting for undefs,
9290   // convert the 64-bit shuffle mask selection values into 128-bit
9291   // selection bits by dividing the indexes by 2 and shifting into positions
9292   // defined by a vperm2*128 instruction's immediate control byte.
9293
9294   // The immediate permute control byte looks like this:
9295   //    [1:0] - select 128 bits from sources for low half of destination
9296   //    [2]   - ignore
9297   //    [3]   - zero low half of destination
9298   //    [5:4] - select 128 bits from sources for high half of destination
9299   //    [6]   - ignore
9300   //    [7]   - zero high half of destination
9301
9302   int MaskLO = Mask[0];
9303   if (MaskLO == SM_SentinelUndef)
9304     MaskLO = Mask[1] == SM_SentinelUndef ? 0 : Mask[1];
9305
9306   int MaskHI = Mask[2];
9307   if (MaskHI == SM_SentinelUndef)
9308     MaskHI = Mask[3] == SM_SentinelUndef ? 0 : Mask[3];
9309
9310   unsigned PermMask = MaskLO / 2 | (MaskHI / 2) << 4;
9311
9312   // If either input is a zero vector, replace it with an undef input.
9313   // Shuffle mask values <  4 are selecting elements of V1.
9314   // Shuffle mask values >= 4 are selecting elements of V2.
9315   // Adjust each half of the permute mask by clearing the half that was
9316   // selecting the zero vector and setting the zero mask bit.
9317   if (IsV1Zero) {
9318     V1 = DAG.getUNDEF(VT);
9319     if (MaskLO < 4)
9320       PermMask = (PermMask & 0xf0) | 0x08;
9321     if (MaskHI < 4)
9322       PermMask = (PermMask & 0x0f) | 0x80;
9323   }
9324   if (IsV2Zero) {
9325     V2 = DAG.getUNDEF(VT);
9326     if (MaskLO >= 4)
9327       PermMask = (PermMask & 0xf0) | 0x08;
9328     if (MaskHI >= 4)
9329       PermMask = (PermMask & 0x0f) | 0x80;
9330   }
9331
9332   return DAG.getNode(X86ISD::VPERM2X128, DL, VT, V1, V2,
9333                      DAG.getConstant(PermMask, DL, MVT::i8));
9334 }
9335
9336 /// \brief Lower a vector shuffle by first fixing the 128-bit lanes and then
9337 /// shuffling each lane.
9338 ///
9339 /// This will only succeed when the result of fixing the 128-bit lanes results
9340 /// in a single-input non-lane-crossing shuffle with a repeating shuffle mask in
9341 /// each 128-bit lanes. This handles many cases where we can quickly blend away
9342 /// the lane crosses early and then use simpler shuffles within each lane.
9343 ///
9344 /// FIXME: It might be worthwhile at some point to support this without
9345 /// requiring the 128-bit lane-relative shuffles to be repeating, but currently
9346 /// in x86 only floating point has interesting non-repeating shuffles, and even
9347 /// those are still *marginally* more expensive.
9348 static SDValue lowerVectorShuffleByMerging128BitLanes(
9349     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
9350     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
9351   assert(!isSingleInputShuffleMask(Mask) &&
9352          "This is only useful with multiple inputs.");
9353
9354   int Size = Mask.size();
9355   int LaneSize = 128 / VT.getScalarSizeInBits();
9356   int NumLanes = Size / LaneSize;
9357   assert(NumLanes > 1 && "Only handles 256-bit and wider shuffles.");
9358
9359   // See if we can build a hypothetical 128-bit lane-fixing shuffle mask. Also
9360   // check whether the in-128-bit lane shuffles share a repeating pattern.
9361   SmallVector<int, 4> Lanes;
9362   Lanes.resize(NumLanes, -1);
9363   SmallVector<int, 4> InLaneMask;
9364   InLaneMask.resize(LaneSize, -1);
9365   for (int i = 0; i < Size; ++i) {
9366     if (Mask[i] < 0)
9367       continue;
9368
9369     int j = i / LaneSize;
9370
9371     if (Lanes[j] < 0) {
9372       // First entry we've seen for this lane.
9373       Lanes[j] = Mask[i] / LaneSize;
9374     } else if (Lanes[j] != Mask[i] / LaneSize) {
9375       // This doesn't match the lane selected previously!
9376       return SDValue();
9377     }
9378
9379     // Check that within each lane we have a consistent shuffle mask.
9380     int k = i % LaneSize;
9381     if (InLaneMask[k] < 0) {
9382       InLaneMask[k] = Mask[i] % LaneSize;
9383     } else if (InLaneMask[k] != Mask[i] % LaneSize) {
9384       // This doesn't fit a repeating in-lane mask.
9385       return SDValue();
9386     }
9387   }
9388
9389   // First shuffle the lanes into place.
9390   MVT LaneVT = MVT::getVectorVT(VT.isFloatingPoint() ? MVT::f64 : MVT::i64,
9391                                 VT.getSizeInBits() / 64);
9392   SmallVector<int, 8> LaneMask;
9393   LaneMask.resize(NumLanes * 2, -1);
9394   for (int i = 0; i < NumLanes; ++i)
9395     if (Lanes[i] >= 0) {
9396       LaneMask[2 * i + 0] = 2*Lanes[i] + 0;
9397       LaneMask[2 * i + 1] = 2*Lanes[i] + 1;
9398     }
9399
9400   V1 = DAG.getBitcast(LaneVT, V1);
9401   V2 = DAG.getBitcast(LaneVT, V2);
9402   SDValue LaneShuffle = DAG.getVectorShuffle(LaneVT, DL, V1, V2, LaneMask);
9403
9404   // Cast it back to the type we actually want.
9405   LaneShuffle = DAG.getBitcast(VT, LaneShuffle);
9406
9407   // Now do a simple shuffle that isn't lane crossing.
9408   SmallVector<int, 8> NewMask;
9409   NewMask.resize(Size, -1);
9410   for (int i = 0; i < Size; ++i)
9411     if (Mask[i] >= 0)
9412       NewMask[i] = (i / LaneSize) * LaneSize + Mask[i] % LaneSize;
9413   assert(!is128BitLaneCrossingShuffleMask(VT, NewMask) &&
9414          "Must not introduce lane crosses at this point!");
9415
9416   return DAG.getVectorShuffle(VT, DL, LaneShuffle, DAG.getUNDEF(VT), NewMask);
9417 }
9418
9419 /// \brief Test whether the specified input (0 or 1) is in-place blended by the
9420 /// given mask.
9421 ///
9422 /// This returns true if the elements from a particular input are already in the
9423 /// slot required by the given mask and require no permutation.
9424 static bool isShuffleMaskInputInPlace(int Input, ArrayRef<int> Mask) {
9425   assert((Input == 0 || Input == 1) && "Only two inputs to shuffles.");
9426   int Size = Mask.size();
9427   for (int i = 0; i < Size; ++i)
9428     if (Mask[i] >= 0 && Mask[i] / Size == Input && Mask[i] % Size != i)
9429       return false;
9430
9431   return true;
9432 }
9433
9434 static SDValue lowerVectorShuffleWithSHUFPD(SDLoc DL, MVT VT,
9435                                             ArrayRef<int> Mask, SDValue V1,
9436                                             SDValue V2, SelectionDAG &DAG) {
9437
9438   // Mask for V8F64: 0/1,  8/9,  2/3,  10/11, 4/5, ..
9439   // Mask for V4F64; 0/1,  4/5,  2/3,  6/7..
9440   assert(VT.getScalarSizeInBits() == 64 && "Unexpected data type for VSHUFPD");
9441   int NumElts = VT.getVectorNumElements();
9442   bool ShufpdMask = true;
9443   bool CommutableMask = true;
9444   unsigned Immediate = 0;
9445   for (int i = 0; i < NumElts; ++i) {
9446     if (Mask[i] < 0)
9447       continue;
9448     int Val = (i & 6) + NumElts * (i & 1);
9449     int CommutVal = (i & 0xe) + NumElts * ((i & 1)^1);
9450     if (Mask[i] < Val ||  Mask[i] > Val + 1)
9451       ShufpdMask = false;
9452     if (Mask[i] < CommutVal ||  Mask[i] > CommutVal + 1)
9453       CommutableMask = false;
9454     Immediate |= (Mask[i] % 2) << i;
9455   }
9456   if (ShufpdMask)
9457     return DAG.getNode(X86ISD::SHUFP, DL, VT, V1, V2,
9458                        DAG.getConstant(Immediate, DL, MVT::i8));
9459   if (CommutableMask)
9460     return DAG.getNode(X86ISD::SHUFP, DL, VT, V2, V1,
9461                        DAG.getConstant(Immediate, DL, MVT::i8));
9462   return SDValue();
9463 }
9464
9465 /// \brief Handle lowering of 4-lane 64-bit floating point shuffles.
9466 ///
9467 /// Also ends up handling lowering of 4-lane 64-bit integer shuffles when AVX2
9468 /// isn't available.
9469 static SDValue lowerV4F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9470                                        const X86Subtarget *Subtarget,
9471                                        SelectionDAG &DAG) {
9472   SDLoc DL(Op);
9473   assert(V1.getSimpleValueType() == MVT::v4f64 && "Bad operand type!");
9474   assert(V2.getSimpleValueType() == MVT::v4f64 && "Bad operand type!");
9475   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9476   ArrayRef<int> Mask = SVOp->getMask();
9477   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
9478
9479   SmallVector<int, 4> WidenedMask;
9480   if (canWidenShuffleElements(Mask, WidenedMask))
9481     return lowerV2X128VectorShuffle(DL, MVT::v4f64, V1, V2, Mask, Subtarget,
9482                                     DAG);
9483
9484   if (isSingleInputShuffleMask(Mask)) {
9485     // Check for being able to broadcast a single element.
9486     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4f64, V1,
9487                                                           Mask, Subtarget, DAG))
9488       return Broadcast;
9489
9490     // Use low duplicate instructions for masks that match their pattern.
9491     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2}))
9492       return DAG.getNode(X86ISD::MOVDDUP, DL, MVT::v4f64, V1);
9493
9494     if (!is128BitLaneCrossingShuffleMask(MVT::v4f64, Mask)) {
9495       // Non-half-crossing single input shuffles can be lowerid with an
9496       // interleaved permutation.
9497       unsigned VPERMILPMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1) |
9498                               ((Mask[2] == 3) << 2) | ((Mask[3] == 3) << 3);
9499       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v4f64, V1,
9500                          DAG.getConstant(VPERMILPMask, DL, MVT::i8));
9501     }
9502
9503     // With AVX2 we have direct support for this permutation.
9504     if (Subtarget->hasAVX2())
9505       return DAG.getNode(X86ISD::VPERMI, DL, MVT::v4f64, V1,
9506                          getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
9507
9508     // Otherwise, fall back.
9509     return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v4f64, V1, V2, Mask,
9510                                                    DAG);
9511   }
9512
9513   // X86 has dedicated unpack instructions that can handle specific blend
9514   // operations: UNPCKH and UNPCKL.
9515   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 2, 6}))
9516     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f64, V1, V2);
9517   if (isShuffleEquivalent(V1, V2, Mask, {1, 5, 3, 7}))
9518     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f64, V1, V2);
9519   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 6, 2}))
9520     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f64, V2, V1);
9521   if (isShuffleEquivalent(V1, V2, Mask, {5, 1, 7, 3}))
9522     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f64, V2, V1);
9523
9524   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4f64, V1, V2, Mask,
9525                                                 Subtarget, DAG))
9526     return Blend;
9527
9528   // Check if the blend happens to exactly fit that of SHUFPD.
9529   if (SDValue Op =
9530       lowerVectorShuffleWithSHUFPD(DL, MVT::v4f64, Mask, V1, V2, DAG))
9531     return Op;
9532
9533   // Try to simplify this by merging 128-bit lanes to enable a lane-based
9534   // shuffle. However, if we have AVX2 and either inputs are already in place,
9535   // we will be able to shuffle even across lanes the other input in a single
9536   // instruction so skip this pattern.
9537   if (!(Subtarget->hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) ||
9538                                  isShuffleMaskInputInPlace(1, Mask))))
9539     if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
9540             DL, MVT::v4f64, V1, V2, Mask, Subtarget, DAG))
9541       return Result;
9542
9543   // If we have AVX2 then we always want to lower with a blend because an v4 we
9544   // can fully permute the elements.
9545   if (Subtarget->hasAVX2())
9546     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4f64, V1, V2,
9547                                                       Mask, DAG);
9548
9549   // Otherwise fall back on generic lowering.
9550   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v4f64, V1, V2, Mask, DAG);
9551 }
9552
9553 /// \brief Handle lowering of 4-lane 64-bit integer shuffles.
9554 ///
9555 /// This routine is only called when we have AVX2 and thus a reasonable
9556 /// instruction set for v4i64 shuffling..
9557 static SDValue lowerV4I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9558                                        const X86Subtarget *Subtarget,
9559                                        SelectionDAG &DAG) {
9560   SDLoc DL(Op);
9561   assert(V1.getSimpleValueType() == MVT::v4i64 && "Bad operand type!");
9562   assert(V2.getSimpleValueType() == MVT::v4i64 && "Bad operand type!");
9563   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9564   ArrayRef<int> Mask = SVOp->getMask();
9565   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
9566   assert(Subtarget->hasAVX2() && "We can only lower v4i64 with AVX2!");
9567
9568   SmallVector<int, 4> WidenedMask;
9569   if (canWidenShuffleElements(Mask, WidenedMask))
9570     return lowerV2X128VectorShuffle(DL, MVT::v4i64, V1, V2, Mask, Subtarget,
9571                                     DAG);
9572
9573   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4i64, V1, V2, Mask,
9574                                                 Subtarget, DAG))
9575     return Blend;
9576
9577   // Check for being able to broadcast a single element.
9578   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4i64, V1,
9579                                                         Mask, Subtarget, DAG))
9580     return Broadcast;
9581
9582   // When the shuffle is mirrored between the 128-bit lanes of the unit, we can
9583   // use lower latency instructions that will operate on both 128-bit lanes.
9584   SmallVector<int, 2> RepeatedMask;
9585   if (is128BitLaneRepeatedShuffleMask(MVT::v4i64, Mask, RepeatedMask)) {
9586     if (isSingleInputShuffleMask(Mask)) {
9587       int PSHUFDMask[] = {-1, -1, -1, -1};
9588       for (int i = 0; i < 2; ++i)
9589         if (RepeatedMask[i] >= 0) {
9590           PSHUFDMask[2 * i] = 2 * RepeatedMask[i];
9591           PSHUFDMask[2 * i + 1] = 2 * RepeatedMask[i] + 1;
9592         }
9593       return DAG.getBitcast(
9594           MVT::v4i64,
9595           DAG.getNode(X86ISD::PSHUFD, DL, MVT::v8i32,
9596                       DAG.getBitcast(MVT::v8i32, V1),
9597                       getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
9598     }
9599   }
9600
9601   // AVX2 provides a direct instruction for permuting a single input across
9602   // lanes.
9603   if (isSingleInputShuffleMask(Mask))
9604     return DAG.getNode(X86ISD::VPERMI, DL, MVT::v4i64, V1,
9605                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
9606
9607   // Try to use shift instructions.
9608   if (SDValue Shift =
9609           lowerVectorShuffleAsShift(DL, MVT::v4i64, V1, V2, Mask, DAG))
9610     return Shift;
9611
9612   // Use dedicated unpack instructions for masks that match their pattern.
9613   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 2, 6}))
9614     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i64, V1, V2);
9615   if (isShuffleEquivalent(V1, V2, Mask, {1, 5, 3, 7}))
9616     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i64, V1, V2);
9617   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 6, 2}))
9618     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i64, V2, V1);
9619   if (isShuffleEquivalent(V1, V2, Mask, {5, 1, 7, 3}))
9620     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i64, V2, V1);
9621
9622   // Try to simplify this by merging 128-bit lanes to enable a lane-based
9623   // shuffle. However, if we have AVX2 and either inputs are already in place,
9624   // we will be able to shuffle even across lanes the other input in a single
9625   // instruction so skip this pattern.
9626   if (!(Subtarget->hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) ||
9627                                  isShuffleMaskInputInPlace(1, Mask))))
9628     if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
9629             DL, MVT::v4i64, V1, V2, Mask, Subtarget, DAG))
9630       return Result;
9631
9632   // Otherwise fall back on generic blend lowering.
9633   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4i64, V1, V2,
9634                                                     Mask, DAG);
9635 }
9636
9637 /// \brief Handle lowering of 8-lane 32-bit floating point shuffles.
9638 ///
9639 /// Also ends up handling lowering of 8-lane 32-bit integer shuffles when AVX2
9640 /// isn't available.
9641 static SDValue lowerV8F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9642                                        const X86Subtarget *Subtarget,
9643                                        SelectionDAG &DAG) {
9644   SDLoc DL(Op);
9645   assert(V1.getSimpleValueType() == MVT::v8f32 && "Bad operand type!");
9646   assert(V2.getSimpleValueType() == MVT::v8f32 && "Bad operand type!");
9647   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9648   ArrayRef<int> Mask = SVOp->getMask();
9649   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
9650
9651   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8f32, V1, V2, Mask,
9652                                                 Subtarget, DAG))
9653     return Blend;
9654
9655   // Check for being able to broadcast a single element.
9656   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8f32, V1,
9657                                                         Mask, Subtarget, DAG))
9658     return Broadcast;
9659
9660   // If the shuffle mask is repeated in each 128-bit lane, we have many more
9661   // options to efficiently lower the shuffle.
9662   SmallVector<int, 4> RepeatedMask;
9663   if (is128BitLaneRepeatedShuffleMask(MVT::v8f32, Mask, RepeatedMask)) {
9664     assert(RepeatedMask.size() == 4 &&
9665            "Repeated masks must be half the mask width!");
9666
9667     // Use even/odd duplicate instructions for masks that match their pattern.
9668     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2, 4, 4, 6, 6}))
9669       return DAG.getNode(X86ISD::MOVSLDUP, DL, MVT::v8f32, V1);
9670     if (isShuffleEquivalent(V1, V2, Mask, {1, 1, 3, 3, 5, 5, 7, 7}))
9671       return DAG.getNode(X86ISD::MOVSHDUP, DL, MVT::v8f32, V1);
9672
9673     if (isSingleInputShuffleMask(Mask))
9674       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v8f32, V1,
9675                          getV4X86ShuffleImm8ForMask(RepeatedMask, DL, DAG));
9676
9677     // Use dedicated unpack instructions for masks that match their pattern.
9678     if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 4, 12, 5, 13}))
9679       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f32, V1, V2);
9680     if (isShuffleEquivalent(V1, V2, Mask, {2, 10, 3, 11, 6, 14, 7, 15}))
9681       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f32, V1, V2);
9682     if (isShuffleEquivalent(V1, V2, Mask, {8, 0, 9, 1, 12, 4, 13, 5}))
9683       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f32, V2, V1);
9684     if (isShuffleEquivalent(V1, V2, Mask, {10, 2, 11, 3, 14, 6, 15, 7}))
9685       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f32, V2, V1);
9686
9687     // Otherwise, fall back to a SHUFPS sequence. Here it is important that we
9688     // have already handled any direct blends. We also need to squash the
9689     // repeated mask into a simulated v4f32 mask.
9690     for (int i = 0; i < 4; ++i)
9691       if (RepeatedMask[i] >= 8)
9692         RepeatedMask[i] -= 4;
9693     return lowerVectorShuffleWithSHUFPS(DL, MVT::v8f32, RepeatedMask, V1, V2, DAG);
9694   }
9695
9696   // If we have a single input shuffle with different shuffle patterns in the
9697   // two 128-bit lanes use the variable mask to VPERMILPS.
9698   if (isSingleInputShuffleMask(Mask)) {
9699     SDValue VPermMask[8];
9700     for (int i = 0; i < 8; ++i)
9701       VPermMask[i] = Mask[i] < 0 ? DAG.getUNDEF(MVT::i32)
9702                                  : DAG.getConstant(Mask[i], DL, MVT::i32);
9703     if (!is128BitLaneCrossingShuffleMask(MVT::v8f32, Mask))
9704       return DAG.getNode(
9705           X86ISD::VPERMILPV, DL, MVT::v8f32, V1,
9706           DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i32, VPermMask));
9707
9708     if (Subtarget->hasAVX2())
9709       return DAG.getNode(
9710           X86ISD::VPERMV, DL, MVT::v8f32,
9711           DAG.getBitcast(MVT::v8f32, DAG.getNode(ISD::BUILD_VECTOR, DL,
9712                                                  MVT::v8i32, VPermMask)),
9713           V1);
9714
9715     // Otherwise, fall back.
9716     return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v8f32, V1, V2, Mask,
9717                                                    DAG);
9718   }
9719
9720   // Try to simplify this by merging 128-bit lanes to enable a lane-based
9721   // shuffle.
9722   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
9723           DL, MVT::v8f32, V1, V2, Mask, Subtarget, DAG))
9724     return Result;
9725
9726   // If we have AVX2 then we always want to lower with a blend because at v8 we
9727   // can fully permute the elements.
9728   if (Subtarget->hasAVX2())
9729     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8f32, V1, V2,
9730                                                       Mask, DAG);
9731
9732   // Otherwise fall back on generic lowering.
9733   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v8f32, V1, V2, Mask, DAG);
9734 }
9735
9736 /// \brief Handle lowering of 8-lane 32-bit integer shuffles.
9737 ///
9738 /// This routine is only called when we have AVX2 and thus a reasonable
9739 /// instruction set for v8i32 shuffling..
9740 static SDValue lowerV8I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9741                                        const X86Subtarget *Subtarget,
9742                                        SelectionDAG &DAG) {
9743   SDLoc DL(Op);
9744   assert(V1.getSimpleValueType() == MVT::v8i32 && "Bad operand type!");
9745   assert(V2.getSimpleValueType() == MVT::v8i32 && "Bad operand type!");
9746   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9747   ArrayRef<int> Mask = SVOp->getMask();
9748   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
9749   assert(Subtarget->hasAVX2() && "We can only lower v8i32 with AVX2!");
9750
9751   // Whenever we can lower this as a zext, that instruction is strictly faster
9752   // than any alternative. It also allows us to fold memory operands into the
9753   // shuffle in many cases.
9754   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v8i32, V1, V2,
9755                                                          Mask, Subtarget, DAG))
9756     return ZExt;
9757
9758   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8i32, V1, V2, Mask,
9759                                                 Subtarget, DAG))
9760     return Blend;
9761
9762   // Check for being able to broadcast a single element.
9763   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8i32, V1,
9764                                                         Mask, Subtarget, DAG))
9765     return Broadcast;
9766
9767   // If the shuffle mask is repeated in each 128-bit lane we can use more
9768   // efficient instructions that mirror the shuffles across the two 128-bit
9769   // lanes.
9770   SmallVector<int, 4> RepeatedMask;
9771   if (is128BitLaneRepeatedShuffleMask(MVT::v8i32, Mask, RepeatedMask)) {
9772     assert(RepeatedMask.size() == 4 && "Unexpected repeated mask size!");
9773     if (isSingleInputShuffleMask(Mask))
9774       return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v8i32, V1,
9775                          getV4X86ShuffleImm8ForMask(RepeatedMask, DL, DAG));
9776
9777     // Use dedicated unpack instructions for masks that match their pattern.
9778     if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 4, 12, 5, 13}))
9779       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i32, V1, V2);
9780     if (isShuffleEquivalent(V1, V2, Mask, {2, 10, 3, 11, 6, 14, 7, 15}))
9781       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i32, V1, V2);
9782     if (isShuffleEquivalent(V1, V2, Mask, {8, 0, 9, 1, 12, 4, 13, 5}))
9783       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i32, V2, V1);
9784     if (isShuffleEquivalent(V1, V2, Mask, {10, 2, 11, 3, 14, 6, 15, 7}))
9785       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i32, V2, V1);
9786   }
9787
9788   // Try to use shift instructions.
9789   if (SDValue Shift =
9790           lowerVectorShuffleAsShift(DL, MVT::v8i32, V1, V2, Mask, DAG))
9791     return Shift;
9792
9793   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9794           DL, MVT::v8i32, V1, V2, Mask, Subtarget, DAG))
9795     return Rotate;
9796
9797   // If the shuffle patterns aren't repeated but it is a single input, directly
9798   // generate a cross-lane VPERMD instruction.
9799   if (isSingleInputShuffleMask(Mask)) {
9800     SDValue VPermMask[8];
9801     for (int i = 0; i < 8; ++i)
9802       VPermMask[i] = Mask[i] < 0 ? DAG.getUNDEF(MVT::i32)
9803                                  : DAG.getConstant(Mask[i], DL, MVT::i32);
9804     return DAG.getNode(
9805         X86ISD::VPERMV, DL, MVT::v8i32,
9806         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i32, VPermMask), V1);
9807   }
9808
9809   // Try to simplify this by merging 128-bit lanes to enable a lane-based
9810   // shuffle.
9811   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
9812           DL, MVT::v8i32, V1, V2, Mask, Subtarget, DAG))
9813     return Result;
9814
9815   // Otherwise fall back on generic blend lowering.
9816   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8i32, V1, V2,
9817                                                     Mask, DAG);
9818 }
9819
9820 /// \brief Handle lowering of 16-lane 16-bit integer shuffles.
9821 ///
9822 /// This routine is only called when we have AVX2 and thus a reasonable
9823 /// instruction set for v16i16 shuffling..
9824 static SDValue lowerV16I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9825                                         const X86Subtarget *Subtarget,
9826                                         SelectionDAG &DAG) {
9827   SDLoc DL(Op);
9828   assert(V1.getSimpleValueType() == MVT::v16i16 && "Bad operand type!");
9829   assert(V2.getSimpleValueType() == MVT::v16i16 && "Bad operand type!");
9830   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9831   ArrayRef<int> Mask = SVOp->getMask();
9832   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
9833   assert(Subtarget->hasAVX2() && "We can only lower v16i16 with AVX2!");
9834
9835   // Whenever we can lower this as a zext, that instruction is strictly faster
9836   // than any alternative. It also allows us to fold memory operands into the
9837   // shuffle in many cases.
9838   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v16i16, V1, V2,
9839                                                          Mask, Subtarget, DAG))
9840     return ZExt;
9841
9842   // Check for being able to broadcast a single element.
9843   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v16i16, V1,
9844                                                         Mask, Subtarget, DAG))
9845     return Broadcast;
9846
9847   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v16i16, V1, V2, Mask,
9848                                                 Subtarget, DAG))
9849     return Blend;
9850
9851   // Use dedicated unpack instructions for masks that match their pattern.
9852   if (isShuffleEquivalent(V1, V2, Mask,
9853                           {// First 128-bit lane:
9854                            0, 16, 1, 17, 2, 18, 3, 19,
9855                            // Second 128-bit lane:
9856                            8, 24, 9, 25, 10, 26, 11, 27}))
9857     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i16, V1, V2);
9858   if (isShuffleEquivalent(V1, V2, Mask,
9859                           {// First 128-bit lane:
9860                            4, 20, 5, 21, 6, 22, 7, 23,
9861                            // Second 128-bit lane:
9862                            12, 28, 13, 29, 14, 30, 15, 31}))
9863     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i16, V1, V2);
9864
9865   // Try to use shift instructions.
9866   if (SDValue Shift =
9867           lowerVectorShuffleAsShift(DL, MVT::v16i16, V1, V2, Mask, DAG))
9868     return Shift;
9869
9870   // Try to use byte rotation instructions.
9871   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9872           DL, MVT::v16i16, V1, V2, Mask, Subtarget, DAG))
9873     return Rotate;
9874
9875   if (isSingleInputShuffleMask(Mask)) {
9876     // There are no generalized cross-lane shuffle operations available on i16
9877     // element types.
9878     if (is128BitLaneCrossingShuffleMask(MVT::v16i16, Mask))
9879       return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v16i16, V1, V2,
9880                                                      Mask, DAG);
9881
9882     SmallVector<int, 8> RepeatedMask;
9883     if (is128BitLaneRepeatedShuffleMask(MVT::v16i16, Mask, RepeatedMask)) {
9884       // As this is a single-input shuffle, the repeated mask should be
9885       // a strictly valid v8i16 mask that we can pass through to the v8i16
9886       // lowering to handle even the v16 case.
9887       return lowerV8I16GeneralSingleInputVectorShuffle(
9888           DL, MVT::v16i16, V1, RepeatedMask, Subtarget, DAG);
9889     }
9890
9891     SDValue PSHUFBMask[32];
9892     for (int i = 0; i < 16; ++i) {
9893       if (Mask[i] == -1) {
9894         PSHUFBMask[2 * i] = PSHUFBMask[2 * i + 1] = DAG.getUNDEF(MVT::i8);
9895         continue;
9896       }
9897
9898       int M = i < 8 ? Mask[i] : Mask[i] - 8;
9899       assert(M >= 0 && M < 8 && "Invalid single-input mask!");
9900       PSHUFBMask[2 * i] = DAG.getConstant(2 * M, DL, MVT::i8);
9901       PSHUFBMask[2 * i + 1] = DAG.getConstant(2 * M + 1, DL, MVT::i8);
9902     }
9903     return DAG.getBitcast(MVT::v16i16,
9904                           DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8,
9905                                       DAG.getBitcast(MVT::v32i8, V1),
9906                                       DAG.getNode(ISD::BUILD_VECTOR, DL,
9907                                                   MVT::v32i8, PSHUFBMask)));
9908   }
9909
9910   // Try to simplify this by merging 128-bit lanes to enable a lane-based
9911   // shuffle.
9912   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
9913           DL, MVT::v16i16, V1, V2, Mask, Subtarget, DAG))
9914     return Result;
9915
9916   // Otherwise fall back on generic lowering.
9917   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v16i16, V1, V2, Mask, DAG);
9918 }
9919
9920 /// \brief Handle lowering of 32-lane 8-bit integer shuffles.
9921 ///
9922 /// This routine is only called when we have AVX2 and thus a reasonable
9923 /// instruction set for v32i8 shuffling..
9924 static SDValue lowerV32I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9925                                        const X86Subtarget *Subtarget,
9926                                        SelectionDAG &DAG) {
9927   SDLoc DL(Op);
9928   assert(V1.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
9929   assert(V2.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
9930   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9931   ArrayRef<int> Mask = SVOp->getMask();
9932   assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
9933   assert(Subtarget->hasAVX2() && "We can only lower v32i8 with AVX2!");
9934
9935   // Whenever we can lower this as a zext, that instruction is strictly faster
9936   // than any alternative. It also allows us to fold memory operands into the
9937   // shuffle in many cases.
9938   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v32i8, V1, V2,
9939                                                          Mask, Subtarget, DAG))
9940     return ZExt;
9941
9942   // Check for being able to broadcast a single element.
9943   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v32i8, V1,
9944                                                         Mask, Subtarget, DAG))
9945     return Broadcast;
9946
9947   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v32i8, V1, V2, Mask,
9948                                                 Subtarget, DAG))
9949     return Blend;
9950
9951   // Use dedicated unpack instructions for masks that match their pattern.
9952   // Note that these are repeated 128-bit lane unpacks, not unpacks across all
9953   // 256-bit lanes.
9954   if (isShuffleEquivalent(
9955           V1, V2, Mask,
9956           {// First 128-bit lane:
9957            0, 32, 1, 33, 2, 34, 3, 35, 4, 36, 5, 37, 6, 38, 7, 39,
9958            // Second 128-bit lane:
9959            16, 48, 17, 49, 18, 50, 19, 51, 20, 52, 21, 53, 22, 54, 23, 55}))
9960     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v32i8, V1, V2);
9961   if (isShuffleEquivalent(
9962           V1, V2, Mask,
9963           {// First 128-bit lane:
9964            8, 40, 9, 41, 10, 42, 11, 43, 12, 44, 13, 45, 14, 46, 15, 47,
9965            // Second 128-bit lane:
9966            24, 56, 25, 57, 26, 58, 27, 59, 28, 60, 29, 61, 30, 62, 31, 63}))
9967     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v32i8, V1, V2);
9968
9969   // Try to use shift instructions.
9970   if (SDValue Shift =
9971           lowerVectorShuffleAsShift(DL, MVT::v32i8, V1, V2, Mask, DAG))
9972     return Shift;
9973
9974   // Try to use byte rotation instructions.
9975   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9976           DL, MVT::v32i8, V1, V2, Mask, Subtarget, DAG))
9977     return Rotate;
9978
9979   if (isSingleInputShuffleMask(Mask)) {
9980     // There are no generalized cross-lane shuffle operations available on i8
9981     // element types.
9982     if (is128BitLaneCrossingShuffleMask(MVT::v32i8, Mask))
9983       return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v32i8, V1, V2,
9984                                                      Mask, DAG);
9985
9986     SDValue PSHUFBMask[32];
9987     for (int i = 0; i < 32; ++i)
9988       PSHUFBMask[i] =
9989           Mask[i] < 0
9990               ? DAG.getUNDEF(MVT::i8)
9991               : DAG.getConstant(Mask[i] < 16 ? Mask[i] : Mask[i] - 16, DL,
9992                                 MVT::i8);
9993
9994     return DAG.getNode(
9995         X86ISD::PSHUFB, DL, MVT::v32i8, V1,
9996         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, PSHUFBMask));
9997   }
9998
9999   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10000   // shuffle.
10001   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10002           DL, MVT::v32i8, V1, V2, Mask, Subtarget, DAG))
10003     return Result;
10004
10005   // Otherwise fall back on generic lowering.
10006   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v32i8, V1, V2, Mask, DAG);
10007 }
10008
10009 /// \brief High-level routine to lower various 256-bit x86 vector shuffles.
10010 ///
10011 /// This routine either breaks down the specific type of a 256-bit x86 vector
10012 /// shuffle or splits it into two 128-bit shuffles and fuses the results back
10013 /// together based on the available instructions.
10014 static SDValue lower256BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10015                                         MVT VT, const X86Subtarget *Subtarget,
10016                                         SelectionDAG &DAG) {
10017   SDLoc DL(Op);
10018   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10019   ArrayRef<int> Mask = SVOp->getMask();
10020
10021   // If we have a single input to the zero element, insert that into V1 if we
10022   // can do so cheaply.
10023   int NumElts = VT.getVectorNumElements();
10024   int NumV2Elements = std::count_if(Mask.begin(), Mask.end(), [NumElts](int M) {
10025     return M >= NumElts;
10026   });
10027
10028   if (NumV2Elements == 1 && Mask[0] >= NumElts)
10029     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
10030                               DL, VT, V1, V2, Mask, Subtarget, DAG))
10031       return Insertion;
10032
10033   // There is a really nice hard cut-over between AVX1 and AVX2 that means we can
10034   // check for those subtargets here and avoid much of the subtarget querying in
10035   // the per-vector-type lowering routines. With AVX1 we have essentially *zero*
10036   // ability to manipulate a 256-bit vector with integer types. Since we'll use
10037   // floating point types there eventually, just immediately cast everything to
10038   // a float and operate entirely in that domain.
10039   if (VT.isInteger() && !Subtarget->hasAVX2()) {
10040     int ElementBits = VT.getScalarSizeInBits();
10041     if (ElementBits < 32)
10042       // No floating point type available, decompose into 128-bit vectors.
10043       return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
10044
10045     MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits),
10046                                 VT.getVectorNumElements());
10047     V1 = DAG.getBitcast(FpVT, V1);
10048     V2 = DAG.getBitcast(FpVT, V2);
10049     return DAG.getBitcast(VT, DAG.getVectorShuffle(FpVT, DL, V1, V2, Mask));
10050   }
10051
10052   switch (VT.SimpleTy) {
10053   case MVT::v4f64:
10054     return lowerV4F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10055   case MVT::v4i64:
10056     return lowerV4I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10057   case MVT::v8f32:
10058     return lowerV8F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10059   case MVT::v8i32:
10060     return lowerV8I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10061   case MVT::v16i16:
10062     return lowerV16I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
10063   case MVT::v32i8:
10064     return lowerV32I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
10065
10066   default:
10067     llvm_unreachable("Not a valid 256-bit x86 vector type!");
10068   }
10069 }
10070
10071 /// \brief Handle lowering of 8-lane 64-bit floating point shuffles.
10072 static SDValue lowerV8F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10073                                        const X86Subtarget *Subtarget,
10074                                        SelectionDAG &DAG) {
10075   SDLoc DL(Op);
10076   assert(V1.getSimpleValueType() == MVT::v8f64 && "Bad operand type!");
10077   assert(V2.getSimpleValueType() == MVT::v8f64 && "Bad operand type!");
10078   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10079   ArrayRef<int> Mask = SVOp->getMask();
10080   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10081
10082   // X86 has dedicated unpack instructions that can handle specific blend
10083   // operations: UNPCKH and UNPCKL.
10084   if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 2, 10, 4, 12, 6, 14}))
10085     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f64, V1, V2);
10086   if (isShuffleEquivalent(V1, V2, Mask, {1, 9, 3, 11, 5, 13, 7, 15}))
10087     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f64, V1, V2);
10088
10089   // FIXME: Implement direct support for this type!
10090   return splitAndLowerVectorShuffle(DL, MVT::v8f64, V1, V2, Mask, DAG);
10091 }
10092
10093 /// \brief Handle lowering of 16-lane 32-bit floating point shuffles.
10094 static SDValue lowerV16F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10095                                        const X86Subtarget *Subtarget,
10096                                        SelectionDAG &DAG) {
10097   SDLoc DL(Op);
10098   assert(V1.getSimpleValueType() == MVT::v16f32 && "Bad operand type!");
10099   assert(V2.getSimpleValueType() == MVT::v16f32 && "Bad operand type!");
10100   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10101   ArrayRef<int> Mask = SVOp->getMask();
10102   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10103
10104   // Use dedicated unpack instructions for masks that match their pattern.
10105   if (isShuffleEquivalent(V1, V2, Mask,
10106                           {// First 128-bit lane.
10107                            0, 16, 1, 17, 4, 20, 5, 21,
10108                            // Second 128-bit lane.
10109                            8, 24, 9, 25, 12, 28, 13, 29}))
10110     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16f32, V1, V2);
10111   if (isShuffleEquivalent(V1, V2, Mask,
10112                           {// First 128-bit lane.
10113                            2, 18, 3, 19, 6, 22, 7, 23,
10114                            // Second 128-bit lane.
10115                            10, 26, 11, 27, 14, 30, 15, 31}))
10116     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16f32, V1, V2);
10117
10118   // FIXME: Implement direct support for this type!
10119   return splitAndLowerVectorShuffle(DL, MVT::v16f32, V1, V2, Mask, DAG);
10120 }
10121
10122 /// \brief Handle lowering of 8-lane 64-bit integer shuffles.
10123 static SDValue lowerV8I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10124                                        const X86Subtarget *Subtarget,
10125                                        SelectionDAG &DAG) {
10126   SDLoc DL(Op);
10127   assert(V1.getSimpleValueType() == MVT::v8i64 && "Bad operand type!");
10128   assert(V2.getSimpleValueType() == MVT::v8i64 && "Bad operand type!");
10129   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10130   ArrayRef<int> Mask = SVOp->getMask();
10131   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10132
10133   // X86 has dedicated unpack instructions that can handle specific blend
10134   // operations: UNPCKH and UNPCKL.
10135   if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 2, 10, 4, 12, 6, 14}))
10136     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i64, V1, V2);
10137   if (isShuffleEquivalent(V1, V2, Mask, {1, 9, 3, 11, 5, 13, 7, 15}))
10138     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i64, V1, V2);
10139
10140   // FIXME: Implement direct support for this type!
10141   return splitAndLowerVectorShuffle(DL, MVT::v8i64, V1, V2, Mask, DAG);
10142 }
10143
10144 /// \brief Handle lowering of 16-lane 32-bit integer shuffles.
10145 static SDValue lowerV16I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10146                                        const X86Subtarget *Subtarget,
10147                                        SelectionDAG &DAG) {
10148   SDLoc DL(Op);
10149   assert(V1.getSimpleValueType() == MVT::v16i32 && "Bad operand type!");
10150   assert(V2.getSimpleValueType() == MVT::v16i32 && "Bad operand type!");
10151   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10152   ArrayRef<int> Mask = SVOp->getMask();
10153   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10154
10155   // Use dedicated unpack instructions for masks that match their pattern.
10156   if (isShuffleEquivalent(V1, V2, Mask,
10157                           {// First 128-bit lane.
10158                            0, 16, 1, 17, 4, 20, 5, 21,
10159                            // Second 128-bit lane.
10160                            8, 24, 9, 25, 12, 28, 13, 29}))
10161     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i32, V1, V2);
10162   if (isShuffleEquivalent(V1, V2, Mask,
10163                           {// First 128-bit lane.
10164                            2, 18, 3, 19, 6, 22, 7, 23,
10165                            // Second 128-bit lane.
10166                            10, 26, 11, 27, 14, 30, 15, 31}))
10167     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i32, V1, V2);
10168
10169   // FIXME: Implement direct support for this type!
10170   return splitAndLowerVectorShuffle(DL, MVT::v16i32, V1, V2, Mask, DAG);
10171 }
10172
10173 /// \brief Handle lowering of 32-lane 16-bit integer shuffles.
10174 static SDValue lowerV32I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10175                                         const X86Subtarget *Subtarget,
10176                                         SelectionDAG &DAG) {
10177   SDLoc DL(Op);
10178   assert(V1.getSimpleValueType() == MVT::v32i16 && "Bad operand type!");
10179   assert(V2.getSimpleValueType() == MVT::v32i16 && "Bad operand type!");
10180   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10181   ArrayRef<int> Mask = SVOp->getMask();
10182   assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
10183   assert(Subtarget->hasBWI() && "We can only lower v32i16 with AVX-512-BWI!");
10184
10185   // FIXME: Implement direct support for this type!
10186   return splitAndLowerVectorShuffle(DL, MVT::v32i16, V1, V2, Mask, DAG);
10187 }
10188
10189 /// \brief Handle lowering of 64-lane 8-bit integer shuffles.
10190 static SDValue lowerV64I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10191                                        const X86Subtarget *Subtarget,
10192                                        SelectionDAG &DAG) {
10193   SDLoc DL(Op);
10194   assert(V1.getSimpleValueType() == MVT::v64i8 && "Bad operand type!");
10195   assert(V2.getSimpleValueType() == MVT::v64i8 && "Bad operand type!");
10196   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10197   ArrayRef<int> Mask = SVOp->getMask();
10198   assert(Mask.size() == 64 && "Unexpected mask size for v64 shuffle!");
10199   assert(Subtarget->hasBWI() && "We can only lower v64i8 with AVX-512-BWI!");
10200
10201   // FIXME: Implement direct support for this type!
10202   return splitAndLowerVectorShuffle(DL, MVT::v64i8, V1, V2, Mask, DAG);
10203 }
10204
10205 /// \brief High-level routine to lower various 512-bit x86 vector shuffles.
10206 ///
10207 /// This routine either breaks down the specific type of a 512-bit x86 vector
10208 /// shuffle or splits it into two 256-bit shuffles and fuses the results back
10209 /// together based on the available instructions.
10210 static SDValue lower512BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10211                                         MVT VT, const X86Subtarget *Subtarget,
10212                                         SelectionDAG &DAG) {
10213   SDLoc DL(Op);
10214   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10215   ArrayRef<int> Mask = SVOp->getMask();
10216   assert(Subtarget->hasAVX512() &&
10217          "Cannot lower 512-bit vectors w/ basic ISA!");
10218
10219   // Check for being able to broadcast a single element.
10220   if (SDValue Broadcast =
10221           lowerVectorShuffleAsBroadcast(DL, VT, V1, Mask, Subtarget, DAG))
10222     return Broadcast;
10223
10224   // Dispatch to each element type for lowering. If we don't have supprot for
10225   // specific element type shuffles at 512 bits, immediately split them and
10226   // lower them. Each lowering routine of a given type is allowed to assume that
10227   // the requisite ISA extensions for that element type are available.
10228   switch (VT.SimpleTy) {
10229   case MVT::v8f64:
10230     return lowerV8F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10231   case MVT::v16f32:
10232     return lowerV16F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10233   case MVT::v8i64:
10234     return lowerV8I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10235   case MVT::v16i32:
10236     return lowerV16I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10237   case MVT::v32i16:
10238     if (Subtarget->hasBWI())
10239       return lowerV32I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
10240     break;
10241   case MVT::v64i8:
10242     if (Subtarget->hasBWI())
10243       return lowerV64I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
10244     break;
10245
10246   default:
10247     llvm_unreachable("Not a valid 512-bit x86 vector type!");
10248   }
10249
10250   // Otherwise fall back on splitting.
10251   return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
10252 }
10253
10254 /// \brief Top-level lowering for x86 vector shuffles.
10255 ///
10256 /// This handles decomposition, canonicalization, and lowering of all x86
10257 /// vector shuffles. Most of the specific lowering strategies are encapsulated
10258 /// above in helper routines. The canonicalization attempts to widen shuffles
10259 /// to involve fewer lanes of wider elements, consolidate symmetric patterns
10260 /// s.t. only one of the two inputs needs to be tested, etc.
10261 static SDValue lowerVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
10262                                   SelectionDAG &DAG) {
10263   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10264   ArrayRef<int> Mask = SVOp->getMask();
10265   SDValue V1 = Op.getOperand(0);
10266   SDValue V2 = Op.getOperand(1);
10267   MVT VT = Op.getSimpleValueType();
10268   int NumElements = VT.getVectorNumElements();
10269   SDLoc dl(Op);
10270
10271   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
10272
10273   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
10274   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
10275   if (V1IsUndef && V2IsUndef)
10276     return DAG.getUNDEF(VT);
10277
10278   // When we create a shuffle node we put the UNDEF node to second operand,
10279   // but in some cases the first operand may be transformed to UNDEF.
10280   // In this case we should just commute the node.
10281   if (V1IsUndef)
10282     return DAG.getCommutedVectorShuffle(*SVOp);
10283
10284   // Check for non-undef masks pointing at an undef vector and make the masks
10285   // undef as well. This makes it easier to match the shuffle based solely on
10286   // the mask.
10287   if (V2IsUndef)
10288     for (int M : Mask)
10289       if (M >= NumElements) {
10290         SmallVector<int, 8> NewMask(Mask.begin(), Mask.end());
10291         for (int &M : NewMask)
10292           if (M >= NumElements)
10293             M = -1;
10294         return DAG.getVectorShuffle(VT, dl, V1, V2, NewMask);
10295       }
10296
10297   // We actually see shuffles that are entirely re-arrangements of a set of
10298   // zero inputs. This mostly happens while decomposing complex shuffles into
10299   // simple ones. Directly lower these as a buildvector of zeros.
10300   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
10301   if (Zeroable.all())
10302     return getZeroVector(VT, Subtarget, DAG, dl);
10303
10304   // Try to collapse shuffles into using a vector type with fewer elements but
10305   // wider element types. We cap this to not form integers or floating point
10306   // elements wider than 64 bits, but it might be interesting to form i128
10307   // integers to handle flipping the low and high halves of AVX 256-bit vectors.
10308   SmallVector<int, 16> WidenedMask;
10309   if (VT.getScalarSizeInBits() < 64 &&
10310       canWidenShuffleElements(Mask, WidenedMask)) {
10311     MVT NewEltVT = VT.isFloatingPoint()
10312                        ? MVT::getFloatingPointVT(VT.getScalarSizeInBits() * 2)
10313                        : MVT::getIntegerVT(VT.getScalarSizeInBits() * 2);
10314     MVT NewVT = MVT::getVectorVT(NewEltVT, VT.getVectorNumElements() / 2);
10315     // Make sure that the new vector type is legal. For example, v2f64 isn't
10316     // legal on SSE1.
10317     if (DAG.getTargetLoweringInfo().isTypeLegal(NewVT)) {
10318       V1 = DAG.getBitcast(NewVT, V1);
10319       V2 = DAG.getBitcast(NewVT, V2);
10320       return DAG.getBitcast(
10321           VT, DAG.getVectorShuffle(NewVT, dl, V1, V2, WidenedMask));
10322     }
10323   }
10324
10325   int NumV1Elements = 0, NumUndefElements = 0, NumV2Elements = 0;
10326   for (int M : SVOp->getMask())
10327     if (M < 0)
10328       ++NumUndefElements;
10329     else if (M < NumElements)
10330       ++NumV1Elements;
10331     else
10332       ++NumV2Elements;
10333
10334   // Commute the shuffle as needed such that more elements come from V1 than
10335   // V2. This allows us to match the shuffle pattern strictly on how many
10336   // elements come from V1 without handling the symmetric cases.
10337   if (NumV2Elements > NumV1Elements)
10338     return DAG.getCommutedVectorShuffle(*SVOp);
10339
10340   // When the number of V1 and V2 elements are the same, try to minimize the
10341   // number of uses of V2 in the low half of the vector. When that is tied,
10342   // ensure that the sum of indices for V1 is equal to or lower than the sum
10343   // indices for V2. When those are equal, try to ensure that the number of odd
10344   // indices for V1 is lower than the number of odd indices for V2.
10345   if (NumV1Elements == NumV2Elements) {
10346     int LowV1Elements = 0, LowV2Elements = 0;
10347     for (int M : SVOp->getMask().slice(0, NumElements / 2))
10348       if (M >= NumElements)
10349         ++LowV2Elements;
10350       else if (M >= 0)
10351         ++LowV1Elements;
10352     if (LowV2Elements > LowV1Elements) {
10353       return DAG.getCommutedVectorShuffle(*SVOp);
10354     } else if (LowV2Elements == LowV1Elements) {
10355       int SumV1Indices = 0, SumV2Indices = 0;
10356       for (int i = 0, Size = SVOp->getMask().size(); i < Size; ++i)
10357         if (SVOp->getMask()[i] >= NumElements)
10358           SumV2Indices += i;
10359         else if (SVOp->getMask()[i] >= 0)
10360           SumV1Indices += i;
10361       if (SumV2Indices < SumV1Indices) {
10362         return DAG.getCommutedVectorShuffle(*SVOp);
10363       } else if (SumV2Indices == SumV1Indices) {
10364         int NumV1OddIndices = 0, NumV2OddIndices = 0;
10365         for (int i = 0, Size = SVOp->getMask().size(); i < Size; ++i)
10366           if (SVOp->getMask()[i] >= NumElements)
10367             NumV2OddIndices += i % 2;
10368           else if (SVOp->getMask()[i] >= 0)
10369             NumV1OddIndices += i % 2;
10370         if (NumV2OddIndices < NumV1OddIndices)
10371           return DAG.getCommutedVectorShuffle(*SVOp);
10372       }
10373     }
10374   }
10375
10376   // For each vector width, delegate to a specialized lowering routine.
10377   if (VT.getSizeInBits() == 128)
10378     return lower128BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
10379
10380   if (VT.getSizeInBits() == 256)
10381     return lower256BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
10382
10383   // Force AVX-512 vectors to be scalarized for now.
10384   // FIXME: Implement AVX-512 support!
10385   if (VT.getSizeInBits() == 512)
10386     return lower512BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
10387
10388   llvm_unreachable("Unimplemented!");
10389 }
10390
10391 // This function assumes its argument is a BUILD_VECTOR of constants or
10392 // undef SDNodes. i.e: ISD::isBuildVectorOfConstantSDNodes(BuildVector) is
10393 // true.
10394 static bool BUILD_VECTORtoBlendMask(BuildVectorSDNode *BuildVector,
10395                                     unsigned &MaskValue) {
10396   MaskValue = 0;
10397   unsigned NumElems = BuildVector->getNumOperands();
10398   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
10399   unsigned NumLanes = (NumElems - 1) / 8 + 1;
10400   unsigned NumElemsInLane = NumElems / NumLanes;
10401
10402   // Blend for v16i16 should be symetric for the both lanes.
10403   for (unsigned i = 0; i < NumElemsInLane; ++i) {
10404     SDValue EltCond = BuildVector->getOperand(i);
10405     SDValue SndLaneEltCond =
10406         (NumLanes == 2) ? BuildVector->getOperand(i + NumElemsInLane) : EltCond;
10407
10408     int Lane1Cond = -1, Lane2Cond = -1;
10409     if (isa<ConstantSDNode>(EltCond))
10410       Lane1Cond = !isZero(EltCond);
10411     if (isa<ConstantSDNode>(SndLaneEltCond))
10412       Lane2Cond = !isZero(SndLaneEltCond);
10413
10414     if (Lane1Cond == Lane2Cond || Lane2Cond < 0)
10415       // Lane1Cond != 0, means we want the first argument.
10416       // Lane1Cond == 0, means we want the second argument.
10417       // The encoding of this argument is 0 for the first argument, 1
10418       // for the second. Therefore, invert the condition.
10419       MaskValue |= !Lane1Cond << i;
10420     else if (Lane1Cond < 0)
10421       MaskValue |= !Lane2Cond << i;
10422     else
10423       return false;
10424   }
10425   return true;
10426 }
10427
10428 /// \brief Try to lower a VSELECT instruction to a vector shuffle.
10429 static SDValue lowerVSELECTtoVectorShuffle(SDValue Op,
10430                                            const X86Subtarget *Subtarget,
10431                                            SelectionDAG &DAG) {
10432   SDValue Cond = Op.getOperand(0);
10433   SDValue LHS = Op.getOperand(1);
10434   SDValue RHS = Op.getOperand(2);
10435   SDLoc dl(Op);
10436   MVT VT = Op.getSimpleValueType();
10437
10438   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
10439     return SDValue();
10440   auto *CondBV = cast<BuildVectorSDNode>(Cond);
10441
10442   // Only non-legal VSELECTs reach this lowering, convert those into generic
10443   // shuffles and re-use the shuffle lowering path for blends.
10444   SmallVector<int, 32> Mask;
10445   for (int i = 0, Size = VT.getVectorNumElements(); i < Size; ++i) {
10446     SDValue CondElt = CondBV->getOperand(i);
10447     Mask.push_back(
10448         isa<ConstantSDNode>(CondElt) ? i + (isZero(CondElt) ? Size : 0) : -1);
10449   }
10450   return DAG.getVectorShuffle(VT, dl, LHS, RHS, Mask);
10451 }
10452
10453 SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
10454   // A vselect where all conditions and data are constants can be optimized into
10455   // a single vector load by SelectionDAGLegalize::ExpandBUILD_VECTOR().
10456   if (ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(0).getNode()) &&
10457       ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(1).getNode()) &&
10458       ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(2).getNode()))
10459     return SDValue();
10460
10461   // Try to lower this to a blend-style vector shuffle. This can handle all
10462   // constant condition cases.
10463   if (SDValue BlendOp = lowerVSELECTtoVectorShuffle(Op, Subtarget, DAG))
10464     return BlendOp;
10465
10466   // Variable blends are only legal from SSE4.1 onward.
10467   if (!Subtarget->hasSSE41())
10468     return SDValue();
10469
10470   // Only some types will be legal on some subtargets. If we can emit a legal
10471   // VSELECT-matching blend, return Op, and but if we need to expand, return
10472   // a null value.
10473   switch (Op.getSimpleValueType().SimpleTy) {
10474   default:
10475     // Most of the vector types have blends past SSE4.1.
10476     return Op;
10477
10478   case MVT::v32i8:
10479     // The byte blends for AVX vectors were introduced only in AVX2.
10480     if (Subtarget->hasAVX2())
10481       return Op;
10482
10483     return SDValue();
10484
10485   case MVT::v8i16:
10486   case MVT::v16i16:
10487     // AVX-512 BWI and VLX features support VSELECT with i16 elements.
10488     if (Subtarget->hasBWI() && Subtarget->hasVLX())
10489       return Op;
10490
10491     // FIXME: We should custom lower this by fixing the condition and using i8
10492     // blends.
10493     return SDValue();
10494   }
10495 }
10496
10497 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
10498   MVT VT = Op.getSimpleValueType();
10499   SDLoc dl(Op);
10500
10501   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
10502     return SDValue();
10503
10504   if (VT.getSizeInBits() == 8) {
10505     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
10506                                   Op.getOperand(0), Op.getOperand(1));
10507     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
10508                                   DAG.getValueType(VT));
10509     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
10510   }
10511
10512   if (VT.getSizeInBits() == 16) {
10513     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10514     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
10515     if (Idx == 0)
10516       return DAG.getNode(
10517           ISD::TRUNCATE, dl, MVT::i16,
10518           DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
10519                       DAG.getBitcast(MVT::v4i32, Op.getOperand(0)),
10520                       Op.getOperand(1)));
10521     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
10522                                   Op.getOperand(0), Op.getOperand(1));
10523     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
10524                                   DAG.getValueType(VT));
10525     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
10526   }
10527
10528   if (VT == MVT::f32) {
10529     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
10530     // the result back to FR32 register. It's only worth matching if the
10531     // result has a single use which is a store or a bitcast to i32.  And in
10532     // the case of a store, it's not worth it if the index is a constant 0,
10533     // because a MOVSSmr can be used instead, which is smaller and faster.
10534     if (!Op.hasOneUse())
10535       return SDValue();
10536     SDNode *User = *Op.getNode()->use_begin();
10537     if ((User->getOpcode() != ISD::STORE ||
10538          (isa<ConstantSDNode>(Op.getOperand(1)) &&
10539           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
10540         (User->getOpcode() != ISD::BITCAST ||
10541          User->getValueType(0) != MVT::i32))
10542       return SDValue();
10543     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
10544                                   DAG.getBitcast(MVT::v4i32, Op.getOperand(0)),
10545                                   Op.getOperand(1));
10546     return DAG.getBitcast(MVT::f32, Extract);
10547   }
10548
10549   if (VT == MVT::i32 || VT == MVT::i64) {
10550     // ExtractPS/pextrq works with constant index.
10551     if (isa<ConstantSDNode>(Op.getOperand(1)))
10552       return Op;
10553   }
10554   return SDValue();
10555 }
10556
10557 /// Extract one bit from mask vector, like v16i1 or v8i1.
10558 /// AVX-512 feature.
10559 SDValue
10560 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
10561   SDValue Vec = Op.getOperand(0);
10562   SDLoc dl(Vec);
10563   MVT VecVT = Vec.getSimpleValueType();
10564   SDValue Idx = Op.getOperand(1);
10565   MVT EltVT = Op.getSimpleValueType();
10566
10567   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
10568   assert((VecVT.getVectorNumElements() <= 16 || Subtarget->hasBWI()) &&
10569          "Unexpected vector type in ExtractBitFromMaskVector");
10570
10571   // variable index can't be handled in mask registers,
10572   // extend vector to VR512
10573   if (!isa<ConstantSDNode>(Idx)) {
10574     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
10575     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
10576     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
10577                               ExtVT.getVectorElementType(), Ext, Idx);
10578     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
10579   }
10580
10581   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10582   const TargetRegisterClass* rc = getRegClassFor(VecVT);
10583   if (!Subtarget->hasDQI() && (VecVT.getVectorNumElements() <= 8))
10584     rc = getRegClassFor(MVT::v16i1);
10585   unsigned MaxSift = rc->getSize()*8 - 1;
10586   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
10587                     DAG.getConstant(MaxSift - IdxVal, dl, MVT::i8));
10588   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
10589                     DAG.getConstant(MaxSift, dl, MVT::i8));
10590   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
10591                        DAG.getIntPtrConstant(0, dl));
10592 }
10593
10594 SDValue
10595 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
10596                                            SelectionDAG &DAG) const {
10597   SDLoc dl(Op);
10598   SDValue Vec = Op.getOperand(0);
10599   MVT VecVT = Vec.getSimpleValueType();
10600   SDValue Idx = Op.getOperand(1);
10601
10602   if (Op.getSimpleValueType() == MVT::i1)
10603     return ExtractBitFromMaskVector(Op, DAG);
10604
10605   if (!isa<ConstantSDNode>(Idx)) {
10606     if (VecVT.is512BitVector() ||
10607         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
10608          VecVT.getVectorElementType().getSizeInBits() == 32)) {
10609
10610       MVT MaskEltVT =
10611         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
10612       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
10613                                     MaskEltVT.getSizeInBits());
10614
10615       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
10616       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
10617                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
10618                                 Idx, DAG.getConstant(0, dl, getPointerTy()));
10619       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
10620       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
10621                         Perm, DAG.getConstant(0, dl, getPointerTy()));
10622     }
10623     return SDValue();
10624   }
10625
10626   // If this is a 256-bit vector result, first extract the 128-bit vector and
10627   // then extract the element from the 128-bit vector.
10628   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
10629
10630     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10631     // Get the 128-bit vector.
10632     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
10633     MVT EltVT = VecVT.getVectorElementType();
10634
10635     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
10636
10637     //if (IdxVal >= NumElems/2)
10638     //  IdxVal -= NumElems/2;
10639     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
10640     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
10641                        DAG.getConstant(IdxVal, dl, MVT::i32));
10642   }
10643
10644   assert(VecVT.is128BitVector() && "Unexpected vector length");
10645
10646   if (Subtarget->hasSSE41())
10647     if (SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG))
10648       return Res;
10649
10650   MVT VT = Op.getSimpleValueType();
10651   // TODO: handle v16i8.
10652   if (VT.getSizeInBits() == 16) {
10653     SDValue Vec = Op.getOperand(0);
10654     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10655     if (Idx == 0)
10656       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
10657                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
10658                                      DAG.getBitcast(MVT::v4i32, Vec),
10659                                      Op.getOperand(1)));
10660     // Transform it so it match pextrw which produces a 32-bit result.
10661     MVT EltVT = MVT::i32;
10662     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
10663                                   Op.getOperand(0), Op.getOperand(1));
10664     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
10665                                   DAG.getValueType(VT));
10666     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
10667   }
10668
10669   if (VT.getSizeInBits() == 32) {
10670     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10671     if (Idx == 0)
10672       return Op;
10673
10674     // SHUFPS the element to the lowest double word, then movss.
10675     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
10676     MVT VVT = Op.getOperand(0).getSimpleValueType();
10677     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
10678                                        DAG.getUNDEF(VVT), Mask);
10679     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
10680                        DAG.getIntPtrConstant(0, dl));
10681   }
10682
10683   if (VT.getSizeInBits() == 64) {
10684     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
10685     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
10686     //        to match extract_elt for f64.
10687     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10688     if (Idx == 0)
10689       return Op;
10690
10691     // UNPCKHPD the element to the lowest double word, then movsd.
10692     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
10693     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
10694     int Mask[2] = { 1, -1 };
10695     MVT VVT = Op.getOperand(0).getSimpleValueType();
10696     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
10697                                        DAG.getUNDEF(VVT), Mask);
10698     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
10699                        DAG.getIntPtrConstant(0, dl));
10700   }
10701
10702   return SDValue();
10703 }
10704
10705 /// Insert one bit to mask vector, like v16i1 or v8i1.
10706 /// AVX-512 feature.
10707 SDValue
10708 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
10709   SDLoc dl(Op);
10710   SDValue Vec = Op.getOperand(0);
10711   SDValue Elt = Op.getOperand(1);
10712   SDValue Idx = Op.getOperand(2);
10713   MVT VecVT = Vec.getSimpleValueType();
10714
10715   if (!isa<ConstantSDNode>(Idx)) {
10716     // Non constant index. Extend source and destination,
10717     // insert element and then truncate the result.
10718     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
10719     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
10720     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT,
10721       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
10722       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
10723     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
10724   }
10725
10726   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10727   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
10728   if (IdxVal)
10729     EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
10730                            DAG.getConstant(IdxVal, dl, MVT::i8));
10731   if (Vec.getOpcode() == ISD::UNDEF)
10732     return EltInVec;
10733   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
10734 }
10735
10736 SDValue X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
10737                                                   SelectionDAG &DAG) const {
10738   MVT VT = Op.getSimpleValueType();
10739   MVT EltVT = VT.getVectorElementType();
10740
10741   if (EltVT == MVT::i1)
10742     return InsertBitToMaskVector(Op, DAG);
10743
10744   SDLoc dl(Op);
10745   SDValue N0 = Op.getOperand(0);
10746   SDValue N1 = Op.getOperand(1);
10747   SDValue N2 = Op.getOperand(2);
10748   if (!isa<ConstantSDNode>(N2))
10749     return SDValue();
10750   auto *N2C = cast<ConstantSDNode>(N2);
10751   unsigned IdxVal = N2C->getZExtValue();
10752
10753   // If the vector is wider than 128 bits, extract the 128-bit subvector, insert
10754   // into that, and then insert the subvector back into the result.
10755   if (VT.is256BitVector() || VT.is512BitVector()) {
10756     // With a 256-bit vector, we can insert into the zero element efficiently
10757     // using a blend if we have AVX or AVX2 and the right data type.
10758     if (VT.is256BitVector() && IdxVal == 0) {
10759       // TODO: It is worthwhile to cast integer to floating point and back
10760       // and incur a domain crossing penalty if that's what we'll end up
10761       // doing anyway after extracting to a 128-bit vector.
10762       if ((Subtarget->hasAVX() && (EltVT == MVT::f64 || EltVT == MVT::f32)) ||
10763           (Subtarget->hasAVX2() && EltVT == MVT::i32)) {
10764         SDValue N1Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, N1);
10765         N2 = DAG.getIntPtrConstant(1, dl);
10766         return DAG.getNode(X86ISD::BLENDI, dl, VT, N0, N1Vec, N2);
10767       }
10768     }
10769
10770     // Get the desired 128-bit vector chunk.
10771     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
10772
10773     // Insert the element into the desired chunk.
10774     unsigned NumEltsIn128 = 128 / EltVT.getSizeInBits();
10775     unsigned IdxIn128 = IdxVal - (IdxVal / NumEltsIn128) * NumEltsIn128;
10776
10777     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
10778                     DAG.getConstant(IdxIn128, dl, MVT::i32));
10779
10780     // Insert the changed part back into the bigger vector
10781     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
10782   }
10783   assert(VT.is128BitVector() && "Only 128-bit vector types should be left!");
10784
10785   if (Subtarget->hasSSE41()) {
10786     if (EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) {
10787       unsigned Opc;
10788       if (VT == MVT::v8i16) {
10789         Opc = X86ISD::PINSRW;
10790       } else {
10791         assert(VT == MVT::v16i8);
10792         Opc = X86ISD::PINSRB;
10793       }
10794
10795       // Transform it so it match pinsr{b,w} which expects a GR32 as its second
10796       // argument.
10797       if (N1.getValueType() != MVT::i32)
10798         N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
10799       if (N2.getValueType() != MVT::i32)
10800         N2 = DAG.getIntPtrConstant(IdxVal, dl);
10801       return DAG.getNode(Opc, dl, VT, N0, N1, N2);
10802     }
10803
10804     if (EltVT == MVT::f32) {
10805       // Bits [7:6] of the constant are the source select. This will always be
10806       //   zero here. The DAG Combiner may combine an extract_elt index into
10807       //   these bits. For example (insert (extract, 3), 2) could be matched by
10808       //   putting the '3' into bits [7:6] of X86ISD::INSERTPS.
10809       // Bits [5:4] of the constant are the destination select. This is the
10810       //   value of the incoming immediate.
10811       // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
10812       //   combine either bitwise AND or insert of float 0.0 to set these bits.
10813
10814       const Function *F = DAG.getMachineFunction().getFunction();
10815       bool MinSize = F->hasFnAttribute(Attribute::MinSize);
10816       if (IdxVal == 0 && (!MinSize || !MayFoldLoad(N1))) {
10817         // If this is an insertion of 32-bits into the low 32-bits of
10818         // a vector, we prefer to generate a blend with immediate rather
10819         // than an insertps. Blends are simpler operations in hardware and so
10820         // will always have equal or better performance than insertps.
10821         // But if optimizing for size and there's a load folding opportunity,
10822         // generate insertps because blendps does not have a 32-bit memory
10823         // operand form.
10824         N2 = DAG.getIntPtrConstant(1, dl);
10825         N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
10826         return DAG.getNode(X86ISD::BLENDI, dl, VT, N0, N1, N2);
10827       }
10828       N2 = DAG.getIntPtrConstant(IdxVal << 4, dl);
10829       // Create this as a scalar to vector..
10830       N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
10831       return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
10832     }
10833
10834     if (EltVT == MVT::i32 || EltVT == MVT::i64) {
10835       // PINSR* works with constant index.
10836       return Op;
10837     }
10838   }
10839
10840   if (EltVT == MVT::i8)
10841     return SDValue();
10842
10843   if (EltVT.getSizeInBits() == 16) {
10844     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
10845     // as its second argument.
10846     if (N1.getValueType() != MVT::i32)
10847       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
10848     if (N2.getValueType() != MVT::i32)
10849       N2 = DAG.getIntPtrConstant(IdxVal, dl);
10850     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
10851   }
10852   return SDValue();
10853 }
10854
10855 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
10856   SDLoc dl(Op);
10857   MVT OpVT = Op.getSimpleValueType();
10858
10859   // If this is a 256-bit vector result, first insert into a 128-bit
10860   // vector and then insert into the 256-bit vector.
10861   if (!OpVT.is128BitVector()) {
10862     // Insert into a 128-bit vector.
10863     unsigned SizeFactor = OpVT.getSizeInBits()/128;
10864     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
10865                                  OpVT.getVectorNumElements() / SizeFactor);
10866
10867     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
10868
10869     // Insert the 128-bit vector.
10870     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
10871   }
10872
10873   if (OpVT == MVT::v1i64 &&
10874       Op.getOperand(0).getValueType() == MVT::i64)
10875     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
10876
10877   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
10878   assert(OpVT.is128BitVector() && "Expected an SSE type!");
10879   return DAG.getBitcast(
10880       OpVT, DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, AnyExt));
10881 }
10882
10883 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
10884 // a simple subregister reference or explicit instructions to grab
10885 // upper bits of a vector.
10886 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
10887                                       SelectionDAG &DAG) {
10888   SDLoc dl(Op);
10889   SDValue In =  Op.getOperand(0);
10890   SDValue Idx = Op.getOperand(1);
10891   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10892   MVT ResVT   = Op.getSimpleValueType();
10893   MVT InVT    = In.getSimpleValueType();
10894
10895   if (Subtarget->hasFp256()) {
10896     if (ResVT.is128BitVector() &&
10897         (InVT.is256BitVector() || InVT.is512BitVector()) &&
10898         isa<ConstantSDNode>(Idx)) {
10899       return Extract128BitVector(In, IdxVal, DAG, dl);
10900     }
10901     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
10902         isa<ConstantSDNode>(Idx)) {
10903       return Extract256BitVector(In, IdxVal, DAG, dl);
10904     }
10905   }
10906   return SDValue();
10907 }
10908
10909 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
10910 // simple superregister reference or explicit instructions to insert
10911 // the upper bits of a vector.
10912 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
10913                                      SelectionDAG &DAG) {
10914   if (!Subtarget->hasAVX())
10915     return SDValue();
10916
10917   SDLoc dl(Op);
10918   SDValue Vec = Op.getOperand(0);
10919   SDValue SubVec = Op.getOperand(1);
10920   SDValue Idx = Op.getOperand(2);
10921
10922   if (!isa<ConstantSDNode>(Idx))
10923     return SDValue();
10924
10925   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
10926   MVT OpVT = Op.getSimpleValueType();
10927   MVT SubVecVT = SubVec.getSimpleValueType();
10928
10929   // Fold two 16-byte subvector loads into one 32-byte load:
10930   // (insert_subvector (insert_subvector undef, (load addr), 0),
10931   //                   (load addr + 16), Elts/2)
10932   // --> load32 addr
10933   if ((IdxVal == OpVT.getVectorNumElements() / 2) &&
10934       Vec.getOpcode() == ISD::INSERT_SUBVECTOR &&
10935       OpVT.is256BitVector() && SubVecVT.is128BitVector() &&
10936       !Subtarget->isUnalignedMem32Slow()) {
10937     SDValue SubVec2 = Vec.getOperand(1);
10938     if (auto *Idx2 = dyn_cast<ConstantSDNode>(Vec.getOperand(2))) {
10939       if (Idx2->getZExtValue() == 0) {
10940         SDValue Ops[] = { SubVec2, SubVec };
10941         if (SDValue Ld = EltsFromConsecutiveLoads(OpVT, Ops, dl, DAG, false))
10942           return Ld;
10943       }
10944     }
10945   }
10946
10947   if ((OpVT.is256BitVector() || OpVT.is512BitVector()) &&
10948       SubVecVT.is128BitVector())
10949     return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
10950
10951   if (OpVT.is512BitVector() && SubVecVT.is256BitVector())
10952     return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
10953
10954   if (OpVT.getVectorElementType() == MVT::i1) {
10955     if (IdxVal == 0  && Vec.getOpcode() == ISD::UNDEF) // the operation is legal
10956       return Op;
10957     SDValue ZeroIdx = DAG.getIntPtrConstant(0, dl);
10958     SDValue Undef = DAG.getUNDEF(OpVT);
10959     unsigned NumElems = OpVT.getVectorNumElements();
10960     SDValue ShiftBits = DAG.getConstant(NumElems/2, dl, MVT::i8);
10961
10962     if (IdxVal == OpVT.getVectorNumElements() / 2) {
10963       // Zero upper bits of the Vec
10964       Vec = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec, ShiftBits);
10965       Vec = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec, ShiftBits);
10966
10967       SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef,
10968                                  SubVec, ZeroIdx);
10969       Vec2 = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec2, ShiftBits);
10970       return DAG.getNode(ISD::OR, dl, OpVT, Vec, Vec2);
10971     }
10972     if (IdxVal == 0) {
10973       SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef,
10974                                  SubVec, ZeroIdx);
10975       // Zero upper bits of the Vec2
10976       Vec2 = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec2, ShiftBits);
10977       Vec2 = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec2, ShiftBits);
10978       // Zero lower bits of the Vec
10979       Vec = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec, ShiftBits);
10980       Vec = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec, ShiftBits);
10981       // Merge them together
10982       return DAG.getNode(ISD::OR, dl, OpVT, Vec, Vec2);
10983     }
10984   }
10985   return SDValue();
10986 }
10987
10988 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
10989 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
10990 // one of the above mentioned nodes. It has to be wrapped because otherwise
10991 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
10992 // be used to form addressing mode. These wrapped nodes will be selected
10993 // into MOV32ri.
10994 SDValue
10995 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
10996   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
10997
10998   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
10999   // global base reg.
11000   unsigned char OpFlag = 0;
11001   unsigned WrapperKind = X86ISD::Wrapper;
11002   CodeModel::Model M = DAG.getTarget().getCodeModel();
11003
11004   if (Subtarget->isPICStyleRIPRel() &&
11005       (M == CodeModel::Small || M == CodeModel::Kernel))
11006     WrapperKind = X86ISD::WrapperRIP;
11007   else if (Subtarget->isPICStyleGOT())
11008     OpFlag = X86II::MO_GOTOFF;
11009   else if (Subtarget->isPICStyleStubPIC())
11010     OpFlag = X86II::MO_PIC_BASE_OFFSET;
11011
11012   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
11013                                              CP->getAlignment(),
11014                                              CP->getOffset(), OpFlag);
11015   SDLoc DL(CP);
11016   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
11017   // With PIC, the address is actually $g + Offset.
11018   if (OpFlag) {
11019     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11020                          DAG.getNode(X86ISD::GlobalBaseReg,
11021                                      SDLoc(), getPointerTy()),
11022                          Result);
11023   }
11024
11025   return Result;
11026 }
11027
11028 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
11029   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
11030
11031   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11032   // global base reg.
11033   unsigned char OpFlag = 0;
11034   unsigned WrapperKind = X86ISD::Wrapper;
11035   CodeModel::Model M = DAG.getTarget().getCodeModel();
11036
11037   if (Subtarget->isPICStyleRIPRel() &&
11038       (M == CodeModel::Small || M == CodeModel::Kernel))
11039     WrapperKind = X86ISD::WrapperRIP;
11040   else if (Subtarget->isPICStyleGOT())
11041     OpFlag = X86II::MO_GOTOFF;
11042   else if (Subtarget->isPICStyleStubPIC())
11043     OpFlag = X86II::MO_PIC_BASE_OFFSET;
11044
11045   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
11046                                           OpFlag);
11047   SDLoc DL(JT);
11048   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
11049
11050   // With PIC, the address is actually $g + Offset.
11051   if (OpFlag)
11052     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11053                          DAG.getNode(X86ISD::GlobalBaseReg,
11054                                      SDLoc(), getPointerTy()),
11055                          Result);
11056
11057   return Result;
11058 }
11059
11060 SDValue
11061 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
11062   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
11063
11064   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11065   // global base reg.
11066   unsigned char OpFlag = 0;
11067   unsigned WrapperKind = X86ISD::Wrapper;
11068   CodeModel::Model M = DAG.getTarget().getCodeModel();
11069
11070   if (Subtarget->isPICStyleRIPRel() &&
11071       (M == CodeModel::Small || M == CodeModel::Kernel)) {
11072     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
11073       OpFlag = X86II::MO_GOTPCREL;
11074     WrapperKind = X86ISD::WrapperRIP;
11075   } else if (Subtarget->isPICStyleGOT()) {
11076     OpFlag = X86II::MO_GOT;
11077   } else if (Subtarget->isPICStyleStubPIC()) {
11078     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
11079   } else if (Subtarget->isPICStyleStubNoDynamic()) {
11080     OpFlag = X86II::MO_DARWIN_NONLAZY;
11081   }
11082
11083   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
11084
11085   SDLoc DL(Op);
11086   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
11087
11088   // With PIC, the address is actually $g + Offset.
11089   if (DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
11090       !Subtarget->is64Bit()) {
11091     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11092                          DAG.getNode(X86ISD::GlobalBaseReg,
11093                                      SDLoc(), getPointerTy()),
11094                          Result);
11095   }
11096
11097   // For symbols that require a load from a stub to get the address, emit the
11098   // load.
11099   if (isGlobalStubReference(OpFlag))
11100     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
11101                          MachinePointerInfo::getGOT(), false, false, false, 0);
11102
11103   return Result;
11104 }
11105
11106 SDValue
11107 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
11108   // Create the TargetBlockAddressAddress node.
11109   unsigned char OpFlags =
11110     Subtarget->ClassifyBlockAddressReference();
11111   CodeModel::Model M = DAG.getTarget().getCodeModel();
11112   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
11113   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
11114   SDLoc dl(Op);
11115   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
11116                                              OpFlags);
11117
11118   if (Subtarget->isPICStyleRIPRel() &&
11119       (M == CodeModel::Small || M == CodeModel::Kernel))
11120     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
11121   else
11122     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
11123
11124   // With PIC, the address is actually $g + Offset.
11125   if (isGlobalRelativeToPICBase(OpFlags)) {
11126     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
11127                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
11128                          Result);
11129   }
11130
11131   return Result;
11132 }
11133
11134 SDValue
11135 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
11136                                       int64_t Offset, SelectionDAG &DAG) const {
11137   // Create the TargetGlobalAddress node, folding in the constant
11138   // offset if it is legal.
11139   unsigned char OpFlags =
11140       Subtarget->ClassifyGlobalReference(GV, DAG.getTarget());
11141   CodeModel::Model M = DAG.getTarget().getCodeModel();
11142   SDValue Result;
11143   if (OpFlags == X86II::MO_NO_FLAG &&
11144       X86::isOffsetSuitableForCodeModel(Offset, M)) {
11145     // A direct static reference to a global.
11146     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
11147     Offset = 0;
11148   } else {
11149     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
11150   }
11151
11152   if (Subtarget->isPICStyleRIPRel() &&
11153       (M == CodeModel::Small || M == CodeModel::Kernel))
11154     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
11155   else
11156     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
11157
11158   // With PIC, the address is actually $g + Offset.
11159   if (isGlobalRelativeToPICBase(OpFlags)) {
11160     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
11161                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
11162                          Result);
11163   }
11164
11165   // For globals that require a load from a stub to get the address, emit the
11166   // load.
11167   if (isGlobalStubReference(OpFlags))
11168     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
11169                          MachinePointerInfo::getGOT(), false, false, false, 0);
11170
11171   // If there was a non-zero offset that we didn't fold, create an explicit
11172   // addition for it.
11173   if (Offset != 0)
11174     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
11175                          DAG.getConstant(Offset, dl, getPointerTy()));
11176
11177   return Result;
11178 }
11179
11180 SDValue
11181 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
11182   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
11183   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
11184   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
11185 }
11186
11187 static SDValue
11188 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
11189            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
11190            unsigned char OperandFlags, bool LocalDynamic = false) {
11191   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11192   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11193   SDLoc dl(GA);
11194   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
11195                                            GA->getValueType(0),
11196                                            GA->getOffset(),
11197                                            OperandFlags);
11198
11199   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
11200                                            : X86ISD::TLSADDR;
11201
11202   if (InFlag) {
11203     SDValue Ops[] = { Chain,  TGA, *InFlag };
11204     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
11205   } else {
11206     SDValue Ops[]  = { Chain, TGA };
11207     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
11208   }
11209
11210   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
11211   MFI->setAdjustsStack(true);
11212   MFI->setHasCalls(true);
11213
11214   SDValue Flag = Chain.getValue(1);
11215   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
11216 }
11217
11218 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
11219 static SDValue
11220 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
11221                                 const EVT PtrVT) {
11222   SDValue InFlag;
11223   SDLoc dl(GA);  // ? function entry point might be better
11224   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
11225                                    DAG.getNode(X86ISD::GlobalBaseReg,
11226                                                SDLoc(), PtrVT), InFlag);
11227   InFlag = Chain.getValue(1);
11228
11229   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
11230 }
11231
11232 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
11233 static SDValue
11234 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
11235                                 const EVT PtrVT) {
11236   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
11237                     X86::RAX, X86II::MO_TLSGD);
11238 }
11239
11240 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
11241                                            SelectionDAG &DAG,
11242                                            const EVT PtrVT,
11243                                            bool is64Bit) {
11244   SDLoc dl(GA);
11245
11246   // Get the start address of the TLS block for this module.
11247   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
11248       .getInfo<X86MachineFunctionInfo>();
11249   MFI->incNumLocalDynamicTLSAccesses();
11250
11251   SDValue Base;
11252   if (is64Bit) {
11253     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
11254                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
11255   } else {
11256     SDValue InFlag;
11257     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
11258         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
11259     InFlag = Chain.getValue(1);
11260     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
11261                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
11262   }
11263
11264   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
11265   // of Base.
11266
11267   // Build x@dtpoff.
11268   unsigned char OperandFlags = X86II::MO_DTPOFF;
11269   unsigned WrapperKind = X86ISD::Wrapper;
11270   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
11271                                            GA->getValueType(0),
11272                                            GA->getOffset(), OperandFlags);
11273   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
11274
11275   // Add x@dtpoff with the base.
11276   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
11277 }
11278
11279 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
11280 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
11281                                    const EVT PtrVT, TLSModel::Model model,
11282                                    bool is64Bit, bool isPIC) {
11283   SDLoc dl(GA);
11284
11285   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
11286   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
11287                                                          is64Bit ? 257 : 256));
11288
11289   SDValue ThreadPointer =
11290       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0, dl),
11291                   MachinePointerInfo(Ptr), false, false, false, 0);
11292
11293   unsigned char OperandFlags = 0;
11294   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
11295   // initialexec.
11296   unsigned WrapperKind = X86ISD::Wrapper;
11297   if (model == TLSModel::LocalExec) {
11298     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
11299   } else if (model == TLSModel::InitialExec) {
11300     if (is64Bit) {
11301       OperandFlags = X86II::MO_GOTTPOFF;
11302       WrapperKind = X86ISD::WrapperRIP;
11303     } else {
11304       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
11305     }
11306   } else {
11307     llvm_unreachable("Unexpected model");
11308   }
11309
11310   // emit "addl x@ntpoff,%eax" (local exec)
11311   // or "addl x@indntpoff,%eax" (initial exec)
11312   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
11313   SDValue TGA =
11314       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
11315                                  GA->getOffset(), OperandFlags);
11316   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
11317
11318   if (model == TLSModel::InitialExec) {
11319     if (isPIC && !is64Bit) {
11320       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
11321                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
11322                            Offset);
11323     }
11324
11325     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
11326                          MachinePointerInfo::getGOT(), false, false, false, 0);
11327   }
11328
11329   // The address of the thread local variable is the add of the thread
11330   // pointer with the offset of the variable.
11331   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
11332 }
11333
11334 SDValue
11335 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
11336
11337   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
11338   const GlobalValue *GV = GA->getGlobal();
11339
11340   if (Subtarget->isTargetELF()) {
11341     TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
11342     switch (model) {
11343       case TLSModel::GeneralDynamic:
11344         if (Subtarget->is64Bit())
11345           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
11346         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
11347       case TLSModel::LocalDynamic:
11348         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
11349                                            Subtarget->is64Bit());
11350       case TLSModel::InitialExec:
11351       case TLSModel::LocalExec:
11352         return LowerToTLSExecModel(
11353             GA, DAG, getPointerTy(), model, Subtarget->is64Bit(),
11354             DAG.getTarget().getRelocationModel() == Reloc::PIC_);
11355     }
11356     llvm_unreachable("Unknown TLS model.");
11357   }
11358
11359   if (Subtarget->isTargetDarwin()) {
11360     // Darwin only has one model of TLS.  Lower to that.
11361     unsigned char OpFlag = 0;
11362     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
11363                            X86ISD::WrapperRIP : X86ISD::Wrapper;
11364
11365     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11366     // global base reg.
11367     bool PIC32 = (DAG.getTarget().getRelocationModel() == Reloc::PIC_) &&
11368                  !Subtarget->is64Bit();
11369     if (PIC32)
11370       OpFlag = X86II::MO_TLVP_PIC_BASE;
11371     else
11372       OpFlag = X86II::MO_TLVP;
11373     SDLoc DL(Op);
11374     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
11375                                                 GA->getValueType(0),
11376                                                 GA->getOffset(), OpFlag);
11377     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
11378
11379     // With PIC32, the address is actually $g + Offset.
11380     if (PIC32)
11381       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11382                            DAG.getNode(X86ISD::GlobalBaseReg,
11383                                        SDLoc(), getPointerTy()),
11384                            Offset);
11385
11386     // Lowering the machine isd will make sure everything is in the right
11387     // location.
11388     SDValue Chain = DAG.getEntryNode();
11389     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11390     SDValue Args[] = { Chain, Offset };
11391     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
11392
11393     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
11394     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11395     MFI->setAdjustsStack(true);
11396
11397     // And our return value (tls address) is in the standard call return value
11398     // location.
11399     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11400     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
11401                               Chain.getValue(1));
11402   }
11403
11404   if (Subtarget->isTargetKnownWindowsMSVC() ||
11405       Subtarget->isTargetWindowsGNU()) {
11406     // Just use the implicit TLS architecture
11407     // Need to generate someting similar to:
11408     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
11409     //                                  ; from TEB
11410     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
11411     //   mov     rcx, qword [rdx+rcx*8]
11412     //   mov     eax, .tls$:tlsvar
11413     //   [rax+rcx] contains the address
11414     // Windows 64bit: gs:0x58
11415     // Windows 32bit: fs:__tls_array
11416
11417     SDLoc dl(GA);
11418     SDValue Chain = DAG.getEntryNode();
11419
11420     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
11421     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
11422     // use its literal value of 0x2C.
11423     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
11424                                         ? Type::getInt8PtrTy(*DAG.getContext(),
11425                                                              256)
11426                                         : Type::getInt32PtrTy(*DAG.getContext(),
11427                                                               257));
11428
11429     SDValue TlsArray =
11430         Subtarget->is64Bit()
11431             ? DAG.getIntPtrConstant(0x58, dl)
11432             : (Subtarget->isTargetWindowsGNU()
11433                    ? DAG.getIntPtrConstant(0x2C, dl)
11434                    : DAG.getExternalSymbol("_tls_array", getPointerTy()));
11435
11436     SDValue ThreadPointer =
11437         DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
11438                     MachinePointerInfo(Ptr), false, false, false, 0);
11439
11440     SDValue res;
11441     if (GV->getThreadLocalMode() == GlobalVariable::LocalExecTLSModel) {
11442       res = ThreadPointer;
11443     } else {
11444       // Load the _tls_index variable
11445       SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
11446       if (Subtarget->is64Bit())
11447         IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain, IDX,
11448                              MachinePointerInfo(), MVT::i32, false, false,
11449                              false, 0);
11450       else
11451         IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
11452                           false, false, false, 0);
11453
11454       SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()), dl,
11455                                       getPointerTy());
11456       IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
11457
11458       res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
11459     }
11460
11461     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
11462                       false, false, false, 0);
11463
11464     // Get the offset of start of .tls section
11465     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
11466                                              GA->getValueType(0),
11467                                              GA->getOffset(), X86II::MO_SECREL);
11468     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
11469
11470     // The address of the thread local variable is the add of the thread
11471     // pointer with the offset of the variable.
11472     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
11473   }
11474
11475   llvm_unreachable("TLS not implemented for this target.");
11476 }
11477
11478 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
11479 /// and take a 2 x i32 value to shift plus a shift amount.
11480 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
11481   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
11482   MVT VT = Op.getSimpleValueType();
11483   unsigned VTBits = VT.getSizeInBits();
11484   SDLoc dl(Op);
11485   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
11486   SDValue ShOpLo = Op.getOperand(0);
11487   SDValue ShOpHi = Op.getOperand(1);
11488   SDValue ShAmt  = Op.getOperand(2);
11489   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
11490   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
11491   // during isel.
11492   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
11493                                   DAG.getConstant(VTBits - 1, dl, MVT::i8));
11494   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
11495                                      DAG.getConstant(VTBits - 1, dl, MVT::i8))
11496                        : DAG.getConstant(0, dl, VT);
11497
11498   SDValue Tmp2, Tmp3;
11499   if (Op.getOpcode() == ISD::SHL_PARTS) {
11500     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
11501     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
11502   } else {
11503     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
11504     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
11505   }
11506
11507   // If the shift amount is larger or equal than the width of a part we can't
11508   // rely on the results of shld/shrd. Insert a test and select the appropriate
11509   // values for large shift amounts.
11510   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
11511                                 DAG.getConstant(VTBits, dl, MVT::i8));
11512   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
11513                              AndNode, DAG.getConstant(0, dl, MVT::i8));
11514
11515   SDValue Hi, Lo;
11516   SDValue CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
11517   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
11518   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
11519
11520   if (Op.getOpcode() == ISD::SHL_PARTS) {
11521     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
11522     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
11523   } else {
11524     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
11525     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
11526   }
11527
11528   SDValue Ops[2] = { Lo, Hi };
11529   return DAG.getMergeValues(Ops, dl);
11530 }
11531
11532 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
11533                                            SelectionDAG &DAG) const {
11534   SDValue Src = Op.getOperand(0);
11535   MVT SrcVT = Src.getSimpleValueType();
11536   MVT VT = Op.getSimpleValueType();
11537   SDLoc dl(Op);
11538
11539   if (SrcVT.isVector()) {
11540     if (SrcVT == MVT::v2i32 && VT == MVT::v2f64) {
11541       return DAG.getNode(X86ISD::CVTDQ2PD, dl, VT,
11542                          DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4i32, Src,
11543                          DAG.getUNDEF(SrcVT)));
11544     }
11545     if (SrcVT.getVectorElementType() == MVT::i1) {
11546       MVT IntegerVT = MVT::getVectorVT(MVT::i32, SrcVT.getVectorNumElements());
11547       return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
11548                          DAG.getNode(ISD::SIGN_EXTEND, dl, IntegerVT, Src));
11549     }
11550     return SDValue();
11551   }
11552
11553   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
11554          "Unknown SINT_TO_FP to lower!");
11555
11556   // These are really Legal; return the operand so the caller accepts it as
11557   // Legal.
11558   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
11559     return Op;
11560   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
11561       Subtarget->is64Bit()) {
11562     return Op;
11563   }
11564
11565   unsigned Size = SrcVT.getSizeInBits()/8;
11566   MachineFunction &MF = DAG.getMachineFunction();
11567   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
11568   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11569   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
11570                                StackSlot,
11571                                MachinePointerInfo::getFixedStack(SSFI),
11572                                false, false, 0);
11573   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
11574 }
11575
11576 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
11577                                      SDValue StackSlot,
11578                                      SelectionDAG &DAG) const {
11579   // Build the FILD
11580   SDLoc DL(Op);
11581   SDVTList Tys;
11582   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
11583   if (useSSE)
11584     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
11585   else
11586     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
11587
11588   unsigned ByteSize = SrcVT.getSizeInBits()/8;
11589
11590   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
11591   MachineMemOperand *MMO;
11592   if (FI) {
11593     int SSFI = FI->getIndex();
11594     MMO =
11595       DAG.getMachineFunction()
11596       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11597                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
11598   } else {
11599     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
11600     StackSlot = StackSlot.getOperand(1);
11601   }
11602   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
11603   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
11604                                            X86ISD::FILD, DL,
11605                                            Tys, Ops, SrcVT, MMO);
11606
11607   if (useSSE) {
11608     Chain = Result.getValue(1);
11609     SDValue InFlag = Result.getValue(2);
11610
11611     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
11612     // shouldn't be necessary except that RFP cannot be live across
11613     // multiple blocks. When stackifier is fixed, they can be uncoupled.
11614     MachineFunction &MF = DAG.getMachineFunction();
11615     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
11616     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
11617     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11618     Tys = DAG.getVTList(MVT::Other);
11619     SDValue Ops[] = {
11620       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
11621     };
11622     MachineMemOperand *MMO =
11623       DAG.getMachineFunction()
11624       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11625                             MachineMemOperand::MOStore, SSFISize, SSFISize);
11626
11627     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
11628                                     Ops, Op.getValueType(), MMO);
11629     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
11630                          MachinePointerInfo::getFixedStack(SSFI),
11631                          false, false, false, 0);
11632   }
11633
11634   return Result;
11635 }
11636
11637 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
11638 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
11639                                                SelectionDAG &DAG) const {
11640   // This algorithm is not obvious. Here it is what we're trying to output:
11641   /*
11642      movq       %rax,  %xmm0
11643      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
11644      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
11645      #ifdef __SSE3__
11646        haddpd   %xmm0, %xmm0
11647      #else
11648        pshufd   $0x4e, %xmm0, %xmm1
11649        addpd    %xmm1, %xmm0
11650      #endif
11651   */
11652
11653   SDLoc dl(Op);
11654   LLVMContext *Context = DAG.getContext();
11655
11656   // Build some magic constants.
11657   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
11658   Constant *C0 = ConstantDataVector::get(*Context, CV0);
11659   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
11660
11661   SmallVector<Constant*,2> CV1;
11662   CV1.push_back(
11663     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11664                                       APInt(64, 0x4330000000000000ULL))));
11665   CV1.push_back(
11666     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
11667                                       APInt(64, 0x4530000000000000ULL))));
11668   Constant *C1 = ConstantVector::get(CV1);
11669   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
11670
11671   // Load the 64-bit value into an XMM register.
11672   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
11673                             Op.getOperand(0));
11674   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
11675                               MachinePointerInfo::getConstantPool(),
11676                               false, false, false, 16);
11677   SDValue Unpck1 =
11678       getUnpackl(DAG, dl, MVT::v4i32, DAG.getBitcast(MVT::v4i32, XR1), CLod0);
11679
11680   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
11681                               MachinePointerInfo::getConstantPool(),
11682                               false, false, false, 16);
11683   SDValue XR2F = DAG.getBitcast(MVT::v2f64, Unpck1);
11684   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
11685   SDValue Result;
11686
11687   if (Subtarget->hasSSE3()) {
11688     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
11689     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
11690   } else {
11691     SDValue S2F = DAG.getBitcast(MVT::v4i32, Sub);
11692     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
11693                                            S2F, 0x4E, DAG);
11694     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
11695                          DAG.getBitcast(MVT::v2f64, Shuffle), Sub);
11696   }
11697
11698   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
11699                      DAG.getIntPtrConstant(0, dl));
11700 }
11701
11702 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
11703 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
11704                                                SelectionDAG &DAG) const {
11705   SDLoc dl(Op);
11706   // FP constant to bias correct the final result.
11707   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
11708                                    MVT::f64);
11709
11710   // Load the 32-bit value into an XMM register.
11711   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
11712                              Op.getOperand(0));
11713
11714   // Zero out the upper parts of the register.
11715   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
11716
11717   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
11718                      DAG.getBitcast(MVT::v2f64, Load),
11719                      DAG.getIntPtrConstant(0, dl));
11720
11721   // Or the load with the bias.
11722   SDValue Or = DAG.getNode(
11723       ISD::OR, dl, MVT::v2i64,
11724       DAG.getBitcast(MVT::v2i64,
11725                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Load)),
11726       DAG.getBitcast(MVT::v2i64,
11727                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Bias)));
11728   Or =
11729       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
11730                   DAG.getBitcast(MVT::v2f64, Or), DAG.getIntPtrConstant(0, dl));
11731
11732   // Subtract the bias.
11733   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
11734
11735   // Handle final rounding.
11736   EVT DestVT = Op.getValueType();
11737
11738   if (DestVT.bitsLT(MVT::f64))
11739     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
11740                        DAG.getIntPtrConstant(0, dl));
11741   if (DestVT.bitsGT(MVT::f64))
11742     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
11743
11744   // Handle final rounding.
11745   return Sub;
11746 }
11747
11748 static SDValue lowerUINT_TO_FP_vXi32(SDValue Op, SelectionDAG &DAG,
11749                                      const X86Subtarget &Subtarget) {
11750   // The algorithm is the following:
11751   // #ifdef __SSE4_1__
11752   //     uint4 lo = _mm_blend_epi16( v, (uint4) 0x4b000000, 0xaa);
11753   //     uint4 hi = _mm_blend_epi16( _mm_srli_epi32(v,16),
11754   //                                 (uint4) 0x53000000, 0xaa);
11755   // #else
11756   //     uint4 lo = (v & (uint4) 0xffff) | (uint4) 0x4b000000;
11757   //     uint4 hi = (v >> 16) | (uint4) 0x53000000;
11758   // #endif
11759   //     float4 fhi = (float4) hi - (0x1.0p39f + 0x1.0p23f);
11760   //     return (float4) lo + fhi;
11761
11762   SDLoc DL(Op);
11763   SDValue V = Op->getOperand(0);
11764   EVT VecIntVT = V.getValueType();
11765   bool Is128 = VecIntVT == MVT::v4i32;
11766   EVT VecFloatVT = Is128 ? MVT::v4f32 : MVT::v8f32;
11767   // If we convert to something else than the supported type, e.g., to v4f64,
11768   // abort early.
11769   if (VecFloatVT != Op->getValueType(0))
11770     return SDValue();
11771
11772   unsigned NumElts = VecIntVT.getVectorNumElements();
11773   assert((VecIntVT == MVT::v4i32 || VecIntVT == MVT::v8i32) &&
11774          "Unsupported custom type");
11775   assert(NumElts <= 8 && "The size of the constant array must be fixed");
11776
11777   // In the #idef/#else code, we have in common:
11778   // - The vector of constants:
11779   // -- 0x4b000000
11780   // -- 0x53000000
11781   // - A shift:
11782   // -- v >> 16
11783
11784   // Create the splat vector for 0x4b000000.
11785   SDValue CstLow = DAG.getConstant(0x4b000000, DL, MVT::i32);
11786   SDValue CstLowArray[] = {CstLow, CstLow, CstLow, CstLow,
11787                            CstLow, CstLow, CstLow, CstLow};
11788   SDValue VecCstLow = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
11789                                   makeArrayRef(&CstLowArray[0], NumElts));
11790   // Create the splat vector for 0x53000000.
11791   SDValue CstHigh = DAG.getConstant(0x53000000, DL, MVT::i32);
11792   SDValue CstHighArray[] = {CstHigh, CstHigh, CstHigh, CstHigh,
11793                             CstHigh, CstHigh, CstHigh, CstHigh};
11794   SDValue VecCstHigh = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
11795                                    makeArrayRef(&CstHighArray[0], NumElts));
11796
11797   // Create the right shift.
11798   SDValue CstShift = DAG.getConstant(16, DL, MVT::i32);
11799   SDValue CstShiftArray[] = {CstShift, CstShift, CstShift, CstShift,
11800                              CstShift, CstShift, CstShift, CstShift};
11801   SDValue VecCstShift = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
11802                                     makeArrayRef(&CstShiftArray[0], NumElts));
11803   SDValue HighShift = DAG.getNode(ISD::SRL, DL, VecIntVT, V, VecCstShift);
11804
11805   SDValue Low, High;
11806   if (Subtarget.hasSSE41()) {
11807     EVT VecI16VT = Is128 ? MVT::v8i16 : MVT::v16i16;
11808     //     uint4 lo = _mm_blend_epi16( v, (uint4) 0x4b000000, 0xaa);
11809     SDValue VecCstLowBitcast = DAG.getBitcast(VecI16VT, VecCstLow);
11810     SDValue VecBitcast = DAG.getBitcast(VecI16VT, V);
11811     // Low will be bitcasted right away, so do not bother bitcasting back to its
11812     // original type.
11813     Low = DAG.getNode(X86ISD::BLENDI, DL, VecI16VT, VecBitcast,
11814                       VecCstLowBitcast, DAG.getConstant(0xaa, DL, MVT::i32));
11815     //     uint4 hi = _mm_blend_epi16( _mm_srli_epi32(v,16),
11816     //                                 (uint4) 0x53000000, 0xaa);
11817     SDValue VecCstHighBitcast = DAG.getBitcast(VecI16VT, VecCstHigh);
11818     SDValue VecShiftBitcast = DAG.getBitcast(VecI16VT, HighShift);
11819     // High will be bitcasted right away, so do not bother bitcasting back to
11820     // its original type.
11821     High = DAG.getNode(X86ISD::BLENDI, DL, VecI16VT, VecShiftBitcast,
11822                        VecCstHighBitcast, DAG.getConstant(0xaa, DL, MVT::i32));
11823   } else {
11824     SDValue CstMask = DAG.getConstant(0xffff, DL, MVT::i32);
11825     SDValue VecCstMask = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT, CstMask,
11826                                      CstMask, CstMask, CstMask);
11827     //     uint4 lo = (v & (uint4) 0xffff) | (uint4) 0x4b000000;
11828     SDValue LowAnd = DAG.getNode(ISD::AND, DL, VecIntVT, V, VecCstMask);
11829     Low = DAG.getNode(ISD::OR, DL, VecIntVT, LowAnd, VecCstLow);
11830
11831     //     uint4 hi = (v >> 16) | (uint4) 0x53000000;
11832     High = DAG.getNode(ISD::OR, DL, VecIntVT, HighShift, VecCstHigh);
11833   }
11834
11835   // Create the vector constant for -(0x1.0p39f + 0x1.0p23f).
11836   SDValue CstFAdd = DAG.getConstantFP(
11837       APFloat(APFloat::IEEEsingle, APInt(32, 0xD3000080)), DL, MVT::f32);
11838   SDValue CstFAddArray[] = {CstFAdd, CstFAdd, CstFAdd, CstFAdd,
11839                             CstFAdd, CstFAdd, CstFAdd, CstFAdd};
11840   SDValue VecCstFAdd = DAG.getNode(ISD::BUILD_VECTOR, DL, VecFloatVT,
11841                                    makeArrayRef(&CstFAddArray[0], NumElts));
11842
11843   //     float4 fhi = (float4) hi - (0x1.0p39f + 0x1.0p23f);
11844   SDValue HighBitcast = DAG.getBitcast(VecFloatVT, High);
11845   SDValue FHigh =
11846       DAG.getNode(ISD::FADD, DL, VecFloatVT, HighBitcast, VecCstFAdd);
11847   //     return (float4) lo + fhi;
11848   SDValue LowBitcast = DAG.getBitcast(VecFloatVT, Low);
11849   return DAG.getNode(ISD::FADD, DL, VecFloatVT, LowBitcast, FHigh);
11850 }
11851
11852 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
11853                                                SelectionDAG &DAG) const {
11854   SDValue N0 = Op.getOperand(0);
11855   MVT SVT = N0.getSimpleValueType();
11856   SDLoc dl(Op);
11857
11858   switch (SVT.SimpleTy) {
11859   default:
11860     llvm_unreachable("Custom UINT_TO_FP is not supported!");
11861   case MVT::v4i8:
11862   case MVT::v4i16:
11863   case MVT::v8i8:
11864   case MVT::v8i16: {
11865     MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
11866     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
11867                        DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
11868   }
11869   case MVT::v4i32:
11870   case MVT::v8i32:
11871     return lowerUINT_TO_FP_vXi32(Op, DAG, *Subtarget);
11872   case MVT::v16i8:
11873   case MVT::v16i16:
11874     if (Subtarget->hasAVX512())
11875       return DAG.getNode(ISD::UINT_TO_FP, dl, Op.getValueType(),
11876                          DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v16i32, N0));
11877   }
11878   llvm_unreachable(nullptr);
11879 }
11880
11881 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
11882                                            SelectionDAG &DAG) const {
11883   SDValue N0 = Op.getOperand(0);
11884   SDLoc dl(Op);
11885
11886   if (Op.getValueType().isVector())
11887     return lowerUINT_TO_FP_vec(Op, DAG);
11888
11889   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
11890   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
11891   // the optimization here.
11892   if (DAG.SignBitIsZero(N0))
11893     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
11894
11895   MVT SrcVT = N0.getSimpleValueType();
11896   MVT DstVT = Op.getSimpleValueType();
11897   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
11898     return LowerUINT_TO_FP_i64(Op, DAG);
11899   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
11900     return LowerUINT_TO_FP_i32(Op, DAG);
11901   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
11902     return SDValue();
11903
11904   // Make a 64-bit buffer, and use it to build an FILD.
11905   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
11906   if (SrcVT == MVT::i32) {
11907     SDValue WordOff = DAG.getConstant(4, dl, getPointerTy());
11908     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
11909                                      getPointerTy(), StackSlot, WordOff);
11910     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
11911                                   StackSlot, MachinePointerInfo(),
11912                                   false, false, 0);
11913     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, dl, MVT::i32),
11914                                   OffsetSlot, MachinePointerInfo(),
11915                                   false, false, 0);
11916     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
11917     return Fild;
11918   }
11919
11920   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
11921   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
11922                                StackSlot, MachinePointerInfo(),
11923                                false, false, 0);
11924   // For i64 source, we need to add the appropriate power of 2 if the input
11925   // was negative.  This is the same as the optimization in
11926   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
11927   // we must be careful to do the computation in x87 extended precision, not
11928   // in SSE. (The generic code can't know it's OK to do this, or how to.)
11929   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
11930   MachineMemOperand *MMO =
11931     DAG.getMachineFunction()
11932     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11933                           MachineMemOperand::MOLoad, 8, 8);
11934
11935   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
11936   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
11937   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
11938                                          MVT::i64, MMO);
11939
11940   APInt FF(32, 0x5F800000ULL);
11941
11942   // Check whether the sign bit is set.
11943   SDValue SignSet = DAG.getSetCC(dl,
11944                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
11945                                  Op.getOperand(0),
11946                                  DAG.getConstant(0, dl, MVT::i64), ISD::SETLT);
11947
11948   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
11949   SDValue FudgePtr = DAG.getConstantPool(
11950                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
11951                                          getPointerTy());
11952
11953   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
11954   SDValue Zero = DAG.getIntPtrConstant(0, dl);
11955   SDValue Four = DAG.getIntPtrConstant(4, dl);
11956   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
11957                                Zero, Four);
11958   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
11959
11960   // Load the value out, extending it from f32 to f80.
11961   // FIXME: Avoid the extend by constructing the right constant pool?
11962   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
11963                                  FudgePtr, MachinePointerInfo::getConstantPool(),
11964                                  MVT::f32, false, false, false, 4);
11965   // Extend everything to 80 bits to force it to be done on x87.
11966   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
11967   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add,
11968                      DAG.getIntPtrConstant(0, dl));
11969 }
11970
11971 std::pair<SDValue,SDValue>
11972 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
11973                                     bool IsSigned, bool IsReplace) const {
11974   SDLoc DL(Op);
11975
11976   EVT DstTy = Op.getValueType();
11977
11978   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
11979     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
11980     DstTy = MVT::i64;
11981   }
11982
11983   assert(DstTy.getSimpleVT() <= MVT::i64 &&
11984          DstTy.getSimpleVT() >= MVT::i16 &&
11985          "Unknown FP_TO_INT to lower!");
11986
11987   // These are really Legal.
11988   if (DstTy == MVT::i32 &&
11989       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
11990     return std::make_pair(SDValue(), SDValue());
11991   if (Subtarget->is64Bit() &&
11992       DstTy == MVT::i64 &&
11993       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
11994     return std::make_pair(SDValue(), SDValue());
11995
11996   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
11997   // stack slot, or into the FTOL runtime function.
11998   MachineFunction &MF = DAG.getMachineFunction();
11999   unsigned MemSize = DstTy.getSizeInBits()/8;
12000   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
12001   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12002
12003   unsigned Opc;
12004   if (!IsSigned && isIntegerTypeFTOL(DstTy))
12005     Opc = X86ISD::WIN_FTOL;
12006   else
12007     switch (DstTy.getSimpleVT().SimpleTy) {
12008     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
12009     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
12010     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
12011     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
12012     }
12013
12014   SDValue Chain = DAG.getEntryNode();
12015   SDValue Value = Op.getOperand(0);
12016   EVT TheVT = Op.getOperand(0).getValueType();
12017   // FIXME This causes a redundant load/store if the SSE-class value is already
12018   // in memory, such as if it is on the callstack.
12019   if (isScalarFPTypeInSSEReg(TheVT)) {
12020     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
12021     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
12022                          MachinePointerInfo::getFixedStack(SSFI),
12023                          false, false, 0);
12024     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
12025     SDValue Ops[] = {
12026       Chain, StackSlot, DAG.getValueType(TheVT)
12027     };
12028
12029     MachineMemOperand *MMO =
12030       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12031                               MachineMemOperand::MOLoad, MemSize, MemSize);
12032     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
12033     Chain = Value.getValue(1);
12034     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
12035     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12036   }
12037
12038   MachineMemOperand *MMO =
12039     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12040                             MachineMemOperand::MOStore, MemSize, MemSize);
12041
12042   if (Opc != X86ISD::WIN_FTOL) {
12043     // Build the FP_TO_INT*_IN_MEM
12044     SDValue Ops[] = { Chain, Value, StackSlot };
12045     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
12046                                            Ops, DstTy, MMO);
12047     return std::make_pair(FIST, StackSlot);
12048   } else {
12049     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
12050       DAG.getVTList(MVT::Other, MVT::Glue),
12051       Chain, Value);
12052     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
12053       MVT::i32, ftol.getValue(1));
12054     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
12055       MVT::i32, eax.getValue(2));
12056     SDValue Ops[] = { eax, edx };
12057     SDValue pair = IsReplace
12058       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops)
12059       : DAG.getMergeValues(Ops, DL);
12060     return std::make_pair(pair, SDValue());
12061   }
12062 }
12063
12064 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
12065                               const X86Subtarget *Subtarget) {
12066   MVT VT = Op->getSimpleValueType(0);
12067   SDValue In = Op->getOperand(0);
12068   MVT InVT = In.getSimpleValueType();
12069   SDLoc dl(Op);
12070
12071   if (VT.is512BitVector() || InVT.getScalarType() == MVT::i1)
12072     return DAG.getNode(ISD::ZERO_EXTEND, dl, VT, In);
12073
12074   // Optimize vectors in AVX mode:
12075   //
12076   //   v8i16 -> v8i32
12077   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
12078   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
12079   //   Concat upper and lower parts.
12080   //
12081   //   v4i32 -> v4i64
12082   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
12083   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
12084   //   Concat upper and lower parts.
12085   //
12086
12087   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
12088       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
12089       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
12090     return SDValue();
12091
12092   if (Subtarget->hasInt256())
12093     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
12094
12095   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
12096   SDValue Undef = DAG.getUNDEF(InVT);
12097   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
12098   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
12099   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
12100
12101   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
12102                              VT.getVectorNumElements()/2);
12103
12104   OpLo = DAG.getBitcast(HVT, OpLo);
12105   OpHi = DAG.getBitcast(HVT, OpHi);
12106
12107   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
12108 }
12109
12110 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
12111                   const X86Subtarget *Subtarget, SelectionDAG &DAG) {
12112   MVT VT = Op->getSimpleValueType(0);
12113   SDValue In = Op->getOperand(0);
12114   MVT InVT = In.getSimpleValueType();
12115   SDLoc DL(Op);
12116   unsigned int NumElts = VT.getVectorNumElements();
12117   if (NumElts != 8 && NumElts != 16 && !Subtarget->hasBWI())
12118     return SDValue();
12119
12120   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
12121     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
12122
12123   assert(InVT.getVectorElementType() == MVT::i1);
12124   MVT ExtVT = NumElts == 8 ? MVT::v8i64 : MVT::v16i32;
12125   SDValue One =
12126    DAG.getConstant(APInt(ExtVT.getScalarSizeInBits(), 1), DL, ExtVT);
12127   SDValue Zero =
12128    DAG.getConstant(APInt::getNullValue(ExtVT.getScalarSizeInBits()), DL, ExtVT);
12129
12130   SDValue V = DAG.getNode(ISD::VSELECT, DL, ExtVT, In, One, Zero);
12131   if (VT.is512BitVector())
12132     return V;
12133   return DAG.getNode(X86ISD::VTRUNC, DL, VT, V);
12134 }
12135
12136 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
12137                                SelectionDAG &DAG) {
12138   if (Subtarget->hasFp256())
12139     if (SDValue Res = LowerAVXExtend(Op, DAG, Subtarget))
12140       return Res;
12141
12142   return SDValue();
12143 }
12144
12145 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
12146                                 SelectionDAG &DAG) {
12147   SDLoc DL(Op);
12148   MVT VT = Op.getSimpleValueType();
12149   SDValue In = Op.getOperand(0);
12150   MVT SVT = In.getSimpleValueType();
12151
12152   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
12153     return LowerZERO_EXTEND_AVX512(Op, Subtarget, DAG);
12154
12155   if (Subtarget->hasFp256())
12156     if (SDValue Res = LowerAVXExtend(Op, DAG, Subtarget))
12157       return Res;
12158
12159   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
12160          VT.getVectorNumElements() != SVT.getVectorNumElements());
12161   return SDValue();
12162 }
12163
12164 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
12165   SDLoc DL(Op);
12166   MVT VT = Op.getSimpleValueType();
12167   SDValue In = Op.getOperand(0);
12168   MVT InVT = In.getSimpleValueType();
12169
12170   if (VT == MVT::i1) {
12171     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
12172            "Invalid scalar TRUNCATE operation");
12173     if (InVT.getSizeInBits() >= 32)
12174       return SDValue();
12175     In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
12176     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
12177   }
12178   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
12179          "Invalid TRUNCATE operation");
12180
12181   // move vector to mask - truncate solution for SKX
12182   if (VT.getVectorElementType() == MVT::i1) {
12183     if (InVT.is512BitVector() && InVT.getScalarSizeInBits() <= 16 &&
12184         Subtarget->hasBWI())
12185       return Op; // legal, will go to VPMOVB2M, VPMOVW2M
12186     if ((InVT.is256BitVector() || InVT.is128BitVector())
12187         && InVT.getScalarSizeInBits() <= 16 &&
12188         Subtarget->hasBWI() && Subtarget->hasVLX())
12189       return Op; // legal, will go to VPMOVB2M, VPMOVW2M
12190     if (InVT.is512BitVector() && InVT.getScalarSizeInBits() >= 32 &&
12191         Subtarget->hasDQI())
12192       return Op; // legal, will go to VPMOVD2M, VPMOVQ2M
12193     if ((InVT.is256BitVector() || InVT.is128BitVector())
12194         && InVT.getScalarSizeInBits() >= 32 &&
12195         Subtarget->hasDQI() && Subtarget->hasVLX())
12196       return Op; // legal, will go to VPMOVB2M, VPMOVQ2M
12197   }
12198   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
12199     if (VT.getVectorElementType().getSizeInBits() >=8)
12200       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
12201
12202     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
12203     unsigned NumElts = InVT.getVectorNumElements();
12204     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
12205     if (InVT.getSizeInBits() < 512) {
12206       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
12207       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
12208       InVT = ExtVT;
12209     }
12210
12211     SDValue OneV =
12212      DAG.getConstant(APInt::getSignBit(InVT.getScalarSizeInBits()), DL, InVT);
12213     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
12214     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
12215   }
12216
12217   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
12218     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
12219     if (Subtarget->hasInt256()) {
12220       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
12221       In = DAG.getBitcast(MVT::v8i32, In);
12222       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
12223                                 ShufMask);
12224       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
12225                          DAG.getIntPtrConstant(0, DL));
12226     }
12227
12228     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
12229                                DAG.getIntPtrConstant(0, DL));
12230     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
12231                                DAG.getIntPtrConstant(2, DL));
12232     OpLo = DAG.getBitcast(MVT::v4i32, OpLo);
12233     OpHi = DAG.getBitcast(MVT::v4i32, OpHi);
12234     static const int ShufMask[] = {0, 2, 4, 6};
12235     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
12236   }
12237
12238   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
12239     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
12240     if (Subtarget->hasInt256()) {
12241       In = DAG.getBitcast(MVT::v32i8, In);
12242
12243       SmallVector<SDValue,32> pshufbMask;
12244       for (unsigned i = 0; i < 2; ++i) {
12245         pshufbMask.push_back(DAG.getConstant(0x0, DL, MVT::i8));
12246         pshufbMask.push_back(DAG.getConstant(0x1, DL, MVT::i8));
12247         pshufbMask.push_back(DAG.getConstant(0x4, DL, MVT::i8));
12248         pshufbMask.push_back(DAG.getConstant(0x5, DL, MVT::i8));
12249         pshufbMask.push_back(DAG.getConstant(0x8, DL, MVT::i8));
12250         pshufbMask.push_back(DAG.getConstant(0x9, DL, MVT::i8));
12251         pshufbMask.push_back(DAG.getConstant(0xc, DL, MVT::i8));
12252         pshufbMask.push_back(DAG.getConstant(0xd, DL, MVT::i8));
12253         for (unsigned j = 0; j < 8; ++j)
12254           pshufbMask.push_back(DAG.getConstant(0x80, DL, MVT::i8));
12255       }
12256       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
12257       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
12258       In = DAG.getBitcast(MVT::v4i64, In);
12259
12260       static const int ShufMask[] = {0,  2,  -1,  -1};
12261       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
12262                                 &ShufMask[0]);
12263       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
12264                        DAG.getIntPtrConstant(0, DL));
12265       return DAG.getBitcast(VT, In);
12266     }
12267
12268     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
12269                                DAG.getIntPtrConstant(0, DL));
12270
12271     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
12272                                DAG.getIntPtrConstant(4, DL));
12273
12274     OpLo = DAG.getBitcast(MVT::v16i8, OpLo);
12275     OpHi = DAG.getBitcast(MVT::v16i8, OpHi);
12276
12277     // The PSHUFB mask:
12278     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
12279                                    -1, -1, -1, -1, -1, -1, -1, -1};
12280
12281     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
12282     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
12283     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
12284
12285     OpLo = DAG.getBitcast(MVT::v4i32, OpLo);
12286     OpHi = DAG.getBitcast(MVT::v4i32, OpHi);
12287
12288     // The MOVLHPS Mask:
12289     static const int ShufMask2[] = {0, 1, 4, 5};
12290     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
12291     return DAG.getBitcast(MVT::v8i16, res);
12292   }
12293
12294   // Handle truncation of V256 to V128 using shuffles.
12295   if (!VT.is128BitVector() || !InVT.is256BitVector())
12296     return SDValue();
12297
12298   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
12299
12300   unsigned NumElems = VT.getVectorNumElements();
12301   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
12302
12303   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
12304   // Prepare truncation shuffle mask
12305   for (unsigned i = 0; i != NumElems; ++i)
12306     MaskVec[i] = i * 2;
12307   SDValue V = DAG.getVectorShuffle(NVT, DL, DAG.getBitcast(NVT, In),
12308                                    DAG.getUNDEF(NVT), &MaskVec[0]);
12309   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
12310                      DAG.getIntPtrConstant(0, DL));
12311 }
12312
12313 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
12314                                            SelectionDAG &DAG) const {
12315   assert(!Op.getSimpleValueType().isVector());
12316
12317   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
12318     /*IsSigned=*/ true, /*IsReplace=*/ false);
12319   SDValue FIST = Vals.first, StackSlot = Vals.second;
12320   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
12321   if (!FIST.getNode()) return Op;
12322
12323   if (StackSlot.getNode())
12324     // Load the result.
12325     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
12326                        FIST, StackSlot, MachinePointerInfo(),
12327                        false, false, false, 0);
12328
12329   // The node is the result.
12330   return FIST;
12331 }
12332
12333 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
12334                                            SelectionDAG &DAG) const {
12335   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
12336     /*IsSigned=*/ false, /*IsReplace=*/ false);
12337   SDValue FIST = Vals.first, StackSlot = Vals.second;
12338   assert(FIST.getNode() && "Unexpected failure");
12339
12340   if (StackSlot.getNode())
12341     // Load the result.
12342     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
12343                        FIST, StackSlot, MachinePointerInfo(),
12344                        false, false, false, 0);
12345
12346   // The node is the result.
12347   return FIST;
12348 }
12349
12350 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
12351   SDLoc DL(Op);
12352   MVT VT = Op.getSimpleValueType();
12353   SDValue In = Op.getOperand(0);
12354   MVT SVT = In.getSimpleValueType();
12355
12356   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
12357
12358   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
12359                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
12360                                  In, DAG.getUNDEF(SVT)));
12361 }
12362
12363 /// The only differences between FABS and FNEG are the mask and the logic op.
12364 /// FNEG also has a folding opportunity for FNEG(FABS(x)).
12365 static SDValue LowerFABSorFNEG(SDValue Op, SelectionDAG &DAG) {
12366   assert((Op.getOpcode() == ISD::FABS || Op.getOpcode() == ISD::FNEG) &&
12367          "Wrong opcode for lowering FABS or FNEG.");
12368
12369   bool IsFABS = (Op.getOpcode() == ISD::FABS);
12370
12371   // If this is a FABS and it has an FNEG user, bail out to fold the combination
12372   // into an FNABS. We'll lower the FABS after that if it is still in use.
12373   if (IsFABS)
12374     for (SDNode *User : Op->uses())
12375       if (User->getOpcode() == ISD::FNEG)
12376         return Op;
12377
12378   SDValue Op0 = Op.getOperand(0);
12379   bool IsFNABS = !IsFABS && (Op0.getOpcode() == ISD::FABS);
12380
12381   SDLoc dl(Op);
12382   MVT VT = Op.getSimpleValueType();
12383   // Assume scalar op for initialization; update for vector if needed.
12384   // Note that there are no scalar bitwise logical SSE/AVX instructions, so we
12385   // generate a 16-byte vector constant and logic op even for the scalar case.
12386   // Using a 16-byte mask allows folding the load of the mask with
12387   // the logic op, so it can save (~4 bytes) on code size.
12388   MVT EltVT = VT;
12389   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
12390   // FIXME: Use function attribute "OptimizeForSize" and/or CodeGenOpt::Level to
12391   // decide if we should generate a 16-byte constant mask when we only need 4 or
12392   // 8 bytes for the scalar case.
12393   if (VT.isVector()) {
12394     EltVT = VT.getVectorElementType();
12395     NumElts = VT.getVectorNumElements();
12396   }
12397
12398   unsigned EltBits = EltVT.getSizeInBits();
12399   LLVMContext *Context = DAG.getContext();
12400   // For FABS, mask is 0x7f...; for FNEG, mask is 0x80...
12401   APInt MaskElt =
12402     IsFABS ? APInt::getSignedMaxValue(EltBits) : APInt::getSignBit(EltBits);
12403   Constant *C = ConstantInt::get(*Context, MaskElt);
12404   C = ConstantVector::getSplat(NumElts, C);
12405   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12406   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
12407   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
12408   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
12409                              MachinePointerInfo::getConstantPool(),
12410                              false, false, false, Alignment);
12411
12412   if (VT.isVector()) {
12413     // For a vector, cast operands to a vector type, perform the logic op,
12414     // and cast the result back to the original value type.
12415     MVT VecVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits() / 64);
12416     SDValue MaskCasted = DAG.getBitcast(VecVT, Mask);
12417     SDValue Operand = IsFNABS ? DAG.getBitcast(VecVT, Op0.getOperand(0))
12418                               : DAG.getBitcast(VecVT, Op0);
12419     unsigned BitOp = IsFABS ? ISD::AND : IsFNABS ? ISD::OR : ISD::XOR;
12420     return DAG.getBitcast(VT,
12421                           DAG.getNode(BitOp, dl, VecVT, Operand, MaskCasted));
12422   }
12423
12424   // If not vector, then scalar.
12425   unsigned BitOp = IsFABS ? X86ISD::FAND : IsFNABS ? X86ISD::FOR : X86ISD::FXOR;
12426   SDValue Operand = IsFNABS ? Op0.getOperand(0) : Op0;
12427   return DAG.getNode(BitOp, dl, VT, Operand, Mask);
12428 }
12429
12430 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
12431   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12432   LLVMContext *Context = DAG.getContext();
12433   SDValue Op0 = Op.getOperand(0);
12434   SDValue Op1 = Op.getOperand(1);
12435   SDLoc dl(Op);
12436   MVT VT = Op.getSimpleValueType();
12437   MVT SrcVT = Op1.getSimpleValueType();
12438
12439   // If second operand is smaller, extend it first.
12440   if (SrcVT.bitsLT(VT)) {
12441     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
12442     SrcVT = VT;
12443   }
12444   // And if it is bigger, shrink it first.
12445   if (SrcVT.bitsGT(VT)) {
12446     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1, dl));
12447     SrcVT = VT;
12448   }
12449
12450   // At this point the operands and the result should have the same
12451   // type, and that won't be f80 since that is not custom lowered.
12452
12453   const fltSemantics &Sem =
12454       VT == MVT::f64 ? APFloat::IEEEdouble : APFloat::IEEEsingle;
12455   const unsigned SizeInBits = VT.getSizeInBits();
12456
12457   SmallVector<Constant *, 4> CV(
12458       VT == MVT::f64 ? 2 : 4,
12459       ConstantFP::get(*Context, APFloat(Sem, APInt(SizeInBits, 0))));
12460
12461   // First, clear all bits but the sign bit from the second operand (sign).
12462   CV[0] = ConstantFP::get(*Context,
12463                           APFloat(Sem, APInt::getHighBitsSet(SizeInBits, 1)));
12464   Constant *C = ConstantVector::get(CV);
12465   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
12466   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
12467                               MachinePointerInfo::getConstantPool(),
12468                               false, false, false, 16);
12469   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
12470
12471   // Next, clear the sign bit from the first operand (magnitude).
12472   // If it's a constant, we can clear it here.
12473   if (ConstantFPSDNode *Op0CN = dyn_cast<ConstantFPSDNode>(Op0)) {
12474     APFloat APF = Op0CN->getValueAPF();
12475     // If the magnitude is a positive zero, the sign bit alone is enough.
12476     if (APF.isPosZero())
12477       return SignBit;
12478     APF.clearSign();
12479     CV[0] = ConstantFP::get(*Context, APF);
12480   } else {
12481     CV[0] = ConstantFP::get(
12482         *Context,
12483         APFloat(Sem, APInt::getLowBitsSet(SizeInBits, SizeInBits - 1)));
12484   }
12485   C = ConstantVector::get(CV);
12486   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
12487   SDValue Val = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
12488                             MachinePointerInfo::getConstantPool(),
12489                             false, false, false, 16);
12490   // If the magnitude operand wasn't a constant, we need to AND out the sign.
12491   if (!isa<ConstantFPSDNode>(Op0))
12492     Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Val);
12493
12494   // OR the magnitude value with the sign bit.
12495   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
12496 }
12497
12498 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
12499   SDValue N0 = Op.getOperand(0);
12500   SDLoc dl(Op);
12501   MVT VT = Op.getSimpleValueType();
12502
12503   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
12504   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
12505                                   DAG.getConstant(1, dl, VT));
12506   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, dl, VT));
12507 }
12508
12509 // Check whether an OR'd tree is PTEST-able.
12510 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
12511                                       SelectionDAG &DAG) {
12512   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
12513
12514   if (!Subtarget->hasSSE41())
12515     return SDValue();
12516
12517   if (!Op->hasOneUse())
12518     return SDValue();
12519
12520   SDNode *N = Op.getNode();
12521   SDLoc DL(N);
12522
12523   SmallVector<SDValue, 8> Opnds;
12524   DenseMap<SDValue, unsigned> VecInMap;
12525   SmallVector<SDValue, 8> VecIns;
12526   EVT VT = MVT::Other;
12527
12528   // Recognize a special case where a vector is casted into wide integer to
12529   // test all 0s.
12530   Opnds.push_back(N->getOperand(0));
12531   Opnds.push_back(N->getOperand(1));
12532
12533   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
12534     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
12535     // BFS traverse all OR'd operands.
12536     if (I->getOpcode() == ISD::OR) {
12537       Opnds.push_back(I->getOperand(0));
12538       Opnds.push_back(I->getOperand(1));
12539       // Re-evaluate the number of nodes to be traversed.
12540       e += 2; // 2 more nodes (LHS and RHS) are pushed.
12541       continue;
12542     }
12543
12544     // Quit if a non-EXTRACT_VECTOR_ELT
12545     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
12546       return SDValue();
12547
12548     // Quit if without a constant index.
12549     SDValue Idx = I->getOperand(1);
12550     if (!isa<ConstantSDNode>(Idx))
12551       return SDValue();
12552
12553     SDValue ExtractedFromVec = I->getOperand(0);
12554     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
12555     if (M == VecInMap.end()) {
12556       VT = ExtractedFromVec.getValueType();
12557       // Quit if not 128/256-bit vector.
12558       if (!VT.is128BitVector() && !VT.is256BitVector())
12559         return SDValue();
12560       // Quit if not the same type.
12561       if (VecInMap.begin() != VecInMap.end() &&
12562           VT != VecInMap.begin()->first.getValueType())
12563         return SDValue();
12564       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
12565       VecIns.push_back(ExtractedFromVec);
12566     }
12567     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
12568   }
12569
12570   assert((VT.is128BitVector() || VT.is256BitVector()) &&
12571          "Not extracted from 128-/256-bit vector.");
12572
12573   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
12574
12575   for (DenseMap<SDValue, unsigned>::const_iterator
12576         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
12577     // Quit if not all elements are used.
12578     if (I->second != FullMask)
12579       return SDValue();
12580   }
12581
12582   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
12583
12584   // Cast all vectors into TestVT for PTEST.
12585   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
12586     VecIns[i] = DAG.getBitcast(TestVT, VecIns[i]);
12587
12588   // If more than one full vectors are evaluated, OR them first before PTEST.
12589   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
12590     // Each iteration will OR 2 nodes and append the result until there is only
12591     // 1 node left, i.e. the final OR'd value of all vectors.
12592     SDValue LHS = VecIns[Slot];
12593     SDValue RHS = VecIns[Slot + 1];
12594     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
12595   }
12596
12597   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
12598                      VecIns.back(), VecIns.back());
12599 }
12600
12601 /// \brief return true if \c Op has a use that doesn't just read flags.
12602 static bool hasNonFlagsUse(SDValue Op) {
12603   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
12604        ++UI) {
12605     SDNode *User = *UI;
12606     unsigned UOpNo = UI.getOperandNo();
12607     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
12608       // Look pass truncate.
12609       UOpNo = User->use_begin().getOperandNo();
12610       User = *User->use_begin();
12611     }
12612
12613     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
12614         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
12615       return true;
12616   }
12617   return false;
12618 }
12619
12620 /// Emit nodes that will be selected as "test Op0,Op0", or something
12621 /// equivalent.
12622 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
12623                                     SelectionDAG &DAG) const {
12624   if (Op.getValueType() == MVT::i1) {
12625     SDValue ExtOp = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i8, Op);
12626     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, ExtOp,
12627                        DAG.getConstant(0, dl, MVT::i8));
12628   }
12629   // CF and OF aren't always set the way we want. Determine which
12630   // of these we need.
12631   bool NeedCF = false;
12632   bool NeedOF = false;
12633   switch (X86CC) {
12634   default: break;
12635   case X86::COND_A: case X86::COND_AE:
12636   case X86::COND_B: case X86::COND_BE:
12637     NeedCF = true;
12638     break;
12639   case X86::COND_G: case X86::COND_GE:
12640   case X86::COND_L: case X86::COND_LE:
12641   case X86::COND_O: case X86::COND_NO: {
12642     // Check if we really need to set the
12643     // Overflow flag. If NoSignedWrap is present
12644     // that is not actually needed.
12645     switch (Op->getOpcode()) {
12646     case ISD::ADD:
12647     case ISD::SUB:
12648     case ISD::MUL:
12649     case ISD::SHL: {
12650       const auto *BinNode = cast<BinaryWithFlagsSDNode>(Op.getNode());
12651       if (BinNode->Flags.hasNoSignedWrap())
12652         break;
12653     }
12654     default:
12655       NeedOF = true;
12656       break;
12657     }
12658     break;
12659   }
12660   }
12661   // See if we can use the EFLAGS value from the operand instead of
12662   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
12663   // we prove that the arithmetic won't overflow, we can't use OF or CF.
12664   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
12665     // Emit a CMP with 0, which is the TEST pattern.
12666     //if (Op.getValueType() == MVT::i1)
12667     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
12668     //                     DAG.getConstant(0, MVT::i1));
12669     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
12670                        DAG.getConstant(0, dl, Op.getValueType()));
12671   }
12672   unsigned Opcode = 0;
12673   unsigned NumOperands = 0;
12674
12675   // Truncate operations may prevent the merge of the SETCC instruction
12676   // and the arithmetic instruction before it. Attempt to truncate the operands
12677   // of the arithmetic instruction and use a reduced bit-width instruction.
12678   bool NeedTruncation = false;
12679   SDValue ArithOp = Op;
12680   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
12681     SDValue Arith = Op->getOperand(0);
12682     // Both the trunc and the arithmetic op need to have one user each.
12683     if (Arith->hasOneUse())
12684       switch (Arith.getOpcode()) {
12685         default: break;
12686         case ISD::ADD:
12687         case ISD::SUB:
12688         case ISD::AND:
12689         case ISD::OR:
12690         case ISD::XOR: {
12691           NeedTruncation = true;
12692           ArithOp = Arith;
12693         }
12694       }
12695   }
12696
12697   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
12698   // which may be the result of a CAST.  We use the variable 'Op', which is the
12699   // non-casted variable when we check for possible users.
12700   switch (ArithOp.getOpcode()) {
12701   case ISD::ADD:
12702     // Due to an isel shortcoming, be conservative if this add is likely to be
12703     // selected as part of a load-modify-store instruction. When the root node
12704     // in a match is a store, isel doesn't know how to remap non-chain non-flag
12705     // uses of other nodes in the match, such as the ADD in this case. This
12706     // leads to the ADD being left around and reselected, with the result being
12707     // two adds in the output.  Alas, even if none our users are stores, that
12708     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
12709     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
12710     // climbing the DAG back to the root, and it doesn't seem to be worth the
12711     // effort.
12712     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12713          UE = Op.getNode()->use_end(); UI != UE; ++UI)
12714       if (UI->getOpcode() != ISD::CopyToReg &&
12715           UI->getOpcode() != ISD::SETCC &&
12716           UI->getOpcode() != ISD::STORE)
12717         goto default_case;
12718
12719     if (ConstantSDNode *C =
12720         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
12721       // An add of one will be selected as an INC.
12722       if (C->getAPIntValue() == 1 && !Subtarget->slowIncDec()) {
12723         Opcode = X86ISD::INC;
12724         NumOperands = 1;
12725         break;
12726       }
12727
12728       // An add of negative one (subtract of one) will be selected as a DEC.
12729       if (C->getAPIntValue().isAllOnesValue() && !Subtarget->slowIncDec()) {
12730         Opcode = X86ISD::DEC;
12731         NumOperands = 1;
12732         break;
12733       }
12734     }
12735
12736     // Otherwise use a regular EFLAGS-setting add.
12737     Opcode = X86ISD::ADD;
12738     NumOperands = 2;
12739     break;
12740   case ISD::SHL:
12741   case ISD::SRL:
12742     // If we have a constant logical shift that's only used in a comparison
12743     // against zero turn it into an equivalent AND. This allows turning it into
12744     // a TEST instruction later.
12745     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) && Op->hasOneUse() &&
12746         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
12747       EVT VT = Op.getValueType();
12748       unsigned BitWidth = VT.getSizeInBits();
12749       unsigned ShAmt = Op->getConstantOperandVal(1);
12750       if (ShAmt >= BitWidth) // Avoid undefined shifts.
12751         break;
12752       APInt Mask = ArithOp.getOpcode() == ISD::SRL
12753                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
12754                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
12755       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
12756         break;
12757       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
12758                                 DAG.getConstant(Mask, dl, VT));
12759       DAG.ReplaceAllUsesWith(Op, New);
12760       Op = New;
12761     }
12762     break;
12763
12764   case ISD::AND:
12765     // If the primary and result isn't used, don't bother using X86ISD::AND,
12766     // because a TEST instruction will be better.
12767     if (!hasNonFlagsUse(Op))
12768       break;
12769     // FALL THROUGH
12770   case ISD::SUB:
12771   case ISD::OR:
12772   case ISD::XOR:
12773     // Due to the ISEL shortcoming noted above, be conservative if this op is
12774     // likely to be selected as part of a load-modify-store instruction.
12775     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12776            UE = Op.getNode()->use_end(); UI != UE; ++UI)
12777       if (UI->getOpcode() == ISD::STORE)
12778         goto default_case;
12779
12780     // Otherwise use a regular EFLAGS-setting instruction.
12781     switch (ArithOp.getOpcode()) {
12782     default: llvm_unreachable("unexpected operator!");
12783     case ISD::SUB: Opcode = X86ISD::SUB; break;
12784     case ISD::XOR: Opcode = X86ISD::XOR; break;
12785     case ISD::AND: Opcode = X86ISD::AND; break;
12786     case ISD::OR: {
12787       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
12788         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
12789         if (EFLAGS.getNode())
12790           return EFLAGS;
12791       }
12792       Opcode = X86ISD::OR;
12793       break;
12794     }
12795     }
12796
12797     NumOperands = 2;
12798     break;
12799   case X86ISD::ADD:
12800   case X86ISD::SUB:
12801   case X86ISD::INC:
12802   case X86ISD::DEC:
12803   case X86ISD::OR:
12804   case X86ISD::XOR:
12805   case X86ISD::AND:
12806     return SDValue(Op.getNode(), 1);
12807   default:
12808   default_case:
12809     break;
12810   }
12811
12812   // If we found that truncation is beneficial, perform the truncation and
12813   // update 'Op'.
12814   if (NeedTruncation) {
12815     EVT VT = Op.getValueType();
12816     SDValue WideVal = Op->getOperand(0);
12817     EVT WideVT = WideVal.getValueType();
12818     unsigned ConvertedOp = 0;
12819     // Use a target machine opcode to prevent further DAGCombine
12820     // optimizations that may separate the arithmetic operations
12821     // from the setcc node.
12822     switch (WideVal.getOpcode()) {
12823       default: break;
12824       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
12825       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
12826       case ISD::AND: ConvertedOp = X86ISD::AND; break;
12827       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
12828       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
12829     }
12830
12831     if (ConvertedOp) {
12832       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12833       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
12834         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
12835         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
12836         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
12837       }
12838     }
12839   }
12840
12841   if (Opcode == 0)
12842     // Emit a CMP with 0, which is the TEST pattern.
12843     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
12844                        DAG.getConstant(0, dl, Op.getValueType()));
12845
12846   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
12847   SmallVector<SDValue, 4> Ops(Op->op_begin(), Op->op_begin() + NumOperands);
12848
12849   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
12850   DAG.ReplaceAllUsesWith(Op, New);
12851   return SDValue(New.getNode(), 1);
12852 }
12853
12854 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
12855 /// equivalent.
12856 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
12857                                    SDLoc dl, SelectionDAG &DAG) const {
12858   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
12859     if (C->getAPIntValue() == 0)
12860       return EmitTest(Op0, X86CC, dl, DAG);
12861
12862      if (Op0.getValueType() == MVT::i1)
12863        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
12864   }
12865
12866   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
12867        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
12868     // Do the comparison at i32 if it's smaller, besides the Atom case.
12869     // This avoids subregister aliasing issues. Keep the smaller reference
12870     // if we're optimizing for size, however, as that'll allow better folding
12871     // of memory operations.
12872     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
12873         !DAG.getMachineFunction().getFunction()->hasFnAttribute(
12874             Attribute::MinSize) &&
12875         !Subtarget->isAtom()) {
12876       unsigned ExtendOp =
12877           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
12878       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
12879       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
12880     }
12881     // Use SUB instead of CMP to enable CSE between SUB and CMP.
12882     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
12883     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
12884                               Op0, Op1);
12885     return SDValue(Sub.getNode(), 1);
12886   }
12887   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
12888 }
12889
12890 /// Convert a comparison if required by the subtarget.
12891 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
12892                                                  SelectionDAG &DAG) const {
12893   // If the subtarget does not support the FUCOMI instruction, floating-point
12894   // comparisons have to be converted.
12895   if (Subtarget->hasCMov() ||
12896       Cmp.getOpcode() != X86ISD::CMP ||
12897       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
12898       !Cmp.getOperand(1).getValueType().isFloatingPoint())
12899     return Cmp;
12900
12901   // The instruction selector will select an FUCOM instruction instead of
12902   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
12903   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
12904   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
12905   SDLoc dl(Cmp);
12906   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
12907   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
12908   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
12909                             DAG.getConstant(8, dl, MVT::i8));
12910   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
12911   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
12912 }
12913
12914 /// The minimum architected relative accuracy is 2^-12. We need one
12915 /// Newton-Raphson step to have a good float result (24 bits of precision).
12916 SDValue X86TargetLowering::getRsqrtEstimate(SDValue Op,
12917                                             DAGCombinerInfo &DCI,
12918                                             unsigned &RefinementSteps,
12919                                             bool &UseOneConstNR) const {
12920   EVT VT = Op.getValueType();
12921   const char *RecipOp;
12922
12923   // SSE1 has rsqrtss and rsqrtps. AVX adds a 256-bit variant for rsqrtps.
12924   // TODO: Add support for AVX512 (v16f32).
12925   // It is likely not profitable to do this for f64 because a double-precision
12926   // rsqrt estimate with refinement on x86 prior to FMA requires at least 16
12927   // instructions: convert to single, rsqrtss, convert back to double, refine
12928   // (3 steps = at least 13 insts). If an 'rsqrtsd' variant was added to the ISA
12929   // along with FMA, this could be a throughput win.
12930   if (VT == MVT::f32 && Subtarget->hasSSE1())
12931     RecipOp = "sqrtf";
12932   else if ((VT == MVT::v4f32 && Subtarget->hasSSE1()) ||
12933            (VT == MVT::v8f32 && Subtarget->hasAVX()))
12934     RecipOp = "vec-sqrtf";
12935   else
12936     return SDValue();
12937
12938   TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
12939   if (!Recips.isEnabled(RecipOp))
12940     return SDValue();
12941
12942   RefinementSteps = Recips.getRefinementSteps(RecipOp);
12943   UseOneConstNR = false;
12944   return DCI.DAG.getNode(X86ISD::FRSQRT, SDLoc(Op), VT, Op);
12945 }
12946
12947 /// The minimum architected relative accuracy is 2^-12. We need one
12948 /// Newton-Raphson step to have a good float result (24 bits of precision).
12949 SDValue X86TargetLowering::getRecipEstimate(SDValue Op,
12950                                             DAGCombinerInfo &DCI,
12951                                             unsigned &RefinementSteps) const {
12952   EVT VT = Op.getValueType();
12953   const char *RecipOp;
12954
12955   // SSE1 has rcpss and rcpps. AVX adds a 256-bit variant for rcpps.
12956   // TODO: Add support for AVX512 (v16f32).
12957   // It is likely not profitable to do this for f64 because a double-precision
12958   // reciprocal estimate with refinement on x86 prior to FMA requires
12959   // 15 instructions: convert to single, rcpss, convert back to double, refine
12960   // (3 steps = 12 insts). If an 'rcpsd' variant was added to the ISA
12961   // along with FMA, this could be a throughput win.
12962   if (VT == MVT::f32 && Subtarget->hasSSE1())
12963     RecipOp = "divf";
12964   else if ((VT == MVT::v4f32 && Subtarget->hasSSE1()) ||
12965            (VT == MVT::v8f32 && Subtarget->hasAVX()))
12966     RecipOp = "vec-divf";
12967   else
12968     return SDValue();
12969
12970   TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
12971   if (!Recips.isEnabled(RecipOp))
12972     return SDValue();
12973
12974   RefinementSteps = Recips.getRefinementSteps(RecipOp);
12975   return DCI.DAG.getNode(X86ISD::FRCP, SDLoc(Op), VT, Op);
12976 }
12977
12978 /// If we have at least two divisions that use the same divisor, convert to
12979 /// multplication by a reciprocal. This may need to be adjusted for a given
12980 /// CPU if a division's cost is not at least twice the cost of a multiplication.
12981 /// This is because we still need one division to calculate the reciprocal and
12982 /// then we need two multiplies by that reciprocal as replacements for the
12983 /// original divisions.
12984 bool X86TargetLowering::combineRepeatedFPDivisors(unsigned NumUsers) const {
12985   return NumUsers > 1;
12986 }
12987
12988 static bool isAllOnes(SDValue V) {
12989   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
12990   return C && C->isAllOnesValue();
12991 }
12992
12993 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
12994 /// if it's possible.
12995 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
12996                                      SDLoc dl, SelectionDAG &DAG) const {
12997   SDValue Op0 = And.getOperand(0);
12998   SDValue Op1 = And.getOperand(1);
12999   if (Op0.getOpcode() == ISD::TRUNCATE)
13000     Op0 = Op0.getOperand(0);
13001   if (Op1.getOpcode() == ISD::TRUNCATE)
13002     Op1 = Op1.getOperand(0);
13003
13004   SDValue LHS, RHS;
13005   if (Op1.getOpcode() == ISD::SHL)
13006     std::swap(Op0, Op1);
13007   if (Op0.getOpcode() == ISD::SHL) {
13008     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
13009       if (And00C->getZExtValue() == 1) {
13010         // If we looked past a truncate, check that it's only truncating away
13011         // known zeros.
13012         unsigned BitWidth = Op0.getValueSizeInBits();
13013         unsigned AndBitWidth = And.getValueSizeInBits();
13014         if (BitWidth > AndBitWidth) {
13015           APInt Zeros, Ones;
13016           DAG.computeKnownBits(Op0, Zeros, Ones);
13017           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
13018             return SDValue();
13019         }
13020         LHS = Op1;
13021         RHS = Op0.getOperand(1);
13022       }
13023   } else if (Op1.getOpcode() == ISD::Constant) {
13024     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
13025     uint64_t AndRHSVal = AndRHS->getZExtValue();
13026     SDValue AndLHS = Op0;
13027
13028     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
13029       LHS = AndLHS.getOperand(0);
13030       RHS = AndLHS.getOperand(1);
13031     }
13032
13033     // Use BT if the immediate can't be encoded in a TEST instruction.
13034     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
13035       LHS = AndLHS;
13036       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), dl, LHS.getValueType());
13037     }
13038   }
13039
13040   if (LHS.getNode()) {
13041     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
13042     // instruction.  Since the shift amount is in-range-or-undefined, we know
13043     // that doing a bittest on the i32 value is ok.  We extend to i32 because
13044     // the encoding for the i16 version is larger than the i32 version.
13045     // Also promote i16 to i32 for performance / code size reason.
13046     if (LHS.getValueType() == MVT::i8 ||
13047         LHS.getValueType() == MVT::i16)
13048       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
13049
13050     // If the operand types disagree, extend the shift amount to match.  Since
13051     // BT ignores high bits (like shifts) we can use anyextend.
13052     if (LHS.getValueType() != RHS.getValueType())
13053       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
13054
13055     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
13056     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
13057     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
13058                        DAG.getConstant(Cond, dl, MVT::i8), BT);
13059   }
13060
13061   return SDValue();
13062 }
13063
13064 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
13065 /// mask CMPs.
13066 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
13067                               SDValue &Op1) {
13068   unsigned SSECC;
13069   bool Swap = false;
13070
13071   // SSE Condition code mapping:
13072   //  0 - EQ
13073   //  1 - LT
13074   //  2 - LE
13075   //  3 - UNORD
13076   //  4 - NEQ
13077   //  5 - NLT
13078   //  6 - NLE
13079   //  7 - ORD
13080   switch (SetCCOpcode) {
13081   default: llvm_unreachable("Unexpected SETCC condition");
13082   case ISD::SETOEQ:
13083   case ISD::SETEQ:  SSECC = 0; break;
13084   case ISD::SETOGT:
13085   case ISD::SETGT:  Swap = true; // Fallthrough
13086   case ISD::SETLT:
13087   case ISD::SETOLT: SSECC = 1; break;
13088   case ISD::SETOGE:
13089   case ISD::SETGE:  Swap = true; // Fallthrough
13090   case ISD::SETLE:
13091   case ISD::SETOLE: SSECC = 2; break;
13092   case ISD::SETUO:  SSECC = 3; break;
13093   case ISD::SETUNE:
13094   case ISD::SETNE:  SSECC = 4; break;
13095   case ISD::SETULE: Swap = true; // Fallthrough
13096   case ISD::SETUGE: SSECC = 5; break;
13097   case ISD::SETULT: Swap = true; // Fallthrough
13098   case ISD::SETUGT: SSECC = 6; break;
13099   case ISD::SETO:   SSECC = 7; break;
13100   case ISD::SETUEQ:
13101   case ISD::SETONE: SSECC = 8; break;
13102   }
13103   if (Swap)
13104     std::swap(Op0, Op1);
13105
13106   return SSECC;
13107 }
13108
13109 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
13110 // ones, and then concatenate the result back.
13111 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
13112   MVT VT = Op.getSimpleValueType();
13113
13114   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
13115          "Unsupported value type for operation");
13116
13117   unsigned NumElems = VT.getVectorNumElements();
13118   SDLoc dl(Op);
13119   SDValue CC = Op.getOperand(2);
13120
13121   // Extract the LHS vectors
13122   SDValue LHS = Op.getOperand(0);
13123   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13124   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13125
13126   // Extract the RHS vectors
13127   SDValue RHS = Op.getOperand(1);
13128   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
13129   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
13130
13131   // Issue the operation on the smaller types and concatenate the result back
13132   MVT EltVT = VT.getVectorElementType();
13133   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13134   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
13135                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
13136                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
13137 }
13138
13139 static SDValue LowerBoolVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
13140   SDValue Op0 = Op.getOperand(0);
13141   SDValue Op1 = Op.getOperand(1);
13142   SDValue CC = Op.getOperand(2);
13143   MVT VT = Op.getSimpleValueType();
13144   SDLoc dl(Op);
13145
13146   assert(Op0.getValueType().getVectorElementType() == MVT::i1 &&
13147          "Unexpected type for boolean compare operation");
13148   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
13149   SDValue NotOp0 = DAG.getNode(ISD::XOR, dl, VT, Op0,
13150                                DAG.getConstant(-1, dl, VT));
13151   SDValue NotOp1 = DAG.getNode(ISD::XOR, dl, VT, Op1,
13152                                DAG.getConstant(-1, dl, VT));
13153   switch (SetCCOpcode) {
13154   default: llvm_unreachable("Unexpected SETCC condition");
13155   case ISD::SETEQ:
13156     // (x == y) -> ~(x ^ y)
13157     return DAG.getNode(ISD::XOR, dl, VT,
13158                        DAG.getNode(ISD::XOR, dl, VT, Op0, Op1),
13159                        DAG.getConstant(-1, dl, VT));
13160   case ISD::SETNE:
13161     // (x != y) -> (x ^ y)
13162     return DAG.getNode(ISD::XOR, dl, VT, Op0, Op1);
13163   case ISD::SETUGT:
13164   case ISD::SETGT:
13165     // (x > y) -> (x & ~y)
13166     return DAG.getNode(ISD::AND, dl, VT, Op0, NotOp1);
13167   case ISD::SETULT:
13168   case ISD::SETLT:
13169     // (x < y) -> (~x & y)
13170     return DAG.getNode(ISD::AND, dl, VT, NotOp0, Op1);
13171   case ISD::SETULE:
13172   case ISD::SETLE:
13173     // (x <= y) -> (~x | y)
13174     return DAG.getNode(ISD::OR, dl, VT, NotOp0, Op1);
13175   case ISD::SETUGE:
13176   case ISD::SETGE:
13177     // (x >=y) -> (x | ~y)
13178     return DAG.getNode(ISD::OR, dl, VT, Op0, NotOp1);
13179   }
13180 }
13181
13182 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
13183                                      const X86Subtarget *Subtarget) {
13184   SDValue Op0 = Op.getOperand(0);
13185   SDValue Op1 = Op.getOperand(1);
13186   SDValue CC = Op.getOperand(2);
13187   MVT VT = Op.getSimpleValueType();
13188   SDLoc dl(Op);
13189
13190   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 8 &&
13191          Op.getValueType().getScalarType() == MVT::i1 &&
13192          "Cannot set masked compare for this operation");
13193
13194   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
13195   unsigned  Opc = 0;
13196   bool Unsigned = false;
13197   bool Swap = false;
13198   unsigned SSECC;
13199   switch (SetCCOpcode) {
13200   default: llvm_unreachable("Unexpected SETCC condition");
13201   case ISD::SETNE:  SSECC = 4; break;
13202   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
13203   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
13204   case ISD::SETLT:  Swap = true; //fall-through
13205   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
13206   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
13207   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
13208   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
13209   case ISD::SETULE: Unsigned = true; //fall-through
13210   case ISD::SETLE:  SSECC = 2; break;
13211   }
13212
13213   if (Swap)
13214     std::swap(Op0, Op1);
13215   if (Opc)
13216     return DAG.getNode(Opc, dl, VT, Op0, Op1);
13217   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
13218   return DAG.getNode(Opc, dl, VT, Op0, Op1,
13219                      DAG.getConstant(SSECC, dl, MVT::i8));
13220 }
13221
13222 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
13223 /// operand \p Op1.  If non-trivial (for example because it's not constant)
13224 /// return an empty value.
13225 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
13226 {
13227   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
13228   if (!BV)
13229     return SDValue();
13230
13231   MVT VT = Op1.getSimpleValueType();
13232   MVT EVT = VT.getVectorElementType();
13233   unsigned n = VT.getVectorNumElements();
13234   SmallVector<SDValue, 8> ULTOp1;
13235
13236   for (unsigned i = 0; i < n; ++i) {
13237     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
13238     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
13239       return SDValue();
13240
13241     // Avoid underflow.
13242     APInt Val = Elt->getAPIntValue();
13243     if (Val == 0)
13244       return SDValue();
13245
13246     ULTOp1.push_back(DAG.getConstant(Val - 1, dl, EVT));
13247   }
13248
13249   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
13250 }
13251
13252 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
13253                            SelectionDAG &DAG) {
13254   SDValue Op0 = Op.getOperand(0);
13255   SDValue Op1 = Op.getOperand(1);
13256   SDValue CC = Op.getOperand(2);
13257   MVT VT = Op.getSimpleValueType();
13258   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
13259   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
13260   SDLoc dl(Op);
13261
13262   if (isFP) {
13263 #ifndef NDEBUG
13264     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
13265     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
13266 #endif
13267
13268     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
13269     unsigned Opc = X86ISD::CMPP;
13270     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
13271       assert(VT.getVectorNumElements() <= 16);
13272       Opc = X86ISD::CMPM;
13273     }
13274     // In the two special cases we can't handle, emit two comparisons.
13275     if (SSECC == 8) {
13276       unsigned CC0, CC1;
13277       unsigned CombineOpc;
13278       if (SetCCOpcode == ISD::SETUEQ) {
13279         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
13280       } else {
13281         assert(SetCCOpcode == ISD::SETONE);
13282         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
13283       }
13284
13285       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
13286                                  DAG.getConstant(CC0, dl, MVT::i8));
13287       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
13288                                  DAG.getConstant(CC1, dl, MVT::i8));
13289       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
13290     }
13291     // Handle all other FP comparisons here.
13292     return DAG.getNode(Opc, dl, VT, Op0, Op1,
13293                        DAG.getConstant(SSECC, dl, MVT::i8));
13294   }
13295
13296   // Break 256-bit integer vector compare into smaller ones.
13297   if (VT.is256BitVector() && !Subtarget->hasInt256())
13298     return Lower256IntVSETCC(Op, DAG);
13299
13300   EVT OpVT = Op1.getValueType();
13301   if (OpVT.getVectorElementType() == MVT::i1)
13302     return LowerBoolVSETCC_AVX512(Op, DAG);
13303
13304   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
13305   if (Subtarget->hasAVX512()) {
13306     if (Op1.getValueType().is512BitVector() ||
13307         (Subtarget->hasBWI() && Subtarget->hasVLX()) ||
13308         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
13309       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
13310
13311     // In AVX-512 architecture setcc returns mask with i1 elements,
13312     // But there is no compare instruction for i8 and i16 elements in KNL.
13313     // We are not talking about 512-bit operands in this case, these
13314     // types are illegal.
13315     if (MaskResult &&
13316         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
13317          OpVT.getVectorElementType().getSizeInBits() >= 8))
13318       return DAG.getNode(ISD::TRUNCATE, dl, VT,
13319                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
13320   }
13321
13322   // We are handling one of the integer comparisons here.  Since SSE only has
13323   // GT and EQ comparisons for integer, swapping operands and multiple
13324   // operations may be required for some comparisons.
13325   unsigned Opc;
13326   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
13327   bool Subus = false;
13328
13329   switch (SetCCOpcode) {
13330   default: llvm_unreachable("Unexpected SETCC condition");
13331   case ISD::SETNE:  Invert = true;
13332   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
13333   case ISD::SETLT:  Swap = true;
13334   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
13335   case ISD::SETGE:  Swap = true;
13336   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
13337                     Invert = true; break;
13338   case ISD::SETULT: Swap = true;
13339   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
13340                     FlipSigns = true; break;
13341   case ISD::SETUGE: Swap = true;
13342   case ISD::SETULE: Opc = X86ISD::PCMPGT;
13343                     FlipSigns = true; Invert = true; break;
13344   }
13345
13346   // Special case: Use min/max operations for SETULE/SETUGE
13347   MVT VET = VT.getVectorElementType();
13348   bool hasMinMax =
13349        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
13350     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
13351
13352   if (hasMinMax) {
13353     switch (SetCCOpcode) {
13354     default: break;
13355     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
13356     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
13357     }
13358
13359     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
13360   }
13361
13362   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
13363   if (!MinMax && hasSubus) {
13364     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
13365     // Op0 u<= Op1:
13366     //   t = psubus Op0, Op1
13367     //   pcmpeq t, <0..0>
13368     switch (SetCCOpcode) {
13369     default: break;
13370     case ISD::SETULT: {
13371       // If the comparison is against a constant we can turn this into a
13372       // setule.  With psubus, setule does not require a swap.  This is
13373       // beneficial because the constant in the register is no longer
13374       // destructed as the destination so it can be hoisted out of a loop.
13375       // Only do this pre-AVX since vpcmp* is no longer destructive.
13376       if (Subtarget->hasAVX())
13377         break;
13378       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
13379       if (ULEOp1.getNode()) {
13380         Op1 = ULEOp1;
13381         Subus = true; Invert = false; Swap = false;
13382       }
13383       break;
13384     }
13385     // Psubus is better than flip-sign because it requires no inversion.
13386     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
13387     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
13388     }
13389
13390     if (Subus) {
13391       Opc = X86ISD::SUBUS;
13392       FlipSigns = false;
13393     }
13394   }
13395
13396   if (Swap)
13397     std::swap(Op0, Op1);
13398
13399   // Check that the operation in question is available (most are plain SSE2,
13400   // but PCMPGTQ and PCMPEQQ have different requirements).
13401   if (VT == MVT::v2i64) {
13402     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
13403       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
13404
13405       // First cast everything to the right type.
13406       Op0 = DAG.getBitcast(MVT::v4i32, Op0);
13407       Op1 = DAG.getBitcast(MVT::v4i32, Op1);
13408
13409       // Since SSE has no unsigned integer comparisons, we need to flip the sign
13410       // bits of the inputs before performing those operations. The lower
13411       // compare is always unsigned.
13412       SDValue SB;
13413       if (FlipSigns) {
13414         SB = DAG.getConstant(0x80000000U, dl, MVT::v4i32);
13415       } else {
13416         SDValue Sign = DAG.getConstant(0x80000000U, dl, MVT::i32);
13417         SDValue Zero = DAG.getConstant(0x00000000U, dl, MVT::i32);
13418         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
13419                          Sign, Zero, Sign, Zero);
13420       }
13421       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
13422       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
13423
13424       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
13425       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
13426       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
13427
13428       // Create masks for only the low parts/high parts of the 64 bit integers.
13429       static const int MaskHi[] = { 1, 1, 3, 3 };
13430       static const int MaskLo[] = { 0, 0, 2, 2 };
13431       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
13432       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
13433       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
13434
13435       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
13436       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
13437
13438       if (Invert)
13439         Result = DAG.getNOT(dl, Result, MVT::v4i32);
13440
13441       return DAG.getBitcast(VT, Result);
13442     }
13443
13444     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
13445       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
13446       // pcmpeqd + pshufd + pand.
13447       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
13448
13449       // First cast everything to the right type.
13450       Op0 = DAG.getBitcast(MVT::v4i32, Op0);
13451       Op1 = DAG.getBitcast(MVT::v4i32, Op1);
13452
13453       // Do the compare.
13454       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
13455
13456       // Make sure the lower and upper halves are both all-ones.
13457       static const int Mask[] = { 1, 0, 3, 2 };
13458       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
13459       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
13460
13461       if (Invert)
13462         Result = DAG.getNOT(dl, Result, MVT::v4i32);
13463
13464       return DAG.getBitcast(VT, Result);
13465     }
13466   }
13467
13468   // Since SSE has no unsigned integer comparisons, we need to flip the sign
13469   // bits of the inputs before performing those operations.
13470   if (FlipSigns) {
13471     EVT EltVT = VT.getVectorElementType();
13472     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), dl,
13473                                  VT);
13474     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
13475     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
13476   }
13477
13478   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
13479
13480   // If the logical-not of the result is required, perform that now.
13481   if (Invert)
13482     Result = DAG.getNOT(dl, Result, VT);
13483
13484   if (MinMax)
13485     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
13486
13487   if (Subus)
13488     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
13489                          getZeroVector(VT, Subtarget, DAG, dl));
13490
13491   return Result;
13492 }
13493
13494 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
13495
13496   MVT VT = Op.getSimpleValueType();
13497
13498   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
13499
13500   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
13501          && "SetCC type must be 8-bit or 1-bit integer");
13502   SDValue Op0 = Op.getOperand(0);
13503   SDValue Op1 = Op.getOperand(1);
13504   SDLoc dl(Op);
13505   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
13506
13507   // Optimize to BT if possible.
13508   // Lower (X & (1 << N)) == 0 to BT(X, N).
13509   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
13510   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
13511   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
13512       Op1.getOpcode() == ISD::Constant &&
13513       cast<ConstantSDNode>(Op1)->isNullValue() &&
13514       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
13515     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
13516     if (NewSetCC.getNode()) {
13517       if (VT == MVT::i1)
13518         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewSetCC);
13519       return NewSetCC;
13520     }
13521   }
13522
13523   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
13524   // these.
13525   if (Op1.getOpcode() == ISD::Constant &&
13526       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
13527        cast<ConstantSDNode>(Op1)->isNullValue()) &&
13528       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
13529
13530     // If the input is a setcc, then reuse the input setcc or use a new one with
13531     // the inverted condition.
13532     if (Op0.getOpcode() == X86ISD::SETCC) {
13533       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
13534       bool Invert = (CC == ISD::SETNE) ^
13535         cast<ConstantSDNode>(Op1)->isNullValue();
13536       if (!Invert)
13537         return Op0;
13538
13539       CCode = X86::GetOppositeBranchCondition(CCode);
13540       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
13541                                   DAG.getConstant(CCode, dl, MVT::i8),
13542                                   Op0.getOperand(1));
13543       if (VT == MVT::i1)
13544         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
13545       return SetCC;
13546     }
13547   }
13548   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
13549       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
13550       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
13551
13552     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
13553     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, dl, MVT::i1), NewCC);
13554   }
13555
13556   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
13557   unsigned X86CC = TranslateX86CC(CC, dl, isFP, Op0, Op1, DAG);
13558   if (X86CC == X86::COND_INVALID)
13559     return SDValue();
13560
13561   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
13562   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
13563   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
13564                               DAG.getConstant(X86CC, dl, MVT::i8), EFLAGS);
13565   if (VT == MVT::i1)
13566     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
13567   return SetCC;
13568 }
13569
13570 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
13571 static bool isX86LogicalCmp(SDValue Op) {
13572   unsigned Opc = Op.getNode()->getOpcode();
13573   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
13574       Opc == X86ISD::SAHF)
13575     return true;
13576   if (Op.getResNo() == 1 &&
13577       (Opc == X86ISD::ADD ||
13578        Opc == X86ISD::SUB ||
13579        Opc == X86ISD::ADC ||
13580        Opc == X86ISD::SBB ||
13581        Opc == X86ISD::SMUL ||
13582        Opc == X86ISD::UMUL ||
13583        Opc == X86ISD::INC ||
13584        Opc == X86ISD::DEC ||
13585        Opc == X86ISD::OR ||
13586        Opc == X86ISD::XOR ||
13587        Opc == X86ISD::AND))
13588     return true;
13589
13590   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
13591     return true;
13592
13593   return false;
13594 }
13595
13596 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
13597   if (V.getOpcode() != ISD::TRUNCATE)
13598     return false;
13599
13600   SDValue VOp0 = V.getOperand(0);
13601   unsigned InBits = VOp0.getValueSizeInBits();
13602   unsigned Bits = V.getValueSizeInBits();
13603   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
13604 }
13605
13606 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
13607   bool addTest = true;
13608   SDValue Cond  = Op.getOperand(0);
13609   SDValue Op1 = Op.getOperand(1);
13610   SDValue Op2 = Op.getOperand(2);
13611   SDLoc DL(Op);
13612   EVT VT = Op1.getValueType();
13613   SDValue CC;
13614
13615   // Lower FP selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
13616   // are available or VBLENDV if AVX is available.
13617   // Otherwise FP cmovs get lowered into a less efficient branch sequence later.
13618   if (Cond.getOpcode() == ISD::SETCC &&
13619       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
13620        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
13621       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
13622     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
13623     int SSECC = translateX86FSETCC(
13624         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
13625
13626     if (SSECC != 8) {
13627       if (Subtarget->hasAVX512()) {
13628         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
13629                                   DAG.getConstant(SSECC, DL, MVT::i8));
13630         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
13631       }
13632
13633       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
13634                                 DAG.getConstant(SSECC, DL, MVT::i8));
13635
13636       // If we have AVX, we can use a variable vector select (VBLENDV) instead
13637       // of 3 logic instructions for size savings and potentially speed.
13638       // Unfortunately, there is no scalar form of VBLENDV.
13639
13640       // If either operand is a constant, don't try this. We can expect to
13641       // optimize away at least one of the logic instructions later in that
13642       // case, so that sequence would be faster than a variable blend.
13643
13644       // BLENDV was introduced with SSE 4.1, but the 2 register form implicitly
13645       // uses XMM0 as the selection register. That may need just as many
13646       // instructions as the AND/ANDN/OR sequence due to register moves, so
13647       // don't bother.
13648
13649       if (Subtarget->hasAVX() &&
13650           !isa<ConstantFPSDNode>(Op1) && !isa<ConstantFPSDNode>(Op2)) {
13651
13652         // Convert to vectors, do a VSELECT, and convert back to scalar.
13653         // All of the conversions should be optimized away.
13654
13655         EVT VecVT = VT == MVT::f32 ? MVT::v4f32 : MVT::v2f64;
13656         SDValue VOp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Op1);
13657         SDValue VOp2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Op2);
13658         SDValue VCmp = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Cmp);
13659
13660         EVT VCmpVT = VT == MVT::f32 ? MVT::v4i32 : MVT::v2i64;
13661         VCmp = DAG.getBitcast(VCmpVT, VCmp);
13662
13663         SDValue VSel = DAG.getNode(ISD::VSELECT, DL, VecVT, VCmp, VOp1, VOp2);
13664
13665         return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
13666                            VSel, DAG.getIntPtrConstant(0, DL));
13667       }
13668       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
13669       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
13670       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
13671     }
13672   }
13673
13674     if (VT.isVector() && VT.getScalarType() == MVT::i1) {
13675       SDValue Op1Scalar;
13676       if (ISD::isBuildVectorOfConstantSDNodes(Op1.getNode()))
13677         Op1Scalar = ConvertI1VectorToInterger(Op1, DAG);
13678       else if (Op1.getOpcode() == ISD::BITCAST && Op1.getOperand(0))
13679         Op1Scalar = Op1.getOperand(0);
13680       SDValue Op2Scalar;
13681       if (ISD::isBuildVectorOfConstantSDNodes(Op2.getNode()))
13682         Op2Scalar = ConvertI1VectorToInterger(Op2, DAG);
13683       else if (Op2.getOpcode() == ISD::BITCAST && Op2.getOperand(0))
13684         Op2Scalar = Op2.getOperand(0);
13685       if (Op1Scalar.getNode() && Op2Scalar.getNode()) {
13686         SDValue newSelect = DAG.getNode(ISD::SELECT, DL,
13687                                         Op1Scalar.getValueType(),
13688                                         Cond, Op1Scalar, Op2Scalar);
13689         if (newSelect.getValueSizeInBits() == VT.getSizeInBits())
13690           return DAG.getBitcast(VT, newSelect);
13691         SDValue ExtVec = DAG.getBitcast(MVT::v8i1, newSelect);
13692         return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, ExtVec,
13693                            DAG.getIntPtrConstant(0, DL));
13694     }
13695   }
13696
13697   if (VT == MVT::v4i1 || VT == MVT::v2i1) {
13698     SDValue zeroConst = DAG.getIntPtrConstant(0, DL);
13699     Op1 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, MVT::v8i1,
13700                       DAG.getUNDEF(MVT::v8i1), Op1, zeroConst);
13701     Op2 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, MVT::v8i1,
13702                       DAG.getUNDEF(MVT::v8i1), Op2, zeroConst);
13703     SDValue newSelect = DAG.getNode(ISD::SELECT, DL, MVT::v8i1,
13704                                     Cond, Op1, Op2);
13705     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, newSelect, zeroConst);
13706   }
13707
13708   if (Cond.getOpcode() == ISD::SETCC) {
13709     SDValue NewCond = LowerSETCC(Cond, DAG);
13710     if (NewCond.getNode())
13711       Cond = NewCond;
13712   }
13713
13714   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
13715   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
13716   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
13717   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
13718   if (Cond.getOpcode() == X86ISD::SETCC &&
13719       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
13720       isZero(Cond.getOperand(1).getOperand(1))) {
13721     SDValue Cmp = Cond.getOperand(1);
13722
13723     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
13724
13725     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
13726         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
13727       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
13728
13729       SDValue CmpOp0 = Cmp.getOperand(0);
13730       // Apply further optimizations for special cases
13731       // (select (x != 0), -1, 0) -> neg & sbb
13732       // (select (x == 0), 0, -1) -> neg & sbb
13733       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
13734         if (YC->isNullValue() &&
13735             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
13736           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
13737           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
13738                                     DAG.getConstant(0, DL,
13739                                                     CmpOp0.getValueType()),
13740                                     CmpOp0);
13741           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
13742                                     DAG.getConstant(X86::COND_B, DL, MVT::i8),
13743                                     SDValue(Neg.getNode(), 1));
13744           return Res;
13745         }
13746
13747       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
13748                         CmpOp0, DAG.getConstant(1, DL, CmpOp0.getValueType()));
13749       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
13750
13751       SDValue Res =   // Res = 0 or -1.
13752         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
13753                     DAG.getConstant(X86::COND_B, DL, MVT::i8), Cmp);
13754
13755       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
13756         Res = DAG.getNOT(DL, Res, Res.getValueType());
13757
13758       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
13759       if (!N2C || !N2C->isNullValue())
13760         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
13761       return Res;
13762     }
13763   }
13764
13765   // Look past (and (setcc_carry (cmp ...)), 1).
13766   if (Cond.getOpcode() == ISD::AND &&
13767       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
13768     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
13769     if (C && C->getAPIntValue() == 1)
13770       Cond = Cond.getOperand(0);
13771   }
13772
13773   // If condition flag is set by a X86ISD::CMP, then use it as the condition
13774   // setting operand in place of the X86ISD::SETCC.
13775   unsigned CondOpcode = Cond.getOpcode();
13776   if (CondOpcode == X86ISD::SETCC ||
13777       CondOpcode == X86ISD::SETCC_CARRY) {
13778     CC = Cond.getOperand(0);
13779
13780     SDValue Cmp = Cond.getOperand(1);
13781     unsigned Opc = Cmp.getOpcode();
13782     MVT VT = Op.getSimpleValueType();
13783
13784     bool IllegalFPCMov = false;
13785     if (VT.isFloatingPoint() && !VT.isVector() &&
13786         !isScalarFPTypeInSSEReg(VT))  // FPStack?
13787       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
13788
13789     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
13790         Opc == X86ISD::BT) { // FIXME
13791       Cond = Cmp;
13792       addTest = false;
13793     }
13794   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
13795              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
13796              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
13797               Cond.getOperand(0).getValueType() != MVT::i8)) {
13798     SDValue LHS = Cond.getOperand(0);
13799     SDValue RHS = Cond.getOperand(1);
13800     unsigned X86Opcode;
13801     unsigned X86Cond;
13802     SDVTList VTs;
13803     switch (CondOpcode) {
13804     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
13805     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
13806     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
13807     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
13808     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
13809     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
13810     default: llvm_unreachable("unexpected overflowing operator");
13811     }
13812     if (CondOpcode == ISD::UMULO)
13813       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
13814                           MVT::i32);
13815     else
13816       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
13817
13818     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
13819
13820     if (CondOpcode == ISD::UMULO)
13821       Cond = X86Op.getValue(2);
13822     else
13823       Cond = X86Op.getValue(1);
13824
13825     CC = DAG.getConstant(X86Cond, DL, MVT::i8);
13826     addTest = false;
13827   }
13828
13829   if (addTest) {
13830     // Look pass the truncate if the high bits are known zero.
13831     if (isTruncWithZeroHighBitsInput(Cond, DAG))
13832         Cond = Cond.getOperand(0);
13833
13834     // We know the result of AND is compared against zero. Try to match
13835     // it to BT.
13836     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
13837       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
13838       if (NewSetCC.getNode()) {
13839         CC = NewSetCC.getOperand(0);
13840         Cond = NewSetCC.getOperand(1);
13841         addTest = false;
13842       }
13843     }
13844   }
13845
13846   if (addTest) {
13847     CC = DAG.getConstant(X86::COND_NE, DL, MVT::i8);
13848     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
13849   }
13850
13851   // a <  b ? -1 :  0 -> RES = ~setcc_carry
13852   // a <  b ?  0 : -1 -> RES = setcc_carry
13853   // a >= b ? -1 :  0 -> RES = setcc_carry
13854   // a >= b ?  0 : -1 -> RES = ~setcc_carry
13855   if (Cond.getOpcode() == X86ISD::SUB) {
13856     Cond = ConvertCmpIfNecessary(Cond, DAG);
13857     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
13858
13859     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
13860         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
13861       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
13862                                 DAG.getConstant(X86::COND_B, DL, MVT::i8),
13863                                 Cond);
13864       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
13865         return DAG.getNOT(DL, Res, Res.getValueType());
13866       return Res;
13867     }
13868   }
13869
13870   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
13871   // widen the cmov and push the truncate through. This avoids introducing a new
13872   // branch during isel and doesn't add any extensions.
13873   if (Op.getValueType() == MVT::i8 &&
13874       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
13875     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
13876     if (T1.getValueType() == T2.getValueType() &&
13877         // Blacklist CopyFromReg to avoid partial register stalls.
13878         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
13879       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
13880       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
13881       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
13882     }
13883   }
13884
13885   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
13886   // condition is true.
13887   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
13888   SDValue Ops[] = { Op2, Op1, CC, Cond };
13889   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
13890 }
13891
13892 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op,
13893                                        const X86Subtarget *Subtarget,
13894                                        SelectionDAG &DAG) {
13895   MVT VT = Op->getSimpleValueType(0);
13896   SDValue In = Op->getOperand(0);
13897   MVT InVT = In.getSimpleValueType();
13898   MVT VTElt = VT.getVectorElementType();
13899   MVT InVTElt = InVT.getVectorElementType();
13900   SDLoc dl(Op);
13901
13902   // SKX processor
13903   if ((InVTElt == MVT::i1) &&
13904       (((Subtarget->hasBWI() && Subtarget->hasVLX() &&
13905         VT.getSizeInBits() <= 256 && VTElt.getSizeInBits() <= 16)) ||
13906
13907        ((Subtarget->hasBWI() && VT.is512BitVector() &&
13908         VTElt.getSizeInBits() <= 16)) ||
13909
13910        ((Subtarget->hasDQI() && Subtarget->hasVLX() &&
13911         VT.getSizeInBits() <= 256 && VTElt.getSizeInBits() >= 32)) ||
13912
13913        ((Subtarget->hasDQI() && VT.is512BitVector() &&
13914         VTElt.getSizeInBits() >= 32))))
13915     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
13916
13917   unsigned int NumElts = VT.getVectorNumElements();
13918
13919   if (NumElts != 8 && NumElts != 16 && !Subtarget->hasBWI())
13920     return SDValue();
13921
13922   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1) {
13923     if (In.getOpcode() == X86ISD::VSEXT || In.getOpcode() == X86ISD::VZEXT)
13924       return DAG.getNode(In.getOpcode(), dl, VT, In.getOperand(0));
13925     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
13926   }
13927
13928   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
13929   MVT ExtVT = NumElts == 8 ? MVT::v8i64 : MVT::v16i32;
13930   SDValue NegOne =
13931    DAG.getConstant(APInt::getAllOnesValue(ExtVT.getScalarSizeInBits()), dl,
13932                    ExtVT);
13933   SDValue Zero =
13934    DAG.getConstant(APInt::getNullValue(ExtVT.getScalarSizeInBits()), dl, ExtVT);
13935
13936   SDValue V = DAG.getNode(ISD::VSELECT, dl, ExtVT, In, NegOne, Zero);
13937   if (VT.is512BitVector())
13938     return V;
13939   return DAG.getNode(X86ISD::VTRUNC, dl, VT, V);
13940 }
13941
13942 static SDValue LowerSIGN_EXTEND_VECTOR_INREG(SDValue Op,
13943                                              const X86Subtarget *Subtarget,
13944                                              SelectionDAG &DAG) {
13945   SDValue In = Op->getOperand(0);
13946   MVT VT = Op->getSimpleValueType(0);
13947   MVT InVT = In.getSimpleValueType();
13948   assert(VT.getSizeInBits() == InVT.getSizeInBits());
13949
13950   MVT InSVT = InVT.getScalarType();
13951   assert(VT.getScalarType().getScalarSizeInBits() > InSVT.getScalarSizeInBits());
13952
13953   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
13954     return SDValue();
13955   if (InSVT != MVT::i32 && InSVT != MVT::i16 && InSVT != MVT::i8)
13956     return SDValue();
13957
13958   SDLoc dl(Op);
13959
13960   // SSE41 targets can use the pmovsx* instructions directly.
13961   if (Subtarget->hasSSE41())
13962     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
13963
13964   // pre-SSE41 targets unpack lower lanes and then sign-extend using SRAI.
13965   SDValue Curr = In;
13966   MVT CurrVT = InVT;
13967
13968   // As SRAI is only available on i16/i32 types, we expand only up to i32
13969   // and handle i64 separately.
13970   while (CurrVT != VT && CurrVT.getScalarType() != MVT::i32) {
13971     Curr = DAG.getNode(X86ISD::UNPCKL, dl, CurrVT, DAG.getUNDEF(CurrVT), Curr);
13972     MVT CurrSVT = MVT::getIntegerVT(CurrVT.getScalarSizeInBits() * 2);
13973     CurrVT = MVT::getVectorVT(CurrSVT, CurrVT.getVectorNumElements() / 2);
13974     Curr = DAG.getBitcast(CurrVT, Curr);
13975   }
13976
13977   SDValue SignExt = Curr;
13978   if (CurrVT != InVT) {
13979     unsigned SignExtShift =
13980         CurrVT.getScalarSizeInBits() - InSVT.getScalarSizeInBits();
13981     SignExt = DAG.getNode(X86ISD::VSRAI, dl, CurrVT, Curr,
13982                           DAG.getConstant(SignExtShift, dl, MVT::i8));
13983   }
13984
13985   if (CurrVT == VT)
13986     return SignExt;
13987
13988   if (VT == MVT::v2i64 && CurrVT == MVT::v4i32) {
13989     SDValue Sign = DAG.getNode(X86ISD::VSRAI, dl, CurrVT, Curr,
13990                                DAG.getConstant(31, dl, MVT::i8));
13991     SDValue Ext = DAG.getVectorShuffle(CurrVT, dl, SignExt, Sign, {0, 4, 1, 5});
13992     return DAG.getBitcast(VT, Ext);
13993   }
13994
13995   return SDValue();
13996 }
13997
13998 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
13999                                 SelectionDAG &DAG) {
14000   MVT VT = Op->getSimpleValueType(0);
14001   SDValue In = Op->getOperand(0);
14002   MVT InVT = In.getSimpleValueType();
14003   SDLoc dl(Op);
14004
14005   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
14006     return LowerSIGN_EXTEND_AVX512(Op, Subtarget, DAG);
14007
14008   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
14009       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
14010       (VT != MVT::v16i16 || InVT != MVT::v16i8))
14011     return SDValue();
14012
14013   if (Subtarget->hasInt256())
14014     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14015
14016   // Optimize vectors in AVX mode
14017   // Sign extend  v8i16 to v8i32 and
14018   //              v4i32 to v4i64
14019   //
14020   // Divide input vector into two parts
14021   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
14022   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
14023   // concat the vectors to original VT
14024
14025   unsigned NumElems = InVT.getVectorNumElements();
14026   SDValue Undef = DAG.getUNDEF(InVT);
14027
14028   SmallVector<int,8> ShufMask1(NumElems, -1);
14029   for (unsigned i = 0; i != NumElems/2; ++i)
14030     ShufMask1[i] = i;
14031
14032   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
14033
14034   SmallVector<int,8> ShufMask2(NumElems, -1);
14035   for (unsigned i = 0; i != NumElems/2; ++i)
14036     ShufMask2[i] = i + NumElems/2;
14037
14038   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
14039
14040   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
14041                                 VT.getVectorNumElements()/2);
14042
14043   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
14044   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
14045
14046   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
14047 }
14048
14049 // Lower vector extended loads using a shuffle. If SSSE3 is not available we
14050 // may emit an illegal shuffle but the expansion is still better than scalar
14051 // code. We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise
14052 // we'll emit a shuffle and a arithmetic shift.
14053 // FIXME: Is the expansion actually better than scalar code? It doesn't seem so.
14054 // TODO: It is possible to support ZExt by zeroing the undef values during
14055 // the shuffle phase or after the shuffle.
14056 static SDValue LowerExtendedLoad(SDValue Op, const X86Subtarget *Subtarget,
14057                                  SelectionDAG &DAG) {
14058   MVT RegVT = Op.getSimpleValueType();
14059   assert(RegVT.isVector() && "We only custom lower vector sext loads.");
14060   assert(RegVT.isInteger() &&
14061          "We only custom lower integer vector sext loads.");
14062
14063   // Nothing useful we can do without SSE2 shuffles.
14064   assert(Subtarget->hasSSE2() && "We only custom lower sext loads with SSE2.");
14065
14066   LoadSDNode *Ld = cast<LoadSDNode>(Op.getNode());
14067   SDLoc dl(Ld);
14068   EVT MemVT = Ld->getMemoryVT();
14069   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14070   unsigned RegSz = RegVT.getSizeInBits();
14071
14072   ISD::LoadExtType Ext = Ld->getExtensionType();
14073
14074   assert((Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)
14075          && "Only anyext and sext are currently implemented.");
14076   assert(MemVT != RegVT && "Cannot extend to the same type");
14077   assert(MemVT.isVector() && "Must load a vector from memory");
14078
14079   unsigned NumElems = RegVT.getVectorNumElements();
14080   unsigned MemSz = MemVT.getSizeInBits();
14081   assert(RegSz > MemSz && "Register size must be greater than the mem size");
14082
14083   if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256()) {
14084     // The only way in which we have a legal 256-bit vector result but not the
14085     // integer 256-bit operations needed to directly lower a sextload is if we
14086     // have AVX1 but not AVX2. In that case, we can always emit a sextload to
14087     // a 128-bit vector and a normal sign_extend to 256-bits that should get
14088     // correctly legalized. We do this late to allow the canonical form of
14089     // sextload to persist throughout the rest of the DAG combiner -- it wants
14090     // to fold together any extensions it can, and so will fuse a sign_extend
14091     // of an sextload into a sextload targeting a wider value.
14092     SDValue Load;
14093     if (MemSz == 128) {
14094       // Just switch this to a normal load.
14095       assert(TLI.isTypeLegal(MemVT) && "If the memory type is a 128-bit type, "
14096                                        "it must be a legal 128-bit vector "
14097                                        "type!");
14098       Load = DAG.getLoad(MemVT, dl, Ld->getChain(), Ld->getBasePtr(),
14099                   Ld->getPointerInfo(), Ld->isVolatile(), Ld->isNonTemporal(),
14100                   Ld->isInvariant(), Ld->getAlignment());
14101     } else {
14102       assert(MemSz < 128 &&
14103              "Can't extend a type wider than 128 bits to a 256 bit vector!");
14104       // Do an sext load to a 128-bit vector type. We want to use the same
14105       // number of elements, but elements half as wide. This will end up being
14106       // recursively lowered by this routine, but will succeed as we definitely
14107       // have all the necessary features if we're using AVX1.
14108       EVT HalfEltVT =
14109           EVT::getIntegerVT(*DAG.getContext(), RegVT.getScalarSizeInBits() / 2);
14110       EVT HalfVecVT = EVT::getVectorVT(*DAG.getContext(), HalfEltVT, NumElems);
14111       Load =
14112           DAG.getExtLoad(Ext, dl, HalfVecVT, Ld->getChain(), Ld->getBasePtr(),
14113                          Ld->getPointerInfo(), MemVT, Ld->isVolatile(),
14114                          Ld->isNonTemporal(), Ld->isInvariant(),
14115                          Ld->getAlignment());
14116     }
14117
14118     // Replace chain users with the new chain.
14119     assert(Load->getNumValues() == 2 && "Loads must carry a chain!");
14120     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Load.getValue(1));
14121
14122     // Finally, do a normal sign-extend to the desired register.
14123     return DAG.getSExtOrTrunc(Load, dl, RegVT);
14124   }
14125
14126   // All sizes must be a power of two.
14127   assert(isPowerOf2_32(RegSz * MemSz * NumElems) &&
14128          "Non-power-of-two elements are not custom lowered!");
14129
14130   // Attempt to load the original value using scalar loads.
14131   // Find the largest scalar type that divides the total loaded size.
14132   MVT SclrLoadTy = MVT::i8;
14133   for (MVT Tp : MVT::integer_valuetypes()) {
14134     if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
14135       SclrLoadTy = Tp;
14136     }
14137   }
14138
14139   // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
14140   if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
14141       (64 <= MemSz))
14142     SclrLoadTy = MVT::f64;
14143
14144   // Calculate the number of scalar loads that we need to perform
14145   // in order to load our vector from memory.
14146   unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
14147
14148   assert((Ext != ISD::SEXTLOAD || NumLoads == 1) &&
14149          "Can only lower sext loads with a single scalar load!");
14150
14151   unsigned loadRegZize = RegSz;
14152   if (Ext == ISD::SEXTLOAD && RegSz >= 256)
14153     loadRegZize = 128;
14154
14155   // Represent our vector as a sequence of elements which are the
14156   // largest scalar that we can load.
14157   EVT LoadUnitVecVT = EVT::getVectorVT(
14158       *DAG.getContext(), SclrLoadTy, loadRegZize / SclrLoadTy.getSizeInBits());
14159
14160   // Represent the data using the same element type that is stored in
14161   // memory. In practice, we ''widen'' MemVT.
14162   EVT WideVecVT =
14163       EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
14164                        loadRegZize / MemVT.getScalarType().getSizeInBits());
14165
14166   assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
14167          "Invalid vector type");
14168
14169   // We can't shuffle using an illegal type.
14170   assert(TLI.isTypeLegal(WideVecVT) &&
14171          "We only lower types that form legal widened vector types");
14172
14173   SmallVector<SDValue, 8> Chains;
14174   SDValue Ptr = Ld->getBasePtr();
14175   SDValue Increment =
14176       DAG.getConstant(SclrLoadTy.getSizeInBits() / 8, dl, TLI.getPointerTy());
14177   SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
14178
14179   for (unsigned i = 0; i < NumLoads; ++i) {
14180     // Perform a single load.
14181     SDValue ScalarLoad =
14182         DAG.getLoad(SclrLoadTy, dl, Ld->getChain(), Ptr, Ld->getPointerInfo(),
14183                     Ld->isVolatile(), Ld->isNonTemporal(), Ld->isInvariant(),
14184                     Ld->getAlignment());
14185     Chains.push_back(ScalarLoad.getValue(1));
14186     // Create the first element type using SCALAR_TO_VECTOR in order to avoid
14187     // another round of DAGCombining.
14188     if (i == 0)
14189       Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
14190     else
14191       Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
14192                         ScalarLoad, DAG.getIntPtrConstant(i, dl));
14193
14194     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
14195   }
14196
14197   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
14198
14199   // Bitcast the loaded value to a vector of the original element type, in
14200   // the size of the target vector type.
14201   SDValue SlicedVec = DAG.getBitcast(WideVecVT, Res);
14202   unsigned SizeRatio = RegSz / MemSz;
14203
14204   if (Ext == ISD::SEXTLOAD) {
14205     // If we have SSE4.1, we can directly emit a VSEXT node.
14206     if (Subtarget->hasSSE41()) {
14207       SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
14208       DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
14209       return Sext;
14210     }
14211
14212     // Otherwise we'll shuffle the small elements in the high bits of the
14213     // larger type and perform an arithmetic shift. If the shift is not legal
14214     // it's better to scalarize.
14215     assert(TLI.isOperationLegalOrCustom(ISD::SRA, RegVT) &&
14216            "We can't implement a sext load without an arithmetic right shift!");
14217
14218     // Redistribute the loaded elements into the different locations.
14219     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
14220     for (unsigned i = 0; i != NumElems; ++i)
14221       ShuffleVec[i * SizeRatio + SizeRatio - 1] = i;
14222
14223     SDValue Shuff = DAG.getVectorShuffle(
14224         WideVecVT, dl, SlicedVec, DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
14225
14226     Shuff = DAG.getBitcast(RegVT, Shuff);
14227
14228     // Build the arithmetic shift.
14229     unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
14230                    MemVT.getVectorElementType().getSizeInBits();
14231     Shuff =
14232         DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
14233                     DAG.getConstant(Amt, dl, RegVT));
14234
14235     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
14236     return Shuff;
14237   }
14238
14239   // Redistribute the loaded elements into the different locations.
14240   SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
14241   for (unsigned i = 0; i != NumElems; ++i)
14242     ShuffleVec[i * SizeRatio] = i;
14243
14244   SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
14245                                        DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
14246
14247   // Bitcast to the requested type.
14248   Shuff = DAG.getBitcast(RegVT, Shuff);
14249   DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
14250   return Shuff;
14251 }
14252
14253 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
14254 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
14255 // from the AND / OR.
14256 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
14257   Opc = Op.getOpcode();
14258   if (Opc != ISD::OR && Opc != ISD::AND)
14259     return false;
14260   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
14261           Op.getOperand(0).hasOneUse() &&
14262           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
14263           Op.getOperand(1).hasOneUse());
14264 }
14265
14266 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
14267 // 1 and that the SETCC node has a single use.
14268 static bool isXor1OfSetCC(SDValue Op) {
14269   if (Op.getOpcode() != ISD::XOR)
14270     return false;
14271   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
14272   if (N1C && N1C->getAPIntValue() == 1) {
14273     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
14274       Op.getOperand(0).hasOneUse();
14275   }
14276   return false;
14277 }
14278
14279 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
14280   bool addTest = true;
14281   SDValue Chain = Op.getOperand(0);
14282   SDValue Cond  = Op.getOperand(1);
14283   SDValue Dest  = Op.getOperand(2);
14284   SDLoc dl(Op);
14285   SDValue CC;
14286   bool Inverted = false;
14287
14288   if (Cond.getOpcode() == ISD::SETCC) {
14289     // Check for setcc([su]{add,sub,mul}o == 0).
14290     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
14291         isa<ConstantSDNode>(Cond.getOperand(1)) &&
14292         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
14293         Cond.getOperand(0).getResNo() == 1 &&
14294         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
14295          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
14296          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
14297          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
14298          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
14299          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
14300       Inverted = true;
14301       Cond = Cond.getOperand(0);
14302     } else {
14303       SDValue NewCond = LowerSETCC(Cond, DAG);
14304       if (NewCond.getNode())
14305         Cond = NewCond;
14306     }
14307   }
14308 #if 0
14309   // FIXME: LowerXALUO doesn't handle these!!
14310   else if (Cond.getOpcode() == X86ISD::ADD  ||
14311            Cond.getOpcode() == X86ISD::SUB  ||
14312            Cond.getOpcode() == X86ISD::SMUL ||
14313            Cond.getOpcode() == X86ISD::UMUL)
14314     Cond = LowerXALUO(Cond, DAG);
14315 #endif
14316
14317   // Look pass (and (setcc_carry (cmp ...)), 1).
14318   if (Cond.getOpcode() == ISD::AND &&
14319       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
14320     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
14321     if (C && C->getAPIntValue() == 1)
14322       Cond = Cond.getOperand(0);
14323   }
14324
14325   // If condition flag is set by a X86ISD::CMP, then use it as the condition
14326   // setting operand in place of the X86ISD::SETCC.
14327   unsigned CondOpcode = Cond.getOpcode();
14328   if (CondOpcode == X86ISD::SETCC ||
14329       CondOpcode == X86ISD::SETCC_CARRY) {
14330     CC = Cond.getOperand(0);
14331
14332     SDValue Cmp = Cond.getOperand(1);
14333     unsigned Opc = Cmp.getOpcode();
14334     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
14335     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
14336       Cond = Cmp;
14337       addTest = false;
14338     } else {
14339       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
14340       default: break;
14341       case X86::COND_O:
14342       case X86::COND_B:
14343         // These can only come from an arithmetic instruction with overflow,
14344         // e.g. SADDO, UADDO.
14345         Cond = Cond.getNode()->getOperand(1);
14346         addTest = false;
14347         break;
14348       }
14349     }
14350   }
14351   CondOpcode = Cond.getOpcode();
14352   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
14353       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
14354       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
14355        Cond.getOperand(0).getValueType() != MVT::i8)) {
14356     SDValue LHS = Cond.getOperand(0);
14357     SDValue RHS = Cond.getOperand(1);
14358     unsigned X86Opcode;
14359     unsigned X86Cond;
14360     SDVTList VTs;
14361     // Keep this in sync with LowerXALUO, otherwise we might create redundant
14362     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
14363     // X86ISD::INC).
14364     switch (CondOpcode) {
14365     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
14366     case ISD::SADDO:
14367       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
14368         if (C->isOne()) {
14369           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
14370           break;
14371         }
14372       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
14373     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
14374     case ISD::SSUBO:
14375       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
14376         if (C->isOne()) {
14377           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
14378           break;
14379         }
14380       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
14381     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
14382     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
14383     default: llvm_unreachable("unexpected overflowing operator");
14384     }
14385     if (Inverted)
14386       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
14387     if (CondOpcode == ISD::UMULO)
14388       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
14389                           MVT::i32);
14390     else
14391       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
14392
14393     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
14394
14395     if (CondOpcode == ISD::UMULO)
14396       Cond = X86Op.getValue(2);
14397     else
14398       Cond = X86Op.getValue(1);
14399
14400     CC = DAG.getConstant(X86Cond, dl, MVT::i8);
14401     addTest = false;
14402   } else {
14403     unsigned CondOpc;
14404     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
14405       SDValue Cmp = Cond.getOperand(0).getOperand(1);
14406       if (CondOpc == ISD::OR) {
14407         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
14408         // two branches instead of an explicit OR instruction with a
14409         // separate test.
14410         if (Cmp == Cond.getOperand(1).getOperand(1) &&
14411             isX86LogicalCmp(Cmp)) {
14412           CC = Cond.getOperand(0).getOperand(0);
14413           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
14414                               Chain, Dest, CC, Cmp);
14415           CC = Cond.getOperand(1).getOperand(0);
14416           Cond = Cmp;
14417           addTest = false;
14418         }
14419       } else { // ISD::AND
14420         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
14421         // two branches instead of an explicit AND instruction with a
14422         // separate test. However, we only do this if this block doesn't
14423         // have a fall-through edge, because this requires an explicit
14424         // jmp when the condition is false.
14425         if (Cmp == Cond.getOperand(1).getOperand(1) &&
14426             isX86LogicalCmp(Cmp) &&
14427             Op.getNode()->hasOneUse()) {
14428           X86::CondCode CCode =
14429             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
14430           CCode = X86::GetOppositeBranchCondition(CCode);
14431           CC = DAG.getConstant(CCode, dl, MVT::i8);
14432           SDNode *User = *Op.getNode()->use_begin();
14433           // Look for an unconditional branch following this conditional branch.
14434           // We need this because we need to reverse the successors in order
14435           // to implement FCMP_OEQ.
14436           if (User->getOpcode() == ISD::BR) {
14437             SDValue FalseBB = User->getOperand(1);
14438             SDNode *NewBR =
14439               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
14440             assert(NewBR == User);
14441             (void)NewBR;
14442             Dest = FalseBB;
14443
14444             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
14445                                 Chain, Dest, CC, Cmp);
14446             X86::CondCode CCode =
14447               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
14448             CCode = X86::GetOppositeBranchCondition(CCode);
14449             CC = DAG.getConstant(CCode, dl, MVT::i8);
14450             Cond = Cmp;
14451             addTest = false;
14452           }
14453         }
14454       }
14455     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
14456       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
14457       // It should be transformed during dag combiner except when the condition
14458       // is set by a arithmetics with overflow node.
14459       X86::CondCode CCode =
14460         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
14461       CCode = X86::GetOppositeBranchCondition(CCode);
14462       CC = DAG.getConstant(CCode, dl, MVT::i8);
14463       Cond = Cond.getOperand(0).getOperand(1);
14464       addTest = false;
14465     } else if (Cond.getOpcode() == ISD::SETCC &&
14466                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
14467       // For FCMP_OEQ, we can emit
14468       // two branches instead of an explicit AND instruction with a
14469       // separate test. However, we only do this if this block doesn't
14470       // have a fall-through edge, because this requires an explicit
14471       // jmp when the condition is false.
14472       if (Op.getNode()->hasOneUse()) {
14473         SDNode *User = *Op.getNode()->use_begin();
14474         // Look for an unconditional branch following this conditional branch.
14475         // We need this because we need to reverse the successors in order
14476         // to implement FCMP_OEQ.
14477         if (User->getOpcode() == ISD::BR) {
14478           SDValue FalseBB = User->getOperand(1);
14479           SDNode *NewBR =
14480             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
14481           assert(NewBR == User);
14482           (void)NewBR;
14483           Dest = FalseBB;
14484
14485           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
14486                                     Cond.getOperand(0), Cond.getOperand(1));
14487           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
14488           CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
14489           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
14490                               Chain, Dest, CC, Cmp);
14491           CC = DAG.getConstant(X86::COND_P, dl, MVT::i8);
14492           Cond = Cmp;
14493           addTest = false;
14494         }
14495       }
14496     } else if (Cond.getOpcode() == ISD::SETCC &&
14497                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
14498       // For FCMP_UNE, we can emit
14499       // two branches instead of an explicit AND instruction with a
14500       // separate test. However, we only do this if this block doesn't
14501       // have a fall-through edge, because this requires an explicit
14502       // jmp when the condition is false.
14503       if (Op.getNode()->hasOneUse()) {
14504         SDNode *User = *Op.getNode()->use_begin();
14505         // Look for an unconditional branch following this conditional branch.
14506         // We need this because we need to reverse the successors in order
14507         // to implement FCMP_UNE.
14508         if (User->getOpcode() == ISD::BR) {
14509           SDValue FalseBB = User->getOperand(1);
14510           SDNode *NewBR =
14511             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
14512           assert(NewBR == User);
14513           (void)NewBR;
14514
14515           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
14516                                     Cond.getOperand(0), Cond.getOperand(1));
14517           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
14518           CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
14519           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
14520                               Chain, Dest, CC, Cmp);
14521           CC = DAG.getConstant(X86::COND_NP, dl, MVT::i8);
14522           Cond = Cmp;
14523           addTest = false;
14524           Dest = FalseBB;
14525         }
14526       }
14527     }
14528   }
14529
14530   if (addTest) {
14531     // Look pass the truncate if the high bits are known zero.
14532     if (isTruncWithZeroHighBitsInput(Cond, DAG))
14533         Cond = Cond.getOperand(0);
14534
14535     // We know the result of AND is compared against zero. Try to match
14536     // it to BT.
14537     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
14538       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
14539       if (NewSetCC.getNode()) {
14540         CC = NewSetCC.getOperand(0);
14541         Cond = NewSetCC.getOperand(1);
14542         addTest = false;
14543       }
14544     }
14545   }
14546
14547   if (addTest) {
14548     X86::CondCode X86Cond = Inverted ? X86::COND_E : X86::COND_NE;
14549     CC = DAG.getConstant(X86Cond, dl, MVT::i8);
14550     Cond = EmitTest(Cond, X86Cond, dl, DAG);
14551   }
14552   Cond = ConvertCmpIfNecessary(Cond, DAG);
14553   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
14554                      Chain, Dest, CC, Cond);
14555 }
14556
14557 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
14558 // Calls to _alloca are needed to probe the stack when allocating more than 4k
14559 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
14560 // that the guard pages used by the OS virtual memory manager are allocated in
14561 // correct sequence.
14562 SDValue
14563 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
14564                                            SelectionDAG &DAG) const {
14565   MachineFunction &MF = DAG.getMachineFunction();
14566   bool SplitStack = MF.shouldSplitStack();
14567   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMachO()) ||
14568                SplitStack;
14569   SDLoc dl(Op);
14570
14571   if (!Lower) {
14572     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14573     SDNode* Node = Op.getNode();
14574
14575     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
14576     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
14577         " not tell us which reg is the stack pointer!");
14578     EVT VT = Node->getValueType(0);
14579     SDValue Tmp1 = SDValue(Node, 0);
14580     SDValue Tmp2 = SDValue(Node, 1);
14581     SDValue Tmp3 = Node->getOperand(2);
14582     SDValue Chain = Tmp1.getOperand(0);
14583
14584     // Chain the dynamic stack allocation so that it doesn't modify the stack
14585     // pointer when other instructions are using the stack.
14586     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true),
14587         SDLoc(Node));
14588
14589     SDValue Size = Tmp2.getOperand(1);
14590     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
14591     Chain = SP.getValue(1);
14592     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
14593     const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
14594     unsigned StackAlign = TFI.getStackAlignment();
14595     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
14596     if (Align > StackAlign)
14597       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
14598           DAG.getConstant(-(uint64_t)Align, dl, VT));
14599     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
14600
14601     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true),
14602         DAG.getIntPtrConstant(0, dl, true), SDValue(),
14603         SDLoc(Node));
14604
14605     SDValue Ops[2] = { Tmp1, Tmp2 };
14606     return DAG.getMergeValues(Ops, dl);
14607   }
14608
14609   // Get the inputs.
14610   SDValue Chain = Op.getOperand(0);
14611   SDValue Size  = Op.getOperand(1);
14612   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
14613   EVT VT = Op.getNode()->getValueType(0);
14614
14615   bool Is64Bit = Subtarget->is64Bit();
14616   EVT SPTy = getPointerTy();
14617
14618   if (SplitStack) {
14619     MachineRegisterInfo &MRI = MF.getRegInfo();
14620
14621     if (Is64Bit) {
14622       // The 64 bit implementation of segmented stacks needs to clobber both r10
14623       // r11. This makes it impossible to use it along with nested parameters.
14624       const Function *F = MF.getFunction();
14625
14626       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
14627            I != E; ++I)
14628         if (I->hasNestAttr())
14629           report_fatal_error("Cannot use segmented stacks with functions that "
14630                              "have nested arguments.");
14631     }
14632
14633     const TargetRegisterClass *AddrRegClass =
14634       getRegClassFor(getPointerTy());
14635     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
14636     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
14637     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
14638                                 DAG.getRegister(Vreg, SPTy));
14639     SDValue Ops1[2] = { Value, Chain };
14640     return DAG.getMergeValues(Ops1, dl);
14641   } else {
14642     SDValue Flag;
14643     const unsigned Reg = (Subtarget->isTarget64BitLP64() ? X86::RAX : X86::EAX);
14644
14645     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
14646     Flag = Chain.getValue(1);
14647     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
14648
14649     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
14650
14651     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
14652     unsigned SPReg = RegInfo->getStackRegister();
14653     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
14654     Chain = SP.getValue(1);
14655
14656     if (Align) {
14657       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
14658                        DAG.getConstant(-(uint64_t)Align, dl, VT));
14659       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
14660     }
14661
14662     SDValue Ops1[2] = { SP, Chain };
14663     return DAG.getMergeValues(Ops1, dl);
14664   }
14665 }
14666
14667 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
14668   MachineFunction &MF = DAG.getMachineFunction();
14669   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
14670
14671   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
14672   SDLoc DL(Op);
14673
14674   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
14675     // vastart just stores the address of the VarArgsFrameIndex slot into the
14676     // memory location argument.
14677     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
14678                                    getPointerTy());
14679     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
14680                         MachinePointerInfo(SV), false, false, 0);
14681   }
14682
14683   // __va_list_tag:
14684   //   gp_offset         (0 - 6 * 8)
14685   //   fp_offset         (48 - 48 + 8 * 16)
14686   //   overflow_arg_area (point to parameters coming in memory).
14687   //   reg_save_area
14688   SmallVector<SDValue, 8> MemOps;
14689   SDValue FIN = Op.getOperand(1);
14690   // Store gp_offset
14691   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
14692                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
14693                                                DL, MVT::i32),
14694                                FIN, MachinePointerInfo(SV), false, false, 0);
14695   MemOps.push_back(Store);
14696
14697   // Store fp_offset
14698   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
14699                     FIN, DAG.getIntPtrConstant(4, DL));
14700   Store = DAG.getStore(Op.getOperand(0), DL,
14701                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(), DL,
14702                                        MVT::i32),
14703                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
14704   MemOps.push_back(Store);
14705
14706   // Store ptr to overflow_arg_area
14707   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
14708                     FIN, DAG.getIntPtrConstant(4, DL));
14709   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
14710                                     getPointerTy());
14711   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
14712                        MachinePointerInfo(SV, 8),
14713                        false, false, 0);
14714   MemOps.push_back(Store);
14715
14716   // Store ptr to reg_save_area.
14717   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
14718                     FIN, DAG.getIntPtrConstant(8, DL));
14719   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
14720                                     getPointerTy());
14721   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
14722                        MachinePointerInfo(SV, 16), false, false, 0);
14723   MemOps.push_back(Store);
14724   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
14725 }
14726
14727 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
14728   assert(Subtarget->is64Bit() &&
14729          "LowerVAARG only handles 64-bit va_arg!");
14730   assert((Subtarget->isTargetLinux() ||
14731           Subtarget->isTargetDarwin()) &&
14732           "Unhandled target in LowerVAARG");
14733   assert(Op.getNode()->getNumOperands() == 4);
14734   SDValue Chain = Op.getOperand(0);
14735   SDValue SrcPtr = Op.getOperand(1);
14736   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
14737   unsigned Align = Op.getConstantOperandVal(3);
14738   SDLoc dl(Op);
14739
14740   EVT ArgVT = Op.getNode()->getValueType(0);
14741   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
14742   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
14743   uint8_t ArgMode;
14744
14745   // Decide which area this value should be read from.
14746   // TODO: Implement the AMD64 ABI in its entirety. This simple
14747   // selection mechanism works only for the basic types.
14748   if (ArgVT == MVT::f80) {
14749     llvm_unreachable("va_arg for f80 not yet implemented");
14750   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
14751     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
14752   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
14753     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
14754   } else {
14755     llvm_unreachable("Unhandled argument type in LowerVAARG");
14756   }
14757
14758   if (ArgMode == 2) {
14759     // Sanity Check: Make sure using fp_offset makes sense.
14760     assert(!Subtarget->useSoftFloat() &&
14761            !(DAG.getMachineFunction().getFunction()->hasFnAttribute(
14762                Attribute::NoImplicitFloat)) &&
14763            Subtarget->hasSSE1());
14764   }
14765
14766   // Insert VAARG_64 node into the DAG
14767   // VAARG_64 returns two values: Variable Argument Address, Chain
14768   SDValue InstOps[] = {Chain, SrcPtr, DAG.getConstant(ArgSize, dl, MVT::i32),
14769                        DAG.getConstant(ArgMode, dl, MVT::i8),
14770                        DAG.getConstant(Align, dl, MVT::i32)};
14771   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
14772   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
14773                                           VTs, InstOps, MVT::i64,
14774                                           MachinePointerInfo(SV),
14775                                           /*Align=*/0,
14776                                           /*Volatile=*/false,
14777                                           /*ReadMem=*/true,
14778                                           /*WriteMem=*/true);
14779   Chain = VAARG.getValue(1);
14780
14781   // Load the next argument and return it
14782   return DAG.getLoad(ArgVT, dl,
14783                      Chain,
14784                      VAARG,
14785                      MachinePointerInfo(),
14786                      false, false, false, 0);
14787 }
14788
14789 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
14790                            SelectionDAG &DAG) {
14791   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
14792   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
14793   SDValue Chain = Op.getOperand(0);
14794   SDValue DstPtr = Op.getOperand(1);
14795   SDValue SrcPtr = Op.getOperand(2);
14796   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
14797   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
14798   SDLoc DL(Op);
14799
14800   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
14801                        DAG.getIntPtrConstant(24, DL), 8, /*isVolatile*/false,
14802                        false, false,
14803                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
14804 }
14805
14806 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
14807 // amount is a constant. Takes immediate version of shift as input.
14808 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
14809                                           SDValue SrcOp, uint64_t ShiftAmt,
14810                                           SelectionDAG &DAG) {
14811   MVT ElementType = VT.getVectorElementType();
14812
14813   // Fold this packed shift into its first operand if ShiftAmt is 0.
14814   if (ShiftAmt == 0)
14815     return SrcOp;
14816
14817   // Check for ShiftAmt >= element width
14818   if (ShiftAmt >= ElementType.getSizeInBits()) {
14819     if (Opc == X86ISD::VSRAI)
14820       ShiftAmt = ElementType.getSizeInBits() - 1;
14821     else
14822       return DAG.getConstant(0, dl, VT);
14823   }
14824
14825   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
14826          && "Unknown target vector shift-by-constant node");
14827
14828   // Fold this packed vector shift into a build vector if SrcOp is a
14829   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
14830   if (VT == SrcOp.getSimpleValueType() &&
14831       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
14832     SmallVector<SDValue, 8> Elts;
14833     unsigned NumElts = SrcOp->getNumOperands();
14834     ConstantSDNode *ND;
14835
14836     switch(Opc) {
14837     default: llvm_unreachable(nullptr);
14838     case X86ISD::VSHLI:
14839       for (unsigned i=0; i!=NumElts; ++i) {
14840         SDValue CurrentOp = SrcOp->getOperand(i);
14841         if (CurrentOp->getOpcode() == ISD::UNDEF) {
14842           Elts.push_back(CurrentOp);
14843           continue;
14844         }
14845         ND = cast<ConstantSDNode>(CurrentOp);
14846         const APInt &C = ND->getAPIntValue();
14847         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), dl, ElementType));
14848       }
14849       break;
14850     case X86ISD::VSRLI:
14851       for (unsigned i=0; i!=NumElts; ++i) {
14852         SDValue CurrentOp = SrcOp->getOperand(i);
14853         if (CurrentOp->getOpcode() == ISD::UNDEF) {
14854           Elts.push_back(CurrentOp);
14855           continue;
14856         }
14857         ND = cast<ConstantSDNode>(CurrentOp);
14858         const APInt &C = ND->getAPIntValue();
14859         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), dl, ElementType));
14860       }
14861       break;
14862     case X86ISD::VSRAI:
14863       for (unsigned i=0; i!=NumElts; ++i) {
14864         SDValue CurrentOp = SrcOp->getOperand(i);
14865         if (CurrentOp->getOpcode() == ISD::UNDEF) {
14866           Elts.push_back(CurrentOp);
14867           continue;
14868         }
14869         ND = cast<ConstantSDNode>(CurrentOp);
14870         const APInt &C = ND->getAPIntValue();
14871         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), dl, ElementType));
14872       }
14873       break;
14874     }
14875
14876     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
14877   }
14878
14879   return DAG.getNode(Opc, dl, VT, SrcOp,
14880                      DAG.getConstant(ShiftAmt, dl, MVT::i8));
14881 }
14882
14883 // getTargetVShiftNode - Handle vector element shifts where the shift amount
14884 // may or may not be a constant. Takes immediate version of shift as input.
14885 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
14886                                    SDValue SrcOp, SDValue ShAmt,
14887                                    SelectionDAG &DAG) {
14888   MVT SVT = ShAmt.getSimpleValueType();
14889   assert((SVT == MVT::i32 || SVT == MVT::i64) && "Unexpected value type!");
14890
14891   // Catch shift-by-constant.
14892   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
14893     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
14894                                       CShAmt->getZExtValue(), DAG);
14895
14896   // Change opcode to non-immediate version
14897   switch (Opc) {
14898     default: llvm_unreachable("Unknown target vector shift node");
14899     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
14900     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
14901     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
14902   }
14903
14904   const X86Subtarget &Subtarget =
14905       static_cast<const X86Subtarget &>(DAG.getSubtarget());
14906   if (Subtarget.hasSSE41() && ShAmt.getOpcode() == ISD::ZERO_EXTEND &&
14907       ShAmt.getOperand(0).getSimpleValueType() == MVT::i16) {
14908     // Let the shuffle legalizer expand this shift amount node.
14909     SDValue Op0 = ShAmt.getOperand(0);
14910     Op0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(Op0), MVT::v8i16, Op0);
14911     ShAmt = getShuffleVectorZeroOrUndef(Op0, 0, true, &Subtarget, DAG);
14912   } else {
14913     // Need to build a vector containing shift amount.
14914     // SSE/AVX packed shifts only use the lower 64-bit of the shift count.
14915     SmallVector<SDValue, 4> ShOps;
14916     ShOps.push_back(ShAmt);
14917     if (SVT == MVT::i32) {
14918       ShOps.push_back(DAG.getConstant(0, dl, SVT));
14919       ShOps.push_back(DAG.getUNDEF(SVT));
14920     }
14921     ShOps.push_back(DAG.getUNDEF(SVT));
14922
14923     MVT BVT = SVT == MVT::i32 ? MVT::v4i32 : MVT::v2i64;
14924     ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, BVT, ShOps);
14925   }
14926
14927   // The return type has to be a 128-bit type with the same element
14928   // type as the input type.
14929   MVT EltVT = VT.getVectorElementType();
14930   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
14931
14932   ShAmt = DAG.getBitcast(ShVT, ShAmt);
14933   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
14934 }
14935
14936 /// \brief Return (and \p Op, \p Mask) for compare instructions or
14937 /// (vselect \p Mask, \p Op, \p PreservedSrc) for others along with the
14938 /// necessary casting for \p Mask when lowering masking intrinsics.
14939 static SDValue getVectorMaskingNode(SDValue Op, SDValue Mask,
14940                                     SDValue PreservedSrc,
14941                                     const X86Subtarget *Subtarget,
14942                                     SelectionDAG &DAG) {
14943     EVT VT = Op.getValueType();
14944     EVT MaskVT = EVT::getVectorVT(*DAG.getContext(),
14945                                   MVT::i1, VT.getVectorNumElements());
14946     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
14947                                      Mask.getValueType().getSizeInBits());
14948     SDLoc dl(Op);
14949
14950     assert(MaskVT.isSimple() && "invalid mask type");
14951
14952     if (isAllOnes(Mask))
14953       return Op;
14954
14955     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
14956     // are extracted by EXTRACT_SUBVECTOR.
14957     SDValue VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
14958                                 DAG.getBitcast(BitcastVT, Mask),
14959                                 DAG.getIntPtrConstant(0, dl));
14960
14961     switch (Op.getOpcode()) {
14962       default: break;
14963       case X86ISD::PCMPEQM:
14964       case X86ISD::PCMPGTM:
14965       case X86ISD::CMPM:
14966       case X86ISD::CMPMU:
14967         return DAG.getNode(ISD::AND, dl, VT, Op, VMask);
14968     }
14969     if (PreservedSrc.getOpcode() == ISD::UNDEF)
14970       PreservedSrc = getZeroVector(VT, Subtarget, DAG, dl);
14971     return DAG.getNode(ISD::VSELECT, dl, VT, VMask, Op, PreservedSrc);
14972 }
14973
14974 /// \brief Creates an SDNode for a predicated scalar operation.
14975 /// \returns (X86vselect \p Mask, \p Op, \p PreservedSrc).
14976 /// The mask is comming as MVT::i8 and it should be truncated
14977 /// to MVT::i1 while lowering masking intrinsics.
14978 /// The main difference between ScalarMaskingNode and VectorMaskingNode is using
14979 /// "X86select" instead of "vselect". We just can't create the "vselect" node for
14980 /// a scalar instruction.
14981 static SDValue getScalarMaskingNode(SDValue Op, SDValue Mask,
14982                                     SDValue PreservedSrc,
14983                                     const X86Subtarget *Subtarget,
14984                                     SelectionDAG &DAG) {
14985     if (isAllOnes(Mask))
14986       return Op;
14987
14988     EVT VT = Op.getValueType();
14989     SDLoc dl(Op);
14990     // The mask should be of type MVT::i1
14991     SDValue IMask = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Mask);
14992
14993     if (PreservedSrc.getOpcode() == ISD::UNDEF)
14994       PreservedSrc = getZeroVector(VT, Subtarget, DAG, dl);
14995     return DAG.getNode(X86ISD::SELECT, dl, VT, IMask, Op, PreservedSrc);
14996 }
14997
14998 /// When the 32-bit MSVC runtime transfers control to us, either to an outlined
14999 /// function or when returning to a parent frame after catching an exception, we
15000 /// recover the parent frame pointer by doing arithmetic on the incoming EBP.
15001 /// Here's the math:
15002 ///   RegNodeBase = EntryEBP - RegNodeSize
15003 ///   ParentFP = RegNodeBase - RegNodeFrameOffset
15004 /// Subtracting RegNodeSize takes us to the offset of the registration node, and
15005 /// subtracting the offset (negative on x86) takes us back to the parent FP.
15006 static SDValue recoverFramePointer(SelectionDAG &DAG, const Function *Fn,
15007                                    SDValue EntryEBP) {
15008   MachineFunction &MF = DAG.getMachineFunction();
15009   SDLoc dl;
15010
15011   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15012   MVT PtrVT = TLI.getPointerTy();
15013
15014   // The RegNodeSize is 6 32-bit words for SEH and 4 for C++ EH. See
15015   // WinEHStatePass for the full struct definition.
15016   int RegNodeSize;
15017   switch (classifyEHPersonality(Fn->getPersonalityFn())) {
15018   default:
15019     report_fatal_error("can only recover FP for MSVC EH personality functions");
15020   case EHPersonality::MSVC_X86SEH: RegNodeSize = 24; break;
15021   case EHPersonality::MSVC_CXX: RegNodeSize = 16; break;
15022   }
15023
15024   // Get an MCSymbol that will ultimately resolve to the frame offset of the EH
15025   // registration.
15026   MCSymbol *OffsetSym =
15027       MF.getMMI().getContext().getOrCreateParentFrameOffsetSymbol(
15028           GlobalValue::getRealLinkageName(Fn->getName()));
15029   SDValue OffsetSymVal = DAG.getMCSymbol(OffsetSym, PtrVT);
15030   SDValue RegNodeFrameOffset =
15031       DAG.getNode(ISD::FRAME_ALLOC_RECOVER, dl, PtrVT, OffsetSymVal);
15032
15033   // RegNodeBase = EntryEBP - RegNodeSize
15034   // ParentFP = RegNodeBase - RegNodeFrameOffset
15035   SDValue RegNodeBase = DAG.getNode(ISD::SUB, dl, PtrVT, EntryEBP,
15036                                     DAG.getConstant(RegNodeSize, dl, PtrVT));
15037   return DAG.getNode(ISD::SUB, dl, PtrVT, RegNodeBase, RegNodeFrameOffset);
15038 }
15039
15040 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
15041                                        SelectionDAG &DAG) {
15042   SDLoc dl(Op);
15043   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15044   EVT VT = Op.getValueType();
15045   const IntrinsicData* IntrData = getIntrinsicWithoutChain(IntNo);
15046   if (IntrData) {
15047     switch(IntrData->Type) {
15048     case INTR_TYPE_1OP:
15049       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1));
15050     case INTR_TYPE_2OP:
15051       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
15052         Op.getOperand(2));
15053     case INTR_TYPE_3OP:
15054       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
15055         Op.getOperand(2), Op.getOperand(3));
15056     case INTR_TYPE_1OP_MASK_RM: {
15057       SDValue Src = Op.getOperand(1);
15058       SDValue PassThru = Op.getOperand(2);
15059       SDValue Mask = Op.getOperand(3);
15060       SDValue RoundingMode;
15061       if (Op.getNumOperands() == 4)
15062         RoundingMode = DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
15063       else
15064         RoundingMode = Op.getOperand(4);
15065       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15066       if (IntrWithRoundingModeOpcode != 0) {
15067         unsigned Round = cast<ConstantSDNode>(RoundingMode)->getZExtValue();
15068         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION)
15069           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15070                                       dl, Op.getValueType(), Src, RoundingMode),
15071                                       Mask, PassThru, Subtarget, DAG);
15072       }
15073       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src,
15074                                               RoundingMode),
15075                                   Mask, PassThru, Subtarget, DAG);
15076     }
15077     case INTR_TYPE_1OP_MASK: {
15078       SDValue Src = Op.getOperand(1);
15079       SDValue Passthru = Op.getOperand(2);
15080       SDValue Mask = Op.getOperand(3);
15081       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src),
15082                                   Mask, Passthru, Subtarget, DAG);
15083     }
15084     case INTR_TYPE_SCALAR_MASK_RM: {
15085       SDValue Src1 = Op.getOperand(1);
15086       SDValue Src2 = Op.getOperand(2);
15087       SDValue Src0 = Op.getOperand(3);
15088       SDValue Mask = Op.getOperand(4);
15089       // There are 2 kinds of intrinsics in this group:
15090       // (1) With supress-all-exceptions (sae) or rounding mode- 6 operands
15091       // (2) With rounding mode and sae - 7 operands.
15092       if (Op.getNumOperands() == 6) {
15093         SDValue Sae  = Op.getOperand(5);
15094         unsigned Opc = IntrData->Opc1 ? IntrData->Opc1 : IntrData->Opc0;
15095         return getScalarMaskingNode(DAG.getNode(Opc, dl, VT, Src1, Src2,
15096                                                 Sae),
15097                                     Mask, Src0, Subtarget, DAG);
15098       }
15099       assert(Op.getNumOperands() == 7 && "Unexpected intrinsic form");
15100       SDValue RoundingMode  = Op.getOperand(5);
15101       SDValue Sae  = Op.getOperand(6);
15102       return getScalarMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src1, Src2,
15103                                               RoundingMode, Sae),
15104                                   Mask, Src0, Subtarget, DAG);
15105     }
15106     case INTR_TYPE_2OP_MASK: {
15107       SDValue Src1 = Op.getOperand(1);
15108       SDValue Src2 = Op.getOperand(2);
15109       SDValue PassThru = Op.getOperand(3);
15110       SDValue Mask = Op.getOperand(4);
15111       // We specify 2 possible opcodes for intrinsics with rounding modes.
15112       // First, we check if the intrinsic may have non-default rounding mode,
15113       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15114       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15115       if (IntrWithRoundingModeOpcode != 0) {
15116         SDValue Rnd = Op.getOperand(5);
15117         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
15118         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
15119           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15120                                       dl, Op.getValueType(),
15121                                       Src1, Src2, Rnd),
15122                                       Mask, PassThru, Subtarget, DAG);
15123         }
15124       }
15125       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15126                                               Src1,Src2),
15127                                   Mask, PassThru, Subtarget, DAG);
15128     }
15129     case INTR_TYPE_2OP_MASK_RM: {
15130       SDValue Src1 = Op.getOperand(1);
15131       SDValue Src2 = Op.getOperand(2);
15132       SDValue PassThru = Op.getOperand(3);
15133       SDValue Mask = Op.getOperand(4);
15134       // We specify 2 possible modes for intrinsics, with/without rounding modes.
15135       // First, we check if the intrinsic have rounding mode (6 operands),
15136       // if not, we set rounding mode to "current".
15137       SDValue Rnd;
15138       if (Op.getNumOperands() == 6)
15139         Rnd = Op.getOperand(5);
15140       else 
15141         Rnd = DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
15142       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15143                                               Src1, Src2, Rnd),
15144                                   Mask, PassThru, Subtarget, DAG);
15145     }
15146     case INTR_TYPE_3OP_MASK: {
15147       SDValue Src1 = Op.getOperand(1);
15148       SDValue Src2 = Op.getOperand(2);
15149       SDValue Src3 = Op.getOperand(3);
15150       SDValue PassThru = Op.getOperand(4);
15151       SDValue Mask = Op.getOperand(5);
15152       // We specify 2 possible opcodes for intrinsics with rounding modes.
15153       // First, we check if the intrinsic may have non-default rounding mode,
15154       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15155       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15156       if (IntrWithRoundingModeOpcode != 0) {
15157         SDValue Rnd = Op.getOperand(6);
15158         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
15159         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
15160           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15161                                       dl, Op.getValueType(),
15162                                       Src1, Src2, Src3, Rnd),
15163                                       Mask, PassThru, Subtarget, DAG);
15164         }
15165       }
15166       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15167                                               Src1, Src2, Src3),
15168                                   Mask, PassThru, Subtarget, DAG);
15169     }
15170     case VPERM_3OP_MASKZ: 
15171     case VPERM_3OP_MASK:
15172     case FMA_OP_MASK3:
15173     case FMA_OP_MASKZ:
15174     case FMA_OP_MASK: {
15175       SDValue Src1 = Op.getOperand(1);
15176       SDValue Src2 = Op.getOperand(2);
15177       SDValue Src3 = Op.getOperand(3);
15178       SDValue Mask = Op.getOperand(4);
15179       EVT VT = Op.getValueType();
15180       SDValue PassThru = SDValue();
15181
15182       // set PassThru element
15183       if (IntrData->Type == VPERM_3OP_MASKZ || IntrData->Type == FMA_OP_MASKZ)
15184         PassThru = getZeroVector(VT, Subtarget, DAG, dl);
15185       else if (IntrData->Type == FMA_OP_MASK3)
15186         PassThru = Src3;
15187       else
15188         PassThru = Src1;
15189
15190       // We specify 2 possible opcodes for intrinsics with rounding modes.
15191       // First, we check if the intrinsic may have non-default rounding mode,
15192       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15193       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15194       if (IntrWithRoundingModeOpcode != 0) {
15195         SDValue Rnd = Op.getOperand(5);
15196         if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
15197             X86::STATIC_ROUNDING::CUR_DIRECTION)
15198           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15199                                                   dl, Op.getValueType(),
15200                                                   Src1, Src2, Src3, Rnd),
15201                                       Mask, PassThru, Subtarget, DAG);
15202       }
15203       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0,
15204                                               dl, Op.getValueType(),
15205                                               Src1, Src2, Src3),
15206                                   Mask, PassThru, Subtarget, DAG);
15207     }
15208     case CMP_MASK:
15209     case CMP_MASK_CC: {
15210       // Comparison intrinsics with masks.
15211       // Example of transformation:
15212       // (i8 (int_x86_avx512_mask_pcmpeq_q_128
15213       //             (v2i64 %a), (v2i64 %b), (i8 %mask))) ->
15214       // (i8 (bitcast
15215       //   (v8i1 (insert_subvector undef,
15216       //           (v2i1 (and (PCMPEQM %a, %b),
15217       //                      (extract_subvector
15218       //                         (v8i1 (bitcast %mask)), 0))), 0))))
15219       EVT VT = Op.getOperand(1).getValueType();
15220       EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15221                                     VT.getVectorNumElements());
15222       SDValue Mask = Op.getOperand((IntrData->Type == CMP_MASK_CC) ? 4 : 3);
15223       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15224                                        Mask.getValueType().getSizeInBits());
15225       SDValue Cmp;
15226       if (IntrData->Type == CMP_MASK_CC) {
15227         SDValue CC = Op.getOperand(3);
15228         CC = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CC);
15229         // We specify 2 possible opcodes for intrinsics with rounding modes.
15230         // First, we check if the intrinsic may have non-default rounding mode,
15231         // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15232         if (IntrData->Opc1 != 0) {
15233           SDValue Rnd = Op.getOperand(5);
15234           if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
15235               X86::STATIC_ROUNDING::CUR_DIRECTION)
15236             Cmp = DAG.getNode(IntrData->Opc1, dl, MaskVT, Op.getOperand(1),
15237                               Op.getOperand(2), CC, Rnd);
15238         }
15239         //default rounding mode
15240         if(!Cmp.getNode())
15241             Cmp = DAG.getNode(IntrData->Opc0, dl, MaskVT, Op.getOperand(1),
15242                               Op.getOperand(2), CC);
15243
15244       } else {
15245         assert(IntrData->Type == CMP_MASK && "Unexpected intrinsic type!");
15246         Cmp = DAG.getNode(IntrData->Opc0, dl, MaskVT, Op.getOperand(1),
15247                           Op.getOperand(2));
15248       }
15249       SDValue CmpMask = getVectorMaskingNode(Cmp, Mask,
15250                                              DAG.getTargetConstant(0, dl,
15251                                                                    MaskVT),
15252                                              Subtarget, DAG);
15253       SDValue Res = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, BitcastVT,
15254                                 DAG.getUNDEF(BitcastVT), CmpMask,
15255                                 DAG.getIntPtrConstant(0, dl));
15256       return DAG.getBitcast(Op.getValueType(), Res);
15257     }
15258     case COMI: { // Comparison intrinsics
15259       ISD::CondCode CC = (ISD::CondCode)IntrData->Opc1;
15260       SDValue LHS = Op.getOperand(1);
15261       SDValue RHS = Op.getOperand(2);
15262       unsigned X86CC = TranslateX86CC(CC, dl, true, LHS, RHS, DAG);
15263       assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
15264       SDValue Cond = DAG.getNode(IntrData->Opc0, dl, MVT::i32, LHS, RHS);
15265       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
15266                                   DAG.getConstant(X86CC, dl, MVT::i8), Cond);
15267       return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
15268     }
15269     case VSHIFT:
15270       return getTargetVShiftNode(IntrData->Opc0, dl, Op.getSimpleValueType(),
15271                                  Op.getOperand(1), Op.getOperand(2), DAG);
15272     case VSHIFT_MASK:
15273       return getVectorMaskingNode(getTargetVShiftNode(IntrData->Opc0, dl,
15274                                                       Op.getSimpleValueType(),
15275                                                       Op.getOperand(1),
15276                                                       Op.getOperand(2), DAG),
15277                                   Op.getOperand(4), Op.getOperand(3), Subtarget,
15278                                   DAG);
15279     case COMPRESS_EXPAND_IN_REG: {
15280       SDValue Mask = Op.getOperand(3);
15281       SDValue DataToCompress = Op.getOperand(1);
15282       SDValue PassThru = Op.getOperand(2);
15283       if (isAllOnes(Mask)) // return data as is
15284         return Op.getOperand(1);
15285
15286       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15287                                               DataToCompress),
15288                                   Mask, PassThru, Subtarget, DAG);
15289     }
15290     case BLEND: {
15291       SDValue Mask = Op.getOperand(3);
15292       EVT VT = Op.getValueType();
15293       EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15294                                     VT.getVectorNumElements());
15295       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15296                                        Mask.getValueType().getSizeInBits());
15297       SDLoc dl(Op);
15298       SDValue VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
15299                                   DAG.getBitcast(BitcastVT, Mask),
15300                                   DAG.getIntPtrConstant(0, dl));
15301       return DAG.getNode(IntrData->Opc0, dl, VT, VMask, Op.getOperand(1),
15302                          Op.getOperand(2));
15303     }
15304     default:
15305       break;
15306     }
15307   }
15308
15309   switch (IntNo) {
15310   default: return SDValue();    // Don't custom lower most intrinsics.
15311
15312   case Intrinsic::x86_avx2_permd:
15313   case Intrinsic::x86_avx2_permps:
15314     // Operands intentionally swapped. Mask is last operand to intrinsic,
15315     // but second operand for node/instruction.
15316     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
15317                        Op.getOperand(2), Op.getOperand(1));
15318
15319   // ptest and testp intrinsics. The intrinsic these come from are designed to
15320   // return an integer value, not just an instruction so lower it to the ptest
15321   // or testp pattern and a setcc for the result.
15322   case Intrinsic::x86_sse41_ptestz:
15323   case Intrinsic::x86_sse41_ptestc:
15324   case Intrinsic::x86_sse41_ptestnzc:
15325   case Intrinsic::x86_avx_ptestz_256:
15326   case Intrinsic::x86_avx_ptestc_256:
15327   case Intrinsic::x86_avx_ptestnzc_256:
15328   case Intrinsic::x86_avx_vtestz_ps:
15329   case Intrinsic::x86_avx_vtestc_ps:
15330   case Intrinsic::x86_avx_vtestnzc_ps:
15331   case Intrinsic::x86_avx_vtestz_pd:
15332   case Intrinsic::x86_avx_vtestc_pd:
15333   case Intrinsic::x86_avx_vtestnzc_pd:
15334   case Intrinsic::x86_avx_vtestz_ps_256:
15335   case Intrinsic::x86_avx_vtestc_ps_256:
15336   case Intrinsic::x86_avx_vtestnzc_ps_256:
15337   case Intrinsic::x86_avx_vtestz_pd_256:
15338   case Intrinsic::x86_avx_vtestc_pd_256:
15339   case Intrinsic::x86_avx_vtestnzc_pd_256: {
15340     bool IsTestPacked = false;
15341     unsigned X86CC;
15342     switch (IntNo) {
15343     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
15344     case Intrinsic::x86_avx_vtestz_ps:
15345     case Intrinsic::x86_avx_vtestz_pd:
15346     case Intrinsic::x86_avx_vtestz_ps_256:
15347     case Intrinsic::x86_avx_vtestz_pd_256:
15348       IsTestPacked = true; // Fallthrough
15349     case Intrinsic::x86_sse41_ptestz:
15350     case Intrinsic::x86_avx_ptestz_256:
15351       // ZF = 1
15352       X86CC = X86::COND_E;
15353       break;
15354     case Intrinsic::x86_avx_vtestc_ps:
15355     case Intrinsic::x86_avx_vtestc_pd:
15356     case Intrinsic::x86_avx_vtestc_ps_256:
15357     case Intrinsic::x86_avx_vtestc_pd_256:
15358       IsTestPacked = true; // Fallthrough
15359     case Intrinsic::x86_sse41_ptestc:
15360     case Intrinsic::x86_avx_ptestc_256:
15361       // CF = 1
15362       X86CC = X86::COND_B;
15363       break;
15364     case Intrinsic::x86_avx_vtestnzc_ps:
15365     case Intrinsic::x86_avx_vtestnzc_pd:
15366     case Intrinsic::x86_avx_vtestnzc_ps_256:
15367     case Intrinsic::x86_avx_vtestnzc_pd_256:
15368       IsTestPacked = true; // Fallthrough
15369     case Intrinsic::x86_sse41_ptestnzc:
15370     case Intrinsic::x86_avx_ptestnzc_256:
15371       // ZF and CF = 0
15372       X86CC = X86::COND_A;
15373       break;
15374     }
15375
15376     SDValue LHS = Op.getOperand(1);
15377     SDValue RHS = Op.getOperand(2);
15378     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
15379     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
15380     SDValue CC = DAG.getConstant(X86CC, dl, MVT::i8);
15381     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
15382     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
15383   }
15384   case Intrinsic::x86_avx512_kortestz_w:
15385   case Intrinsic::x86_avx512_kortestc_w: {
15386     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
15387     SDValue LHS = DAG.getBitcast(MVT::v16i1, Op.getOperand(1));
15388     SDValue RHS = DAG.getBitcast(MVT::v16i1, Op.getOperand(2));
15389     SDValue CC = DAG.getConstant(X86CC, dl, MVT::i8);
15390     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
15391     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
15392     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
15393   }
15394
15395   case Intrinsic::x86_sse42_pcmpistria128:
15396   case Intrinsic::x86_sse42_pcmpestria128:
15397   case Intrinsic::x86_sse42_pcmpistric128:
15398   case Intrinsic::x86_sse42_pcmpestric128:
15399   case Intrinsic::x86_sse42_pcmpistrio128:
15400   case Intrinsic::x86_sse42_pcmpestrio128:
15401   case Intrinsic::x86_sse42_pcmpistris128:
15402   case Intrinsic::x86_sse42_pcmpestris128:
15403   case Intrinsic::x86_sse42_pcmpistriz128:
15404   case Intrinsic::x86_sse42_pcmpestriz128: {
15405     unsigned Opcode;
15406     unsigned X86CC;
15407     switch (IntNo) {
15408     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15409     case Intrinsic::x86_sse42_pcmpistria128:
15410       Opcode = X86ISD::PCMPISTRI;
15411       X86CC = X86::COND_A;
15412       break;
15413     case Intrinsic::x86_sse42_pcmpestria128:
15414       Opcode = X86ISD::PCMPESTRI;
15415       X86CC = X86::COND_A;
15416       break;
15417     case Intrinsic::x86_sse42_pcmpistric128:
15418       Opcode = X86ISD::PCMPISTRI;
15419       X86CC = X86::COND_B;
15420       break;
15421     case Intrinsic::x86_sse42_pcmpestric128:
15422       Opcode = X86ISD::PCMPESTRI;
15423       X86CC = X86::COND_B;
15424       break;
15425     case Intrinsic::x86_sse42_pcmpistrio128:
15426       Opcode = X86ISD::PCMPISTRI;
15427       X86CC = X86::COND_O;
15428       break;
15429     case Intrinsic::x86_sse42_pcmpestrio128:
15430       Opcode = X86ISD::PCMPESTRI;
15431       X86CC = X86::COND_O;
15432       break;
15433     case Intrinsic::x86_sse42_pcmpistris128:
15434       Opcode = X86ISD::PCMPISTRI;
15435       X86CC = X86::COND_S;
15436       break;
15437     case Intrinsic::x86_sse42_pcmpestris128:
15438       Opcode = X86ISD::PCMPESTRI;
15439       X86CC = X86::COND_S;
15440       break;
15441     case Intrinsic::x86_sse42_pcmpistriz128:
15442       Opcode = X86ISD::PCMPISTRI;
15443       X86CC = X86::COND_E;
15444       break;
15445     case Intrinsic::x86_sse42_pcmpestriz128:
15446       Opcode = X86ISD::PCMPESTRI;
15447       X86CC = X86::COND_E;
15448       break;
15449     }
15450     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
15451     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
15452     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
15453     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
15454                                 DAG.getConstant(X86CC, dl, MVT::i8),
15455                                 SDValue(PCMP.getNode(), 1));
15456     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
15457   }
15458
15459   case Intrinsic::x86_sse42_pcmpistri128:
15460   case Intrinsic::x86_sse42_pcmpestri128: {
15461     unsigned Opcode;
15462     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
15463       Opcode = X86ISD::PCMPISTRI;
15464     else
15465       Opcode = X86ISD::PCMPESTRI;
15466
15467     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
15468     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
15469     return DAG.getNode(Opcode, dl, VTs, NewOps);
15470   }
15471
15472   case Intrinsic::x86_seh_lsda: {
15473     // Compute the symbol for the LSDA. We know it'll get emitted later.
15474     MachineFunction &MF = DAG.getMachineFunction();
15475     SDValue Op1 = Op.getOperand(1);
15476     auto *Fn = cast<Function>(cast<GlobalAddressSDNode>(Op1)->getGlobal());
15477     MCSymbol *LSDASym = MF.getMMI().getContext().getOrCreateLSDASymbol(
15478         GlobalValue::getRealLinkageName(Fn->getName()));
15479
15480     // Generate a simple absolute symbol reference. This intrinsic is only
15481     // supported on 32-bit Windows, which isn't PIC.
15482     SDValue Result = DAG.getMCSymbol(LSDASym, VT);
15483     return DAG.getNode(X86ISD::Wrapper, dl, VT, Result);
15484   }
15485
15486   case Intrinsic::x86_seh_recoverfp: {
15487     SDValue FnOp = Op.getOperand(1);
15488     SDValue IncomingFPOp = Op.getOperand(2);
15489     GlobalAddressSDNode *GSD = dyn_cast<GlobalAddressSDNode>(FnOp);
15490     auto *Fn = dyn_cast_or_null<Function>(GSD ? GSD->getGlobal() : nullptr);
15491     if (!Fn)
15492       report_fatal_error(
15493           "llvm.x86.seh.recoverfp must take a function as the first argument");
15494     return recoverFramePointer(DAG, Fn, IncomingFPOp);
15495   }
15496   }
15497 }
15498
15499 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
15500                               SDValue Src, SDValue Mask, SDValue Base,
15501                               SDValue Index, SDValue ScaleOp, SDValue Chain,
15502                               const X86Subtarget * Subtarget) {
15503   SDLoc dl(Op);
15504   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
15505   if (!C)
15506     llvm_unreachable("Invalid scale type");
15507   unsigned ScaleVal = C->getZExtValue();
15508   if (ScaleVal > 2 && ScaleVal != 4 && ScaleVal != 8)
15509     llvm_unreachable("Valid scale values are 1, 2, 4, 8");
15510
15511   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
15512   EVT MaskVT = MVT::getVectorVT(MVT::i1,
15513                              Index.getSimpleValueType().getVectorNumElements());
15514   SDValue MaskInReg;
15515   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
15516   if (MaskC)
15517     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
15518   else {
15519     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15520                                      Mask.getValueType().getSizeInBits());
15521
15522     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
15523     // are extracted by EXTRACT_SUBVECTOR.
15524     MaskInReg = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
15525                             DAG.getBitcast(BitcastVT, Mask),
15526                             DAG.getIntPtrConstant(0, dl));
15527   }
15528   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
15529   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
15530   SDValue Segment = DAG.getRegister(0, MVT::i32);
15531   if (Src.getOpcode() == ISD::UNDEF)
15532     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
15533   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
15534   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
15535   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
15536   return DAG.getMergeValues(RetOps, dl);
15537 }
15538
15539 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
15540                                SDValue Src, SDValue Mask, SDValue Base,
15541                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
15542   SDLoc dl(Op);
15543   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
15544   if (!C)
15545     llvm_unreachable("Invalid scale type");
15546   unsigned ScaleVal = C->getZExtValue();
15547   if (ScaleVal > 2 && ScaleVal != 4 && ScaleVal != 8)
15548     llvm_unreachable("Valid scale values are 1, 2, 4, 8");
15549
15550   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
15551   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
15552   SDValue Segment = DAG.getRegister(0, MVT::i32);
15553   EVT MaskVT = MVT::getVectorVT(MVT::i1,
15554                              Index.getSimpleValueType().getVectorNumElements());
15555   SDValue MaskInReg;
15556   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
15557   if (MaskC)
15558     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
15559   else {
15560     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15561                                      Mask.getValueType().getSizeInBits());
15562
15563     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
15564     // are extracted by EXTRACT_SUBVECTOR.
15565     MaskInReg = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
15566                             DAG.getBitcast(BitcastVT, Mask),
15567                             DAG.getIntPtrConstant(0, dl));
15568   }
15569   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
15570   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
15571   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
15572   return SDValue(Res, 1);
15573 }
15574
15575 static SDValue getPrefetchNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
15576                                SDValue Mask, SDValue Base, SDValue Index,
15577                                SDValue ScaleOp, SDValue Chain) {
15578   SDLoc dl(Op);
15579   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
15580   assert(C && "Invalid scale type");
15581   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
15582   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
15583   SDValue Segment = DAG.getRegister(0, MVT::i32);
15584   EVT MaskVT =
15585     MVT::getVectorVT(MVT::i1, Index.getSimpleValueType().getVectorNumElements());
15586   SDValue MaskInReg;
15587   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
15588   if (MaskC)
15589     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
15590   else
15591     MaskInReg = DAG.getBitcast(MaskVT, Mask);
15592   //SDVTList VTs = DAG.getVTList(MVT::Other);
15593   SDValue Ops[] = {MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
15594   SDNode *Res = DAG.getMachineNode(Opc, dl, MVT::Other, Ops);
15595   return SDValue(Res, 0);
15596 }
15597
15598 // getReadPerformanceCounter - Handles the lowering of builtin intrinsics that
15599 // read performance monitor counters (x86_rdpmc).
15600 static void getReadPerformanceCounter(SDNode *N, SDLoc DL,
15601                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
15602                               SmallVectorImpl<SDValue> &Results) {
15603   assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
15604   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
15605   SDValue LO, HI;
15606
15607   // The ECX register is used to select the index of the performance counter
15608   // to read.
15609   SDValue Chain = DAG.getCopyToReg(N->getOperand(0), DL, X86::ECX,
15610                                    N->getOperand(2));
15611   SDValue rd = DAG.getNode(X86ISD::RDPMC_DAG, DL, Tys, Chain);
15612
15613   // Reads the content of a 64-bit performance counter and returns it in the
15614   // registers EDX:EAX.
15615   if (Subtarget->is64Bit()) {
15616     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
15617     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
15618                             LO.getValue(2));
15619   } else {
15620     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
15621     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
15622                             LO.getValue(2));
15623   }
15624   Chain = HI.getValue(1);
15625
15626   if (Subtarget->is64Bit()) {
15627     // The EAX register is loaded with the low-order 32 bits. The EDX register
15628     // is loaded with the supported high-order bits of the counter.
15629     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
15630                               DAG.getConstant(32, DL, MVT::i8));
15631     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
15632     Results.push_back(Chain);
15633     return;
15634   }
15635
15636   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
15637   SDValue Ops[] = { LO, HI };
15638   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
15639   Results.push_back(Pair);
15640   Results.push_back(Chain);
15641 }
15642
15643 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
15644 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
15645 // also used to custom lower READCYCLECOUNTER nodes.
15646 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
15647                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
15648                               SmallVectorImpl<SDValue> &Results) {
15649   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
15650   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
15651   SDValue LO, HI;
15652
15653   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
15654   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
15655   // and the EAX register is loaded with the low-order 32 bits.
15656   if (Subtarget->is64Bit()) {
15657     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
15658     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
15659                             LO.getValue(2));
15660   } else {
15661     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
15662     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
15663                             LO.getValue(2));
15664   }
15665   SDValue Chain = HI.getValue(1);
15666
15667   if (Opcode == X86ISD::RDTSCP_DAG) {
15668     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
15669
15670     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
15671     // the ECX register. Add 'ecx' explicitly to the chain.
15672     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
15673                                      HI.getValue(2));
15674     // Explicitly store the content of ECX at the location passed in input
15675     // to the 'rdtscp' intrinsic.
15676     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
15677                          MachinePointerInfo(), false, false, 0);
15678   }
15679
15680   if (Subtarget->is64Bit()) {
15681     // The EDX register is loaded with the high-order 32 bits of the MSR, and
15682     // the EAX register is loaded with the low-order 32 bits.
15683     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
15684                               DAG.getConstant(32, DL, MVT::i8));
15685     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
15686     Results.push_back(Chain);
15687     return;
15688   }
15689
15690   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
15691   SDValue Ops[] = { LO, HI };
15692   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
15693   Results.push_back(Pair);
15694   Results.push_back(Chain);
15695 }
15696
15697 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
15698                                      SelectionDAG &DAG) {
15699   SmallVector<SDValue, 2> Results;
15700   SDLoc DL(Op);
15701   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
15702                           Results);
15703   return DAG.getMergeValues(Results, DL);
15704 }
15705
15706 static SDValue LowerSEHRESTOREFRAME(SDValue Op, const X86Subtarget *Subtarget,
15707                                     SelectionDAG &DAG) {
15708   MachineFunction &MF = DAG.getMachineFunction();
15709   SDLoc dl(Op);
15710   SDValue Chain = Op.getOperand(0);
15711
15712   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15713   MVT VT = TLI.getPointerTy();
15714
15715   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15716   unsigned FrameReg =
15717       RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
15718   unsigned SPReg = RegInfo->getStackRegister();
15719
15720   // Get incoming EBP.
15721   SDValue IncomingEBP =
15722       DAG.getCopyFromReg(Chain, dl, FrameReg, VT);
15723
15724   // Load [EBP-24] into SP.
15725   SDValue SPAddr =
15726       DAG.getNode(ISD::ADD, dl, VT, IncomingEBP, DAG.getConstant(-24, dl, VT));
15727   SDValue NewSP =
15728       DAG.getLoad(VT, dl, Chain, SPAddr, MachinePointerInfo(), false, false,
15729                   false, VT.getScalarSizeInBits() / 8);
15730   Chain = DAG.getCopyToReg(Chain, dl, SPReg, NewSP);
15731
15732   // FIXME: Restore the base pointer in case of stack realignment!
15733
15734   // Adjust EBP to point back to the original frame position.
15735   SDValue NewFP = recoverFramePointer(DAG, MF.getFunction(), IncomingEBP);
15736   Chain = DAG.getCopyToReg(Chain, dl, FrameReg, NewFP);
15737   return Chain;
15738 }
15739
15740 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
15741                                       SelectionDAG &DAG) {
15742   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
15743
15744   const IntrinsicData* IntrData = getIntrinsicWithChain(IntNo);
15745   if (!IntrData) {
15746     if (IntNo == llvm::Intrinsic::x86_seh_restoreframe)
15747       return LowerSEHRESTOREFRAME(Op, Subtarget, DAG);
15748     return SDValue();
15749   }
15750
15751   SDLoc dl(Op);
15752   switch(IntrData->Type) {
15753   default:
15754     llvm_unreachable("Unknown Intrinsic Type");
15755     break;
15756   case RDSEED:
15757   case RDRAND: {
15758     // Emit the node with the right value type.
15759     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
15760     SDValue Result = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(0));
15761
15762     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
15763     // Otherwise return the value from Rand, which is always 0, casted to i32.
15764     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
15765                       DAG.getConstant(1, dl, Op->getValueType(1)),
15766                       DAG.getConstant(X86::COND_B, dl, MVT::i32),
15767                       SDValue(Result.getNode(), 1) };
15768     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
15769                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
15770                                   Ops);
15771
15772     // Return { result, isValid, chain }.
15773     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
15774                        SDValue(Result.getNode(), 2));
15775   }
15776   case GATHER: {
15777   //gather(v1, mask, index, base, scale);
15778     SDValue Chain = Op.getOperand(0);
15779     SDValue Src   = Op.getOperand(2);
15780     SDValue Base  = Op.getOperand(3);
15781     SDValue Index = Op.getOperand(4);
15782     SDValue Mask  = Op.getOperand(5);
15783     SDValue Scale = Op.getOperand(6);
15784     return getGatherNode(IntrData->Opc0, Op, DAG, Src, Mask, Base, Index, Scale,
15785                          Chain, Subtarget);
15786   }
15787   case SCATTER: {
15788   //scatter(base, mask, index, v1, scale);
15789     SDValue Chain = Op.getOperand(0);
15790     SDValue Base  = Op.getOperand(2);
15791     SDValue Mask  = Op.getOperand(3);
15792     SDValue Index = Op.getOperand(4);
15793     SDValue Src   = Op.getOperand(5);
15794     SDValue Scale = Op.getOperand(6);
15795     return getScatterNode(IntrData->Opc0, Op, DAG, Src, Mask, Base, Index,
15796                           Scale, Chain);
15797   }
15798   case PREFETCH: {
15799     SDValue Hint = Op.getOperand(6);
15800     unsigned HintVal = cast<ConstantSDNode>(Hint)->getZExtValue();
15801     assert(HintVal < 2 && "Wrong prefetch hint in intrinsic: should be 0 or 1");
15802     unsigned Opcode = (HintVal ? IntrData->Opc1 : IntrData->Opc0);
15803     SDValue Chain = Op.getOperand(0);
15804     SDValue Mask  = Op.getOperand(2);
15805     SDValue Index = Op.getOperand(3);
15806     SDValue Base  = Op.getOperand(4);
15807     SDValue Scale = Op.getOperand(5);
15808     return getPrefetchNode(Opcode, Op, DAG, Mask, Base, Index, Scale, Chain);
15809   }
15810   // Read Time Stamp Counter (RDTSC) and Processor ID (RDTSCP).
15811   case RDTSC: {
15812     SmallVector<SDValue, 2> Results;
15813     getReadTimeStampCounter(Op.getNode(), dl, IntrData->Opc0, DAG, Subtarget,
15814                             Results);
15815     return DAG.getMergeValues(Results, dl);
15816   }
15817   // Read Performance Monitoring Counters.
15818   case RDPMC: {
15819     SmallVector<SDValue, 2> Results;
15820     getReadPerformanceCounter(Op.getNode(), dl, DAG, Subtarget, Results);
15821     return DAG.getMergeValues(Results, dl);
15822   }
15823   // XTEST intrinsics.
15824   case XTEST: {
15825     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
15826     SDValue InTrans = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(0));
15827     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
15828                                 DAG.getConstant(X86::COND_NE, dl, MVT::i8),
15829                                 InTrans);
15830     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
15831     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
15832                        Ret, SDValue(InTrans.getNode(), 1));
15833   }
15834   // ADC/ADCX/SBB
15835   case ADX: {
15836     SmallVector<SDValue, 2> Results;
15837     SDVTList CFVTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
15838     SDVTList VTs = DAG.getVTList(Op.getOperand(3)->getValueType(0), MVT::Other);
15839     SDValue GenCF = DAG.getNode(X86ISD::ADD, dl, CFVTs, Op.getOperand(2),
15840                                 DAG.getConstant(-1, dl, MVT::i8));
15841     SDValue Res = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(3),
15842                               Op.getOperand(4), GenCF.getValue(1));
15843     SDValue Store = DAG.getStore(Op.getOperand(0), dl, Res.getValue(0),
15844                                  Op.getOperand(5), MachinePointerInfo(),
15845                                  false, false, 0);
15846     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
15847                                 DAG.getConstant(X86::COND_B, dl, MVT::i8),
15848                                 Res.getValue(1));
15849     Results.push_back(SetCC);
15850     Results.push_back(Store);
15851     return DAG.getMergeValues(Results, dl);
15852   }
15853   case COMPRESS_TO_MEM: {
15854     SDLoc dl(Op);
15855     SDValue Mask = Op.getOperand(4);
15856     SDValue DataToCompress = Op.getOperand(3);
15857     SDValue Addr = Op.getOperand(2);
15858     SDValue Chain = Op.getOperand(0);
15859
15860     EVT VT = DataToCompress.getValueType();
15861     if (isAllOnes(Mask)) // return just a store
15862       return DAG.getStore(Chain, dl, DataToCompress, Addr,
15863                           MachinePointerInfo(), false, false,
15864                           VT.getScalarSizeInBits()/8);
15865
15866     SDValue Compressed =
15867       getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, DataToCompress),
15868                            Mask, DAG.getUNDEF(VT), Subtarget, DAG);
15869     return DAG.getStore(Chain, dl, Compressed, Addr,
15870                         MachinePointerInfo(), false, false,
15871                         VT.getScalarSizeInBits()/8);
15872   }
15873   case EXPAND_FROM_MEM: {
15874     SDLoc dl(Op);
15875     SDValue Mask = Op.getOperand(4);
15876     SDValue PassThru = Op.getOperand(3);
15877     SDValue Addr = Op.getOperand(2);
15878     SDValue Chain = Op.getOperand(0);
15879     EVT VT = Op.getValueType();
15880
15881     if (isAllOnes(Mask)) // return just a load
15882       return DAG.getLoad(VT, dl, Chain, Addr, MachinePointerInfo(), false, false,
15883                          false, VT.getScalarSizeInBits()/8);
15884
15885     SDValue DataToExpand = DAG.getLoad(VT, dl, Chain, Addr, MachinePointerInfo(),
15886                                        false, false, false,
15887                                        VT.getScalarSizeInBits()/8);
15888
15889     SDValue Results[] = {
15890       getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, DataToExpand),
15891                            Mask, PassThru, Subtarget, DAG), Chain};
15892     return DAG.getMergeValues(Results, dl);
15893   }
15894   }
15895 }
15896
15897 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
15898                                            SelectionDAG &DAG) const {
15899   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
15900   MFI->setReturnAddressIsTaken(true);
15901
15902   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
15903     return SDValue();
15904
15905   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15906   SDLoc dl(Op);
15907   EVT PtrVT = getPointerTy();
15908
15909   if (Depth > 0) {
15910     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
15911     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15912     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), dl, PtrVT);
15913     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
15914                        DAG.getNode(ISD::ADD, dl, PtrVT,
15915                                    FrameAddr, Offset),
15916                        MachinePointerInfo(), false, false, false, 0);
15917   }
15918
15919   // Just load the return address.
15920   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
15921   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
15922                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
15923 }
15924
15925 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
15926   MachineFunction &MF = DAG.getMachineFunction();
15927   MachineFrameInfo *MFI = MF.getFrameInfo();
15928   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
15929   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15930   EVT VT = Op.getValueType();
15931
15932   MFI->setFrameAddressIsTaken(true);
15933
15934   if (MF.getTarget().getMCAsmInfo()->usesWindowsCFI()) {
15935     // Depth > 0 makes no sense on targets which use Windows unwind codes.  It
15936     // is not possible to crawl up the stack without looking at the unwind codes
15937     // simultaneously.
15938     int FrameAddrIndex = FuncInfo->getFAIndex();
15939     if (!FrameAddrIndex) {
15940       // Set up a frame object for the return address.
15941       unsigned SlotSize = RegInfo->getSlotSize();
15942       FrameAddrIndex = MF.getFrameInfo()->CreateFixedObject(
15943           SlotSize, /*Offset=*/0, /*IsImmutable=*/false);
15944       FuncInfo->setFAIndex(FrameAddrIndex);
15945     }
15946     return DAG.getFrameIndex(FrameAddrIndex, VT);
15947   }
15948
15949   unsigned FrameReg =
15950       RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
15951   SDLoc dl(Op);  // FIXME probably not meaningful
15952   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15953   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
15954           (FrameReg == X86::EBP && VT == MVT::i32)) &&
15955          "Invalid Frame Register!");
15956   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
15957   while (Depth--)
15958     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
15959                             MachinePointerInfo(),
15960                             false, false, false, 0);
15961   return FrameAddr;
15962 }
15963
15964 // FIXME? Maybe this could be a TableGen attribute on some registers and
15965 // this table could be generated automatically from RegInfo.
15966 unsigned X86TargetLowering::getRegisterByName(const char* RegName,
15967                                               EVT VT) const {
15968   unsigned Reg = StringSwitch<unsigned>(RegName)
15969                        .Case("esp", X86::ESP)
15970                        .Case("rsp", X86::RSP)
15971                        .Default(0);
15972   if (Reg)
15973     return Reg;
15974   report_fatal_error("Invalid register name global variable");
15975 }
15976
15977 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
15978                                                      SelectionDAG &DAG) const {
15979   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15980   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize(), SDLoc(Op));
15981 }
15982
15983 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
15984   SDValue Chain     = Op.getOperand(0);
15985   SDValue Offset    = Op.getOperand(1);
15986   SDValue Handler   = Op.getOperand(2);
15987   SDLoc dl      (Op);
15988
15989   EVT PtrVT = getPointerTy();
15990   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15991   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
15992   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
15993           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
15994          "Invalid Frame Register!");
15995   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
15996   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
15997
15998   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
15999                                  DAG.getIntPtrConstant(RegInfo->getSlotSize(),
16000                                                        dl));
16001   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
16002   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
16003                        false, false, 0);
16004   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
16005
16006   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
16007                      DAG.getRegister(StoreAddrReg, PtrVT));
16008 }
16009
16010 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
16011                                                SelectionDAG &DAG) const {
16012   SDLoc DL(Op);
16013   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
16014                      DAG.getVTList(MVT::i32, MVT::Other),
16015                      Op.getOperand(0), Op.getOperand(1));
16016 }
16017
16018 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
16019                                                 SelectionDAG &DAG) const {
16020   SDLoc DL(Op);
16021   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
16022                      Op.getOperand(0), Op.getOperand(1));
16023 }
16024
16025 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
16026   return Op.getOperand(0);
16027 }
16028
16029 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
16030                                                 SelectionDAG &DAG) const {
16031   SDValue Root = Op.getOperand(0);
16032   SDValue Trmp = Op.getOperand(1); // trampoline
16033   SDValue FPtr = Op.getOperand(2); // nested function
16034   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
16035   SDLoc dl (Op);
16036
16037   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
16038   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
16039
16040   if (Subtarget->is64Bit()) {
16041     SDValue OutChains[6];
16042
16043     // Large code-model.
16044     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
16045     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
16046
16047     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
16048     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
16049
16050     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
16051
16052     // Load the pointer to the nested function into R11.
16053     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
16054     SDValue Addr = Trmp;
16055     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
16056                                 Addr, MachinePointerInfo(TrmpAddr),
16057                                 false, false, 0);
16058
16059     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16060                        DAG.getConstant(2, dl, MVT::i64));
16061     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
16062                                 MachinePointerInfo(TrmpAddr, 2),
16063                                 false, false, 2);
16064
16065     // Load the 'nest' parameter value into R10.
16066     // R10 is specified in X86CallingConv.td
16067     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
16068     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16069                        DAG.getConstant(10, dl, MVT::i64));
16070     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
16071                                 Addr, MachinePointerInfo(TrmpAddr, 10),
16072                                 false, false, 0);
16073
16074     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16075                        DAG.getConstant(12, dl, MVT::i64));
16076     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
16077                                 MachinePointerInfo(TrmpAddr, 12),
16078                                 false, false, 2);
16079
16080     // Jump to the nested function.
16081     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
16082     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16083                        DAG.getConstant(20, dl, MVT::i64));
16084     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
16085                                 Addr, MachinePointerInfo(TrmpAddr, 20),
16086                                 false, false, 0);
16087
16088     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
16089     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16090                        DAG.getConstant(22, dl, MVT::i64));
16091     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, dl, MVT::i8),
16092                                 Addr, MachinePointerInfo(TrmpAddr, 22),
16093                                 false, false, 0);
16094
16095     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
16096   } else {
16097     const Function *Func =
16098       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
16099     CallingConv::ID CC = Func->getCallingConv();
16100     unsigned NestReg;
16101
16102     switch (CC) {
16103     default:
16104       llvm_unreachable("Unsupported calling convention");
16105     case CallingConv::C:
16106     case CallingConv::X86_StdCall: {
16107       // Pass 'nest' parameter in ECX.
16108       // Must be kept in sync with X86CallingConv.td
16109       NestReg = X86::ECX;
16110
16111       // Check that ECX wasn't needed by an 'inreg' parameter.
16112       FunctionType *FTy = Func->getFunctionType();
16113       const AttributeSet &Attrs = Func->getAttributes();
16114
16115       if (!Attrs.isEmpty() && !Func->isVarArg()) {
16116         unsigned InRegCount = 0;
16117         unsigned Idx = 1;
16118
16119         for (FunctionType::param_iterator I = FTy->param_begin(),
16120              E = FTy->param_end(); I != E; ++I, ++Idx)
16121           if (Attrs.hasAttribute(Idx, Attribute::InReg))
16122             // FIXME: should only count parameters that are lowered to integers.
16123             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
16124
16125         if (InRegCount > 2) {
16126           report_fatal_error("Nest register in use - reduce number of inreg"
16127                              " parameters!");
16128         }
16129       }
16130       break;
16131     }
16132     case CallingConv::X86_FastCall:
16133     case CallingConv::X86_ThisCall:
16134     case CallingConv::Fast:
16135       // Pass 'nest' parameter in EAX.
16136       // Must be kept in sync with X86CallingConv.td
16137       NestReg = X86::EAX;
16138       break;
16139     }
16140
16141     SDValue OutChains[4];
16142     SDValue Addr, Disp;
16143
16144     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
16145                        DAG.getConstant(10, dl, MVT::i32));
16146     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
16147
16148     // This is storing the opcode for MOV32ri.
16149     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
16150     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
16151     OutChains[0] = DAG.getStore(Root, dl,
16152                                 DAG.getConstant(MOV32ri|N86Reg, dl, MVT::i8),
16153                                 Trmp, MachinePointerInfo(TrmpAddr),
16154                                 false, false, 0);
16155
16156     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
16157                        DAG.getConstant(1, dl, MVT::i32));
16158     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
16159                                 MachinePointerInfo(TrmpAddr, 1),
16160                                 false, false, 1);
16161
16162     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
16163     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
16164                        DAG.getConstant(5, dl, MVT::i32));
16165     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, dl, MVT::i8),
16166                                 Addr, MachinePointerInfo(TrmpAddr, 5),
16167                                 false, false, 1);
16168
16169     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
16170                        DAG.getConstant(6, dl, MVT::i32));
16171     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
16172                                 MachinePointerInfo(TrmpAddr, 6),
16173                                 false, false, 1);
16174
16175     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
16176   }
16177 }
16178
16179 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
16180                                             SelectionDAG &DAG) const {
16181   /*
16182    The rounding mode is in bits 11:10 of FPSR, and has the following
16183    settings:
16184      00 Round to nearest
16185      01 Round to -inf
16186      10 Round to +inf
16187      11 Round to 0
16188
16189   FLT_ROUNDS, on the other hand, expects the following:
16190     -1 Undefined
16191      0 Round to 0
16192      1 Round to nearest
16193      2 Round to +inf
16194      3 Round to -inf
16195
16196   To perform the conversion, we do:
16197     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
16198   */
16199
16200   MachineFunction &MF = DAG.getMachineFunction();
16201   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
16202   unsigned StackAlignment = TFI.getStackAlignment();
16203   MVT VT = Op.getSimpleValueType();
16204   SDLoc DL(Op);
16205
16206   // Save FP Control Word to stack slot
16207   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
16208   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
16209
16210   MachineMemOperand *MMO =
16211    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
16212                            MachineMemOperand::MOStore, 2, 2);
16213
16214   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
16215   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
16216                                           DAG.getVTList(MVT::Other),
16217                                           Ops, MVT::i16, MMO);
16218
16219   // Load FP Control Word from stack slot
16220   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
16221                             MachinePointerInfo(), false, false, false, 0);
16222
16223   // Transform as necessary
16224   SDValue CWD1 =
16225     DAG.getNode(ISD::SRL, DL, MVT::i16,
16226                 DAG.getNode(ISD::AND, DL, MVT::i16,
16227                             CWD, DAG.getConstant(0x800, DL, MVT::i16)),
16228                 DAG.getConstant(11, DL, MVT::i8));
16229   SDValue CWD2 =
16230     DAG.getNode(ISD::SRL, DL, MVT::i16,
16231                 DAG.getNode(ISD::AND, DL, MVT::i16,
16232                             CWD, DAG.getConstant(0x400, DL, MVT::i16)),
16233                 DAG.getConstant(9, DL, MVT::i8));
16234
16235   SDValue RetVal =
16236     DAG.getNode(ISD::AND, DL, MVT::i16,
16237                 DAG.getNode(ISD::ADD, DL, MVT::i16,
16238                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
16239                             DAG.getConstant(1, DL, MVT::i16)),
16240                 DAG.getConstant(3, DL, MVT::i16));
16241
16242   return DAG.getNode((VT.getSizeInBits() < 16 ?
16243                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
16244 }
16245
16246 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
16247   MVT VT = Op.getSimpleValueType();
16248   EVT OpVT = VT;
16249   unsigned NumBits = VT.getSizeInBits();
16250   SDLoc dl(Op);
16251
16252   Op = Op.getOperand(0);
16253   if (VT == MVT::i8) {
16254     // Zero extend to i32 since there is not an i8 bsr.
16255     OpVT = MVT::i32;
16256     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
16257   }
16258
16259   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
16260   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
16261   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
16262
16263   // If src is zero (i.e. bsr sets ZF), returns NumBits.
16264   SDValue Ops[] = {
16265     Op,
16266     DAG.getConstant(NumBits + NumBits - 1, dl, OpVT),
16267     DAG.getConstant(X86::COND_E, dl, MVT::i8),
16268     Op.getValue(1)
16269   };
16270   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
16271
16272   // Finally xor with NumBits-1.
16273   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op,
16274                    DAG.getConstant(NumBits - 1, dl, OpVT));
16275
16276   if (VT == MVT::i8)
16277     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
16278   return Op;
16279 }
16280
16281 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
16282   MVT VT = Op.getSimpleValueType();
16283   EVT OpVT = VT;
16284   unsigned NumBits = VT.getSizeInBits();
16285   SDLoc dl(Op);
16286
16287   Op = Op.getOperand(0);
16288   if (VT == MVT::i8) {
16289     // Zero extend to i32 since there is not an i8 bsr.
16290     OpVT = MVT::i32;
16291     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
16292   }
16293
16294   // Issue a bsr (scan bits in reverse).
16295   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
16296   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
16297
16298   // And xor with NumBits-1.
16299   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op,
16300                    DAG.getConstant(NumBits - 1, dl, OpVT));
16301
16302   if (VT == MVT::i8)
16303     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
16304   return Op;
16305 }
16306
16307 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
16308   MVT VT = Op.getSimpleValueType();
16309   unsigned NumBits = VT.getSizeInBits();
16310   SDLoc dl(Op);
16311   Op = Op.getOperand(0);
16312
16313   // Issue a bsf (scan bits forward) which also sets EFLAGS.
16314   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
16315   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
16316
16317   // If src is zero (i.e. bsf sets ZF), returns NumBits.
16318   SDValue Ops[] = {
16319     Op,
16320     DAG.getConstant(NumBits, dl, VT),
16321     DAG.getConstant(X86::COND_E, dl, MVT::i8),
16322     Op.getValue(1)
16323   };
16324   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
16325 }
16326
16327 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
16328 // ones, and then concatenate the result back.
16329 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
16330   MVT VT = Op.getSimpleValueType();
16331
16332   assert(VT.is256BitVector() && VT.isInteger() &&
16333          "Unsupported value type for operation");
16334
16335   unsigned NumElems = VT.getVectorNumElements();
16336   SDLoc dl(Op);
16337
16338   // Extract the LHS vectors
16339   SDValue LHS = Op.getOperand(0);
16340   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
16341   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
16342
16343   // Extract the RHS vectors
16344   SDValue RHS = Op.getOperand(1);
16345   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
16346   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
16347
16348   MVT EltVT = VT.getVectorElementType();
16349   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
16350
16351   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
16352                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
16353                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
16354 }
16355
16356 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
16357   if (Op.getValueType() == MVT::i1)
16358     return DAG.getNode(ISD::XOR, SDLoc(Op), Op.getValueType(),
16359                        Op.getOperand(0), Op.getOperand(1));
16360   assert(Op.getSimpleValueType().is256BitVector() &&
16361          Op.getSimpleValueType().isInteger() &&
16362          "Only handle AVX 256-bit vector integer operation");
16363   return Lower256IntArith(Op, DAG);
16364 }
16365
16366 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
16367   if (Op.getValueType() == MVT::i1)
16368     return DAG.getNode(ISD::XOR, SDLoc(Op), Op.getValueType(),
16369                        Op.getOperand(0), Op.getOperand(1));
16370   assert(Op.getSimpleValueType().is256BitVector() &&
16371          Op.getSimpleValueType().isInteger() &&
16372          "Only handle AVX 256-bit vector integer operation");
16373   return Lower256IntArith(Op, DAG);
16374 }
16375
16376 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
16377                         SelectionDAG &DAG) {
16378   SDLoc dl(Op);
16379   MVT VT = Op.getSimpleValueType();
16380
16381   if (VT == MVT::i1)
16382     return DAG.getNode(ISD::AND, dl, VT, Op.getOperand(0), Op.getOperand(1));
16383
16384   // Decompose 256-bit ops into smaller 128-bit ops.
16385   if (VT.is256BitVector() && !Subtarget->hasInt256())
16386     return Lower256IntArith(Op, DAG);
16387
16388   SDValue A = Op.getOperand(0);
16389   SDValue B = Op.getOperand(1);
16390
16391   // Lower v16i8/v32i8 mul as promotion to v8i16/v16i16 vector
16392   // pairs, multiply and truncate.
16393   if (VT == MVT::v16i8 || VT == MVT::v32i8) {
16394     if (Subtarget->hasInt256()) {
16395       if (VT == MVT::v32i8) {
16396         MVT SubVT = MVT::getVectorVT(MVT::i8, VT.getVectorNumElements() / 2);
16397         SDValue Lo = DAG.getIntPtrConstant(0, dl);
16398         SDValue Hi = DAG.getIntPtrConstant(VT.getVectorNumElements() / 2, dl);
16399         SDValue ALo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, A, Lo);
16400         SDValue BLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, B, Lo);
16401         SDValue AHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, A, Hi);
16402         SDValue BHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, B, Hi);
16403         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
16404                            DAG.getNode(ISD::MUL, dl, SubVT, ALo, BLo),
16405                            DAG.getNode(ISD::MUL, dl, SubVT, AHi, BHi));
16406       }
16407
16408       MVT ExVT = MVT::getVectorVT(MVT::i16, VT.getVectorNumElements());
16409       return DAG.getNode(
16410           ISD::TRUNCATE, dl, VT,
16411           DAG.getNode(ISD::MUL, dl, ExVT,
16412                       DAG.getNode(ISD::SIGN_EXTEND, dl, ExVT, A),
16413                       DAG.getNode(ISD::SIGN_EXTEND, dl, ExVT, B)));
16414     }
16415
16416     assert(VT == MVT::v16i8 &&
16417            "Pre-AVX2 support only supports v16i8 multiplication");
16418     MVT ExVT = MVT::v8i16;
16419
16420     // Extract the lo parts and sign extend to i16
16421     SDValue ALo, BLo;
16422     if (Subtarget->hasSSE41()) {
16423       ALo = DAG.getNode(X86ISD::VSEXT, dl, ExVT, A);
16424       BLo = DAG.getNode(X86ISD::VSEXT, dl, ExVT, B);
16425     } else {
16426       const int ShufMask[] = {-1, 0, -1, 1, -1, 2, -1, 3,
16427                               -1, 4, -1, 5, -1, 6, -1, 7};
16428       ALo = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
16429       BLo = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
16430       ALo = DAG.getBitcast(ExVT, ALo);
16431       BLo = DAG.getBitcast(ExVT, BLo);
16432       ALo = DAG.getNode(ISD::SRA, dl, ExVT, ALo, DAG.getConstant(8, dl, ExVT));
16433       BLo = DAG.getNode(ISD::SRA, dl, ExVT, BLo, DAG.getConstant(8, dl, ExVT));
16434     }
16435
16436     // Extract the hi parts and sign extend to i16
16437     SDValue AHi, BHi;
16438     if (Subtarget->hasSSE41()) {
16439       const int ShufMask[] = {8,  9,  10, 11, 12, 13, 14, 15,
16440                               -1, -1, -1, -1, -1, -1, -1, -1};
16441       AHi = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
16442       BHi = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
16443       AHi = DAG.getNode(X86ISD::VSEXT, dl, ExVT, AHi);
16444       BHi = DAG.getNode(X86ISD::VSEXT, dl, ExVT, BHi);
16445     } else {
16446       const int ShufMask[] = {-1, 8,  -1, 9,  -1, 10, -1, 11,
16447                               -1, 12, -1, 13, -1, 14, -1, 15};
16448       AHi = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
16449       BHi = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
16450       AHi = DAG.getBitcast(ExVT, AHi);
16451       BHi = DAG.getBitcast(ExVT, BHi);
16452       AHi = DAG.getNode(ISD::SRA, dl, ExVT, AHi, DAG.getConstant(8, dl, ExVT));
16453       BHi = DAG.getNode(ISD::SRA, dl, ExVT, BHi, DAG.getConstant(8, dl, ExVT));
16454     }
16455
16456     // Multiply, mask the lower 8bits of the lo/hi results and pack
16457     SDValue RLo = DAG.getNode(ISD::MUL, dl, ExVT, ALo, BLo);
16458     SDValue RHi = DAG.getNode(ISD::MUL, dl, ExVT, AHi, BHi);
16459     RLo = DAG.getNode(ISD::AND, dl, ExVT, RLo, DAG.getConstant(255, dl, ExVT));
16460     RHi = DAG.getNode(ISD::AND, dl, ExVT, RHi, DAG.getConstant(255, dl, ExVT));
16461     return DAG.getNode(X86ISD::PACKUS, dl, VT, RLo, RHi);
16462   }
16463
16464   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
16465   if (VT == MVT::v4i32) {
16466     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
16467            "Should not custom lower when pmuldq is available!");
16468
16469     // Extract the odd parts.
16470     static const int UnpackMask[] = { 1, -1, 3, -1 };
16471     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
16472     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
16473
16474     // Multiply the even parts.
16475     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
16476     // Now multiply odd parts.
16477     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
16478
16479     Evens = DAG.getBitcast(VT, Evens);
16480     Odds = DAG.getBitcast(VT, Odds);
16481
16482     // Merge the two vectors back together with a shuffle. This expands into 2
16483     // shuffles.
16484     static const int ShufMask[] = { 0, 4, 2, 6 };
16485     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
16486   }
16487
16488   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
16489          "Only know how to lower V2I64/V4I64/V8I64 multiply");
16490
16491   //  Ahi = psrlqi(a, 32);
16492   //  Bhi = psrlqi(b, 32);
16493   //
16494   //  AloBlo = pmuludq(a, b);
16495   //  AloBhi = pmuludq(a, Bhi);
16496   //  AhiBlo = pmuludq(Ahi, b);
16497
16498   //  AloBhi = psllqi(AloBhi, 32);
16499   //  AhiBlo = psllqi(AhiBlo, 32);
16500   //  return AloBlo + AloBhi + AhiBlo;
16501
16502   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
16503   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
16504
16505   SDValue AhiBlo = Ahi;
16506   SDValue AloBhi = Bhi;
16507   // Bit cast to 32-bit vectors for MULUDQ
16508   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
16509                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
16510   A = DAG.getBitcast(MulVT, A);
16511   B = DAG.getBitcast(MulVT, B);
16512   Ahi = DAG.getBitcast(MulVT, Ahi);
16513   Bhi = DAG.getBitcast(MulVT, Bhi);
16514
16515   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
16516   // After shifting right const values the result may be all-zero.
16517   if (!ISD::isBuildVectorAllZeros(Ahi.getNode())) {
16518     AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
16519     AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
16520   }
16521   if (!ISD::isBuildVectorAllZeros(Bhi.getNode())) {
16522     AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
16523     AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
16524   }
16525
16526   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
16527   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
16528 }
16529
16530 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
16531   assert(Subtarget->isTargetWin64() && "Unexpected target");
16532   EVT VT = Op.getValueType();
16533   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
16534          "Unexpected return type for lowering");
16535
16536   RTLIB::Libcall LC;
16537   bool isSigned;
16538   switch (Op->getOpcode()) {
16539   default: llvm_unreachable("Unexpected request for libcall!");
16540   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
16541   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
16542   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
16543   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
16544   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
16545   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
16546   }
16547
16548   SDLoc dl(Op);
16549   SDValue InChain = DAG.getEntryNode();
16550
16551   TargetLowering::ArgListTy Args;
16552   TargetLowering::ArgListEntry Entry;
16553   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
16554     EVT ArgVT = Op->getOperand(i).getValueType();
16555     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
16556            "Unexpected argument type for lowering");
16557     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
16558     Entry.Node = StackPtr;
16559     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
16560                            false, false, 16);
16561     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
16562     Entry.Ty = PointerType::get(ArgTy,0);
16563     Entry.isSExt = false;
16564     Entry.isZExt = false;
16565     Args.push_back(Entry);
16566   }
16567
16568   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
16569                                          getPointerTy());
16570
16571   TargetLowering::CallLoweringInfo CLI(DAG);
16572   CLI.setDebugLoc(dl).setChain(InChain)
16573     .setCallee(getLibcallCallingConv(LC),
16574                static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
16575                Callee, std::move(Args), 0)
16576     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
16577
16578   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
16579   return DAG.getBitcast(VT, CallInfo.first);
16580 }
16581
16582 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
16583                              SelectionDAG &DAG) {
16584   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
16585   EVT VT = Op0.getValueType();
16586   SDLoc dl(Op);
16587
16588   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
16589          (VT == MVT::v8i32 && Subtarget->hasInt256()));
16590
16591   // PMULxD operations multiply each even value (starting at 0) of LHS with
16592   // the related value of RHS and produce a widen result.
16593   // E.g., PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
16594   // => <2 x i64> <ae|cg>
16595   //
16596   // In other word, to have all the results, we need to perform two PMULxD:
16597   // 1. one with the even values.
16598   // 2. one with the odd values.
16599   // To achieve #2, with need to place the odd values at an even position.
16600   //
16601   // Place the odd value at an even position (basically, shift all values 1
16602   // step to the left):
16603   const int Mask[] = {1, -1, 3, -1, 5, -1, 7, -1};
16604   // <a|b|c|d> => <b|undef|d|undef>
16605   SDValue Odd0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
16606   // <e|f|g|h> => <f|undef|h|undef>
16607   SDValue Odd1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
16608
16609   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
16610   // ints.
16611   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
16612   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
16613   unsigned Opcode =
16614       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
16615   // PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
16616   // => <2 x i64> <ae|cg>
16617   SDValue Mul1 = DAG.getBitcast(VT, DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
16618   // PMULUDQ <4 x i32> <b|undef|d|undef>, <4 x i32> <f|undef|h|undef>
16619   // => <2 x i64> <bf|dh>
16620   SDValue Mul2 = DAG.getBitcast(VT, DAG.getNode(Opcode, dl, MulVT, Odd0, Odd1));
16621
16622   // Shuffle it back into the right order.
16623   SDValue Highs, Lows;
16624   if (VT == MVT::v8i32) {
16625     const int HighMask[] = {1, 9, 3, 11, 5, 13, 7, 15};
16626     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
16627     const int LowMask[] = {0, 8, 2, 10, 4, 12, 6, 14};
16628     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
16629   } else {
16630     const int HighMask[] = {1, 5, 3, 7};
16631     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
16632     const int LowMask[] = {0, 4, 2, 6};
16633     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
16634   }
16635
16636   // If we have a signed multiply but no PMULDQ fix up the high parts of a
16637   // unsigned multiply.
16638   if (IsSigned && !Subtarget->hasSSE41()) {
16639     SDValue ShAmt =
16640         DAG.getConstant(31, dl,
16641                         DAG.getTargetLoweringInfo().getShiftAmountTy(VT));
16642     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
16643                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
16644     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
16645                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
16646
16647     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
16648     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
16649   }
16650
16651   // The first result of MUL_LOHI is actually the low value, followed by the
16652   // high value.
16653   SDValue Ops[] = {Lows, Highs};
16654   return DAG.getMergeValues(Ops, dl);
16655 }
16656
16657 // Return true if the requred (according to Opcode) shift-imm form is natively
16658 // supported by the Subtarget
16659 static bool SupportedVectorShiftWithImm(MVT VT, const X86Subtarget *Subtarget,
16660                                         unsigned Opcode) {
16661   if (VT.getScalarSizeInBits() < 16)
16662     return false;
16663
16664   if (VT.is512BitVector() &&
16665       (VT.getScalarSizeInBits() > 16 || Subtarget->hasBWI()))
16666     return true;
16667
16668   bool LShift = VT.is128BitVector() ||
16669     (VT.is256BitVector() && Subtarget->hasInt256());
16670
16671   bool AShift = LShift && (Subtarget->hasVLX() ||
16672     (VT != MVT::v2i64 && VT != MVT::v4i64));
16673   return (Opcode == ISD::SRA) ? AShift : LShift;
16674 }
16675
16676 // The shift amount is a variable, but it is the same for all vector lanes.
16677 // These instrcutions are defined together with shift-immediate.
16678 static
16679 bool SupportedVectorShiftWithBaseAmnt(MVT VT, const X86Subtarget *Subtarget,
16680                                       unsigned Opcode) {
16681   return SupportedVectorShiftWithImm(VT, Subtarget, Opcode);
16682 }
16683
16684 // Return true if the requred (according to Opcode) variable-shift form is
16685 // natively supported by the Subtarget
16686 static bool SupportedVectorVarShift(MVT VT, const X86Subtarget *Subtarget,
16687                                     unsigned Opcode) {
16688
16689   if (!Subtarget->hasInt256() || VT.getScalarSizeInBits() < 16)
16690     return false;
16691
16692   // vXi16 supported only on AVX-512, BWI
16693   if (VT.getScalarSizeInBits() == 16 && !Subtarget->hasBWI())
16694     return false;
16695
16696   if (VT.is512BitVector() || Subtarget->hasVLX())
16697     return true;
16698
16699   bool LShift = VT.is128BitVector() || VT.is256BitVector();
16700   bool AShift = LShift &&  VT != MVT::v2i64 && VT != MVT::v4i64;
16701   return (Opcode == ISD::SRA) ? AShift : LShift;
16702 }
16703
16704 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
16705                                          const X86Subtarget *Subtarget) {
16706   MVT VT = Op.getSimpleValueType();
16707   SDLoc dl(Op);
16708   SDValue R = Op.getOperand(0);
16709   SDValue Amt = Op.getOperand(1);
16710
16711   unsigned X86Opc = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHLI :
16712     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRLI : X86ISD::VSRAI;
16713
16714   // Optimize shl/srl/sra with constant shift amount.
16715   if (auto *BVAmt = dyn_cast<BuildVectorSDNode>(Amt)) {
16716     if (auto *ShiftConst = BVAmt->getConstantSplatNode()) {
16717       uint64_t ShiftAmt = ShiftConst->getZExtValue();
16718
16719       if (SupportedVectorShiftWithImm(VT, Subtarget, Op.getOpcode()))
16720         return getTargetVShiftByConstNode(X86Opc, dl, VT, R, ShiftAmt, DAG);
16721
16722       if (VT == MVT::v16i8 || (Subtarget->hasInt256() && VT == MVT::v32i8)) {
16723         unsigned NumElts = VT.getVectorNumElements();
16724         MVT ShiftVT = MVT::getVectorVT(MVT::i16, NumElts / 2);
16725
16726         if (Op.getOpcode() == ISD::SHL) {
16727           // Simple i8 add case
16728           if (ShiftAmt == 1)
16729             return DAG.getNode(ISD::ADD, dl, VT, R, R);
16730
16731           // Make a large shift.
16732           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, ShiftVT,
16733                                                    R, ShiftAmt, DAG);
16734           SHL = DAG.getBitcast(VT, SHL);
16735           // Zero out the rightmost bits.
16736           SmallVector<SDValue, 32> V(
16737               NumElts, DAG.getConstant(uint8_t(-1U << ShiftAmt), dl, MVT::i8));
16738           return DAG.getNode(ISD::AND, dl, VT, SHL,
16739                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
16740         }
16741         if (Op.getOpcode() == ISD::SRL) {
16742           // Make a large shift.
16743           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, ShiftVT,
16744                                                    R, ShiftAmt, DAG);
16745           SRL = DAG.getBitcast(VT, SRL);
16746           // Zero out the leftmost bits.
16747           SmallVector<SDValue, 32> V(
16748               NumElts, DAG.getConstant(uint8_t(-1U) >> ShiftAmt, dl, MVT::i8));
16749           return DAG.getNode(ISD::AND, dl, VT, SRL,
16750                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
16751         }
16752         if (Op.getOpcode() == ISD::SRA) {
16753           if (ShiftAmt == 7) {
16754             // R s>> 7  ===  R s< 0
16755             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16756             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
16757           }
16758
16759           // R s>> a === ((R u>> a) ^ m) - m
16760           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
16761           SmallVector<SDValue, 32> V(NumElts,
16762                                      DAG.getConstant(128 >> ShiftAmt, dl,
16763                                                      MVT::i8));
16764           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
16765           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
16766           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
16767           return Res;
16768         }
16769         llvm_unreachable("Unknown shift opcode.");
16770       }
16771     }
16772   }
16773
16774   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
16775   if (!Subtarget->is64Bit() &&
16776       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
16777       Amt.getOpcode() == ISD::BITCAST &&
16778       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
16779     Amt = Amt.getOperand(0);
16780     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
16781                      VT.getVectorNumElements();
16782     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
16783     uint64_t ShiftAmt = 0;
16784     for (unsigned i = 0; i != Ratio; ++i) {
16785       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
16786       if (!C)
16787         return SDValue();
16788       // 6 == Log2(64)
16789       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
16790     }
16791     // Check remaining shift amounts.
16792     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
16793       uint64_t ShAmt = 0;
16794       for (unsigned j = 0; j != Ratio; ++j) {
16795         ConstantSDNode *C =
16796           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
16797         if (!C)
16798           return SDValue();
16799         // 6 == Log2(64)
16800         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
16801       }
16802       if (ShAmt != ShiftAmt)
16803         return SDValue();
16804     }
16805     return getTargetVShiftByConstNode(X86Opc, dl, VT, R, ShiftAmt, DAG);
16806   }
16807
16808   return SDValue();
16809 }
16810
16811 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
16812                                         const X86Subtarget* Subtarget) {
16813   MVT VT = Op.getSimpleValueType();
16814   SDLoc dl(Op);
16815   SDValue R = Op.getOperand(0);
16816   SDValue Amt = Op.getOperand(1);
16817
16818   unsigned X86OpcI = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHLI :
16819     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRLI : X86ISD::VSRAI;
16820
16821   unsigned X86OpcV = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHL :
16822     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRL : X86ISD::VSRA;
16823
16824   if (SupportedVectorShiftWithBaseAmnt(VT, Subtarget, Op.getOpcode())) {
16825     SDValue BaseShAmt;
16826     EVT EltVT = VT.getVectorElementType();
16827
16828     if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Amt)) {
16829       // Check if this build_vector node is doing a splat.
16830       // If so, then set BaseShAmt equal to the splat value.
16831       BaseShAmt = BV->getSplatValue();
16832       if (BaseShAmt && BaseShAmt.getOpcode() == ISD::UNDEF)
16833         BaseShAmt = SDValue();
16834     } else {
16835       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
16836         Amt = Amt.getOperand(0);
16837
16838       ShuffleVectorSDNode *SVN = dyn_cast<ShuffleVectorSDNode>(Amt);
16839       if (SVN && SVN->isSplat()) {
16840         unsigned SplatIdx = (unsigned)SVN->getSplatIndex();
16841         SDValue InVec = Amt.getOperand(0);
16842         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
16843           assert((SplatIdx < InVec.getValueType().getVectorNumElements()) &&
16844                  "Unexpected shuffle index found!");
16845           BaseShAmt = InVec.getOperand(SplatIdx);
16846         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
16847            if (ConstantSDNode *C =
16848                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
16849              if (C->getZExtValue() == SplatIdx)
16850                BaseShAmt = InVec.getOperand(1);
16851            }
16852         }
16853
16854         if (!BaseShAmt)
16855           // Avoid introducing an extract element from a shuffle.
16856           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InVec,
16857                                   DAG.getIntPtrConstant(SplatIdx, dl));
16858       }
16859     }
16860
16861     if (BaseShAmt.getNode()) {
16862       assert(EltVT.bitsLE(MVT::i64) && "Unexpected element type!");
16863       if (EltVT != MVT::i64 && EltVT.bitsGT(MVT::i32))
16864         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, BaseShAmt);
16865       else if (EltVT.bitsLT(MVT::i32))
16866         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
16867
16868       return getTargetVShiftNode(X86OpcI, dl, VT, R, BaseShAmt, DAG);
16869     }
16870   }
16871
16872   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
16873   if (!Subtarget->is64Bit() && VT == MVT::v2i64  &&
16874       Amt.getOpcode() == ISD::BITCAST &&
16875       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
16876     Amt = Amt.getOperand(0);
16877     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
16878                      VT.getVectorNumElements();
16879     std::vector<SDValue> Vals(Ratio);
16880     for (unsigned i = 0; i != Ratio; ++i)
16881       Vals[i] = Amt.getOperand(i);
16882     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
16883       for (unsigned j = 0; j != Ratio; ++j)
16884         if (Vals[j] != Amt.getOperand(i + j))
16885           return SDValue();
16886     }
16887     return DAG.getNode(X86OpcV, dl, VT, R, Op.getOperand(1));
16888   }
16889   return SDValue();
16890 }
16891
16892 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
16893                           SelectionDAG &DAG) {
16894   MVT VT = Op.getSimpleValueType();
16895   SDLoc dl(Op);
16896   SDValue R = Op.getOperand(0);
16897   SDValue Amt = Op.getOperand(1);
16898
16899   assert(VT.isVector() && "Custom lowering only for vector shifts!");
16900   assert(Subtarget->hasSSE2() && "Only custom lower when we have SSE2!");
16901
16902   if (SDValue V = LowerScalarImmediateShift(Op, DAG, Subtarget))
16903     return V;
16904
16905   if (SDValue V = LowerScalarVariableShift(Op, DAG, Subtarget))
16906       return V;
16907
16908   if (SupportedVectorVarShift(VT, Subtarget, Op.getOpcode()))
16909     return Op;
16910
16911   // 2i64 vector logical shifts can efficiently avoid scalarization - do the
16912   // shifts per-lane and then shuffle the partial results back together.
16913   if (VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) {
16914     // Splat the shift amounts so the scalar shifts above will catch it.
16915     SDValue Amt0 = DAG.getVectorShuffle(VT, dl, Amt, Amt, {0, 0});
16916     SDValue Amt1 = DAG.getVectorShuffle(VT, dl, Amt, Amt, {1, 1});
16917     SDValue R0 = DAG.getNode(Op->getOpcode(), dl, VT, R, Amt0);
16918     SDValue R1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Amt1);
16919     return DAG.getVectorShuffle(VT, dl, R0, R1, {0, 3});
16920   }
16921
16922   // If possible, lower this packed shift into a vector multiply instead of
16923   // expanding it into a sequence of scalar shifts.
16924   // Do this only if the vector shift count is a constant build_vector.
16925   if (Op.getOpcode() == ISD::SHL &&
16926       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
16927        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
16928       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
16929     SmallVector<SDValue, 8> Elts;
16930     EVT SVT = VT.getScalarType();
16931     unsigned SVTBits = SVT.getSizeInBits();
16932     const APInt &One = APInt(SVTBits, 1);
16933     unsigned NumElems = VT.getVectorNumElements();
16934
16935     for (unsigned i=0; i !=NumElems; ++i) {
16936       SDValue Op = Amt->getOperand(i);
16937       if (Op->getOpcode() == ISD::UNDEF) {
16938         Elts.push_back(Op);
16939         continue;
16940       }
16941
16942       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
16943       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
16944       uint64_t ShAmt = C.getZExtValue();
16945       if (ShAmt >= SVTBits) {
16946         Elts.push_back(DAG.getUNDEF(SVT));
16947         continue;
16948       }
16949       Elts.push_back(DAG.getConstant(One.shl(ShAmt), dl, SVT));
16950     }
16951     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
16952     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
16953   }
16954
16955   // Lower SHL with variable shift amount.
16956   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
16957     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, dl, VT));
16958
16959     Op = DAG.getNode(ISD::ADD, dl, VT, Op,
16960                      DAG.getConstant(0x3f800000U, dl, VT));
16961     Op = DAG.getBitcast(MVT::v4f32, Op);
16962     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
16963     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
16964   }
16965
16966   // If possible, lower this shift as a sequence of two shifts by
16967   // constant plus a MOVSS/MOVSD instead of scalarizing it.
16968   // Example:
16969   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
16970   //
16971   // Could be rewritten as:
16972   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
16973   //
16974   // The advantage is that the two shifts from the example would be
16975   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
16976   // the vector shift into four scalar shifts plus four pairs of vector
16977   // insert/extract.
16978   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
16979       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
16980     unsigned TargetOpcode = X86ISD::MOVSS;
16981     bool CanBeSimplified;
16982     // The splat value for the first packed shift (the 'X' from the example).
16983     SDValue Amt1 = Amt->getOperand(0);
16984     // The splat value for the second packed shift (the 'Y' from the example).
16985     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
16986                                         Amt->getOperand(2);
16987
16988     // See if it is possible to replace this node with a sequence of
16989     // two shifts followed by a MOVSS/MOVSD
16990     if (VT == MVT::v4i32) {
16991       // Check if it is legal to use a MOVSS.
16992       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
16993                         Amt2 == Amt->getOperand(3);
16994       if (!CanBeSimplified) {
16995         // Otherwise, check if we can still simplify this node using a MOVSD.
16996         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
16997                           Amt->getOperand(2) == Amt->getOperand(3);
16998         TargetOpcode = X86ISD::MOVSD;
16999         Amt2 = Amt->getOperand(2);
17000       }
17001     } else {
17002       // Do similar checks for the case where the machine value type
17003       // is MVT::v8i16.
17004       CanBeSimplified = Amt1 == Amt->getOperand(1);
17005       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
17006         CanBeSimplified = Amt2 == Amt->getOperand(i);
17007
17008       if (!CanBeSimplified) {
17009         TargetOpcode = X86ISD::MOVSD;
17010         CanBeSimplified = true;
17011         Amt2 = Amt->getOperand(4);
17012         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
17013           CanBeSimplified = Amt1 == Amt->getOperand(i);
17014         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
17015           CanBeSimplified = Amt2 == Amt->getOperand(j);
17016       }
17017     }
17018
17019     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
17020         isa<ConstantSDNode>(Amt2)) {
17021       // Replace this node with two shifts followed by a MOVSS/MOVSD.
17022       EVT CastVT = MVT::v4i32;
17023       SDValue Splat1 =
17024         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), dl, VT);
17025       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
17026       SDValue Splat2 =
17027         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), dl, VT);
17028       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
17029       if (TargetOpcode == X86ISD::MOVSD)
17030         CastVT = MVT::v2i64;
17031       SDValue BitCast1 = DAG.getBitcast(CastVT, Shift1);
17032       SDValue BitCast2 = DAG.getBitcast(CastVT, Shift2);
17033       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
17034                                             BitCast1, DAG);
17035       return DAG.getBitcast(VT, Result);
17036     }
17037   }
17038
17039   if (VT == MVT::v16i8 || (VT == MVT::v32i8 && Subtarget->hasInt256())) {
17040     MVT ExtVT = MVT::getVectorVT(MVT::i16, VT.getVectorNumElements() / 2);
17041     unsigned ShiftOpcode = Op->getOpcode();
17042
17043     auto SignBitSelect = [&](MVT SelVT, SDValue Sel, SDValue V0, SDValue V1) {
17044       // On SSE41 targets we make use of the fact that VSELECT lowers
17045       // to PBLENDVB which selects bytes based just on the sign bit.
17046       if (Subtarget->hasSSE41()) {
17047         V0 = DAG.getBitcast(VT, V0);
17048         V1 = DAG.getBitcast(VT, V1);
17049         Sel = DAG.getBitcast(VT, Sel);
17050         return DAG.getBitcast(SelVT,
17051                               DAG.getNode(ISD::VSELECT, dl, VT, Sel, V0, V1));
17052       }
17053       // On pre-SSE41 targets we test for the sign bit by comparing to
17054       // zero - a negative value will set all bits of the lanes to true
17055       // and VSELECT uses that in its OR(AND(V0,C),AND(V1,~C)) lowering.
17056       SDValue Z = getZeroVector(SelVT, Subtarget, DAG, dl);
17057       SDValue C = DAG.getNode(X86ISD::PCMPGT, dl, SelVT, Z, Sel);
17058       return DAG.getNode(ISD::VSELECT, dl, SelVT, C, V0, V1);
17059     };
17060
17061     // Turn 'a' into a mask suitable for VSELECT: a = a << 5;
17062     // We can safely do this using i16 shifts as we're only interested in
17063     // the 3 lower bits of each byte.
17064     Amt = DAG.getBitcast(ExtVT, Amt);
17065     Amt = DAG.getNode(ISD::SHL, dl, ExtVT, Amt, DAG.getConstant(5, dl, ExtVT));
17066     Amt = DAG.getBitcast(VT, Amt);
17067
17068     if (Op->getOpcode() == ISD::SHL || Op->getOpcode() == ISD::SRL) {
17069       // r = VSELECT(r, shift(r, 4), a);
17070       SDValue M =
17071           DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(4, dl, VT));
17072       R = SignBitSelect(VT, Amt, M, R);
17073
17074       // a += a
17075       Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
17076
17077       // r = VSELECT(r, shift(r, 2), a);
17078       M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(2, dl, VT));
17079       R = SignBitSelect(VT, Amt, M, R);
17080
17081       // a += a
17082       Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
17083
17084       // return VSELECT(r, shift(r, 1), a);
17085       M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(1, dl, VT));
17086       R = SignBitSelect(VT, Amt, M, R);
17087       return R;
17088     }
17089
17090     if (Op->getOpcode() == ISD::SRA) {
17091       // For SRA we need to unpack each byte to the higher byte of a i16 vector
17092       // so we can correctly sign extend. We don't care what happens to the
17093       // lower byte.
17094       SDValue ALo = DAG.getNode(X86ISD::UNPCKL, dl, VT, DAG.getUNDEF(VT), Amt);
17095       SDValue AHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, DAG.getUNDEF(VT), Amt);
17096       SDValue RLo = DAG.getNode(X86ISD::UNPCKL, dl, VT, DAG.getUNDEF(VT), R);
17097       SDValue RHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, DAG.getUNDEF(VT), R);
17098       ALo = DAG.getBitcast(ExtVT, ALo);
17099       AHi = DAG.getBitcast(ExtVT, AHi);
17100       RLo = DAG.getBitcast(ExtVT, RLo);
17101       RHi = DAG.getBitcast(ExtVT, RHi);
17102
17103       // r = VSELECT(r, shift(r, 4), a);
17104       SDValue MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
17105                                 DAG.getConstant(4, dl, ExtVT));
17106       SDValue MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
17107                                 DAG.getConstant(4, dl, ExtVT));
17108       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
17109       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
17110
17111       // a += a
17112       ALo = DAG.getNode(ISD::ADD, dl, ExtVT, ALo, ALo);
17113       AHi = DAG.getNode(ISD::ADD, dl, ExtVT, AHi, AHi);
17114
17115       // r = VSELECT(r, shift(r, 2), a);
17116       MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
17117                         DAG.getConstant(2, dl, ExtVT));
17118       MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
17119                         DAG.getConstant(2, dl, ExtVT));
17120       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
17121       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
17122
17123       // a += a
17124       ALo = DAG.getNode(ISD::ADD, dl, ExtVT, ALo, ALo);
17125       AHi = DAG.getNode(ISD::ADD, dl, ExtVT, AHi, AHi);
17126
17127       // r = VSELECT(r, shift(r, 1), a);
17128       MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
17129                         DAG.getConstant(1, dl, ExtVT));
17130       MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
17131                         DAG.getConstant(1, dl, ExtVT));
17132       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
17133       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
17134
17135       // Logical shift the result back to the lower byte, leaving a zero upper
17136       // byte
17137       // meaning that we can safely pack with PACKUSWB.
17138       RLo =
17139           DAG.getNode(ISD::SRL, dl, ExtVT, RLo, DAG.getConstant(8, dl, ExtVT));
17140       RHi =
17141           DAG.getNode(ISD::SRL, dl, ExtVT, RHi, DAG.getConstant(8, dl, ExtVT));
17142       return DAG.getNode(X86ISD::PACKUS, dl, VT, RLo, RHi);
17143     }
17144   }
17145
17146   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
17147   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
17148   // solution better.
17149   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
17150     MVT ExtVT = MVT::v8i32;
17151     unsigned ExtOpc =
17152         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
17153     R = DAG.getNode(ExtOpc, dl, ExtVT, R);
17154     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, ExtVT, Amt);
17155     return DAG.getNode(ISD::TRUNCATE, dl, VT,
17156                        DAG.getNode(Op.getOpcode(), dl, ExtVT, R, Amt));
17157   }
17158
17159   if (Subtarget->hasInt256() && VT == MVT::v16i16) {
17160     MVT ExtVT = MVT::v8i32;
17161     SDValue Z = getZeroVector(VT, Subtarget, DAG, dl);
17162     SDValue ALo = DAG.getNode(X86ISD::UNPCKL, dl, VT, Amt, Z);
17163     SDValue AHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, Amt, Z);
17164     SDValue RLo = DAG.getNode(X86ISD::UNPCKL, dl, VT, R, R);
17165     SDValue RHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, R, R);
17166     ALo = DAG.getBitcast(ExtVT, ALo);
17167     AHi = DAG.getBitcast(ExtVT, AHi);
17168     RLo = DAG.getBitcast(ExtVT, RLo);
17169     RHi = DAG.getBitcast(ExtVT, RHi);
17170     SDValue Lo = DAG.getNode(Op.getOpcode(), dl, ExtVT, RLo, ALo);
17171     SDValue Hi = DAG.getNode(Op.getOpcode(), dl, ExtVT, RHi, AHi);
17172     Lo = DAG.getNode(ISD::SRL, dl, ExtVT, Lo, DAG.getConstant(16, dl, ExtVT));
17173     Hi = DAG.getNode(ISD::SRL, dl, ExtVT, Hi, DAG.getConstant(16, dl, ExtVT));
17174     return DAG.getNode(X86ISD::PACKUS, dl, VT, Lo, Hi);
17175   }
17176
17177   if (VT == MVT::v8i16) {
17178     unsigned ShiftOpcode = Op->getOpcode();
17179
17180     auto SignBitSelect = [&](SDValue Sel, SDValue V0, SDValue V1) {
17181       // On SSE41 targets we make use of the fact that VSELECT lowers
17182       // to PBLENDVB which selects bytes based just on the sign bit.
17183       if (Subtarget->hasSSE41()) {
17184         MVT ExtVT = MVT::getVectorVT(MVT::i8, VT.getVectorNumElements() * 2);
17185         V0 = DAG.getBitcast(ExtVT, V0);
17186         V1 = DAG.getBitcast(ExtVT, V1);
17187         Sel = DAG.getBitcast(ExtVT, Sel);
17188         return DAG.getBitcast(
17189             VT, DAG.getNode(ISD::VSELECT, dl, ExtVT, Sel, V0, V1));
17190       }
17191       // On pre-SSE41 targets we splat the sign bit - a negative value will
17192       // set all bits of the lanes to true and VSELECT uses that in
17193       // its OR(AND(V0,C),AND(V1,~C)) lowering.
17194       SDValue C =
17195           DAG.getNode(ISD::SRA, dl, VT, Sel, DAG.getConstant(15, dl, VT));
17196       return DAG.getNode(ISD::VSELECT, dl, VT, C, V0, V1);
17197     };
17198
17199     // Turn 'a' into a mask suitable for VSELECT: a = a << 12;
17200     if (Subtarget->hasSSE41()) {
17201       // On SSE41 targets we need to replicate the shift mask in both
17202       // bytes for PBLENDVB.
17203       Amt = DAG.getNode(
17204           ISD::OR, dl, VT,
17205           DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(4, dl, VT)),
17206           DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(12, dl, VT)));
17207     } else {
17208       Amt = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(12, dl, VT));
17209     }
17210
17211     // r = VSELECT(r, shift(r, 8), a);
17212     SDValue M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(8, dl, VT));
17213     R = SignBitSelect(Amt, M, R);
17214
17215     // a += a
17216     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
17217
17218     // r = VSELECT(r, shift(r, 4), a);
17219     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(4, dl, VT));
17220     R = SignBitSelect(Amt, M, R);
17221
17222     // a += a
17223     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
17224
17225     // r = VSELECT(r, shift(r, 2), a);
17226     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(2, dl, VT));
17227     R = SignBitSelect(Amt, M, R);
17228
17229     // a += a
17230     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
17231
17232     // return VSELECT(r, shift(r, 1), a);
17233     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(1, dl, VT));
17234     R = SignBitSelect(Amt, M, R);
17235     return R;
17236   }
17237
17238   // Decompose 256-bit shifts into smaller 128-bit shifts.
17239   if (VT.is256BitVector()) {
17240     unsigned NumElems = VT.getVectorNumElements();
17241     MVT EltVT = VT.getVectorElementType();
17242     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
17243
17244     // Extract the two vectors
17245     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
17246     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
17247
17248     // Recreate the shift amount vectors
17249     SDValue Amt1, Amt2;
17250     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
17251       // Constant shift amount
17252       SmallVector<SDValue, 8> Ops(Amt->op_begin(), Amt->op_begin() + NumElems);
17253       ArrayRef<SDValue> Amt1Csts = makeArrayRef(Ops).slice(0, NumElems / 2);
17254       ArrayRef<SDValue> Amt2Csts = makeArrayRef(Ops).slice(NumElems / 2);
17255
17256       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
17257       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
17258     } else {
17259       // Variable shift amount
17260       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
17261       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
17262     }
17263
17264     // Issue new vector shifts for the smaller types
17265     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
17266     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
17267
17268     // Concatenate the result back
17269     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
17270   }
17271
17272   return SDValue();
17273 }
17274
17275 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
17276   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
17277   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
17278   // looks for this combo and may remove the "setcc" instruction if the "setcc"
17279   // has only one use.
17280   SDNode *N = Op.getNode();
17281   SDValue LHS = N->getOperand(0);
17282   SDValue RHS = N->getOperand(1);
17283   unsigned BaseOp = 0;
17284   unsigned Cond = 0;
17285   SDLoc DL(Op);
17286   switch (Op.getOpcode()) {
17287   default: llvm_unreachable("Unknown ovf instruction!");
17288   case ISD::SADDO:
17289     // A subtract of one will be selected as a INC. Note that INC doesn't
17290     // set CF, so we can't do this for UADDO.
17291     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
17292       if (C->isOne()) {
17293         BaseOp = X86ISD::INC;
17294         Cond = X86::COND_O;
17295         break;
17296       }
17297     BaseOp = X86ISD::ADD;
17298     Cond = X86::COND_O;
17299     break;
17300   case ISD::UADDO:
17301     BaseOp = X86ISD::ADD;
17302     Cond = X86::COND_B;
17303     break;
17304   case ISD::SSUBO:
17305     // A subtract of one will be selected as a DEC. Note that DEC doesn't
17306     // set CF, so we can't do this for USUBO.
17307     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
17308       if (C->isOne()) {
17309         BaseOp = X86ISD::DEC;
17310         Cond = X86::COND_O;
17311         break;
17312       }
17313     BaseOp = X86ISD::SUB;
17314     Cond = X86::COND_O;
17315     break;
17316   case ISD::USUBO:
17317     BaseOp = X86ISD::SUB;
17318     Cond = X86::COND_B;
17319     break;
17320   case ISD::SMULO:
17321     BaseOp = N->getValueType(0) == MVT::i8 ? X86ISD::SMUL8 : X86ISD::SMUL;
17322     Cond = X86::COND_O;
17323     break;
17324   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
17325     if (N->getValueType(0) == MVT::i8) {
17326       BaseOp = X86ISD::UMUL8;
17327       Cond = X86::COND_O;
17328       break;
17329     }
17330     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
17331                                  MVT::i32);
17332     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
17333
17334     SDValue SetCC =
17335       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17336                   DAG.getConstant(X86::COND_O, DL, MVT::i32),
17337                   SDValue(Sum.getNode(), 2));
17338
17339     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
17340   }
17341   }
17342
17343   // Also sets EFLAGS.
17344   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
17345   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
17346
17347   SDValue SetCC =
17348     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
17349                 DAG.getConstant(Cond, DL, MVT::i32),
17350                 SDValue(Sum.getNode(), 1));
17351
17352   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
17353 }
17354
17355 /// Returns true if the operand type is exactly twice the native width, and
17356 /// the corresponding cmpxchg8b or cmpxchg16b instruction is available.
17357 /// Used to know whether to use cmpxchg8/16b when expanding atomic operations
17358 /// (otherwise we leave them alone to become __sync_fetch_and_... calls).
17359 bool X86TargetLowering::needsCmpXchgNb(const Type *MemType) const {
17360   unsigned OpWidth = MemType->getPrimitiveSizeInBits();
17361
17362   if (OpWidth == 64)
17363     return !Subtarget->is64Bit(); // FIXME this should be Subtarget.hasCmpxchg8b
17364   else if (OpWidth == 128)
17365     return Subtarget->hasCmpxchg16b();
17366   else
17367     return false;
17368 }
17369
17370 bool X86TargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
17371   return needsCmpXchgNb(SI->getValueOperand()->getType());
17372 }
17373
17374 // Note: this turns large loads into lock cmpxchg8b/16b.
17375 // FIXME: On 32 bits x86, fild/movq might be faster than lock cmpxchg8b.
17376 bool X86TargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
17377   auto PTy = cast<PointerType>(LI->getPointerOperand()->getType());
17378   return needsCmpXchgNb(PTy->getElementType());
17379 }
17380
17381 TargetLoweringBase::AtomicRMWExpansionKind
17382 X86TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
17383   unsigned NativeWidth = Subtarget->is64Bit() ? 64 : 32;
17384   const Type *MemType = AI->getType();
17385
17386   // If the operand is too big, we must see if cmpxchg8/16b is available
17387   // and default to library calls otherwise.
17388   if (MemType->getPrimitiveSizeInBits() > NativeWidth) {
17389     return needsCmpXchgNb(MemType) ? AtomicRMWExpansionKind::CmpXChg
17390                                    : AtomicRMWExpansionKind::None;
17391   }
17392
17393   AtomicRMWInst::BinOp Op = AI->getOperation();
17394   switch (Op) {
17395   default:
17396     llvm_unreachable("Unknown atomic operation");
17397   case AtomicRMWInst::Xchg:
17398   case AtomicRMWInst::Add:
17399   case AtomicRMWInst::Sub:
17400     // It's better to use xadd, xsub or xchg for these in all cases.
17401     return AtomicRMWExpansionKind::None;
17402   case AtomicRMWInst::Or:
17403   case AtomicRMWInst::And:
17404   case AtomicRMWInst::Xor:
17405     // If the atomicrmw's result isn't actually used, we can just add a "lock"
17406     // prefix to a normal instruction for these operations.
17407     return !AI->use_empty() ? AtomicRMWExpansionKind::CmpXChg
17408                             : AtomicRMWExpansionKind::None;
17409   case AtomicRMWInst::Nand:
17410   case AtomicRMWInst::Max:
17411   case AtomicRMWInst::Min:
17412   case AtomicRMWInst::UMax:
17413   case AtomicRMWInst::UMin:
17414     // These always require a non-trivial set of data operations on x86. We must
17415     // use a cmpxchg loop.
17416     return AtomicRMWExpansionKind::CmpXChg;
17417   }
17418 }
17419
17420 static bool hasMFENCE(const X86Subtarget& Subtarget) {
17421   // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
17422   // no-sse2). There isn't any reason to disable it if the target processor
17423   // supports it.
17424   return Subtarget.hasSSE2() || Subtarget.is64Bit();
17425 }
17426
17427 LoadInst *
17428 X86TargetLowering::lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const {
17429   unsigned NativeWidth = Subtarget->is64Bit() ? 64 : 32;
17430   const Type *MemType = AI->getType();
17431   // Accesses larger than the native width are turned into cmpxchg/libcalls, so
17432   // there is no benefit in turning such RMWs into loads, and it is actually
17433   // harmful as it introduces a mfence.
17434   if (MemType->getPrimitiveSizeInBits() > NativeWidth)
17435     return nullptr;
17436
17437   auto Builder = IRBuilder<>(AI);
17438   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
17439   auto SynchScope = AI->getSynchScope();
17440   // We must restrict the ordering to avoid generating loads with Release or
17441   // ReleaseAcquire orderings.
17442   auto Order = AtomicCmpXchgInst::getStrongestFailureOrdering(AI->getOrdering());
17443   auto Ptr = AI->getPointerOperand();
17444
17445   // Before the load we need a fence. Here is an example lifted from
17446   // http://www.hpl.hp.com/techreports/2012/HPL-2012-68.pdf showing why a fence
17447   // is required:
17448   // Thread 0:
17449   //   x.store(1, relaxed);
17450   //   r1 = y.fetch_add(0, release);
17451   // Thread 1:
17452   //   y.fetch_add(42, acquire);
17453   //   r2 = x.load(relaxed);
17454   // r1 = r2 = 0 is impossible, but becomes possible if the idempotent rmw is
17455   // lowered to just a load without a fence. A mfence flushes the store buffer,
17456   // making the optimization clearly correct.
17457   // FIXME: it is required if isAtLeastRelease(Order) but it is not clear
17458   // otherwise, we might be able to be more agressive on relaxed idempotent
17459   // rmw. In practice, they do not look useful, so we don't try to be
17460   // especially clever.
17461   if (SynchScope == SingleThread)
17462     // FIXME: we could just insert an X86ISD::MEMBARRIER here, except we are at
17463     // the IR level, so we must wrap it in an intrinsic.
17464     return nullptr;
17465
17466   if (!hasMFENCE(*Subtarget))
17467     // FIXME: it might make sense to use a locked operation here but on a
17468     // different cache-line to prevent cache-line bouncing. In practice it
17469     // is probably a small win, and x86 processors without mfence are rare
17470     // enough that we do not bother.
17471     return nullptr;
17472
17473   Function *MFence =
17474       llvm::Intrinsic::getDeclaration(M, Intrinsic::x86_sse2_mfence);
17475   Builder.CreateCall(MFence, {});
17476
17477   // Finally we can emit the atomic load.
17478   LoadInst *Loaded = Builder.CreateAlignedLoad(Ptr,
17479           AI->getType()->getPrimitiveSizeInBits());
17480   Loaded->setAtomic(Order, SynchScope);
17481   AI->replaceAllUsesWith(Loaded);
17482   AI->eraseFromParent();
17483   return Loaded;
17484 }
17485
17486 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
17487                                  SelectionDAG &DAG) {
17488   SDLoc dl(Op);
17489   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
17490     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
17491   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
17492     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
17493
17494   // The only fence that needs an instruction is a sequentially-consistent
17495   // cross-thread fence.
17496   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
17497     if (hasMFENCE(*Subtarget))
17498       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
17499
17500     SDValue Chain = Op.getOperand(0);
17501     SDValue Zero = DAG.getConstant(0, dl, MVT::i32);
17502     SDValue Ops[] = {
17503       DAG.getRegister(X86::ESP, MVT::i32),     // Base
17504       DAG.getTargetConstant(1, dl, MVT::i8),   // Scale
17505       DAG.getRegister(0, MVT::i32),            // Index
17506       DAG.getTargetConstant(0, dl, MVT::i32),  // Disp
17507       DAG.getRegister(0, MVT::i32),            // Segment.
17508       Zero,
17509       Chain
17510     };
17511     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
17512     return SDValue(Res, 0);
17513   }
17514
17515   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
17516   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
17517 }
17518
17519 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
17520                              SelectionDAG &DAG) {
17521   MVT T = Op.getSimpleValueType();
17522   SDLoc DL(Op);
17523   unsigned Reg = 0;
17524   unsigned size = 0;
17525   switch(T.SimpleTy) {
17526   default: llvm_unreachable("Invalid value type!");
17527   case MVT::i8:  Reg = X86::AL;  size = 1; break;
17528   case MVT::i16: Reg = X86::AX;  size = 2; break;
17529   case MVT::i32: Reg = X86::EAX; size = 4; break;
17530   case MVT::i64:
17531     assert(Subtarget->is64Bit() && "Node not type legal!");
17532     Reg = X86::RAX; size = 8;
17533     break;
17534   }
17535   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
17536                                   Op.getOperand(2), SDValue());
17537   SDValue Ops[] = { cpIn.getValue(0),
17538                     Op.getOperand(1),
17539                     Op.getOperand(3),
17540                     DAG.getTargetConstant(size, DL, MVT::i8),
17541                     cpIn.getValue(1) };
17542   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
17543   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
17544   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
17545                                            Ops, T, MMO);
17546
17547   SDValue cpOut =
17548     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
17549   SDValue EFLAGS = DAG.getCopyFromReg(cpOut.getValue(1), DL, X86::EFLAGS,
17550                                       MVT::i32, cpOut.getValue(2));
17551   SDValue Success = DAG.getNode(X86ISD::SETCC, DL, Op->getValueType(1),
17552                                 DAG.getConstant(X86::COND_E, DL, MVT::i8),
17553                                 EFLAGS);
17554
17555   DAG.ReplaceAllUsesOfValueWith(Op.getValue(0), cpOut);
17556   DAG.ReplaceAllUsesOfValueWith(Op.getValue(1), Success);
17557   DAG.ReplaceAllUsesOfValueWith(Op.getValue(2), EFLAGS.getValue(1));
17558   return SDValue();
17559 }
17560
17561 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
17562                             SelectionDAG &DAG) {
17563   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
17564   MVT DstVT = Op.getSimpleValueType();
17565
17566   if (SrcVT == MVT::v2i32 || SrcVT == MVT::v4i16 || SrcVT == MVT::v8i8) {
17567     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
17568     if (DstVT != MVT::f64)
17569       // This conversion needs to be expanded.
17570       return SDValue();
17571
17572     SDValue InVec = Op->getOperand(0);
17573     SDLoc dl(Op);
17574     unsigned NumElts = SrcVT.getVectorNumElements();
17575     EVT SVT = SrcVT.getVectorElementType();
17576
17577     // Widen the vector in input in the case of MVT::v2i32.
17578     // Example: from MVT::v2i32 to MVT::v4i32.
17579     SmallVector<SDValue, 16> Elts;
17580     for (unsigned i = 0, e = NumElts; i != e; ++i)
17581       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT, InVec,
17582                                  DAG.getIntPtrConstant(i, dl)));
17583
17584     // Explicitly mark the extra elements as Undef.
17585     Elts.append(NumElts, DAG.getUNDEF(SVT));
17586
17587     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
17588     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Elts);
17589     SDValue ToV2F64 = DAG.getBitcast(MVT::v2f64, BV);
17590     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
17591                        DAG.getIntPtrConstant(0, dl));
17592   }
17593
17594   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
17595          Subtarget->hasMMX() && "Unexpected custom BITCAST");
17596   assert((DstVT == MVT::i64 ||
17597           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
17598          "Unexpected custom BITCAST");
17599   // i64 <=> MMX conversions are Legal.
17600   if (SrcVT==MVT::i64 && DstVT.isVector())
17601     return Op;
17602   if (DstVT==MVT::i64 && SrcVT.isVector())
17603     return Op;
17604   // MMX <=> MMX conversions are Legal.
17605   if (SrcVT.isVector() && DstVT.isVector())
17606     return Op;
17607   // All other conversions need to be expanded.
17608   return SDValue();
17609 }
17610
17611 /// Compute the horizontal sum of bytes in V for the elements of VT.
17612 ///
17613 /// Requires V to be a byte vector and VT to be an integer vector type with
17614 /// wider elements than V's type. The width of the elements of VT determines
17615 /// how many bytes of V are summed horizontally to produce each element of the
17616 /// result.
17617 static SDValue LowerHorizontalByteSum(SDValue V, MVT VT,
17618                                       const X86Subtarget *Subtarget,
17619                                       SelectionDAG &DAG) {
17620   SDLoc DL(V);
17621   MVT ByteVecVT = V.getSimpleValueType();
17622   MVT EltVT = VT.getVectorElementType();
17623   int NumElts = VT.getVectorNumElements();
17624   assert(ByteVecVT.getVectorElementType() == MVT::i8 &&
17625          "Expected value to have byte element type.");
17626   assert(EltVT != MVT::i8 &&
17627          "Horizontal byte sum only makes sense for wider elements!");
17628   unsigned VecSize = VT.getSizeInBits();
17629   assert(ByteVecVT.getSizeInBits() == VecSize && "Cannot change vector size!");
17630
17631   // PSADBW instruction horizontally add all bytes and leave the result in i64
17632   // chunks, thus directly computes the pop count for v2i64 and v4i64.
17633   if (EltVT == MVT::i64) {
17634     SDValue Zeros = getZeroVector(ByteVecVT, Subtarget, DAG, DL);
17635     V = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT, V, Zeros);
17636     return DAG.getBitcast(VT, V);
17637   }
17638
17639   if (EltVT == MVT::i32) {
17640     // We unpack the low half and high half into i32s interleaved with zeros so
17641     // that we can use PSADBW to horizontally sum them. The most useful part of
17642     // this is that it lines up the results of two PSADBW instructions to be
17643     // two v2i64 vectors which concatenated are the 4 population counts. We can
17644     // then use PACKUSWB to shrink and concatenate them into a v4i32 again.
17645     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, DL);
17646     SDValue Low = DAG.getNode(X86ISD::UNPCKL, DL, VT, V, Zeros);
17647     SDValue High = DAG.getNode(X86ISD::UNPCKH, DL, VT, V, Zeros);
17648
17649     // Do the horizontal sums into two v2i64s.
17650     Zeros = getZeroVector(ByteVecVT, Subtarget, DAG, DL);
17651     Low = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT,
17652                       DAG.getBitcast(ByteVecVT, Low), Zeros);
17653     High = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT,
17654                        DAG.getBitcast(ByteVecVT, High), Zeros);
17655
17656     // Merge them together.
17657     MVT ShortVecVT = MVT::getVectorVT(MVT::i16, VecSize / 16);
17658     V = DAG.getNode(X86ISD::PACKUS, DL, ByteVecVT,
17659                     DAG.getBitcast(ShortVecVT, Low),
17660                     DAG.getBitcast(ShortVecVT, High));
17661
17662     return DAG.getBitcast(VT, V);
17663   }
17664
17665   // The only element type left is i16.
17666   assert(EltVT == MVT::i16 && "Unknown how to handle type");
17667
17668   // To obtain pop count for each i16 element starting from the pop count for
17669   // i8 elements, shift the i16s left by 8, sum as i8s, and then shift as i16s
17670   // right by 8. It is important to shift as i16s as i8 vector shift isn't
17671   // directly supported.
17672   SmallVector<SDValue, 16> Shifters(NumElts, DAG.getConstant(8, DL, EltVT));
17673   SDValue Shifter = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Shifters);
17674   SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, DAG.getBitcast(VT, V), Shifter);
17675   V = DAG.getNode(ISD::ADD, DL, ByteVecVT, DAG.getBitcast(ByteVecVT, Shl),
17676                   DAG.getBitcast(ByteVecVT, V));
17677   return DAG.getNode(ISD::SRL, DL, VT, DAG.getBitcast(VT, V), Shifter);
17678 }
17679
17680 static SDValue LowerVectorCTPOPInRegLUT(SDValue Op, SDLoc DL,
17681                                         const X86Subtarget *Subtarget,
17682                                         SelectionDAG &DAG) {
17683   MVT VT = Op.getSimpleValueType();
17684   MVT EltVT = VT.getVectorElementType();
17685   unsigned VecSize = VT.getSizeInBits();
17686
17687   // Implement a lookup table in register by using an algorithm based on:
17688   // http://wm.ite.pl/articles/sse-popcount.html
17689   //
17690   // The general idea is that every lower byte nibble in the input vector is an
17691   // index into a in-register pre-computed pop count table. We then split up the
17692   // input vector in two new ones: (1) a vector with only the shifted-right
17693   // higher nibbles for each byte and (2) a vector with the lower nibbles (and
17694   // masked out higher ones) for each byte. PSHUB is used separately with both
17695   // to index the in-register table. Next, both are added and the result is a
17696   // i8 vector where each element contains the pop count for input byte.
17697   //
17698   // To obtain the pop count for elements != i8, we follow up with the same
17699   // approach and use additional tricks as described below.
17700   //
17701   const int LUT[16] = {/* 0 */ 0, /* 1 */ 1, /* 2 */ 1, /* 3 */ 2,
17702                        /* 4 */ 1, /* 5 */ 2, /* 6 */ 2, /* 7 */ 3,
17703                        /* 8 */ 1, /* 9 */ 2, /* a */ 2, /* b */ 3,
17704                        /* c */ 2, /* d */ 3, /* e */ 3, /* f */ 4};
17705
17706   int NumByteElts = VecSize / 8;
17707   MVT ByteVecVT = MVT::getVectorVT(MVT::i8, NumByteElts);
17708   SDValue In = DAG.getBitcast(ByteVecVT, Op);
17709   SmallVector<SDValue, 16> LUTVec;
17710   for (int i = 0; i < NumByteElts; ++i)
17711     LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8));
17712   SDValue InRegLUT = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, LUTVec);
17713   SmallVector<SDValue, 16> Mask0F(NumByteElts,
17714                                   DAG.getConstant(0x0F, DL, MVT::i8));
17715   SDValue M0F = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, Mask0F);
17716
17717   // High nibbles
17718   SmallVector<SDValue, 16> Four(NumByteElts, DAG.getConstant(4, DL, MVT::i8));
17719   SDValue FourV = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, Four);
17720   SDValue HighNibbles = DAG.getNode(ISD::SRL, DL, ByteVecVT, In, FourV);
17721
17722   // Low nibbles
17723   SDValue LowNibbles = DAG.getNode(ISD::AND, DL, ByteVecVT, In, M0F);
17724
17725   // The input vector is used as the shuffle mask that index elements into the
17726   // LUT. After counting low and high nibbles, add the vector to obtain the
17727   // final pop count per i8 element.
17728   SDValue HighPopCnt =
17729       DAG.getNode(X86ISD::PSHUFB, DL, ByteVecVT, InRegLUT, HighNibbles);
17730   SDValue LowPopCnt =
17731       DAG.getNode(X86ISD::PSHUFB, DL, ByteVecVT, InRegLUT, LowNibbles);
17732   SDValue PopCnt = DAG.getNode(ISD::ADD, DL, ByteVecVT, HighPopCnt, LowPopCnt);
17733
17734   if (EltVT == MVT::i8)
17735     return PopCnt;
17736
17737   return LowerHorizontalByteSum(PopCnt, VT, Subtarget, DAG);
17738 }
17739
17740 static SDValue LowerVectorCTPOPBitmath(SDValue Op, SDLoc DL,
17741                                        const X86Subtarget *Subtarget,
17742                                        SelectionDAG &DAG) {
17743   MVT VT = Op.getSimpleValueType();
17744   assert(VT.is128BitVector() &&
17745          "Only 128-bit vector bitmath lowering supported.");
17746
17747   int VecSize = VT.getSizeInBits();
17748   MVT EltVT = VT.getVectorElementType();
17749   int Len = EltVT.getSizeInBits();
17750
17751   // This is the vectorized version of the "best" algorithm from
17752   // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
17753   // with a minor tweak to use a series of adds + shifts instead of vector
17754   // multiplications. Implemented for all integer vector types. We only use
17755   // this when we don't have SSSE3 which allows a LUT-based lowering that is
17756   // much faster, even faster than using native popcnt instructions.
17757
17758   auto GetShift = [&](unsigned OpCode, SDValue V, int Shifter) {
17759     MVT VT = V.getSimpleValueType();
17760     SmallVector<SDValue, 32> Shifters(
17761         VT.getVectorNumElements(),
17762         DAG.getConstant(Shifter, DL, VT.getVectorElementType()));
17763     return DAG.getNode(OpCode, DL, VT, V,
17764                        DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Shifters));
17765   };
17766   auto GetMask = [&](SDValue V, APInt Mask) {
17767     MVT VT = V.getSimpleValueType();
17768     SmallVector<SDValue, 32> Masks(
17769         VT.getVectorNumElements(),
17770         DAG.getConstant(Mask, DL, VT.getVectorElementType()));
17771     return DAG.getNode(ISD::AND, DL, VT, V,
17772                        DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Masks));
17773   };
17774
17775   // We don't want to incur the implicit masks required to SRL vNi8 vectors on
17776   // x86, so set the SRL type to have elements at least i16 wide. This is
17777   // correct because all of our SRLs are followed immediately by a mask anyways
17778   // that handles any bits that sneak into the high bits of the byte elements.
17779   MVT SrlVT = Len > 8 ? VT : MVT::getVectorVT(MVT::i16, VecSize / 16);
17780
17781   SDValue V = Op;
17782
17783   // v = v - ((v >> 1) & 0x55555555...)
17784   SDValue Srl =
17785       DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 1));
17786   SDValue And = GetMask(Srl, APInt::getSplat(Len, APInt(8, 0x55)));
17787   V = DAG.getNode(ISD::SUB, DL, VT, V, And);
17788
17789   // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
17790   SDValue AndLHS = GetMask(V, APInt::getSplat(Len, APInt(8, 0x33)));
17791   Srl = DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 2));
17792   SDValue AndRHS = GetMask(Srl, APInt::getSplat(Len, APInt(8, 0x33)));
17793   V = DAG.getNode(ISD::ADD, DL, VT, AndLHS, AndRHS);
17794
17795   // v = (v + (v >> 4)) & 0x0F0F0F0F...
17796   Srl = DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 4));
17797   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, V, Srl);
17798   V = GetMask(Add, APInt::getSplat(Len, APInt(8, 0x0F)));
17799
17800   // At this point, V contains the byte-wise population count, and we are
17801   // merely doing a horizontal sum if necessary to get the wider element
17802   // counts.
17803   if (EltVT == MVT::i8)
17804     return V;
17805
17806   return LowerHorizontalByteSum(
17807       DAG.getBitcast(MVT::getVectorVT(MVT::i8, VecSize / 8), V), VT, Subtarget,
17808       DAG);
17809 }
17810
17811 static SDValue LowerVectorCTPOP(SDValue Op, const X86Subtarget *Subtarget,
17812                                 SelectionDAG &DAG) {
17813   MVT VT = Op.getSimpleValueType();
17814   // FIXME: Need to add AVX-512 support here!
17815   assert((VT.is256BitVector() || VT.is128BitVector()) &&
17816          "Unknown CTPOP type to handle");
17817   SDLoc DL(Op.getNode());
17818   SDValue Op0 = Op.getOperand(0);
17819
17820   if (!Subtarget->hasSSSE3()) {
17821     // We can't use the fast LUT approach, so fall back on vectorized bitmath.
17822     assert(VT.is128BitVector() && "Only 128-bit vectors supported in SSE!");
17823     return LowerVectorCTPOPBitmath(Op0, DL, Subtarget, DAG);
17824   }
17825
17826   if (VT.is256BitVector() && !Subtarget->hasInt256()) {
17827     unsigned NumElems = VT.getVectorNumElements();
17828
17829     // Extract each 128-bit vector, compute pop count and concat the result.
17830     SDValue LHS = Extract128BitVector(Op0, 0, DAG, DL);
17831     SDValue RHS = Extract128BitVector(Op0, NumElems/2, DAG, DL);
17832
17833     return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT,
17834                        LowerVectorCTPOPInRegLUT(LHS, DL, Subtarget, DAG),
17835                        LowerVectorCTPOPInRegLUT(RHS, DL, Subtarget, DAG));
17836   }
17837
17838   return LowerVectorCTPOPInRegLUT(Op0, DL, Subtarget, DAG);
17839 }
17840
17841 static SDValue LowerCTPOP(SDValue Op, const X86Subtarget *Subtarget,
17842                           SelectionDAG &DAG) {
17843   assert(Op.getValueType().isVector() &&
17844          "We only do custom lowering for vector population count.");
17845   return LowerVectorCTPOP(Op, Subtarget, DAG);
17846 }
17847
17848 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
17849   SDNode *Node = Op.getNode();
17850   SDLoc dl(Node);
17851   EVT T = Node->getValueType(0);
17852   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
17853                               DAG.getConstant(0, dl, T), Node->getOperand(2));
17854   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
17855                        cast<AtomicSDNode>(Node)->getMemoryVT(),
17856                        Node->getOperand(0),
17857                        Node->getOperand(1), negOp,
17858                        cast<AtomicSDNode>(Node)->getMemOperand(),
17859                        cast<AtomicSDNode>(Node)->getOrdering(),
17860                        cast<AtomicSDNode>(Node)->getSynchScope());
17861 }
17862
17863 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
17864   SDNode *Node = Op.getNode();
17865   SDLoc dl(Node);
17866   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
17867
17868   // Convert seq_cst store -> xchg
17869   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
17870   // FIXME: On 32-bit, store -> fist or movq would be more efficient
17871   //        (The only way to get a 16-byte store is cmpxchg16b)
17872   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
17873   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
17874       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
17875     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
17876                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
17877                                  Node->getOperand(0),
17878                                  Node->getOperand(1), Node->getOperand(2),
17879                                  cast<AtomicSDNode>(Node)->getMemOperand(),
17880                                  cast<AtomicSDNode>(Node)->getOrdering(),
17881                                  cast<AtomicSDNode>(Node)->getSynchScope());
17882     return Swap.getValue(1);
17883   }
17884   // Other atomic stores have a simple pattern.
17885   return Op;
17886 }
17887
17888 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
17889   EVT VT = Op.getNode()->getSimpleValueType(0);
17890
17891   // Let legalize expand this if it isn't a legal type yet.
17892   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
17893     return SDValue();
17894
17895   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
17896
17897   unsigned Opc;
17898   bool ExtraOp = false;
17899   switch (Op.getOpcode()) {
17900   default: llvm_unreachable("Invalid code");
17901   case ISD::ADDC: Opc = X86ISD::ADD; break;
17902   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
17903   case ISD::SUBC: Opc = X86ISD::SUB; break;
17904   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
17905   }
17906
17907   if (!ExtraOp)
17908     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
17909                        Op.getOperand(1));
17910   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
17911                      Op.getOperand(1), Op.getOperand(2));
17912 }
17913
17914 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
17915                             SelectionDAG &DAG) {
17916   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
17917
17918   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
17919   // which returns the values as { float, float } (in XMM0) or
17920   // { double, double } (which is returned in XMM0, XMM1).
17921   SDLoc dl(Op);
17922   SDValue Arg = Op.getOperand(0);
17923   EVT ArgVT = Arg.getValueType();
17924   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
17925
17926   TargetLowering::ArgListTy Args;
17927   TargetLowering::ArgListEntry Entry;
17928
17929   Entry.Node = Arg;
17930   Entry.Ty = ArgTy;
17931   Entry.isSExt = false;
17932   Entry.isZExt = false;
17933   Args.push_back(Entry);
17934
17935   bool isF64 = ArgVT == MVT::f64;
17936   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
17937   // the small struct {f32, f32} is returned in (eax, edx). For f64,
17938   // the results are returned via SRet in memory.
17939   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
17940   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17941   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
17942
17943   Type *RetTy = isF64
17944     ? (Type*)StructType::get(ArgTy, ArgTy, nullptr)
17945     : (Type*)VectorType::get(ArgTy, 4);
17946
17947   TargetLowering::CallLoweringInfo CLI(DAG);
17948   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
17949     .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
17950
17951   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
17952
17953   if (isF64)
17954     // Returned in xmm0 and xmm1.
17955     return CallResult.first;
17956
17957   // Returned in bits 0:31 and 32:64 xmm0.
17958   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
17959                                CallResult.first, DAG.getIntPtrConstant(0, dl));
17960   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
17961                                CallResult.first, DAG.getIntPtrConstant(1, dl));
17962   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
17963   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
17964 }
17965
17966 static SDValue LowerMSCATTER(SDValue Op, const X86Subtarget *Subtarget,
17967                              SelectionDAG &DAG) {
17968   assert(Subtarget->hasAVX512() &&
17969          "MGATHER/MSCATTER are supported on AVX-512 arch only");
17970
17971   MaskedScatterSDNode *N = cast<MaskedScatterSDNode>(Op.getNode());
17972   EVT VT = N->getValue().getValueType();
17973   assert(VT.getScalarSizeInBits() >= 32 && "Unsupported scatter op");
17974   SDLoc dl(Op);
17975
17976   // X86 scatter kills mask register, so its type should be added to
17977   // the list of return values
17978   if (N->getNumValues() == 1) {
17979     SDValue Index = N->getIndex();
17980     if (!Subtarget->hasVLX() && !VT.is512BitVector() &&
17981         !Index.getValueType().is512BitVector())
17982       Index = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i64, Index);
17983
17984     SDVTList VTs = DAG.getVTList(N->getMask().getValueType(), MVT::Other);
17985     SDValue Ops[] = { N->getOperand(0), N->getOperand(1),  N->getOperand(2),
17986                       N->getOperand(3), Index };
17987
17988     SDValue NewScatter = DAG.getMaskedScatter(VTs, VT, dl, Ops, N->getMemOperand());
17989     DAG.ReplaceAllUsesWith(Op, SDValue(NewScatter.getNode(), 1));
17990     return SDValue(NewScatter.getNode(), 0);
17991   }
17992   return Op;
17993 }
17994
17995 static SDValue LowerMGATHER(SDValue Op, const X86Subtarget *Subtarget,
17996                             SelectionDAG &DAG) {
17997   assert(Subtarget->hasAVX512() &&
17998          "MGATHER/MSCATTER are supported on AVX-512 arch only");
17999
18000   MaskedGatherSDNode *N = cast<MaskedGatherSDNode>(Op.getNode());
18001   EVT VT = Op.getValueType();
18002   assert(VT.getScalarSizeInBits() >= 32 && "Unsupported gather op");
18003   SDLoc dl(Op);
18004
18005   SDValue Index = N->getIndex();
18006   if (!Subtarget->hasVLX() && !VT.is512BitVector() &&
18007       !Index.getValueType().is512BitVector()) {
18008     Index = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i64, Index);
18009     SDValue Ops[] = { N->getOperand(0), N->getOperand(1),  N->getOperand(2),
18010                       N->getOperand(3), Index };
18011     DAG.UpdateNodeOperands(N, Ops);
18012   }
18013   return Op;
18014 }
18015
18016 SDValue X86TargetLowering::LowerGC_TRANSITION_START(SDValue Op,
18017                                                     SelectionDAG &DAG) const {
18018   // TODO: Eventually, the lowering of these nodes should be informed by or
18019   // deferred to the GC strategy for the function in which they appear. For
18020   // now, however, they must be lowered to something. Since they are logically
18021   // no-ops in the case of a null GC strategy (or a GC strategy which does not
18022   // require special handling for these nodes), lower them as literal NOOPs for
18023   // the time being.
18024   SmallVector<SDValue, 2> Ops;
18025
18026   Ops.push_back(Op.getOperand(0));
18027   if (Op->getGluedNode())
18028     Ops.push_back(Op->getOperand(Op->getNumOperands() - 1));
18029
18030   SDLoc OpDL(Op);
18031   SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
18032   SDValue NOOP(DAG.getMachineNode(X86::NOOP, SDLoc(Op), VTs, Ops), 0);
18033
18034   return NOOP;
18035 }
18036
18037 SDValue X86TargetLowering::LowerGC_TRANSITION_END(SDValue Op,
18038                                                   SelectionDAG &DAG) const {
18039   // TODO: Eventually, the lowering of these nodes should be informed by or
18040   // deferred to the GC strategy for the function in which they appear. For
18041   // now, however, they must be lowered to something. Since they are logically
18042   // no-ops in the case of a null GC strategy (or a GC strategy which does not
18043   // require special handling for these nodes), lower them as literal NOOPs for
18044   // the time being.
18045   SmallVector<SDValue, 2> Ops;
18046
18047   Ops.push_back(Op.getOperand(0));
18048   if (Op->getGluedNode())
18049     Ops.push_back(Op->getOperand(Op->getNumOperands() - 1));
18050
18051   SDLoc OpDL(Op);
18052   SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
18053   SDValue NOOP(DAG.getMachineNode(X86::NOOP, SDLoc(Op), VTs, Ops), 0);
18054
18055   return NOOP;
18056 }
18057
18058 /// LowerOperation - Provide custom lowering hooks for some operations.
18059 ///
18060 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
18061   switch (Op.getOpcode()) {
18062   default: llvm_unreachable("Should not custom lower this!");
18063   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
18064   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
18065     return LowerCMP_SWAP(Op, Subtarget, DAG);
18066   case ISD::CTPOP:              return LowerCTPOP(Op, Subtarget, DAG);
18067   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
18068   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
18069   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
18070   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, Subtarget, DAG);
18071   case ISD::VECTOR_SHUFFLE:     return lowerVectorShuffle(Op, Subtarget, DAG);
18072   case ISD::VSELECT:            return LowerVSELECT(Op, DAG);
18073   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
18074   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
18075   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
18076   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
18077   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
18078   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
18079   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
18080   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
18081   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
18082   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
18083   case ISD::SHL_PARTS:
18084   case ISD::SRA_PARTS:
18085   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
18086   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
18087   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
18088   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
18089   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
18090   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
18091   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
18092   case ISD::SIGN_EXTEND_VECTOR_INREG:
18093     return LowerSIGN_EXTEND_VECTOR_INREG(Op, Subtarget, DAG);
18094   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
18095   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
18096   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
18097   case ISD::LOAD:               return LowerExtendedLoad(Op, Subtarget, DAG);
18098   case ISD::FABS:
18099   case ISD::FNEG:               return LowerFABSorFNEG(Op, DAG);
18100   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
18101   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
18102   case ISD::SETCC:              return LowerSETCC(Op, DAG);
18103   case ISD::SELECT:             return LowerSELECT(Op, DAG);
18104   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
18105   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
18106   case ISD::VASTART:            return LowerVASTART(Op, DAG);
18107   case ISD::VAARG:              return LowerVAARG(Op, DAG);
18108   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
18109   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, Subtarget, DAG);
18110   case ISD::INTRINSIC_VOID:
18111   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
18112   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
18113   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
18114   case ISD::FRAME_TO_ARGS_OFFSET:
18115                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
18116   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
18117   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
18118   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
18119   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
18120   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
18121   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
18122   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
18123   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
18124   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
18125   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
18126   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
18127   case ISD::UMUL_LOHI:
18128   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
18129   case ISD::SRA:
18130   case ISD::SRL:
18131   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
18132   case ISD::SADDO:
18133   case ISD::UADDO:
18134   case ISD::SSUBO:
18135   case ISD::USUBO:
18136   case ISD::SMULO:
18137   case ISD::UMULO:              return LowerXALUO(Op, DAG);
18138   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
18139   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
18140   case ISD::ADDC:
18141   case ISD::ADDE:
18142   case ISD::SUBC:
18143   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
18144   case ISD::ADD:                return LowerADD(Op, DAG);
18145   case ISD::SUB:                return LowerSUB(Op, DAG);
18146   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
18147   case ISD::MGATHER:            return LowerMGATHER(Op, Subtarget, DAG);
18148   case ISD::MSCATTER:           return LowerMSCATTER(Op, Subtarget, DAG);
18149   case ISD::GC_TRANSITION_START:
18150                                 return LowerGC_TRANSITION_START(Op, DAG);
18151   case ISD::GC_TRANSITION_END:  return LowerGC_TRANSITION_END(Op, DAG);
18152   }
18153 }
18154
18155 /// ReplaceNodeResults - Replace a node with an illegal result type
18156 /// with a new node built out of custom code.
18157 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
18158                                            SmallVectorImpl<SDValue>&Results,
18159                                            SelectionDAG &DAG) const {
18160   SDLoc dl(N);
18161   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18162   switch (N->getOpcode()) {
18163   default:
18164     llvm_unreachable("Do not know how to custom type legalize this operation!");
18165   // We might have generated v2f32 FMIN/FMAX operations. Widen them to v4f32.
18166   case X86ISD::FMINC:
18167   case X86ISD::FMIN:
18168   case X86ISD::FMAXC:
18169   case X86ISD::FMAX: {
18170     EVT VT = N->getValueType(0);
18171     if (VT != MVT::v2f32)
18172       llvm_unreachable("Unexpected type (!= v2f32) on FMIN/FMAX.");
18173     SDValue UNDEF = DAG.getUNDEF(VT);
18174     SDValue LHS = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4f32,
18175                               N->getOperand(0), UNDEF);
18176     SDValue RHS = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4f32,
18177                               N->getOperand(1), UNDEF);
18178     Results.push_back(DAG.getNode(N->getOpcode(), dl, MVT::v4f32, LHS, RHS));
18179     return;
18180   }
18181   case ISD::SIGN_EXTEND_INREG:
18182   case ISD::ADDC:
18183   case ISD::ADDE:
18184   case ISD::SUBC:
18185   case ISD::SUBE:
18186     // We don't want to expand or promote these.
18187     return;
18188   case ISD::SDIV:
18189   case ISD::UDIV:
18190   case ISD::SREM:
18191   case ISD::UREM:
18192   case ISD::SDIVREM:
18193   case ISD::UDIVREM: {
18194     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
18195     Results.push_back(V);
18196     return;
18197   }
18198   case ISD::FP_TO_SINT:
18199     // FP_TO_INT*_IN_MEM is not legal for f16 inputs.  Do not convert
18200     // (FP_TO_SINT (load f16)) to FP_TO_INT*.
18201     if (N->getOperand(0).getValueType() == MVT::f16)
18202       break;
18203     // fallthrough
18204   case ISD::FP_TO_UINT: {
18205     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
18206
18207     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
18208       return;
18209
18210     std::pair<SDValue,SDValue> Vals =
18211         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
18212     SDValue FIST = Vals.first, StackSlot = Vals.second;
18213     if (FIST.getNode()) {
18214       EVT VT = N->getValueType(0);
18215       // Return a load from the stack slot.
18216       if (StackSlot.getNode())
18217         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
18218                                       MachinePointerInfo(),
18219                                       false, false, false, 0));
18220       else
18221         Results.push_back(FIST);
18222     }
18223     return;
18224   }
18225   case ISD::UINT_TO_FP: {
18226     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
18227     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
18228         N->getValueType(0) != MVT::v2f32)
18229       return;
18230     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
18231                                  N->getOperand(0));
18232     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
18233                                      MVT::f64);
18234     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
18235     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
18236                              DAG.getBitcast(MVT::v2i64, VBias));
18237     Or = DAG.getBitcast(MVT::v2f64, Or);
18238     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
18239     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
18240     return;
18241   }
18242   case ISD::FP_ROUND: {
18243     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
18244         return;
18245     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
18246     Results.push_back(V);
18247     return;
18248   }
18249   case ISD::FP_EXTEND: {
18250     // Right now, only MVT::v2f32 has OperationAction for FP_EXTEND.
18251     // No other ValueType for FP_EXTEND should reach this point.
18252     assert(N->getValueType(0) == MVT::v2f32 &&
18253            "Do not know how to legalize this Node");
18254     return;
18255   }
18256   case ISD::INTRINSIC_W_CHAIN: {
18257     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
18258     switch (IntNo) {
18259     default : llvm_unreachable("Do not know how to custom type "
18260                                "legalize this intrinsic operation!");
18261     case Intrinsic::x86_rdtsc:
18262       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
18263                                      Results);
18264     case Intrinsic::x86_rdtscp:
18265       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
18266                                      Results);
18267     case Intrinsic::x86_rdpmc:
18268       return getReadPerformanceCounter(N, dl, DAG, Subtarget, Results);
18269     }
18270   }
18271   case ISD::READCYCLECOUNTER: {
18272     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
18273                                    Results);
18274   }
18275   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
18276     EVT T = N->getValueType(0);
18277     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
18278     bool Regs64bit = T == MVT::i128;
18279     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
18280     SDValue cpInL, cpInH;
18281     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
18282                         DAG.getConstant(0, dl, HalfT));
18283     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
18284                         DAG.getConstant(1, dl, HalfT));
18285     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
18286                              Regs64bit ? X86::RAX : X86::EAX,
18287                              cpInL, SDValue());
18288     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
18289                              Regs64bit ? X86::RDX : X86::EDX,
18290                              cpInH, cpInL.getValue(1));
18291     SDValue swapInL, swapInH;
18292     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
18293                           DAG.getConstant(0, dl, HalfT));
18294     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
18295                           DAG.getConstant(1, dl, HalfT));
18296     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
18297                                Regs64bit ? X86::RBX : X86::EBX,
18298                                swapInL, cpInH.getValue(1));
18299     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
18300                                Regs64bit ? X86::RCX : X86::ECX,
18301                                swapInH, swapInL.getValue(1));
18302     SDValue Ops[] = { swapInH.getValue(0),
18303                       N->getOperand(1),
18304                       swapInH.getValue(1) };
18305     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
18306     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
18307     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
18308                                   X86ISD::LCMPXCHG8_DAG;
18309     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
18310     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
18311                                         Regs64bit ? X86::RAX : X86::EAX,
18312                                         HalfT, Result.getValue(1));
18313     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
18314                                         Regs64bit ? X86::RDX : X86::EDX,
18315                                         HalfT, cpOutL.getValue(2));
18316     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
18317
18318     SDValue EFLAGS = DAG.getCopyFromReg(cpOutH.getValue(1), dl, X86::EFLAGS,
18319                                         MVT::i32, cpOutH.getValue(2));
18320     SDValue Success =
18321         DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
18322                     DAG.getConstant(X86::COND_E, dl, MVT::i8), EFLAGS);
18323     Success = DAG.getZExtOrTrunc(Success, dl, N->getValueType(1));
18324
18325     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
18326     Results.push_back(Success);
18327     Results.push_back(EFLAGS.getValue(1));
18328     return;
18329   }
18330   case ISD::ATOMIC_SWAP:
18331   case ISD::ATOMIC_LOAD_ADD:
18332   case ISD::ATOMIC_LOAD_SUB:
18333   case ISD::ATOMIC_LOAD_AND:
18334   case ISD::ATOMIC_LOAD_OR:
18335   case ISD::ATOMIC_LOAD_XOR:
18336   case ISD::ATOMIC_LOAD_NAND:
18337   case ISD::ATOMIC_LOAD_MIN:
18338   case ISD::ATOMIC_LOAD_MAX:
18339   case ISD::ATOMIC_LOAD_UMIN:
18340   case ISD::ATOMIC_LOAD_UMAX:
18341   case ISD::ATOMIC_LOAD: {
18342     // Delegate to generic TypeLegalization. Situations we can really handle
18343     // should have already been dealt with by AtomicExpandPass.cpp.
18344     break;
18345   }
18346   case ISD::BITCAST: {
18347     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
18348     EVT DstVT = N->getValueType(0);
18349     EVT SrcVT = N->getOperand(0)->getValueType(0);
18350
18351     if (SrcVT != MVT::f64 ||
18352         (DstVT != MVT::v2i32 && DstVT != MVT::v4i16 && DstVT != MVT::v8i8))
18353       return;
18354
18355     unsigned NumElts = DstVT.getVectorNumElements();
18356     EVT SVT = DstVT.getVectorElementType();
18357     EVT WiderVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
18358     SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
18359                                    MVT::v2f64, N->getOperand(0));
18360     SDValue ToVecInt = DAG.getBitcast(WiderVT, Expanded);
18361
18362     if (ExperimentalVectorWideningLegalization) {
18363       // If we are legalizing vectors by widening, we already have the desired
18364       // legal vector type, just return it.
18365       Results.push_back(ToVecInt);
18366       return;
18367     }
18368
18369     SmallVector<SDValue, 8> Elts;
18370     for (unsigned i = 0, e = NumElts; i != e; ++i)
18371       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT,
18372                                    ToVecInt, DAG.getIntPtrConstant(i, dl)));
18373
18374     Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, DstVT, Elts));
18375   }
18376   }
18377 }
18378
18379 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
18380   switch ((X86ISD::NodeType)Opcode) {
18381   case X86ISD::FIRST_NUMBER:       break;
18382   case X86ISD::BSF:                return "X86ISD::BSF";
18383   case X86ISD::BSR:                return "X86ISD::BSR";
18384   case X86ISD::SHLD:               return "X86ISD::SHLD";
18385   case X86ISD::SHRD:               return "X86ISD::SHRD";
18386   case X86ISD::FAND:               return "X86ISD::FAND";
18387   case X86ISD::FANDN:              return "X86ISD::FANDN";
18388   case X86ISD::FOR:                return "X86ISD::FOR";
18389   case X86ISD::FXOR:               return "X86ISD::FXOR";
18390   case X86ISD::FILD:               return "X86ISD::FILD";
18391   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
18392   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
18393   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
18394   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
18395   case X86ISD::FLD:                return "X86ISD::FLD";
18396   case X86ISD::FST:                return "X86ISD::FST";
18397   case X86ISD::CALL:               return "X86ISD::CALL";
18398   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
18399   case X86ISD::RDTSCP_DAG:         return "X86ISD::RDTSCP_DAG";
18400   case X86ISD::RDPMC_DAG:          return "X86ISD::RDPMC_DAG";
18401   case X86ISD::BT:                 return "X86ISD::BT";
18402   case X86ISD::CMP:                return "X86ISD::CMP";
18403   case X86ISD::COMI:               return "X86ISD::COMI";
18404   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
18405   case X86ISD::CMPM:               return "X86ISD::CMPM";
18406   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
18407   case X86ISD::CMPM_RND:           return "X86ISD::CMPM_RND";
18408   case X86ISD::SETCC:              return "X86ISD::SETCC";
18409   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
18410   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
18411   case X86ISD::FGETSIGNx86:        return "X86ISD::FGETSIGNx86";
18412   case X86ISD::CMOV:               return "X86ISD::CMOV";
18413   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
18414   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
18415   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
18416   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
18417   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
18418   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
18419   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
18420   case X86ISD::MOVDQ2Q:            return "X86ISD::MOVDQ2Q";
18421   case X86ISD::MMX_MOVD2W:         return "X86ISD::MMX_MOVD2W";
18422   case X86ISD::MMX_MOVW2D:         return "X86ISD::MMX_MOVW2D";
18423   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
18424   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
18425   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
18426   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
18427   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
18428   case X86ISD::MMX_PINSRW:         return "X86ISD::MMX_PINSRW";
18429   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
18430   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
18431   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
18432   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
18433   case X86ISD::SHRUNKBLEND:        return "X86ISD::SHRUNKBLEND";
18434   case X86ISD::ADDUS:              return "X86ISD::ADDUS";
18435   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
18436   case X86ISD::HADD:               return "X86ISD::HADD";
18437   case X86ISD::HSUB:               return "X86ISD::HSUB";
18438   case X86ISD::FHADD:              return "X86ISD::FHADD";
18439   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
18440   case X86ISD::UMAX:               return "X86ISD::UMAX";
18441   case X86ISD::UMIN:               return "X86ISD::UMIN";
18442   case X86ISD::SMAX:               return "X86ISD::SMAX";
18443   case X86ISD::SMIN:               return "X86ISD::SMIN";
18444   case X86ISD::ABS:                return "X86ISD::ABS";
18445   case X86ISD::FMAX:               return "X86ISD::FMAX";
18446   case X86ISD::FMAX_RND:           return "X86ISD::FMAX_RND";
18447   case X86ISD::FMIN:               return "X86ISD::FMIN";
18448   case X86ISD::FMIN_RND:           return "X86ISD::FMIN_RND";
18449   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
18450   case X86ISD::FMINC:              return "X86ISD::FMINC";
18451   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
18452   case X86ISD::FRCP:               return "X86ISD::FRCP";
18453   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
18454   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
18455   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
18456   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
18457   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
18458   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
18459   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
18460   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
18461   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
18462   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
18463   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
18464   case X86ISD::LCMPXCHG16_DAG:     return "X86ISD::LCMPXCHG16_DAG";
18465   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
18466   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
18467   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
18468   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
18469   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
18470   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
18471   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
18472   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
18473   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
18474   case X86ISD::CVTDQ2PD:           return "X86ISD::CVTDQ2PD";
18475   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
18476   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
18477   case X86ISD::VSHL:               return "X86ISD::VSHL";
18478   case X86ISD::VSRL:               return "X86ISD::VSRL";
18479   case X86ISD::VSRA:               return "X86ISD::VSRA";
18480   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
18481   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
18482   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
18483   case X86ISD::CMPP:               return "X86ISD::CMPP";
18484   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
18485   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
18486   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
18487   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
18488   case X86ISD::ADD:                return "X86ISD::ADD";
18489   case X86ISD::SUB:                return "X86ISD::SUB";
18490   case X86ISD::ADC:                return "X86ISD::ADC";
18491   case X86ISD::SBB:                return "X86ISD::SBB";
18492   case X86ISD::SMUL:               return "X86ISD::SMUL";
18493   case X86ISD::UMUL:               return "X86ISD::UMUL";
18494   case X86ISD::SMUL8:              return "X86ISD::SMUL8";
18495   case X86ISD::UMUL8:              return "X86ISD::UMUL8";
18496   case X86ISD::SDIVREM8_SEXT_HREG: return "X86ISD::SDIVREM8_SEXT_HREG";
18497   case X86ISD::UDIVREM8_ZEXT_HREG: return "X86ISD::UDIVREM8_ZEXT_HREG";
18498   case X86ISD::INC:                return "X86ISD::INC";
18499   case X86ISD::DEC:                return "X86ISD::DEC";
18500   case X86ISD::OR:                 return "X86ISD::OR";
18501   case X86ISD::XOR:                return "X86ISD::XOR";
18502   case X86ISD::AND:                return "X86ISD::AND";
18503   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
18504   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
18505   case X86ISD::PTEST:              return "X86ISD::PTEST";
18506   case X86ISD::TESTP:              return "X86ISD::TESTP";
18507   case X86ISD::TESTM:              return "X86ISD::TESTM";
18508   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
18509   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
18510   case X86ISD::PACKSS:             return "X86ISD::PACKSS";
18511   case X86ISD::PACKUS:             return "X86ISD::PACKUS";
18512   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
18513   case X86ISD::VALIGN:             return "X86ISD::VALIGN";
18514   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
18515   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
18516   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
18517   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
18518   case X86ISD::SHUF128:            return "X86ISD::SHUF128";
18519   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
18520   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
18521   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
18522   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
18523   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
18524   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
18525   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
18526   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
18527   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
18528   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
18529   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
18530   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
18531   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
18532   case X86ISD::SUBV_BROADCAST:     return "X86ISD::SUBV_BROADCAST";
18533   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
18534   case X86ISD::VPERMILPV:          return "X86ISD::VPERMILPV";
18535   case X86ISD::VPERMILPI:          return "X86ISD::VPERMILPI";
18536   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
18537   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
18538   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
18539   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
18540   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
18541   case X86ISD::VFIXUPIMM:          return "X86ISD::VFIXUPIMM";
18542   case X86ISD::VRANGE:             return "X86ISD::VRANGE";
18543   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
18544   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
18545   case X86ISD::PSADBW:             return "X86ISD::PSADBW";
18546   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
18547   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
18548   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
18549   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
18550   case X86ISD::MFENCE:             return "X86ISD::MFENCE";
18551   case X86ISD::SFENCE:             return "X86ISD::SFENCE";
18552   case X86ISD::LFENCE:             return "X86ISD::LFENCE";
18553   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
18554   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
18555   case X86ISD::SAHF:               return "X86ISD::SAHF";
18556   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
18557   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
18558   case X86ISD::FMADD:              return "X86ISD::FMADD";
18559   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
18560   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
18561   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
18562   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
18563   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
18564   case X86ISD::FMADD_RND:          return "X86ISD::FMADD_RND";
18565   case X86ISD::FNMADD_RND:         return "X86ISD::FNMADD_RND";
18566   case X86ISD::FMSUB_RND:          return "X86ISD::FMSUB_RND";
18567   case X86ISD::FNMSUB_RND:         return "X86ISD::FNMSUB_RND";
18568   case X86ISD::FMADDSUB_RND:       return "X86ISD::FMADDSUB_RND";
18569   case X86ISD::FMSUBADD_RND:       return "X86ISD::FMSUBADD_RND";
18570   case X86ISD::RNDSCALE:           return "X86ISD::RNDSCALE";
18571   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
18572   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
18573   case X86ISD::XTEST:              return "X86ISD::XTEST";
18574   case X86ISD::COMPRESS:           return "X86ISD::COMPRESS";
18575   case X86ISD::EXPAND:             return "X86ISD::EXPAND";
18576   case X86ISD::SELECT:             return "X86ISD::SELECT";
18577   case X86ISD::ADDSUB:             return "X86ISD::ADDSUB";
18578   case X86ISD::RCP28:              return "X86ISD::RCP28";
18579   case X86ISD::EXP2:               return "X86ISD::EXP2";
18580   case X86ISD::RSQRT28:            return "X86ISD::RSQRT28";
18581   case X86ISD::FADD_RND:           return "X86ISD::FADD_RND";
18582   case X86ISD::FSUB_RND:           return "X86ISD::FSUB_RND";
18583   case X86ISD::FMUL_RND:           return "X86ISD::FMUL_RND";
18584   case X86ISD::FDIV_RND:           return "X86ISD::FDIV_RND";
18585   case X86ISD::FSQRT_RND:          return "X86ISD::FSQRT_RND";
18586   case X86ISD::FGETEXP_RND:        return "X86ISD::FGETEXP_RND";
18587   case X86ISD::SCALEF:             return "X86ISD::SCALEF";
18588   case X86ISD::ADDS:               return "X86ISD::ADDS";
18589   case X86ISD::SUBS:               return "X86ISD::SUBS";
18590   case X86ISD::AVG:                return "X86ISD::AVG";
18591   case X86ISD::SINT_TO_FP_RND:     return "X86ISD::SINT_TO_FP_RND";
18592   case X86ISD::UINT_TO_FP_RND:     return "X86ISD::UINT_TO_FP_RND";
18593   }
18594   return nullptr;
18595 }
18596
18597 // isLegalAddressingMode - Return true if the addressing mode represented
18598 // by AM is legal for this target, for a load/store of the specified type.
18599 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
18600                                               Type *Ty,
18601                                               unsigned AS) const {
18602   // X86 supports extremely general addressing modes.
18603   CodeModel::Model M = getTargetMachine().getCodeModel();
18604   Reloc::Model R = getTargetMachine().getRelocationModel();
18605
18606   // X86 allows a sign-extended 32-bit immediate field as a displacement.
18607   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
18608     return false;
18609
18610   if (AM.BaseGV) {
18611     unsigned GVFlags =
18612       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
18613
18614     // If a reference to this global requires an extra load, we can't fold it.
18615     if (isGlobalStubReference(GVFlags))
18616       return false;
18617
18618     // If BaseGV requires a register for the PIC base, we cannot also have a
18619     // BaseReg specified.
18620     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
18621       return false;
18622
18623     // If lower 4G is not available, then we must use rip-relative addressing.
18624     if ((M != CodeModel::Small || R != Reloc::Static) &&
18625         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
18626       return false;
18627   }
18628
18629   switch (AM.Scale) {
18630   case 0:
18631   case 1:
18632   case 2:
18633   case 4:
18634   case 8:
18635     // These scales always work.
18636     break;
18637   case 3:
18638   case 5:
18639   case 9:
18640     // These scales are formed with basereg+scalereg.  Only accept if there is
18641     // no basereg yet.
18642     if (AM.HasBaseReg)
18643       return false;
18644     break;
18645   default:  // Other stuff never works.
18646     return false;
18647   }
18648
18649   return true;
18650 }
18651
18652 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
18653   unsigned Bits = Ty->getScalarSizeInBits();
18654
18655   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
18656   // particularly cheaper than those without.
18657   if (Bits == 8)
18658     return false;
18659
18660   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
18661   // variable shifts just as cheap as scalar ones.
18662   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
18663     return false;
18664
18665   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
18666   // fully general vector.
18667   return true;
18668 }
18669
18670 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
18671   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
18672     return false;
18673   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
18674   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
18675   return NumBits1 > NumBits2;
18676 }
18677
18678 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
18679   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
18680     return false;
18681
18682   if (!isTypeLegal(EVT::getEVT(Ty1)))
18683     return false;
18684
18685   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
18686
18687   // Assuming the caller doesn't have a zeroext or signext return parameter,
18688   // truncation all the way down to i1 is valid.
18689   return true;
18690 }
18691
18692 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
18693   return isInt<32>(Imm);
18694 }
18695
18696 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
18697   // Can also use sub to handle negated immediates.
18698   return isInt<32>(Imm);
18699 }
18700
18701 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
18702   if (!VT1.isInteger() || !VT2.isInteger())
18703     return false;
18704   unsigned NumBits1 = VT1.getSizeInBits();
18705   unsigned NumBits2 = VT2.getSizeInBits();
18706   return NumBits1 > NumBits2;
18707 }
18708
18709 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
18710   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
18711   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
18712 }
18713
18714 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
18715   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
18716   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
18717 }
18718
18719 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
18720   EVT VT1 = Val.getValueType();
18721   if (isZExtFree(VT1, VT2))
18722     return true;
18723
18724   if (Val.getOpcode() != ISD::LOAD)
18725     return false;
18726
18727   if (!VT1.isSimple() || !VT1.isInteger() ||
18728       !VT2.isSimple() || !VT2.isInteger())
18729     return false;
18730
18731   switch (VT1.getSimpleVT().SimpleTy) {
18732   default: break;
18733   case MVT::i8:
18734   case MVT::i16:
18735   case MVT::i32:
18736     // X86 has 8, 16, and 32-bit zero-extending loads.
18737     return true;
18738   }
18739
18740   return false;
18741 }
18742
18743 bool X86TargetLowering::isVectorLoadExtDesirable(SDValue) const { return true; }
18744
18745 bool
18746 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
18747   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4() || Subtarget->hasAVX512()))
18748     return false;
18749
18750   VT = VT.getScalarType();
18751
18752   if (!VT.isSimple())
18753     return false;
18754
18755   switch (VT.getSimpleVT().SimpleTy) {
18756   case MVT::f32:
18757   case MVT::f64:
18758     return true;
18759   default:
18760     break;
18761   }
18762
18763   return false;
18764 }
18765
18766 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
18767   // i16 instructions are longer (0x66 prefix) and potentially slower.
18768   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
18769 }
18770
18771 /// isShuffleMaskLegal - Targets can use this to indicate that they only
18772 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
18773 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
18774 /// are assumed to be legal.
18775 bool
18776 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
18777                                       EVT VT) const {
18778   if (!VT.isSimple())
18779     return false;
18780
18781   // Not for i1 vectors
18782   if (VT.getScalarType() == MVT::i1)
18783     return false;
18784
18785   // Very little shuffling can be done for 64-bit vectors right now.
18786   if (VT.getSizeInBits() == 64)
18787     return false;
18788
18789   // We only care that the types being shuffled are legal. The lowering can
18790   // handle any possible shuffle mask that results.
18791   return isTypeLegal(VT.getSimpleVT());
18792 }
18793
18794 bool
18795 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
18796                                           EVT VT) const {
18797   // Just delegate to the generic legality, clear masks aren't special.
18798   return isShuffleMaskLegal(Mask, VT);
18799 }
18800
18801 //===----------------------------------------------------------------------===//
18802 //                           X86 Scheduler Hooks
18803 //===----------------------------------------------------------------------===//
18804
18805 /// Utility function to emit xbegin specifying the start of an RTM region.
18806 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
18807                                      const TargetInstrInfo *TII) {
18808   DebugLoc DL = MI->getDebugLoc();
18809
18810   const BasicBlock *BB = MBB->getBasicBlock();
18811   MachineFunction::iterator I = MBB;
18812   ++I;
18813
18814   // For the v = xbegin(), we generate
18815   //
18816   // thisMBB:
18817   //  xbegin sinkMBB
18818   //
18819   // mainMBB:
18820   //  eax = -1
18821   //
18822   // sinkMBB:
18823   //  v = eax
18824
18825   MachineBasicBlock *thisMBB = MBB;
18826   MachineFunction *MF = MBB->getParent();
18827   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
18828   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
18829   MF->insert(I, mainMBB);
18830   MF->insert(I, sinkMBB);
18831
18832   // Transfer the remainder of BB and its successor edges to sinkMBB.
18833   sinkMBB->splice(sinkMBB->begin(), MBB,
18834                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
18835   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
18836
18837   // thisMBB:
18838   //  xbegin sinkMBB
18839   //  # fallthrough to mainMBB
18840   //  # abortion to sinkMBB
18841   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
18842   thisMBB->addSuccessor(mainMBB);
18843   thisMBB->addSuccessor(sinkMBB);
18844
18845   // mainMBB:
18846   //  EAX = -1
18847   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
18848   mainMBB->addSuccessor(sinkMBB);
18849
18850   // sinkMBB:
18851   // EAX is live into the sinkMBB
18852   sinkMBB->addLiveIn(X86::EAX);
18853   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
18854           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
18855     .addReg(X86::EAX);
18856
18857   MI->eraseFromParent();
18858   return sinkMBB;
18859 }
18860
18861 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
18862 // or XMM0_V32I8 in AVX all of this code can be replaced with that
18863 // in the .td file.
18864 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
18865                                        const TargetInstrInfo *TII) {
18866   unsigned Opc;
18867   switch (MI->getOpcode()) {
18868   default: llvm_unreachable("illegal opcode!");
18869   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
18870   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
18871   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
18872   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
18873   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
18874   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
18875   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
18876   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
18877   }
18878
18879   DebugLoc dl = MI->getDebugLoc();
18880   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
18881
18882   unsigned NumArgs = MI->getNumOperands();
18883   for (unsigned i = 1; i < NumArgs; ++i) {
18884     MachineOperand &Op = MI->getOperand(i);
18885     if (!(Op.isReg() && Op.isImplicit()))
18886       MIB.addOperand(Op);
18887   }
18888   if (MI->hasOneMemOperand())
18889     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
18890
18891   BuildMI(*BB, MI, dl,
18892     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
18893     .addReg(X86::XMM0);
18894
18895   MI->eraseFromParent();
18896   return BB;
18897 }
18898
18899 // FIXME: Custom handling because TableGen doesn't support multiple implicit
18900 // defs in an instruction pattern
18901 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
18902                                        const TargetInstrInfo *TII) {
18903   unsigned Opc;
18904   switch (MI->getOpcode()) {
18905   default: llvm_unreachable("illegal opcode!");
18906   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
18907   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
18908   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
18909   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
18910   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
18911   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
18912   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
18913   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
18914   }
18915
18916   DebugLoc dl = MI->getDebugLoc();
18917   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
18918
18919   unsigned NumArgs = MI->getNumOperands(); // remove the results
18920   for (unsigned i = 1; i < NumArgs; ++i) {
18921     MachineOperand &Op = MI->getOperand(i);
18922     if (!(Op.isReg() && Op.isImplicit()))
18923       MIB.addOperand(Op);
18924   }
18925   if (MI->hasOneMemOperand())
18926     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
18927
18928   BuildMI(*BB, MI, dl,
18929     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
18930     .addReg(X86::ECX);
18931
18932   MI->eraseFromParent();
18933   return BB;
18934 }
18935
18936 static MachineBasicBlock *EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
18937                                       const X86Subtarget *Subtarget) {
18938   DebugLoc dl = MI->getDebugLoc();
18939   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
18940   // Address into RAX/EAX, other two args into ECX, EDX.
18941   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
18942   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
18943   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
18944   for (int i = 0; i < X86::AddrNumOperands; ++i)
18945     MIB.addOperand(MI->getOperand(i));
18946
18947   unsigned ValOps = X86::AddrNumOperands;
18948   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
18949     .addReg(MI->getOperand(ValOps).getReg());
18950   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
18951     .addReg(MI->getOperand(ValOps+1).getReg());
18952
18953   // The instruction doesn't actually take any operands though.
18954   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
18955
18956   MI->eraseFromParent(); // The pseudo is gone now.
18957   return BB;
18958 }
18959
18960 MachineBasicBlock *
18961 X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr *MI,
18962                                                  MachineBasicBlock *MBB) const {
18963   // Emit va_arg instruction on X86-64.
18964
18965   // Operands to this pseudo-instruction:
18966   // 0  ) Output        : destination address (reg)
18967   // 1-5) Input         : va_list address (addr, i64mem)
18968   // 6  ) ArgSize       : Size (in bytes) of vararg type
18969   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
18970   // 8  ) Align         : Alignment of type
18971   // 9  ) EFLAGS (implicit-def)
18972
18973   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
18974   static_assert(X86::AddrNumOperands == 5,
18975                 "VAARG_64 assumes 5 address operands");
18976
18977   unsigned DestReg = MI->getOperand(0).getReg();
18978   MachineOperand &Base = MI->getOperand(1);
18979   MachineOperand &Scale = MI->getOperand(2);
18980   MachineOperand &Index = MI->getOperand(3);
18981   MachineOperand &Disp = MI->getOperand(4);
18982   MachineOperand &Segment = MI->getOperand(5);
18983   unsigned ArgSize = MI->getOperand(6).getImm();
18984   unsigned ArgMode = MI->getOperand(7).getImm();
18985   unsigned Align = MI->getOperand(8).getImm();
18986
18987   // Memory Reference
18988   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
18989   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
18990   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
18991
18992   // Machine Information
18993   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
18994   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
18995   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
18996   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
18997   DebugLoc DL = MI->getDebugLoc();
18998
18999   // struct va_list {
19000   //   i32   gp_offset
19001   //   i32   fp_offset
19002   //   i64   overflow_area (address)
19003   //   i64   reg_save_area (address)
19004   // }
19005   // sizeof(va_list) = 24
19006   // alignment(va_list) = 8
19007
19008   unsigned TotalNumIntRegs = 6;
19009   unsigned TotalNumXMMRegs = 8;
19010   bool UseGPOffset = (ArgMode == 1);
19011   bool UseFPOffset = (ArgMode == 2);
19012   unsigned MaxOffset = TotalNumIntRegs * 8 +
19013                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
19014
19015   /* Align ArgSize to a multiple of 8 */
19016   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
19017   bool NeedsAlign = (Align > 8);
19018
19019   MachineBasicBlock *thisMBB = MBB;
19020   MachineBasicBlock *overflowMBB;
19021   MachineBasicBlock *offsetMBB;
19022   MachineBasicBlock *endMBB;
19023
19024   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
19025   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
19026   unsigned OffsetReg = 0;
19027
19028   if (!UseGPOffset && !UseFPOffset) {
19029     // If we only pull from the overflow region, we don't create a branch.
19030     // We don't need to alter control flow.
19031     OffsetDestReg = 0; // unused
19032     OverflowDestReg = DestReg;
19033
19034     offsetMBB = nullptr;
19035     overflowMBB = thisMBB;
19036     endMBB = thisMBB;
19037   } else {
19038     // First emit code to check if gp_offset (or fp_offset) is below the bound.
19039     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
19040     // If not, pull from overflow_area. (branch to overflowMBB)
19041     //
19042     //       thisMBB
19043     //         |     .
19044     //         |        .
19045     //     offsetMBB   overflowMBB
19046     //         |        .
19047     //         |     .
19048     //        endMBB
19049
19050     // Registers for the PHI in endMBB
19051     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
19052     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
19053
19054     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
19055     MachineFunction *MF = MBB->getParent();
19056     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
19057     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
19058     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
19059
19060     MachineFunction::iterator MBBIter = MBB;
19061     ++MBBIter;
19062
19063     // Insert the new basic blocks
19064     MF->insert(MBBIter, offsetMBB);
19065     MF->insert(MBBIter, overflowMBB);
19066     MF->insert(MBBIter, endMBB);
19067
19068     // Transfer the remainder of MBB and its successor edges to endMBB.
19069     endMBB->splice(endMBB->begin(), thisMBB,
19070                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
19071     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
19072
19073     // Make offsetMBB and overflowMBB successors of thisMBB
19074     thisMBB->addSuccessor(offsetMBB);
19075     thisMBB->addSuccessor(overflowMBB);
19076
19077     // endMBB is a successor of both offsetMBB and overflowMBB
19078     offsetMBB->addSuccessor(endMBB);
19079     overflowMBB->addSuccessor(endMBB);
19080
19081     // Load the offset value into a register
19082     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
19083     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
19084       .addOperand(Base)
19085       .addOperand(Scale)
19086       .addOperand(Index)
19087       .addDisp(Disp, UseFPOffset ? 4 : 0)
19088       .addOperand(Segment)
19089       .setMemRefs(MMOBegin, MMOEnd);
19090
19091     // Check if there is enough room left to pull this argument.
19092     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
19093       .addReg(OffsetReg)
19094       .addImm(MaxOffset + 8 - ArgSizeA8);
19095
19096     // Branch to "overflowMBB" if offset >= max
19097     // Fall through to "offsetMBB" otherwise
19098     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
19099       .addMBB(overflowMBB);
19100   }
19101
19102   // In offsetMBB, emit code to use the reg_save_area.
19103   if (offsetMBB) {
19104     assert(OffsetReg != 0);
19105
19106     // Read the reg_save_area address.
19107     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
19108     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
19109       .addOperand(Base)
19110       .addOperand(Scale)
19111       .addOperand(Index)
19112       .addDisp(Disp, 16)
19113       .addOperand(Segment)
19114       .setMemRefs(MMOBegin, MMOEnd);
19115
19116     // Zero-extend the offset
19117     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
19118       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
19119         .addImm(0)
19120         .addReg(OffsetReg)
19121         .addImm(X86::sub_32bit);
19122
19123     // Add the offset to the reg_save_area to get the final address.
19124     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
19125       .addReg(OffsetReg64)
19126       .addReg(RegSaveReg);
19127
19128     // Compute the offset for the next argument
19129     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
19130     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
19131       .addReg(OffsetReg)
19132       .addImm(UseFPOffset ? 16 : 8);
19133
19134     // Store it back into the va_list.
19135     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
19136       .addOperand(Base)
19137       .addOperand(Scale)
19138       .addOperand(Index)
19139       .addDisp(Disp, UseFPOffset ? 4 : 0)
19140       .addOperand(Segment)
19141       .addReg(NextOffsetReg)
19142       .setMemRefs(MMOBegin, MMOEnd);
19143
19144     // Jump to endMBB
19145     BuildMI(offsetMBB, DL, TII->get(X86::JMP_1))
19146       .addMBB(endMBB);
19147   }
19148
19149   //
19150   // Emit code to use overflow area
19151   //
19152
19153   // Load the overflow_area address into a register.
19154   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
19155   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
19156     .addOperand(Base)
19157     .addOperand(Scale)
19158     .addOperand(Index)
19159     .addDisp(Disp, 8)
19160     .addOperand(Segment)
19161     .setMemRefs(MMOBegin, MMOEnd);
19162
19163   // If we need to align it, do so. Otherwise, just copy the address
19164   // to OverflowDestReg.
19165   if (NeedsAlign) {
19166     // Align the overflow address
19167     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
19168     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
19169
19170     // aligned_addr = (addr + (align-1)) & ~(align-1)
19171     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
19172       .addReg(OverflowAddrReg)
19173       .addImm(Align-1);
19174
19175     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
19176       .addReg(TmpReg)
19177       .addImm(~(uint64_t)(Align-1));
19178   } else {
19179     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
19180       .addReg(OverflowAddrReg);
19181   }
19182
19183   // Compute the next overflow address after this argument.
19184   // (the overflow address should be kept 8-byte aligned)
19185   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
19186   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
19187     .addReg(OverflowDestReg)
19188     .addImm(ArgSizeA8);
19189
19190   // Store the new overflow address.
19191   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
19192     .addOperand(Base)
19193     .addOperand(Scale)
19194     .addOperand(Index)
19195     .addDisp(Disp, 8)
19196     .addOperand(Segment)
19197     .addReg(NextAddrReg)
19198     .setMemRefs(MMOBegin, MMOEnd);
19199
19200   // If we branched, emit the PHI to the front of endMBB.
19201   if (offsetMBB) {
19202     BuildMI(*endMBB, endMBB->begin(), DL,
19203             TII->get(X86::PHI), DestReg)
19204       .addReg(OffsetDestReg).addMBB(offsetMBB)
19205       .addReg(OverflowDestReg).addMBB(overflowMBB);
19206   }
19207
19208   // Erase the pseudo instruction
19209   MI->eraseFromParent();
19210
19211   return endMBB;
19212 }
19213
19214 MachineBasicBlock *
19215 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
19216                                                  MachineInstr *MI,
19217                                                  MachineBasicBlock *MBB) const {
19218   // Emit code to save XMM registers to the stack. The ABI says that the
19219   // number of registers to save is given in %al, so it's theoretically
19220   // possible to do an indirect jump trick to avoid saving all of them,
19221   // however this code takes a simpler approach and just executes all
19222   // of the stores if %al is non-zero. It's less code, and it's probably
19223   // easier on the hardware branch predictor, and stores aren't all that
19224   // expensive anyway.
19225
19226   // Create the new basic blocks. One block contains all the XMM stores,
19227   // and one block is the final destination regardless of whether any
19228   // stores were performed.
19229   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
19230   MachineFunction *F = MBB->getParent();
19231   MachineFunction::iterator MBBIter = MBB;
19232   ++MBBIter;
19233   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
19234   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
19235   F->insert(MBBIter, XMMSaveMBB);
19236   F->insert(MBBIter, EndMBB);
19237
19238   // Transfer the remainder of MBB and its successor edges to EndMBB.
19239   EndMBB->splice(EndMBB->begin(), MBB,
19240                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
19241   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
19242
19243   // The original block will now fall through to the XMM save block.
19244   MBB->addSuccessor(XMMSaveMBB);
19245   // The XMMSaveMBB will fall through to the end block.
19246   XMMSaveMBB->addSuccessor(EndMBB);
19247
19248   // Now add the instructions.
19249   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
19250   DebugLoc DL = MI->getDebugLoc();
19251
19252   unsigned CountReg = MI->getOperand(0).getReg();
19253   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
19254   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
19255
19256   if (!Subtarget->isTargetWin64()) {
19257     // If %al is 0, branch around the XMM save block.
19258     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
19259     BuildMI(MBB, DL, TII->get(X86::JE_1)).addMBB(EndMBB);
19260     MBB->addSuccessor(EndMBB);
19261   }
19262
19263   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
19264   // that was just emitted, but clearly shouldn't be "saved".
19265   assert((MI->getNumOperands() <= 3 ||
19266           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
19267           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
19268          && "Expected last argument to be EFLAGS");
19269   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
19270   // In the XMM save block, save all the XMM argument registers.
19271   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
19272     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
19273     MachineMemOperand *MMO =
19274       F->getMachineMemOperand(
19275           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
19276         MachineMemOperand::MOStore,
19277         /*Size=*/16, /*Align=*/16);
19278     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
19279       .addFrameIndex(RegSaveFrameIndex)
19280       .addImm(/*Scale=*/1)
19281       .addReg(/*IndexReg=*/0)
19282       .addImm(/*Disp=*/Offset)
19283       .addReg(/*Segment=*/0)
19284       .addReg(MI->getOperand(i).getReg())
19285       .addMemOperand(MMO);
19286   }
19287
19288   MI->eraseFromParent();   // The pseudo instruction is gone now.
19289
19290   return EndMBB;
19291 }
19292
19293 // The EFLAGS operand of SelectItr might be missing a kill marker
19294 // because there were multiple uses of EFLAGS, and ISel didn't know
19295 // which to mark. Figure out whether SelectItr should have had a
19296 // kill marker, and set it if it should. Returns the correct kill
19297 // marker value.
19298 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
19299                                      MachineBasicBlock* BB,
19300                                      const TargetRegisterInfo* TRI) {
19301   // Scan forward through BB for a use/def of EFLAGS.
19302   MachineBasicBlock::iterator miI(std::next(SelectItr));
19303   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
19304     const MachineInstr& mi = *miI;
19305     if (mi.readsRegister(X86::EFLAGS))
19306       return false;
19307     if (mi.definesRegister(X86::EFLAGS))
19308       break; // Should have kill-flag - update below.
19309   }
19310
19311   // If we hit the end of the block, check whether EFLAGS is live into a
19312   // successor.
19313   if (miI == BB->end()) {
19314     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
19315                                           sEnd = BB->succ_end();
19316          sItr != sEnd; ++sItr) {
19317       MachineBasicBlock* succ = *sItr;
19318       if (succ->isLiveIn(X86::EFLAGS))
19319         return false;
19320     }
19321   }
19322
19323   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
19324   // out. SelectMI should have a kill flag on EFLAGS.
19325   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
19326   return true;
19327 }
19328
19329 MachineBasicBlock *
19330 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
19331                                      MachineBasicBlock *BB) const {
19332   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
19333   DebugLoc DL = MI->getDebugLoc();
19334
19335   // To "insert" a SELECT_CC instruction, we actually have to insert the
19336   // diamond control-flow pattern.  The incoming instruction knows the
19337   // destination vreg to set, the condition code register to branch on, the
19338   // true/false values to select between, and a branch opcode to use.
19339   const BasicBlock *LLVM_BB = BB->getBasicBlock();
19340   MachineFunction::iterator It = BB;
19341   ++It;
19342
19343   //  thisMBB:
19344   //  ...
19345   //   TrueVal = ...
19346   //   cmpTY ccX, r1, r2
19347   //   bCC copy1MBB
19348   //   fallthrough --> copy0MBB
19349   MachineBasicBlock *thisMBB = BB;
19350   MachineFunction *F = BB->getParent();
19351
19352   // We also lower double CMOVs:
19353   //   (CMOV (CMOV F, T, cc1), T, cc2)
19354   // to two successives branches.  For that, we look for another CMOV as the
19355   // following instruction.
19356   //
19357   // Without this, we would add a PHI between the two jumps, which ends up
19358   // creating a few copies all around. For instance, for
19359   //
19360   //    (sitofp (zext (fcmp une)))
19361   //
19362   // we would generate:
19363   //
19364   //         ucomiss %xmm1, %xmm0
19365   //         movss  <1.0f>, %xmm0
19366   //         movaps  %xmm0, %xmm1
19367   //         jne     .LBB5_2
19368   //         xorps   %xmm1, %xmm1
19369   // .LBB5_2:
19370   //         jp      .LBB5_4
19371   //         movaps  %xmm1, %xmm0
19372   // .LBB5_4:
19373   //         retq
19374   //
19375   // because this custom-inserter would have generated:
19376   //
19377   //   A
19378   //   | \
19379   //   |  B
19380   //   | /
19381   //   C
19382   //   | \
19383   //   |  D
19384   //   | /
19385   //   E
19386   //
19387   // A: X = ...; Y = ...
19388   // B: empty
19389   // C: Z = PHI [X, A], [Y, B]
19390   // D: empty
19391   // E: PHI [X, C], [Z, D]
19392   //
19393   // If we lower both CMOVs in a single step, we can instead generate:
19394   //
19395   //   A
19396   //   | \
19397   //   |  C
19398   //   | /|
19399   //   |/ |
19400   //   |  |
19401   //   |  D
19402   //   | /
19403   //   E
19404   //
19405   // A: X = ...; Y = ...
19406   // D: empty
19407   // E: PHI [X, A], [X, C], [Y, D]
19408   //
19409   // Which, in our sitofp/fcmp example, gives us something like:
19410   //
19411   //         ucomiss %xmm1, %xmm0
19412   //         movss  <1.0f>, %xmm0
19413   //         jne     .LBB5_4
19414   //         jp      .LBB5_4
19415   //         xorps   %xmm0, %xmm0
19416   // .LBB5_4:
19417   //         retq
19418   //
19419   MachineInstr *NextCMOV = nullptr;
19420   MachineBasicBlock::iterator NextMIIt =
19421       std::next(MachineBasicBlock::iterator(MI));
19422   if (NextMIIt != BB->end() && NextMIIt->getOpcode() == MI->getOpcode() &&
19423       NextMIIt->getOperand(2).getReg() == MI->getOperand(2).getReg() &&
19424       NextMIIt->getOperand(1).getReg() == MI->getOperand(0).getReg())
19425     NextCMOV = &*NextMIIt;
19426
19427   MachineBasicBlock *jcc1MBB = nullptr;
19428
19429   // If we have a double CMOV, we lower it to two successive branches to
19430   // the same block.  EFLAGS is used by both, so mark it as live in the second.
19431   if (NextCMOV) {
19432     jcc1MBB = F->CreateMachineBasicBlock(LLVM_BB);
19433     F->insert(It, jcc1MBB);
19434     jcc1MBB->addLiveIn(X86::EFLAGS);
19435   }
19436
19437   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
19438   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
19439   F->insert(It, copy0MBB);
19440   F->insert(It, sinkMBB);
19441
19442   // If the EFLAGS register isn't dead in the terminator, then claim that it's
19443   // live into the sink and copy blocks.
19444   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
19445
19446   MachineInstr *LastEFLAGSUser = NextCMOV ? NextCMOV : MI;
19447   if (!LastEFLAGSUser->killsRegister(X86::EFLAGS) &&
19448       !checkAndUpdateEFLAGSKill(LastEFLAGSUser, BB, TRI)) {
19449     copy0MBB->addLiveIn(X86::EFLAGS);
19450     sinkMBB->addLiveIn(X86::EFLAGS);
19451   }
19452
19453   // Transfer the remainder of BB and its successor edges to sinkMBB.
19454   sinkMBB->splice(sinkMBB->begin(), BB,
19455                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
19456   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
19457
19458   // Add the true and fallthrough blocks as its successors.
19459   if (NextCMOV) {
19460     // The fallthrough block may be jcc1MBB, if we have a double CMOV.
19461     BB->addSuccessor(jcc1MBB);
19462
19463     // In that case, jcc1MBB will itself fallthrough the copy0MBB, and
19464     // jump to the sinkMBB.
19465     jcc1MBB->addSuccessor(copy0MBB);
19466     jcc1MBB->addSuccessor(sinkMBB);
19467   } else {
19468     BB->addSuccessor(copy0MBB);
19469   }
19470
19471   // The true block target of the first (or only) branch is always sinkMBB.
19472   BB->addSuccessor(sinkMBB);
19473
19474   // Create the conditional branch instruction.
19475   unsigned Opc =
19476     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
19477   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
19478
19479   if (NextCMOV) {
19480     unsigned Opc2 = X86::GetCondBranchFromCond(
19481         (X86::CondCode)NextCMOV->getOperand(3).getImm());
19482     BuildMI(jcc1MBB, DL, TII->get(Opc2)).addMBB(sinkMBB);
19483   }
19484
19485   //  copy0MBB:
19486   //   %FalseValue = ...
19487   //   # fallthrough to sinkMBB
19488   copy0MBB->addSuccessor(sinkMBB);
19489
19490   //  sinkMBB:
19491   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
19492   //  ...
19493   MachineInstrBuilder MIB =
19494       BuildMI(*sinkMBB, sinkMBB->begin(), DL, TII->get(X86::PHI),
19495               MI->getOperand(0).getReg())
19496           .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
19497           .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
19498
19499   // If we have a double CMOV, the second Jcc provides the same incoming
19500   // value as the first Jcc (the True operand of the SELECT_CC/CMOV nodes).
19501   if (NextCMOV) {
19502     MIB.addReg(MI->getOperand(2).getReg()).addMBB(jcc1MBB);
19503     // Copy the PHI result to the register defined by the second CMOV.
19504     BuildMI(*sinkMBB, std::next(MachineBasicBlock::iterator(MIB.getInstr())),
19505             DL, TII->get(TargetOpcode::COPY), NextCMOV->getOperand(0).getReg())
19506         .addReg(MI->getOperand(0).getReg());
19507     NextCMOV->eraseFromParent();
19508   }
19509
19510   MI->eraseFromParent();   // The pseudo instruction is gone now.
19511   return sinkMBB;
19512 }
19513
19514 MachineBasicBlock *
19515 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI,
19516                                         MachineBasicBlock *BB) const {
19517   MachineFunction *MF = BB->getParent();
19518   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
19519   DebugLoc DL = MI->getDebugLoc();
19520   const BasicBlock *LLVM_BB = BB->getBasicBlock();
19521
19522   assert(MF->shouldSplitStack());
19523
19524   const bool Is64Bit = Subtarget->is64Bit();
19525   const bool IsLP64 = Subtarget->isTarget64BitLP64();
19526
19527   const unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
19528   const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30;
19529
19530   // BB:
19531   //  ... [Till the alloca]
19532   // If stacklet is not large enough, jump to mallocMBB
19533   //
19534   // bumpMBB:
19535   //  Allocate by subtracting from RSP
19536   //  Jump to continueMBB
19537   //
19538   // mallocMBB:
19539   //  Allocate by call to runtime
19540   //
19541   // continueMBB:
19542   //  ...
19543   //  [rest of original BB]
19544   //
19545
19546   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
19547   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
19548   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
19549
19550   MachineRegisterInfo &MRI = MF->getRegInfo();
19551   const TargetRegisterClass *AddrRegClass =
19552     getRegClassFor(getPointerTy());
19553
19554   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
19555     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
19556     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
19557     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
19558     sizeVReg = MI->getOperand(1).getReg(),
19559     physSPReg = IsLP64 || Subtarget->isTargetNaCl64() ? X86::RSP : X86::ESP;
19560
19561   MachineFunction::iterator MBBIter = BB;
19562   ++MBBIter;
19563
19564   MF->insert(MBBIter, bumpMBB);
19565   MF->insert(MBBIter, mallocMBB);
19566   MF->insert(MBBIter, continueMBB);
19567
19568   continueMBB->splice(continueMBB->begin(), BB,
19569                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
19570   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
19571
19572   // Add code to the main basic block to check if the stack limit has been hit,
19573   // and if so, jump to mallocMBB otherwise to bumpMBB.
19574   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
19575   BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
19576     .addReg(tmpSPVReg).addReg(sizeVReg);
19577   BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr))
19578     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
19579     .addReg(SPLimitVReg);
19580   BuildMI(BB, DL, TII->get(X86::JG_1)).addMBB(mallocMBB);
19581
19582   // bumpMBB simply decreases the stack pointer, since we know the current
19583   // stacklet has enough space.
19584   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
19585     .addReg(SPLimitVReg);
19586   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
19587     .addReg(SPLimitVReg);
19588   BuildMI(bumpMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB);
19589
19590   // Calls into a routine in libgcc to allocate more space from the heap.
19591   const uint32_t *RegMask =
19592       Subtarget->getRegisterInfo()->getCallPreservedMask(*MF, CallingConv::C);
19593   if (IsLP64) {
19594     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
19595       .addReg(sizeVReg);
19596     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
19597       .addExternalSymbol("__morestack_allocate_stack_space")
19598       .addRegMask(RegMask)
19599       .addReg(X86::RDI, RegState::Implicit)
19600       .addReg(X86::RAX, RegState::ImplicitDefine);
19601   } else if (Is64Bit) {
19602     BuildMI(mallocMBB, DL, TII->get(X86::MOV32rr), X86::EDI)
19603       .addReg(sizeVReg);
19604     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
19605       .addExternalSymbol("__morestack_allocate_stack_space")
19606       .addRegMask(RegMask)
19607       .addReg(X86::EDI, RegState::Implicit)
19608       .addReg(X86::EAX, RegState::ImplicitDefine);
19609   } else {
19610     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
19611       .addImm(12);
19612     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
19613     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
19614       .addExternalSymbol("__morestack_allocate_stack_space")
19615       .addRegMask(RegMask)
19616       .addReg(X86::EAX, RegState::ImplicitDefine);
19617   }
19618
19619   if (!Is64Bit)
19620     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
19621       .addImm(16);
19622
19623   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
19624     .addReg(IsLP64 ? X86::RAX : X86::EAX);
19625   BuildMI(mallocMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB);
19626
19627   // Set up the CFG correctly.
19628   BB->addSuccessor(bumpMBB);
19629   BB->addSuccessor(mallocMBB);
19630   mallocMBB->addSuccessor(continueMBB);
19631   bumpMBB->addSuccessor(continueMBB);
19632
19633   // Take care of the PHI nodes.
19634   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
19635           MI->getOperand(0).getReg())
19636     .addReg(mallocPtrVReg).addMBB(mallocMBB)
19637     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
19638
19639   // Delete the original pseudo instruction.
19640   MI->eraseFromParent();
19641
19642   // And we're done.
19643   return continueMBB;
19644 }
19645
19646 MachineBasicBlock *
19647 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
19648                                         MachineBasicBlock *BB) const {
19649   DebugLoc DL = MI->getDebugLoc();
19650
19651   assert(!Subtarget->isTargetMachO());
19652
19653   Subtarget->getFrameLowering()->emitStackProbeCall(*BB->getParent(), *BB, MI,
19654                                                     DL);
19655
19656   MI->eraseFromParent();   // The pseudo instruction is gone now.
19657   return BB;
19658 }
19659
19660 MachineBasicBlock *
19661 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
19662                                       MachineBasicBlock *BB) const {
19663   // This is pretty easy.  We're taking the value that we received from
19664   // our load from the relocation, sticking it in either RDI (x86-64)
19665   // or EAX and doing an indirect call.  The return value will then
19666   // be in the normal return register.
19667   MachineFunction *F = BB->getParent();
19668   const X86InstrInfo *TII = Subtarget->getInstrInfo();
19669   DebugLoc DL = MI->getDebugLoc();
19670
19671   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
19672   assert(MI->getOperand(3).isGlobal() && "This should be a global");
19673
19674   // Get a register mask for the lowered call.
19675   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
19676   // proper register mask.
19677   const uint32_t *RegMask =
19678       Subtarget->getRegisterInfo()->getCallPreservedMask(*F, CallingConv::C);
19679   if (Subtarget->is64Bit()) {
19680     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
19681                                       TII->get(X86::MOV64rm), X86::RDI)
19682     .addReg(X86::RIP)
19683     .addImm(0).addReg(0)
19684     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
19685                       MI->getOperand(3).getTargetFlags())
19686     .addReg(0);
19687     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
19688     addDirectMem(MIB, X86::RDI);
19689     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
19690   } else if (F->getTarget().getRelocationModel() != Reloc::PIC_) {
19691     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
19692                                       TII->get(X86::MOV32rm), X86::EAX)
19693     .addReg(0)
19694     .addImm(0).addReg(0)
19695     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
19696                       MI->getOperand(3).getTargetFlags())
19697     .addReg(0);
19698     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
19699     addDirectMem(MIB, X86::EAX);
19700     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
19701   } else {
19702     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
19703                                       TII->get(X86::MOV32rm), X86::EAX)
19704     .addReg(TII->getGlobalBaseReg(F))
19705     .addImm(0).addReg(0)
19706     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
19707                       MI->getOperand(3).getTargetFlags())
19708     .addReg(0);
19709     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
19710     addDirectMem(MIB, X86::EAX);
19711     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
19712   }
19713
19714   MI->eraseFromParent(); // The pseudo instruction is gone now.
19715   return BB;
19716 }
19717
19718 MachineBasicBlock *
19719 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
19720                                     MachineBasicBlock *MBB) const {
19721   DebugLoc DL = MI->getDebugLoc();
19722   MachineFunction *MF = MBB->getParent();
19723   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
19724   MachineRegisterInfo &MRI = MF->getRegInfo();
19725
19726   const BasicBlock *BB = MBB->getBasicBlock();
19727   MachineFunction::iterator I = MBB;
19728   ++I;
19729
19730   // Memory Reference
19731   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
19732   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
19733
19734   unsigned DstReg;
19735   unsigned MemOpndSlot = 0;
19736
19737   unsigned CurOp = 0;
19738
19739   DstReg = MI->getOperand(CurOp++).getReg();
19740   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
19741   assert(RC->hasType(MVT::i32) && "Invalid destination!");
19742   unsigned mainDstReg = MRI.createVirtualRegister(RC);
19743   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
19744
19745   MemOpndSlot = CurOp;
19746
19747   MVT PVT = getPointerTy();
19748   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
19749          "Invalid Pointer Size!");
19750
19751   // For v = setjmp(buf), we generate
19752   //
19753   // thisMBB:
19754   //  buf[LabelOffset] = restoreMBB
19755   //  SjLjSetup restoreMBB
19756   //
19757   // mainMBB:
19758   //  v_main = 0
19759   //
19760   // sinkMBB:
19761   //  v = phi(main, restore)
19762   //
19763   // restoreMBB:
19764   //  if base pointer being used, load it from frame
19765   //  v_restore = 1
19766
19767   MachineBasicBlock *thisMBB = MBB;
19768   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
19769   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
19770   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
19771   MF->insert(I, mainMBB);
19772   MF->insert(I, sinkMBB);
19773   MF->push_back(restoreMBB);
19774
19775   MachineInstrBuilder MIB;
19776
19777   // Transfer the remainder of BB and its successor edges to sinkMBB.
19778   sinkMBB->splice(sinkMBB->begin(), MBB,
19779                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
19780   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
19781
19782   // thisMBB:
19783   unsigned PtrStoreOpc = 0;
19784   unsigned LabelReg = 0;
19785   const int64_t LabelOffset = 1 * PVT.getStoreSize();
19786   Reloc::Model RM = MF->getTarget().getRelocationModel();
19787   bool UseImmLabel = (MF->getTarget().getCodeModel() == CodeModel::Small) &&
19788                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
19789
19790   // Prepare IP either in reg or imm.
19791   if (!UseImmLabel) {
19792     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
19793     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
19794     LabelReg = MRI.createVirtualRegister(PtrRC);
19795     if (Subtarget->is64Bit()) {
19796       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
19797               .addReg(X86::RIP)
19798               .addImm(0)
19799               .addReg(0)
19800               .addMBB(restoreMBB)
19801               .addReg(0);
19802     } else {
19803       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
19804       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
19805               .addReg(XII->getGlobalBaseReg(MF))
19806               .addImm(0)
19807               .addReg(0)
19808               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
19809               .addReg(0);
19810     }
19811   } else
19812     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
19813   // Store IP
19814   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
19815   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
19816     if (i == X86::AddrDisp)
19817       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
19818     else
19819       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
19820   }
19821   if (!UseImmLabel)
19822     MIB.addReg(LabelReg);
19823   else
19824     MIB.addMBB(restoreMBB);
19825   MIB.setMemRefs(MMOBegin, MMOEnd);
19826   // Setup
19827   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
19828           .addMBB(restoreMBB);
19829
19830   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
19831   MIB.addRegMask(RegInfo->getNoPreservedMask());
19832   thisMBB->addSuccessor(mainMBB);
19833   thisMBB->addSuccessor(restoreMBB);
19834
19835   // mainMBB:
19836   //  EAX = 0
19837   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
19838   mainMBB->addSuccessor(sinkMBB);
19839
19840   // sinkMBB:
19841   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
19842           TII->get(X86::PHI), DstReg)
19843     .addReg(mainDstReg).addMBB(mainMBB)
19844     .addReg(restoreDstReg).addMBB(restoreMBB);
19845
19846   // restoreMBB:
19847   if (RegInfo->hasBasePointer(*MF)) {
19848     const bool Uses64BitFramePtr =
19849         Subtarget->isTarget64BitLP64() || Subtarget->isTargetNaCl64();
19850     X86MachineFunctionInfo *X86FI = MF->getInfo<X86MachineFunctionInfo>();
19851     X86FI->setRestoreBasePointer(MF);
19852     unsigned FramePtr = RegInfo->getFrameRegister(*MF);
19853     unsigned BasePtr = RegInfo->getBaseRegister();
19854     unsigned Opm = Uses64BitFramePtr ? X86::MOV64rm : X86::MOV32rm;
19855     addRegOffset(BuildMI(restoreMBB, DL, TII->get(Opm), BasePtr),
19856                  FramePtr, true, X86FI->getRestoreBasePointerOffset())
19857       .setMIFlag(MachineInstr::FrameSetup);
19858   }
19859   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
19860   BuildMI(restoreMBB, DL, TII->get(X86::JMP_1)).addMBB(sinkMBB);
19861   restoreMBB->addSuccessor(sinkMBB);
19862
19863   MI->eraseFromParent();
19864   return sinkMBB;
19865 }
19866
19867 MachineBasicBlock *
19868 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
19869                                      MachineBasicBlock *MBB) const {
19870   DebugLoc DL = MI->getDebugLoc();
19871   MachineFunction *MF = MBB->getParent();
19872   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
19873   MachineRegisterInfo &MRI = MF->getRegInfo();
19874
19875   // Memory Reference
19876   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
19877   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
19878
19879   MVT PVT = getPointerTy();
19880   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
19881          "Invalid Pointer Size!");
19882
19883   const TargetRegisterClass *RC =
19884     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
19885   unsigned Tmp = MRI.createVirtualRegister(RC);
19886   // Since FP is only updated here but NOT referenced, it's treated as GPR.
19887   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
19888   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
19889   unsigned SP = RegInfo->getStackRegister();
19890
19891   MachineInstrBuilder MIB;
19892
19893   const int64_t LabelOffset = 1 * PVT.getStoreSize();
19894   const int64_t SPOffset = 2 * PVT.getStoreSize();
19895
19896   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
19897   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
19898
19899   // Reload FP
19900   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
19901   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
19902     MIB.addOperand(MI->getOperand(i));
19903   MIB.setMemRefs(MMOBegin, MMOEnd);
19904   // Reload IP
19905   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
19906   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
19907     if (i == X86::AddrDisp)
19908       MIB.addDisp(MI->getOperand(i), LabelOffset);
19909     else
19910       MIB.addOperand(MI->getOperand(i));
19911   }
19912   MIB.setMemRefs(MMOBegin, MMOEnd);
19913   // Reload SP
19914   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
19915   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
19916     if (i == X86::AddrDisp)
19917       MIB.addDisp(MI->getOperand(i), SPOffset);
19918     else
19919       MIB.addOperand(MI->getOperand(i));
19920   }
19921   MIB.setMemRefs(MMOBegin, MMOEnd);
19922   // Jump
19923   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
19924
19925   MI->eraseFromParent();
19926   return MBB;
19927 }
19928
19929 // Replace 213-type (isel default) FMA3 instructions with 231-type for
19930 // accumulator loops. Writing back to the accumulator allows the coalescer
19931 // to remove extra copies in the loop.
19932 // FIXME: Do this on AVX512.  We don't support 231 variants yet (PR23937).
19933 MachineBasicBlock *
19934 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
19935                                  MachineBasicBlock *MBB) const {
19936   MachineOperand &AddendOp = MI->getOperand(3);
19937
19938   // Bail out early if the addend isn't a register - we can't switch these.
19939   if (!AddendOp.isReg())
19940     return MBB;
19941
19942   MachineFunction &MF = *MBB->getParent();
19943   MachineRegisterInfo &MRI = MF.getRegInfo();
19944
19945   // Check whether the addend is defined by a PHI:
19946   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
19947   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
19948   if (!AddendDef.isPHI())
19949     return MBB;
19950
19951   // Look for the following pattern:
19952   // loop:
19953   //   %addend = phi [%entry, 0], [%loop, %result]
19954   //   ...
19955   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
19956
19957   // Replace with:
19958   //   loop:
19959   //   %addend = phi [%entry, 0], [%loop, %result]
19960   //   ...
19961   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
19962
19963   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
19964     assert(AddendDef.getOperand(i).isReg());
19965     MachineOperand PHISrcOp = AddendDef.getOperand(i);
19966     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
19967     if (&PHISrcInst == MI) {
19968       // Found a matching instruction.
19969       unsigned NewFMAOpc = 0;
19970       switch (MI->getOpcode()) {
19971         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
19972         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
19973         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
19974         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
19975         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
19976         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
19977         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
19978         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
19979         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
19980         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
19981         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
19982         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
19983         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
19984         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
19985         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
19986         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
19987         case X86::VFMADDSUBPDr213r: NewFMAOpc = X86::VFMADDSUBPDr231r; break;
19988         case X86::VFMADDSUBPSr213r: NewFMAOpc = X86::VFMADDSUBPSr231r; break;
19989         case X86::VFMSUBADDPDr213r: NewFMAOpc = X86::VFMSUBADDPDr231r; break;
19990         case X86::VFMSUBADDPSr213r: NewFMAOpc = X86::VFMSUBADDPSr231r; break;
19991
19992         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
19993         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
19994         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
19995         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
19996         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
19997         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
19998         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
19999         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
20000         case X86::VFMADDSUBPDr213rY: NewFMAOpc = X86::VFMADDSUBPDr231rY; break;
20001         case X86::VFMADDSUBPSr213rY: NewFMAOpc = X86::VFMADDSUBPSr231rY; break;
20002         case X86::VFMSUBADDPDr213rY: NewFMAOpc = X86::VFMSUBADDPDr231rY; break;
20003         case X86::VFMSUBADDPSr213rY: NewFMAOpc = X86::VFMSUBADDPSr231rY; break;
20004         default: llvm_unreachable("Unrecognized FMA variant.");
20005       }
20006
20007       const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
20008       MachineInstrBuilder MIB =
20009         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
20010         .addOperand(MI->getOperand(0))
20011         .addOperand(MI->getOperand(3))
20012         .addOperand(MI->getOperand(2))
20013         .addOperand(MI->getOperand(1));
20014       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
20015       MI->eraseFromParent();
20016     }
20017   }
20018
20019   return MBB;
20020 }
20021
20022 MachineBasicBlock *
20023 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
20024                                                MachineBasicBlock *BB) const {
20025   switch (MI->getOpcode()) {
20026   default: llvm_unreachable("Unexpected instr type to insert");
20027   case X86::TAILJMPd64:
20028   case X86::TAILJMPr64:
20029   case X86::TAILJMPm64:
20030   case X86::TAILJMPd64_REX:
20031   case X86::TAILJMPr64_REX:
20032   case X86::TAILJMPm64_REX:
20033     llvm_unreachable("TAILJMP64 would not be touched here.");
20034   case X86::TCRETURNdi64:
20035   case X86::TCRETURNri64:
20036   case X86::TCRETURNmi64:
20037     return BB;
20038   case X86::WIN_ALLOCA:
20039     return EmitLoweredWinAlloca(MI, BB);
20040   case X86::SEG_ALLOCA_32:
20041   case X86::SEG_ALLOCA_64:
20042     return EmitLoweredSegAlloca(MI, BB);
20043   case X86::TLSCall_32:
20044   case X86::TLSCall_64:
20045     return EmitLoweredTLSCall(MI, BB);
20046   case X86::CMOV_GR8:
20047   case X86::CMOV_FR32:
20048   case X86::CMOV_FR64:
20049   case X86::CMOV_V4F32:
20050   case X86::CMOV_V2F64:
20051   case X86::CMOV_V2I64:
20052   case X86::CMOV_V8F32:
20053   case X86::CMOV_V4F64:
20054   case X86::CMOV_V4I64:
20055   case X86::CMOV_V16F32:
20056   case X86::CMOV_V8F64:
20057   case X86::CMOV_V8I64:
20058   case X86::CMOV_GR16:
20059   case X86::CMOV_GR32:
20060   case X86::CMOV_RFP32:
20061   case X86::CMOV_RFP64:
20062   case X86::CMOV_RFP80:
20063   case X86::CMOV_V8I1:
20064   case X86::CMOV_V16I1:
20065   case X86::CMOV_V32I1:
20066   case X86::CMOV_V64I1:
20067     return EmitLoweredSelect(MI, BB);
20068
20069   case X86::FP32_TO_INT16_IN_MEM:
20070   case X86::FP32_TO_INT32_IN_MEM:
20071   case X86::FP32_TO_INT64_IN_MEM:
20072   case X86::FP64_TO_INT16_IN_MEM:
20073   case X86::FP64_TO_INT32_IN_MEM:
20074   case X86::FP64_TO_INT64_IN_MEM:
20075   case X86::FP80_TO_INT16_IN_MEM:
20076   case X86::FP80_TO_INT32_IN_MEM:
20077   case X86::FP80_TO_INT64_IN_MEM: {
20078     MachineFunction *F = BB->getParent();
20079     const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20080     DebugLoc DL = MI->getDebugLoc();
20081
20082     // Change the floating point control register to use "round towards zero"
20083     // mode when truncating to an integer value.
20084     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
20085     addFrameReference(BuildMI(*BB, MI, DL,
20086                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
20087
20088     // Load the old value of the high byte of the control word...
20089     unsigned OldCW =
20090       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
20091     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
20092                       CWFrameIdx);
20093
20094     // Set the high part to be round to zero...
20095     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
20096       .addImm(0xC7F);
20097
20098     // Reload the modified control word now...
20099     addFrameReference(BuildMI(*BB, MI, DL,
20100                               TII->get(X86::FLDCW16m)), CWFrameIdx);
20101
20102     // Restore the memory image of control word to original value
20103     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
20104       .addReg(OldCW);
20105
20106     // Get the X86 opcode to use.
20107     unsigned Opc;
20108     switch (MI->getOpcode()) {
20109     default: llvm_unreachable("illegal opcode!");
20110     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
20111     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
20112     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
20113     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
20114     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
20115     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
20116     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
20117     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
20118     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
20119     }
20120
20121     X86AddressMode AM;
20122     MachineOperand &Op = MI->getOperand(0);
20123     if (Op.isReg()) {
20124       AM.BaseType = X86AddressMode::RegBase;
20125       AM.Base.Reg = Op.getReg();
20126     } else {
20127       AM.BaseType = X86AddressMode::FrameIndexBase;
20128       AM.Base.FrameIndex = Op.getIndex();
20129     }
20130     Op = MI->getOperand(1);
20131     if (Op.isImm())
20132       AM.Scale = Op.getImm();
20133     Op = MI->getOperand(2);
20134     if (Op.isImm())
20135       AM.IndexReg = Op.getImm();
20136     Op = MI->getOperand(3);
20137     if (Op.isGlobal()) {
20138       AM.GV = Op.getGlobal();
20139     } else {
20140       AM.Disp = Op.getImm();
20141     }
20142     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
20143                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
20144
20145     // Reload the original control word now.
20146     addFrameReference(BuildMI(*BB, MI, DL,
20147                               TII->get(X86::FLDCW16m)), CWFrameIdx);
20148
20149     MI->eraseFromParent();   // The pseudo instruction is gone now.
20150     return BB;
20151   }
20152     // String/text processing lowering.
20153   case X86::PCMPISTRM128REG:
20154   case X86::VPCMPISTRM128REG:
20155   case X86::PCMPISTRM128MEM:
20156   case X86::VPCMPISTRM128MEM:
20157   case X86::PCMPESTRM128REG:
20158   case X86::VPCMPESTRM128REG:
20159   case X86::PCMPESTRM128MEM:
20160   case X86::VPCMPESTRM128MEM:
20161     assert(Subtarget->hasSSE42() &&
20162            "Target must have SSE4.2 or AVX features enabled");
20163     return EmitPCMPSTRM(MI, BB, Subtarget->getInstrInfo());
20164
20165   // String/text processing lowering.
20166   case X86::PCMPISTRIREG:
20167   case X86::VPCMPISTRIREG:
20168   case X86::PCMPISTRIMEM:
20169   case X86::VPCMPISTRIMEM:
20170   case X86::PCMPESTRIREG:
20171   case X86::VPCMPESTRIREG:
20172   case X86::PCMPESTRIMEM:
20173   case X86::VPCMPESTRIMEM:
20174     assert(Subtarget->hasSSE42() &&
20175            "Target must have SSE4.2 or AVX features enabled");
20176     return EmitPCMPSTRI(MI, BB, Subtarget->getInstrInfo());
20177
20178   // Thread synchronization.
20179   case X86::MONITOR:
20180     return EmitMonitor(MI, BB, Subtarget);
20181
20182   // xbegin
20183   case X86::XBEGIN:
20184     return EmitXBegin(MI, BB, Subtarget->getInstrInfo());
20185
20186   case X86::VASTART_SAVE_XMM_REGS:
20187     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
20188
20189   case X86::VAARG_64:
20190     return EmitVAARG64WithCustomInserter(MI, BB);
20191
20192   case X86::EH_SjLj_SetJmp32:
20193   case X86::EH_SjLj_SetJmp64:
20194     return emitEHSjLjSetJmp(MI, BB);
20195
20196   case X86::EH_SjLj_LongJmp32:
20197   case X86::EH_SjLj_LongJmp64:
20198     return emitEHSjLjLongJmp(MI, BB);
20199
20200   case TargetOpcode::STATEPOINT:
20201     // As an implementation detail, STATEPOINT shares the STACKMAP format at
20202     // this point in the process.  We diverge later.
20203     return emitPatchPoint(MI, BB);
20204
20205   case TargetOpcode::STACKMAP:
20206   case TargetOpcode::PATCHPOINT:
20207     return emitPatchPoint(MI, BB);
20208
20209   case X86::VFMADDPDr213r:
20210   case X86::VFMADDPSr213r:
20211   case X86::VFMADDSDr213r:
20212   case X86::VFMADDSSr213r:
20213   case X86::VFMSUBPDr213r:
20214   case X86::VFMSUBPSr213r:
20215   case X86::VFMSUBSDr213r:
20216   case X86::VFMSUBSSr213r:
20217   case X86::VFNMADDPDr213r:
20218   case X86::VFNMADDPSr213r:
20219   case X86::VFNMADDSDr213r:
20220   case X86::VFNMADDSSr213r:
20221   case X86::VFNMSUBPDr213r:
20222   case X86::VFNMSUBPSr213r:
20223   case X86::VFNMSUBSDr213r:
20224   case X86::VFNMSUBSSr213r:
20225   case X86::VFMADDSUBPDr213r:
20226   case X86::VFMADDSUBPSr213r:
20227   case X86::VFMSUBADDPDr213r:
20228   case X86::VFMSUBADDPSr213r:
20229   case X86::VFMADDPDr213rY:
20230   case X86::VFMADDPSr213rY:
20231   case X86::VFMSUBPDr213rY:
20232   case X86::VFMSUBPSr213rY:
20233   case X86::VFNMADDPDr213rY:
20234   case X86::VFNMADDPSr213rY:
20235   case X86::VFNMSUBPDr213rY:
20236   case X86::VFNMSUBPSr213rY:
20237   case X86::VFMADDSUBPDr213rY:
20238   case X86::VFMADDSUBPSr213rY:
20239   case X86::VFMSUBADDPDr213rY:
20240   case X86::VFMSUBADDPSr213rY:
20241     return emitFMA3Instr(MI, BB);
20242   }
20243 }
20244
20245 //===----------------------------------------------------------------------===//
20246 //                           X86 Optimization Hooks
20247 //===----------------------------------------------------------------------===//
20248
20249 void X86TargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
20250                                                       APInt &KnownZero,
20251                                                       APInt &KnownOne,
20252                                                       const SelectionDAG &DAG,
20253                                                       unsigned Depth) const {
20254   unsigned BitWidth = KnownZero.getBitWidth();
20255   unsigned Opc = Op.getOpcode();
20256   assert((Opc >= ISD::BUILTIN_OP_END ||
20257           Opc == ISD::INTRINSIC_WO_CHAIN ||
20258           Opc == ISD::INTRINSIC_W_CHAIN ||
20259           Opc == ISD::INTRINSIC_VOID) &&
20260          "Should use MaskedValueIsZero if you don't know whether Op"
20261          " is a target node!");
20262
20263   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
20264   switch (Opc) {
20265   default: break;
20266   case X86ISD::ADD:
20267   case X86ISD::SUB:
20268   case X86ISD::ADC:
20269   case X86ISD::SBB:
20270   case X86ISD::SMUL:
20271   case X86ISD::UMUL:
20272   case X86ISD::INC:
20273   case X86ISD::DEC:
20274   case X86ISD::OR:
20275   case X86ISD::XOR:
20276   case X86ISD::AND:
20277     // These nodes' second result is a boolean.
20278     if (Op.getResNo() == 0)
20279       break;
20280     // Fallthrough
20281   case X86ISD::SETCC:
20282     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
20283     break;
20284   case ISD::INTRINSIC_WO_CHAIN: {
20285     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
20286     unsigned NumLoBits = 0;
20287     switch (IntId) {
20288     default: break;
20289     case Intrinsic::x86_sse_movmsk_ps:
20290     case Intrinsic::x86_avx_movmsk_ps_256:
20291     case Intrinsic::x86_sse2_movmsk_pd:
20292     case Intrinsic::x86_avx_movmsk_pd_256:
20293     case Intrinsic::x86_mmx_pmovmskb:
20294     case Intrinsic::x86_sse2_pmovmskb_128:
20295     case Intrinsic::x86_avx2_pmovmskb: {
20296       // High bits of movmskp{s|d}, pmovmskb are known zero.
20297       switch (IntId) {
20298         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
20299         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
20300         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
20301         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
20302         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
20303         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
20304         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
20305         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
20306       }
20307       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
20308       break;
20309     }
20310     }
20311     break;
20312   }
20313   }
20314 }
20315
20316 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
20317   SDValue Op,
20318   const SelectionDAG &,
20319   unsigned Depth) const {
20320   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
20321   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
20322     return Op.getValueType().getScalarType().getSizeInBits();
20323
20324   // Fallback case.
20325   return 1;
20326 }
20327
20328 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
20329 /// node is a GlobalAddress + offset.
20330 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
20331                                        const GlobalValue* &GA,
20332                                        int64_t &Offset) const {
20333   if (N->getOpcode() == X86ISD::Wrapper) {
20334     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
20335       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
20336       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
20337       return true;
20338     }
20339   }
20340   return TargetLowering::isGAPlusOffset(N, GA, Offset);
20341 }
20342
20343 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
20344 /// same as extracting the high 128-bit part of 256-bit vector and then
20345 /// inserting the result into the low part of a new 256-bit vector
20346 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
20347   EVT VT = SVOp->getValueType(0);
20348   unsigned NumElems = VT.getVectorNumElements();
20349
20350   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
20351   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
20352     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
20353         SVOp->getMaskElt(j) >= 0)
20354       return false;
20355
20356   return true;
20357 }
20358
20359 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
20360 /// same as extracting the low 128-bit part of 256-bit vector and then
20361 /// inserting the result into the high part of a new 256-bit vector
20362 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
20363   EVT VT = SVOp->getValueType(0);
20364   unsigned NumElems = VT.getVectorNumElements();
20365
20366   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
20367   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
20368     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
20369         SVOp->getMaskElt(j) >= 0)
20370       return false;
20371
20372   return true;
20373 }
20374
20375 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
20376 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
20377                                         TargetLowering::DAGCombinerInfo &DCI,
20378                                         const X86Subtarget* Subtarget) {
20379   SDLoc dl(N);
20380   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
20381   SDValue V1 = SVOp->getOperand(0);
20382   SDValue V2 = SVOp->getOperand(1);
20383   EVT VT = SVOp->getValueType(0);
20384   unsigned NumElems = VT.getVectorNumElements();
20385
20386   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
20387       V2.getOpcode() == ISD::CONCAT_VECTORS) {
20388     //
20389     //                   0,0,0,...
20390     //                      |
20391     //    V      UNDEF    BUILD_VECTOR    UNDEF
20392     //     \      /           \           /
20393     //  CONCAT_VECTOR         CONCAT_VECTOR
20394     //         \                  /
20395     //          \                /
20396     //          RESULT: V + zero extended
20397     //
20398     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
20399         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
20400         V1.getOperand(1).getOpcode() != ISD::UNDEF)
20401       return SDValue();
20402
20403     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
20404       return SDValue();
20405
20406     // To match the shuffle mask, the first half of the mask should
20407     // be exactly the first vector, and all the rest a splat with the
20408     // first element of the second one.
20409     for (unsigned i = 0; i != NumElems/2; ++i)
20410       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
20411           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
20412         return SDValue();
20413
20414     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
20415     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
20416       if (Ld->hasNUsesOfValue(1, 0)) {
20417         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
20418         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
20419         SDValue ResNode =
20420           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
20421                                   Ld->getMemoryVT(),
20422                                   Ld->getPointerInfo(),
20423                                   Ld->getAlignment(),
20424                                   false/*isVolatile*/, true/*ReadMem*/,
20425                                   false/*WriteMem*/);
20426
20427         // Make sure the newly-created LOAD is in the same position as Ld in
20428         // terms of dependency. We create a TokenFactor for Ld and ResNode,
20429         // and update uses of Ld's output chain to use the TokenFactor.
20430         if (Ld->hasAnyUseOfValue(1)) {
20431           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
20432                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
20433           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
20434           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
20435                                  SDValue(ResNode.getNode(), 1));
20436         }
20437
20438         return DAG.getBitcast(VT, ResNode);
20439       }
20440     }
20441
20442     // Emit a zeroed vector and insert the desired subvector on its
20443     // first half.
20444     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
20445     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
20446     return DCI.CombineTo(N, InsV);
20447   }
20448
20449   //===--------------------------------------------------------------------===//
20450   // Combine some shuffles into subvector extracts and inserts:
20451   //
20452
20453   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
20454   if (isShuffleHigh128VectorInsertLow(SVOp)) {
20455     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
20456     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
20457     return DCI.CombineTo(N, InsV);
20458   }
20459
20460   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
20461   if (isShuffleLow128VectorInsertHigh(SVOp)) {
20462     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
20463     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
20464     return DCI.CombineTo(N, InsV);
20465   }
20466
20467   return SDValue();
20468 }
20469
20470 /// \brief Combine an arbitrary chain of shuffles into a single instruction if
20471 /// possible.
20472 ///
20473 /// This is the leaf of the recursive combinine below. When we have found some
20474 /// chain of single-use x86 shuffle instructions and accumulated the combined
20475 /// shuffle mask represented by them, this will try to pattern match that mask
20476 /// into either a single instruction if there is a special purpose instruction
20477 /// for this operation, or into a PSHUFB instruction which is a fully general
20478 /// instruction but should only be used to replace chains over a certain depth.
20479 static bool combineX86ShuffleChain(SDValue Op, SDValue Root, ArrayRef<int> Mask,
20480                                    int Depth, bool HasPSHUFB, SelectionDAG &DAG,
20481                                    TargetLowering::DAGCombinerInfo &DCI,
20482                                    const X86Subtarget *Subtarget) {
20483   assert(!Mask.empty() && "Cannot combine an empty shuffle mask!");
20484
20485   // Find the operand that enters the chain. Note that multiple uses are OK
20486   // here, we're not going to remove the operand we find.
20487   SDValue Input = Op.getOperand(0);
20488   while (Input.getOpcode() == ISD::BITCAST)
20489     Input = Input.getOperand(0);
20490
20491   MVT VT = Input.getSimpleValueType();
20492   MVT RootVT = Root.getSimpleValueType();
20493   SDLoc DL(Root);
20494
20495   // Just remove no-op shuffle masks.
20496   if (Mask.size() == 1) {
20497     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Input),
20498                   /*AddTo*/ true);
20499     return true;
20500   }
20501
20502   // Use the float domain if the operand type is a floating point type.
20503   bool FloatDomain = VT.isFloatingPoint();
20504
20505   // For floating point shuffles, we don't have free copies in the shuffle
20506   // instructions or the ability to load as part of the instruction, so
20507   // canonicalize their shuffles to UNPCK or MOV variants.
20508   //
20509   // Note that even with AVX we prefer the PSHUFD form of shuffle for integer
20510   // vectors because it can have a load folded into it that UNPCK cannot. This
20511   // doesn't preclude something switching to the shorter encoding post-RA.
20512   //
20513   // FIXME: Should teach these routines about AVX vector widths.
20514   if (FloatDomain && VT.getSizeInBits() == 128) {
20515     if (Mask.equals({0, 0}) || Mask.equals({1, 1})) {
20516       bool Lo = Mask.equals({0, 0});
20517       unsigned Shuffle;
20518       MVT ShuffleVT;
20519       // Check if we have SSE3 which will let us use MOVDDUP. That instruction
20520       // is no slower than UNPCKLPD but has the option to fold the input operand
20521       // into even an unaligned memory load.
20522       if (Lo && Subtarget->hasSSE3()) {
20523         Shuffle = X86ISD::MOVDDUP;
20524         ShuffleVT = MVT::v2f64;
20525       } else {
20526         // We have MOVLHPS and MOVHLPS throughout SSE and they encode smaller
20527         // than the UNPCK variants.
20528         Shuffle = Lo ? X86ISD::MOVLHPS : X86ISD::MOVHLPS;
20529         ShuffleVT = MVT::v4f32;
20530       }
20531       if (Depth == 1 && Root->getOpcode() == Shuffle)
20532         return false; // Nothing to do!
20533       Op = DAG.getBitcast(ShuffleVT, Input);
20534       DCI.AddToWorklist(Op.getNode());
20535       if (Shuffle == X86ISD::MOVDDUP)
20536         Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op);
20537       else
20538         Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
20539       DCI.AddToWorklist(Op.getNode());
20540       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
20541                     /*AddTo*/ true);
20542       return true;
20543     }
20544     if (Subtarget->hasSSE3() &&
20545         (Mask.equals({0, 0, 2, 2}) || Mask.equals({1, 1, 3, 3}))) {
20546       bool Lo = Mask.equals({0, 0, 2, 2});
20547       unsigned Shuffle = Lo ? X86ISD::MOVSLDUP : X86ISD::MOVSHDUP;
20548       MVT ShuffleVT = MVT::v4f32;
20549       if (Depth == 1 && Root->getOpcode() == Shuffle)
20550         return false; // Nothing to do!
20551       Op = DAG.getBitcast(ShuffleVT, Input);
20552       DCI.AddToWorklist(Op.getNode());
20553       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op);
20554       DCI.AddToWorklist(Op.getNode());
20555       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
20556                     /*AddTo*/ true);
20557       return true;
20558     }
20559     if (Mask.equals({0, 0, 1, 1}) || Mask.equals({2, 2, 3, 3})) {
20560       bool Lo = Mask.equals({0, 0, 1, 1});
20561       unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
20562       MVT ShuffleVT = MVT::v4f32;
20563       if (Depth == 1 && Root->getOpcode() == Shuffle)
20564         return false; // Nothing to do!
20565       Op = DAG.getBitcast(ShuffleVT, Input);
20566       DCI.AddToWorklist(Op.getNode());
20567       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
20568       DCI.AddToWorklist(Op.getNode());
20569       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
20570                     /*AddTo*/ true);
20571       return true;
20572     }
20573   }
20574
20575   // We always canonicalize the 8 x i16 and 16 x i8 shuffles into their UNPCK
20576   // variants as none of these have single-instruction variants that are
20577   // superior to the UNPCK formulation.
20578   if (!FloatDomain && VT.getSizeInBits() == 128 &&
20579       (Mask.equals({0, 0, 1, 1, 2, 2, 3, 3}) ||
20580        Mask.equals({4, 4, 5, 5, 6, 6, 7, 7}) ||
20581        Mask.equals({0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7}) ||
20582        Mask.equals(
20583            {8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15}))) {
20584     bool Lo = Mask[0] == 0;
20585     unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
20586     if (Depth == 1 && Root->getOpcode() == Shuffle)
20587       return false; // Nothing to do!
20588     MVT ShuffleVT;
20589     switch (Mask.size()) {
20590     case 8:
20591       ShuffleVT = MVT::v8i16;
20592       break;
20593     case 16:
20594       ShuffleVT = MVT::v16i8;
20595       break;
20596     default:
20597       llvm_unreachable("Impossible mask size!");
20598     };
20599     Op = DAG.getBitcast(ShuffleVT, Input);
20600     DCI.AddToWorklist(Op.getNode());
20601     Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
20602     DCI.AddToWorklist(Op.getNode());
20603     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
20604                   /*AddTo*/ true);
20605     return true;
20606   }
20607
20608   // Don't try to re-form single instruction chains under any circumstances now
20609   // that we've done encoding canonicalization for them.
20610   if (Depth < 2)
20611     return false;
20612
20613   // If we have 3 or more shuffle instructions or a chain involving PSHUFB, we
20614   // can replace them with a single PSHUFB instruction profitably. Intel's
20615   // manuals suggest only using PSHUFB if doing so replacing 5 instructions, but
20616   // in practice PSHUFB tends to be *very* fast so we're more aggressive.
20617   if ((Depth >= 3 || HasPSHUFB) && Subtarget->hasSSSE3()) {
20618     SmallVector<SDValue, 16> PSHUFBMask;
20619     int NumBytes = VT.getSizeInBits() / 8;
20620     int Ratio = NumBytes / Mask.size();
20621     for (int i = 0; i < NumBytes; ++i) {
20622       if (Mask[i / Ratio] == SM_SentinelUndef) {
20623         PSHUFBMask.push_back(DAG.getUNDEF(MVT::i8));
20624         continue;
20625       }
20626       int M = Mask[i / Ratio] != SM_SentinelZero
20627                   ? Ratio * Mask[i / Ratio] + i % Ratio
20628                   : 255;
20629       PSHUFBMask.push_back(DAG.getConstant(M, DL, MVT::i8));
20630     }
20631     MVT ByteVT = MVT::getVectorVT(MVT::i8, NumBytes);
20632     Op = DAG.getBitcast(ByteVT, Input);
20633     DCI.AddToWorklist(Op.getNode());
20634     SDValue PSHUFBMaskOp =
20635         DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVT, PSHUFBMask);
20636     DCI.AddToWorklist(PSHUFBMaskOp.getNode());
20637     Op = DAG.getNode(X86ISD::PSHUFB, DL, ByteVT, Op, PSHUFBMaskOp);
20638     DCI.AddToWorklist(Op.getNode());
20639     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
20640                   /*AddTo*/ true);
20641     return true;
20642   }
20643
20644   // Failed to find any combines.
20645   return false;
20646 }
20647
20648 /// \brief Fully generic combining of x86 shuffle instructions.
20649 ///
20650 /// This should be the last combine run over the x86 shuffle instructions. Once
20651 /// they have been fully optimized, this will recursively consider all chains
20652 /// of single-use shuffle instructions, build a generic model of the cumulative
20653 /// shuffle operation, and check for simpler instructions which implement this
20654 /// operation. We use this primarily for two purposes:
20655 ///
20656 /// 1) Collapse generic shuffles to specialized single instructions when
20657 ///    equivalent. In most cases, this is just an encoding size win, but
20658 ///    sometimes we will collapse multiple generic shuffles into a single
20659 ///    special-purpose shuffle.
20660 /// 2) Look for sequences of shuffle instructions with 3 or more total
20661 ///    instructions, and replace them with the slightly more expensive SSSE3
20662 ///    PSHUFB instruction if available. We do this as the last combining step
20663 ///    to ensure we avoid using PSHUFB if we can implement the shuffle with
20664 ///    a suitable short sequence of other instructions. The PHUFB will either
20665 ///    use a register or have to read from memory and so is slightly (but only
20666 ///    slightly) more expensive than the other shuffle instructions.
20667 ///
20668 /// Because this is inherently a quadratic operation (for each shuffle in
20669 /// a chain, we recurse up the chain), the depth is limited to 8 instructions.
20670 /// This should never be an issue in practice as the shuffle lowering doesn't
20671 /// produce sequences of more than 8 instructions.
20672 ///
20673 /// FIXME: We will currently miss some cases where the redundant shuffling
20674 /// would simplify under the threshold for PSHUFB formation because of
20675 /// combine-ordering. To fix this, we should do the redundant instruction
20676 /// combining in this recursive walk.
20677 static bool combineX86ShufflesRecursively(SDValue Op, SDValue Root,
20678                                           ArrayRef<int> RootMask,
20679                                           int Depth, bool HasPSHUFB,
20680                                           SelectionDAG &DAG,
20681                                           TargetLowering::DAGCombinerInfo &DCI,
20682                                           const X86Subtarget *Subtarget) {
20683   // Bound the depth of our recursive combine because this is ultimately
20684   // quadratic in nature.
20685   if (Depth > 8)
20686     return false;
20687
20688   // Directly rip through bitcasts to find the underlying operand.
20689   while (Op.getOpcode() == ISD::BITCAST && Op.getOperand(0).hasOneUse())
20690     Op = Op.getOperand(0);
20691
20692   MVT VT = Op.getSimpleValueType();
20693   if (!VT.isVector())
20694     return false; // Bail if we hit a non-vector.
20695
20696   assert(Root.getSimpleValueType().isVector() &&
20697          "Shuffles operate on vector types!");
20698   assert(VT.getSizeInBits() == Root.getSimpleValueType().getSizeInBits() &&
20699          "Can only combine shuffles of the same vector register size.");
20700
20701   if (!isTargetShuffle(Op.getOpcode()))
20702     return false;
20703   SmallVector<int, 16> OpMask;
20704   bool IsUnary;
20705   bool HaveMask = getTargetShuffleMask(Op.getNode(), VT, OpMask, IsUnary);
20706   // We only can combine unary shuffles which we can decode the mask for.
20707   if (!HaveMask || !IsUnary)
20708     return false;
20709
20710   assert(VT.getVectorNumElements() == OpMask.size() &&
20711          "Different mask size from vector size!");
20712   assert(((RootMask.size() > OpMask.size() &&
20713            RootMask.size() % OpMask.size() == 0) ||
20714           (OpMask.size() > RootMask.size() &&
20715            OpMask.size() % RootMask.size() == 0) ||
20716           OpMask.size() == RootMask.size()) &&
20717          "The smaller number of elements must divide the larger.");
20718   int RootRatio = std::max<int>(1, OpMask.size() / RootMask.size());
20719   int OpRatio = std::max<int>(1, RootMask.size() / OpMask.size());
20720   assert(((RootRatio == 1 && OpRatio == 1) ||
20721           (RootRatio == 1) != (OpRatio == 1)) &&
20722          "Must not have a ratio for both incoming and op masks!");
20723
20724   SmallVector<int, 16> Mask;
20725   Mask.reserve(std::max(OpMask.size(), RootMask.size()));
20726
20727   // Merge this shuffle operation's mask into our accumulated mask. Note that
20728   // this shuffle's mask will be the first applied to the input, followed by the
20729   // root mask to get us all the way to the root value arrangement. The reason
20730   // for this order is that we are recursing up the operation chain.
20731   for (int i = 0, e = std::max(OpMask.size(), RootMask.size()); i < e; ++i) {
20732     int RootIdx = i / RootRatio;
20733     if (RootMask[RootIdx] < 0) {
20734       // This is a zero or undef lane, we're done.
20735       Mask.push_back(RootMask[RootIdx]);
20736       continue;
20737     }
20738
20739     int RootMaskedIdx = RootMask[RootIdx] * RootRatio + i % RootRatio;
20740     int OpIdx = RootMaskedIdx / OpRatio;
20741     if (OpMask[OpIdx] < 0) {
20742       // The incoming lanes are zero or undef, it doesn't matter which ones we
20743       // are using.
20744       Mask.push_back(OpMask[OpIdx]);
20745       continue;
20746     }
20747
20748     // Ok, we have non-zero lanes, map them through.
20749     Mask.push_back(OpMask[OpIdx] * OpRatio +
20750                    RootMaskedIdx % OpRatio);
20751   }
20752
20753   // See if we can recurse into the operand to combine more things.
20754   switch (Op.getOpcode()) {
20755     case X86ISD::PSHUFB:
20756       HasPSHUFB = true;
20757     case X86ISD::PSHUFD:
20758     case X86ISD::PSHUFHW:
20759     case X86ISD::PSHUFLW:
20760       if (Op.getOperand(0).hasOneUse() &&
20761           combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
20762                                         HasPSHUFB, DAG, DCI, Subtarget))
20763         return true;
20764       break;
20765
20766     case X86ISD::UNPCKL:
20767     case X86ISD::UNPCKH:
20768       assert(Op.getOperand(0) == Op.getOperand(1) && "We only combine unary shuffles!");
20769       // We can't check for single use, we have to check that this shuffle is the only user.
20770       if (Op->isOnlyUserOf(Op.getOperand(0).getNode()) &&
20771           combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
20772                                         HasPSHUFB, DAG, DCI, Subtarget))
20773           return true;
20774       break;
20775   }
20776
20777   // Minor canonicalization of the accumulated shuffle mask to make it easier
20778   // to match below. All this does is detect masks with squential pairs of
20779   // elements, and shrink them to the half-width mask. It does this in a loop
20780   // so it will reduce the size of the mask to the minimal width mask which
20781   // performs an equivalent shuffle.
20782   SmallVector<int, 16> WidenedMask;
20783   while (Mask.size() > 1 && canWidenShuffleElements(Mask, WidenedMask)) {
20784     Mask = std::move(WidenedMask);
20785     WidenedMask.clear();
20786   }
20787
20788   return combineX86ShuffleChain(Op, Root, Mask, Depth, HasPSHUFB, DAG, DCI,
20789                                 Subtarget);
20790 }
20791
20792 /// \brief Get the PSHUF-style mask from PSHUF node.
20793 ///
20794 /// This is a very minor wrapper around getTargetShuffleMask to easy forming v4
20795 /// PSHUF-style masks that can be reused with such instructions.
20796 static SmallVector<int, 4> getPSHUFShuffleMask(SDValue N) {
20797   MVT VT = N.getSimpleValueType();
20798   SmallVector<int, 4> Mask;
20799   bool IsUnary;
20800   bool HaveMask = getTargetShuffleMask(N.getNode(), VT, Mask, IsUnary);
20801   (void)HaveMask;
20802   assert(HaveMask);
20803
20804   // If we have more than 128-bits, only the low 128-bits of shuffle mask
20805   // matter. Check that the upper masks are repeats and remove them.
20806   if (VT.getSizeInBits() > 128) {
20807     int LaneElts = 128 / VT.getScalarSizeInBits();
20808 #ifndef NDEBUG
20809     for (int i = 1, NumLanes = VT.getSizeInBits() / 128; i < NumLanes; ++i)
20810       for (int j = 0; j < LaneElts; ++j)
20811         assert(Mask[j] == Mask[i * LaneElts + j] - (LaneElts * i) &&
20812                "Mask doesn't repeat in high 128-bit lanes!");
20813 #endif
20814     Mask.resize(LaneElts);
20815   }
20816
20817   switch (N.getOpcode()) {
20818   case X86ISD::PSHUFD:
20819     return Mask;
20820   case X86ISD::PSHUFLW:
20821     Mask.resize(4);
20822     return Mask;
20823   case X86ISD::PSHUFHW:
20824     Mask.erase(Mask.begin(), Mask.begin() + 4);
20825     for (int &M : Mask)
20826       M -= 4;
20827     return Mask;
20828   default:
20829     llvm_unreachable("No valid shuffle instruction found!");
20830   }
20831 }
20832
20833 /// \brief Search for a combinable shuffle across a chain ending in pshufd.
20834 ///
20835 /// We walk up the chain and look for a combinable shuffle, skipping over
20836 /// shuffles that we could hoist this shuffle's transformation past without
20837 /// altering anything.
20838 static SDValue
20839 combineRedundantDWordShuffle(SDValue N, MutableArrayRef<int> Mask,
20840                              SelectionDAG &DAG,
20841                              TargetLowering::DAGCombinerInfo &DCI) {
20842   assert(N.getOpcode() == X86ISD::PSHUFD &&
20843          "Called with something other than an x86 128-bit half shuffle!");
20844   SDLoc DL(N);
20845
20846   // Walk up a single-use chain looking for a combinable shuffle. Keep a stack
20847   // of the shuffles in the chain so that we can form a fresh chain to replace
20848   // this one.
20849   SmallVector<SDValue, 8> Chain;
20850   SDValue V = N.getOperand(0);
20851   for (; V.hasOneUse(); V = V.getOperand(0)) {
20852     switch (V.getOpcode()) {
20853     default:
20854       return SDValue(); // Nothing combined!
20855
20856     case ISD::BITCAST:
20857       // Skip bitcasts as we always know the type for the target specific
20858       // instructions.
20859       continue;
20860
20861     case X86ISD::PSHUFD:
20862       // Found another dword shuffle.
20863       break;
20864
20865     case X86ISD::PSHUFLW:
20866       // Check that the low words (being shuffled) are the identity in the
20867       // dword shuffle, and the high words are self-contained.
20868       if (Mask[0] != 0 || Mask[1] != 1 ||
20869           !(Mask[2] >= 2 && Mask[2] < 4 && Mask[3] >= 2 && Mask[3] < 4))
20870         return SDValue();
20871
20872       Chain.push_back(V);
20873       continue;
20874
20875     case X86ISD::PSHUFHW:
20876       // Check that the high words (being shuffled) are the identity in the
20877       // dword shuffle, and the low words are self-contained.
20878       if (Mask[2] != 2 || Mask[3] != 3 ||
20879           !(Mask[0] >= 0 && Mask[0] < 2 && Mask[1] >= 0 && Mask[1] < 2))
20880         return SDValue();
20881
20882       Chain.push_back(V);
20883       continue;
20884
20885     case X86ISD::UNPCKL:
20886     case X86ISD::UNPCKH:
20887       // For either i8 -> i16 or i16 -> i32 unpacks, we can combine a dword
20888       // shuffle into a preceding word shuffle.
20889       if (V.getSimpleValueType().getScalarType() != MVT::i8 &&
20890           V.getSimpleValueType().getScalarType() != MVT::i16)
20891         return SDValue();
20892
20893       // Search for a half-shuffle which we can combine with.
20894       unsigned CombineOp =
20895           V.getOpcode() == X86ISD::UNPCKL ? X86ISD::PSHUFLW : X86ISD::PSHUFHW;
20896       if (V.getOperand(0) != V.getOperand(1) ||
20897           !V->isOnlyUserOf(V.getOperand(0).getNode()))
20898         return SDValue();
20899       Chain.push_back(V);
20900       V = V.getOperand(0);
20901       do {
20902         switch (V.getOpcode()) {
20903         default:
20904           return SDValue(); // Nothing to combine.
20905
20906         case X86ISD::PSHUFLW:
20907         case X86ISD::PSHUFHW:
20908           if (V.getOpcode() == CombineOp)
20909             break;
20910
20911           Chain.push_back(V);
20912
20913           // Fallthrough!
20914         case ISD::BITCAST:
20915           V = V.getOperand(0);
20916           continue;
20917         }
20918         break;
20919       } while (V.hasOneUse());
20920       break;
20921     }
20922     // Break out of the loop if we break out of the switch.
20923     break;
20924   }
20925
20926   if (!V.hasOneUse())
20927     // We fell out of the loop without finding a viable combining instruction.
20928     return SDValue();
20929
20930   // Merge this node's mask and our incoming mask.
20931   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
20932   for (int &M : Mask)
20933     M = VMask[M];
20934   V = DAG.getNode(V.getOpcode(), DL, V.getValueType(), V.getOperand(0),
20935                   getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
20936
20937   // Rebuild the chain around this new shuffle.
20938   while (!Chain.empty()) {
20939     SDValue W = Chain.pop_back_val();
20940
20941     if (V.getValueType() != W.getOperand(0).getValueType())
20942       V = DAG.getBitcast(W.getOperand(0).getValueType(), V);
20943
20944     switch (W.getOpcode()) {
20945     default:
20946       llvm_unreachable("Only PSHUF and UNPCK instructions get here!");
20947
20948     case X86ISD::UNPCKL:
20949     case X86ISD::UNPCKH:
20950       V = DAG.getNode(W.getOpcode(), DL, W.getValueType(), V, V);
20951       break;
20952
20953     case X86ISD::PSHUFD:
20954     case X86ISD::PSHUFLW:
20955     case X86ISD::PSHUFHW:
20956       V = DAG.getNode(W.getOpcode(), DL, W.getValueType(), V, W.getOperand(1));
20957       break;
20958     }
20959   }
20960   if (V.getValueType() != N.getValueType())
20961     V = DAG.getBitcast(N.getValueType(), V);
20962
20963   // Return the new chain to replace N.
20964   return V;
20965 }
20966
20967 /// \brief Search for a combinable shuffle across a chain ending in pshuflw or pshufhw.
20968 ///
20969 /// We walk up the chain, skipping shuffles of the other half and looking
20970 /// through shuffles which switch halves trying to find a shuffle of the same
20971 /// pair of dwords.
20972 static bool combineRedundantHalfShuffle(SDValue N, MutableArrayRef<int> Mask,
20973                                         SelectionDAG &DAG,
20974                                         TargetLowering::DAGCombinerInfo &DCI) {
20975   assert(
20976       (N.getOpcode() == X86ISD::PSHUFLW || N.getOpcode() == X86ISD::PSHUFHW) &&
20977       "Called with something other than an x86 128-bit half shuffle!");
20978   SDLoc DL(N);
20979   unsigned CombineOpcode = N.getOpcode();
20980
20981   // Walk up a single-use chain looking for a combinable shuffle.
20982   SDValue V = N.getOperand(0);
20983   for (; V.hasOneUse(); V = V.getOperand(0)) {
20984     switch (V.getOpcode()) {
20985     default:
20986       return false; // Nothing combined!
20987
20988     case ISD::BITCAST:
20989       // Skip bitcasts as we always know the type for the target specific
20990       // instructions.
20991       continue;
20992
20993     case X86ISD::PSHUFLW:
20994     case X86ISD::PSHUFHW:
20995       if (V.getOpcode() == CombineOpcode)
20996         break;
20997
20998       // Other-half shuffles are no-ops.
20999       continue;
21000     }
21001     // Break out of the loop if we break out of the switch.
21002     break;
21003   }
21004
21005   if (!V.hasOneUse())
21006     // We fell out of the loop without finding a viable combining instruction.
21007     return false;
21008
21009   // Combine away the bottom node as its shuffle will be accumulated into
21010   // a preceding shuffle.
21011   DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
21012
21013   // Record the old value.
21014   SDValue Old = V;
21015
21016   // Merge this node's mask and our incoming mask (adjusted to account for all
21017   // the pshufd instructions encountered).
21018   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
21019   for (int &M : Mask)
21020     M = VMask[M];
21021   V = DAG.getNode(V.getOpcode(), DL, MVT::v8i16, V.getOperand(0),
21022                   getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
21023
21024   // Check that the shuffles didn't cancel each other out. If not, we need to
21025   // combine to the new one.
21026   if (Old != V)
21027     // Replace the combinable shuffle with the combined one, updating all users
21028     // so that we re-evaluate the chain here.
21029     DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
21030
21031   return true;
21032 }
21033
21034 /// \brief Try to combine x86 target specific shuffles.
21035 static SDValue PerformTargetShuffleCombine(SDValue N, SelectionDAG &DAG,
21036                                            TargetLowering::DAGCombinerInfo &DCI,
21037                                            const X86Subtarget *Subtarget) {
21038   SDLoc DL(N);
21039   MVT VT = N.getSimpleValueType();
21040   SmallVector<int, 4> Mask;
21041
21042   switch (N.getOpcode()) {
21043   case X86ISD::PSHUFD:
21044   case X86ISD::PSHUFLW:
21045   case X86ISD::PSHUFHW:
21046     Mask = getPSHUFShuffleMask(N);
21047     assert(Mask.size() == 4);
21048     break;
21049   default:
21050     return SDValue();
21051   }
21052
21053   // Nuke no-op shuffles that show up after combining.
21054   if (isNoopShuffleMask(Mask))
21055     return DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
21056
21057   // Look for simplifications involving one or two shuffle instructions.
21058   SDValue V = N.getOperand(0);
21059   switch (N.getOpcode()) {
21060   default:
21061     break;
21062   case X86ISD::PSHUFLW:
21063   case X86ISD::PSHUFHW:
21064     assert(VT.getScalarType() == MVT::i16 && "Bad word shuffle type!");
21065
21066     if (combineRedundantHalfShuffle(N, Mask, DAG, DCI))
21067       return SDValue(); // We combined away this shuffle, so we're done.
21068
21069     // See if this reduces to a PSHUFD which is no more expensive and can
21070     // combine with more operations. Note that it has to at least flip the
21071     // dwords as otherwise it would have been removed as a no-op.
21072     if (makeArrayRef(Mask).equals({2, 3, 0, 1})) {
21073       int DMask[] = {0, 1, 2, 3};
21074       int DOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 2;
21075       DMask[DOffset + 0] = DOffset + 1;
21076       DMask[DOffset + 1] = DOffset + 0;
21077       MVT DVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() / 2);
21078       V = DAG.getBitcast(DVT, V);
21079       DCI.AddToWorklist(V.getNode());
21080       V = DAG.getNode(X86ISD::PSHUFD, DL, DVT, V,
21081                       getV4X86ShuffleImm8ForMask(DMask, DL, DAG));
21082       DCI.AddToWorklist(V.getNode());
21083       return DAG.getBitcast(VT, V);
21084     }
21085
21086     // Look for shuffle patterns which can be implemented as a single unpack.
21087     // FIXME: This doesn't handle the location of the PSHUFD generically, and
21088     // only works when we have a PSHUFD followed by two half-shuffles.
21089     if (Mask[0] == Mask[1] && Mask[2] == Mask[3] &&
21090         (V.getOpcode() == X86ISD::PSHUFLW ||
21091          V.getOpcode() == X86ISD::PSHUFHW) &&
21092         V.getOpcode() != N.getOpcode() &&
21093         V.hasOneUse()) {
21094       SDValue D = V.getOperand(0);
21095       while (D.getOpcode() == ISD::BITCAST && D.hasOneUse())
21096         D = D.getOperand(0);
21097       if (D.getOpcode() == X86ISD::PSHUFD && D.hasOneUse()) {
21098         SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
21099         SmallVector<int, 4> DMask = getPSHUFShuffleMask(D);
21100         int NOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
21101         int VOffset = V.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
21102         int WordMask[8];
21103         for (int i = 0; i < 4; ++i) {
21104           WordMask[i + NOffset] = Mask[i] + NOffset;
21105           WordMask[i + VOffset] = VMask[i] + VOffset;
21106         }
21107         // Map the word mask through the DWord mask.
21108         int MappedMask[8];
21109         for (int i = 0; i < 8; ++i)
21110           MappedMask[i] = 2 * DMask[WordMask[i] / 2] + WordMask[i] % 2;
21111         if (makeArrayRef(MappedMask).equals({0, 0, 1, 1, 2, 2, 3, 3}) ||
21112             makeArrayRef(MappedMask).equals({4, 4, 5, 5, 6, 6, 7, 7})) {
21113           // We can replace all three shuffles with an unpack.
21114           V = DAG.getBitcast(VT, D.getOperand(0));
21115           DCI.AddToWorklist(V.getNode());
21116           return DAG.getNode(MappedMask[0] == 0 ? X86ISD::UNPCKL
21117                                                 : X86ISD::UNPCKH,
21118                              DL, VT, V, V);
21119         }
21120       }
21121     }
21122
21123     break;
21124
21125   case X86ISD::PSHUFD:
21126     if (SDValue NewN = combineRedundantDWordShuffle(N, Mask, DAG, DCI))
21127       return NewN;
21128
21129     break;
21130   }
21131
21132   return SDValue();
21133 }
21134
21135 /// \brief Try to combine a shuffle into a target-specific add-sub node.
21136 ///
21137 /// We combine this directly on the abstract vector shuffle nodes so it is
21138 /// easier to generically match. We also insert dummy vector shuffle nodes for
21139 /// the operands which explicitly discard the lanes which are unused by this
21140 /// operation to try to flow through the rest of the combiner the fact that
21141 /// they're unused.
21142 static SDValue combineShuffleToAddSub(SDNode *N, SelectionDAG &DAG) {
21143   SDLoc DL(N);
21144   EVT VT = N->getValueType(0);
21145
21146   // We only handle target-independent shuffles.
21147   // FIXME: It would be easy and harmless to use the target shuffle mask
21148   // extraction tool to support more.
21149   if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
21150     return SDValue();
21151
21152   auto *SVN = cast<ShuffleVectorSDNode>(N);
21153   ArrayRef<int> Mask = SVN->getMask();
21154   SDValue V1 = N->getOperand(0);
21155   SDValue V2 = N->getOperand(1);
21156
21157   // We require the first shuffle operand to be the SUB node, and the second to
21158   // be the ADD node.
21159   // FIXME: We should support the commuted patterns.
21160   if (V1->getOpcode() != ISD::FSUB || V2->getOpcode() != ISD::FADD)
21161     return SDValue();
21162
21163   // If there are other uses of these operations we can't fold them.
21164   if (!V1->hasOneUse() || !V2->hasOneUse())
21165     return SDValue();
21166
21167   // Ensure that both operations have the same operands. Note that we can
21168   // commute the FADD operands.
21169   SDValue LHS = V1->getOperand(0), RHS = V1->getOperand(1);
21170   if ((V2->getOperand(0) != LHS || V2->getOperand(1) != RHS) &&
21171       (V2->getOperand(0) != RHS || V2->getOperand(1) != LHS))
21172     return SDValue();
21173
21174   // We're looking for blends between FADD and FSUB nodes. We insist on these
21175   // nodes being lined up in a specific expected pattern.
21176   if (!(isShuffleEquivalent(V1, V2, Mask, {0, 3}) ||
21177         isShuffleEquivalent(V1, V2, Mask, {0, 5, 2, 7}) ||
21178         isShuffleEquivalent(V1, V2, Mask, {0, 9, 2, 11, 4, 13, 6, 15})))
21179     return SDValue();
21180
21181   // Only specific types are legal at this point, assert so we notice if and
21182   // when these change.
21183   assert((VT == MVT::v4f32 || VT == MVT::v2f64 || VT == MVT::v8f32 ||
21184           VT == MVT::v4f64) &&
21185          "Unknown vector type encountered!");
21186
21187   return DAG.getNode(X86ISD::ADDSUB, DL, VT, LHS, RHS);
21188 }
21189
21190 /// PerformShuffleCombine - Performs several different shuffle combines.
21191 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
21192                                      TargetLowering::DAGCombinerInfo &DCI,
21193                                      const X86Subtarget *Subtarget) {
21194   SDLoc dl(N);
21195   SDValue N0 = N->getOperand(0);
21196   SDValue N1 = N->getOperand(1);
21197   EVT VT = N->getValueType(0);
21198
21199   // Don't create instructions with illegal types after legalize types has run.
21200   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21201   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
21202     return SDValue();
21203
21204   // If we have legalized the vector types, look for blends of FADD and FSUB
21205   // nodes that we can fuse into an ADDSUB node.
21206   if (TLI.isTypeLegal(VT) && Subtarget->hasSSE3())
21207     if (SDValue AddSub = combineShuffleToAddSub(N, DAG))
21208       return AddSub;
21209
21210   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
21211   if (Subtarget->hasFp256() && VT.is256BitVector() &&
21212       N->getOpcode() == ISD::VECTOR_SHUFFLE)
21213     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
21214
21215   // During Type Legalization, when promoting illegal vector types,
21216   // the backend might introduce new shuffle dag nodes and bitcasts.
21217   //
21218   // This code performs the following transformation:
21219   // fold: (shuffle (bitcast (BINOP A, B)), Undef, <Mask>) ->
21220   //       (shuffle (BINOP (bitcast A), (bitcast B)), Undef, <Mask>)
21221   //
21222   // We do this only if both the bitcast and the BINOP dag nodes have
21223   // one use. Also, perform this transformation only if the new binary
21224   // operation is legal. This is to avoid introducing dag nodes that
21225   // potentially need to be further expanded (or custom lowered) into a
21226   // less optimal sequence of dag nodes.
21227   if (!DCI.isBeforeLegalize() && DCI.isBeforeLegalizeOps() &&
21228       N1.getOpcode() == ISD::UNDEF && N0.hasOneUse() &&
21229       N0.getOpcode() == ISD::BITCAST) {
21230     SDValue BC0 = N0.getOperand(0);
21231     EVT SVT = BC0.getValueType();
21232     unsigned Opcode = BC0.getOpcode();
21233     unsigned NumElts = VT.getVectorNumElements();
21234
21235     if (BC0.hasOneUse() && SVT.isVector() &&
21236         SVT.getVectorNumElements() * 2 == NumElts &&
21237         TLI.isOperationLegal(Opcode, VT)) {
21238       bool CanFold = false;
21239       switch (Opcode) {
21240       default : break;
21241       case ISD::ADD :
21242       case ISD::FADD :
21243       case ISD::SUB :
21244       case ISD::FSUB :
21245       case ISD::MUL :
21246       case ISD::FMUL :
21247         CanFold = true;
21248       }
21249
21250       unsigned SVTNumElts = SVT.getVectorNumElements();
21251       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
21252       for (unsigned i = 0, e = SVTNumElts; i != e && CanFold; ++i)
21253         CanFold = SVOp->getMaskElt(i) == (int)(i * 2);
21254       for (unsigned i = SVTNumElts, e = NumElts; i != e && CanFold; ++i)
21255         CanFold = SVOp->getMaskElt(i) < 0;
21256
21257       if (CanFold) {
21258         SDValue BC00 = DAG.getBitcast(VT, BC0.getOperand(0));
21259         SDValue BC01 = DAG.getBitcast(VT, BC0.getOperand(1));
21260         SDValue NewBinOp = DAG.getNode(BC0.getOpcode(), dl, VT, BC00, BC01);
21261         return DAG.getVectorShuffle(VT, dl, NewBinOp, N1, &SVOp->getMask()[0]);
21262       }
21263     }
21264   }
21265
21266   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
21267   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
21268   // consecutive, non-overlapping, and in the right order.
21269   SmallVector<SDValue, 16> Elts;
21270   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
21271     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
21272
21273   if (SDValue LD = EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true))
21274     return LD;
21275
21276   if (isTargetShuffle(N->getOpcode())) {
21277     SDValue Shuffle =
21278         PerformTargetShuffleCombine(SDValue(N, 0), DAG, DCI, Subtarget);
21279     if (Shuffle.getNode())
21280       return Shuffle;
21281
21282     // Try recursively combining arbitrary sequences of x86 shuffle
21283     // instructions into higher-order shuffles. We do this after combining
21284     // specific PSHUF instruction sequences into their minimal form so that we
21285     // can evaluate how many specialized shuffle instructions are involved in
21286     // a particular chain.
21287     SmallVector<int, 1> NonceMask; // Just a placeholder.
21288     NonceMask.push_back(0);
21289     if (combineX86ShufflesRecursively(SDValue(N, 0), SDValue(N, 0), NonceMask,
21290                                       /*Depth*/ 1, /*HasPSHUFB*/ false, DAG,
21291                                       DCI, Subtarget))
21292       return SDValue(); // This routine will use CombineTo to replace N.
21293   }
21294
21295   return SDValue();
21296 }
21297
21298 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
21299 /// specific shuffle of a load can be folded into a single element load.
21300 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
21301 /// shuffles have been custom lowered so we need to handle those here.
21302 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
21303                                          TargetLowering::DAGCombinerInfo &DCI) {
21304   if (DCI.isBeforeLegalizeOps())
21305     return SDValue();
21306
21307   SDValue InVec = N->getOperand(0);
21308   SDValue EltNo = N->getOperand(1);
21309
21310   if (!isa<ConstantSDNode>(EltNo))
21311     return SDValue();
21312
21313   EVT OriginalVT = InVec.getValueType();
21314
21315   if (InVec.getOpcode() == ISD::BITCAST) {
21316     // Don't duplicate a load with other uses.
21317     if (!InVec.hasOneUse())
21318       return SDValue();
21319     EVT BCVT = InVec.getOperand(0).getValueType();
21320     if (!BCVT.isVector() ||
21321         BCVT.getVectorNumElements() != OriginalVT.getVectorNumElements())
21322       return SDValue();
21323     InVec = InVec.getOperand(0);
21324   }
21325
21326   EVT CurrentVT = InVec.getValueType();
21327
21328   if (!isTargetShuffle(InVec.getOpcode()))
21329     return SDValue();
21330
21331   // Don't duplicate a load with other uses.
21332   if (!InVec.hasOneUse())
21333     return SDValue();
21334
21335   SmallVector<int, 16> ShuffleMask;
21336   bool UnaryShuffle;
21337   if (!getTargetShuffleMask(InVec.getNode(), CurrentVT.getSimpleVT(),
21338                             ShuffleMask, UnaryShuffle))
21339     return SDValue();
21340
21341   // Select the input vector, guarding against out of range extract vector.
21342   unsigned NumElems = CurrentVT.getVectorNumElements();
21343   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
21344   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
21345   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
21346                                          : InVec.getOperand(1);
21347
21348   // If inputs to shuffle are the same for both ops, then allow 2 uses
21349   unsigned AllowedUses = InVec.getNumOperands() > 1 &&
21350                          InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
21351
21352   if (LdNode.getOpcode() == ISD::BITCAST) {
21353     // Don't duplicate a load with other uses.
21354     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
21355       return SDValue();
21356
21357     AllowedUses = 1; // only allow 1 load use if we have a bitcast
21358     LdNode = LdNode.getOperand(0);
21359   }
21360
21361   if (!ISD::isNormalLoad(LdNode.getNode()))
21362     return SDValue();
21363
21364   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
21365
21366   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
21367     return SDValue();
21368
21369   EVT EltVT = N->getValueType(0);
21370   // If there's a bitcast before the shuffle, check if the load type and
21371   // alignment is valid.
21372   unsigned Align = LN0->getAlignment();
21373   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21374   unsigned NewAlign = TLI.getDataLayout()->getABITypeAlignment(
21375       EltVT.getTypeForEVT(*DAG.getContext()));
21376
21377   if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, EltVT))
21378     return SDValue();
21379
21380   // All checks match so transform back to vector_shuffle so that DAG combiner
21381   // can finish the job
21382   SDLoc dl(N);
21383
21384   // Create shuffle node taking into account the case that its a unary shuffle
21385   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(CurrentVT)
21386                                    : InVec.getOperand(1);
21387   Shuffle = DAG.getVectorShuffle(CurrentVT, dl,
21388                                  InVec.getOperand(0), Shuffle,
21389                                  &ShuffleMask[0]);
21390   Shuffle = DAG.getBitcast(OriginalVT, Shuffle);
21391   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
21392                      EltNo);
21393 }
21394
21395 /// \brief Detect bitcasts between i32 to x86mmx low word. Since MMX types are
21396 /// special and don't usually play with other vector types, it's better to
21397 /// handle them early to be sure we emit efficient code by avoiding
21398 /// store-load conversions.
21399 static SDValue PerformBITCASTCombine(SDNode *N, SelectionDAG &DAG) {
21400   if (N->getValueType(0) != MVT::x86mmx ||
21401       N->getOperand(0)->getOpcode() != ISD::BUILD_VECTOR ||
21402       N->getOperand(0)->getValueType(0) != MVT::v2i32)
21403     return SDValue();
21404
21405   SDValue V = N->getOperand(0);
21406   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V.getOperand(1));
21407   if (C && C->getZExtValue() == 0 && V.getOperand(0).getValueType() == MVT::i32)
21408     return DAG.getNode(X86ISD::MMX_MOVW2D, SDLoc(V.getOperand(0)),
21409                        N->getValueType(0), V.getOperand(0));
21410
21411   return SDValue();
21412 }
21413
21414 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
21415 /// generation and convert it from being a bunch of shuffles and extracts
21416 /// into a somewhat faster sequence. For i686, the best sequence is apparently
21417 /// storing the value and loading scalars back, while for x64 we should
21418 /// use 64-bit extracts and shifts.
21419 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
21420                                          TargetLowering::DAGCombinerInfo &DCI) {
21421   if (SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI))
21422     return NewOp;
21423
21424   SDValue InputVector = N->getOperand(0);
21425   SDLoc dl(InputVector);
21426   // Detect mmx to i32 conversion through a v2i32 elt extract.
21427   if (InputVector.getOpcode() == ISD::BITCAST && InputVector.hasOneUse() &&
21428       N->getValueType(0) == MVT::i32 &&
21429       InputVector.getValueType() == MVT::v2i32) {
21430
21431     // The bitcast source is a direct mmx result.
21432     SDValue MMXSrc = InputVector.getNode()->getOperand(0);
21433     if (MMXSrc.getValueType() == MVT::x86mmx)
21434       return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
21435                          N->getValueType(0),
21436                          InputVector.getNode()->getOperand(0));
21437
21438     // The mmx is indirect: (i64 extract_elt (v1i64 bitcast (x86mmx ...))).
21439     SDValue MMXSrcOp = MMXSrc.getOperand(0);
21440     if (MMXSrc.getOpcode() == ISD::EXTRACT_VECTOR_ELT && MMXSrc.hasOneUse() &&
21441         MMXSrc.getValueType() == MVT::i64 && MMXSrcOp.hasOneUse() &&
21442         MMXSrcOp.getOpcode() == ISD::BITCAST &&
21443         MMXSrcOp.getValueType() == MVT::v1i64 &&
21444         MMXSrcOp.getOperand(0).getValueType() == MVT::x86mmx)
21445       return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
21446                          N->getValueType(0),
21447                          MMXSrcOp.getOperand(0));
21448   }
21449
21450   EVT VT = N->getValueType(0);
21451
21452   if (VT == MVT::i1 && dyn_cast<ConstantSDNode>(N->getOperand(1)) &&
21453       InputVector.getOpcode() == ISD::BITCAST &&
21454       dyn_cast<ConstantSDNode>(InputVector.getOperand(0))) {
21455     uint64_t ExtractedElt =
21456           cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
21457     uint64_t InputValue =
21458           cast<ConstantSDNode>(InputVector.getOperand(0))->getZExtValue();
21459     uint64_t Res = (InputValue >> ExtractedElt) & 1;
21460     return DAG.getConstant(Res, dl, MVT::i1);
21461   }
21462   // Only operate on vectors of 4 elements, where the alternative shuffling
21463   // gets to be more expensive.
21464   if (InputVector.getValueType() != MVT::v4i32)
21465     return SDValue();
21466
21467   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
21468   // single use which is a sign-extend or zero-extend, and all elements are
21469   // used.
21470   SmallVector<SDNode *, 4> Uses;
21471   unsigned ExtractedElements = 0;
21472   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
21473        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
21474     if (UI.getUse().getResNo() != InputVector.getResNo())
21475       return SDValue();
21476
21477     SDNode *Extract = *UI;
21478     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
21479       return SDValue();
21480
21481     if (Extract->getValueType(0) != MVT::i32)
21482       return SDValue();
21483     if (!Extract->hasOneUse())
21484       return SDValue();
21485     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
21486         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
21487       return SDValue();
21488     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
21489       return SDValue();
21490
21491     // Record which element was extracted.
21492     ExtractedElements |=
21493       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
21494
21495     Uses.push_back(Extract);
21496   }
21497
21498   // If not all the elements were used, this may not be worthwhile.
21499   if (ExtractedElements != 15)
21500     return SDValue();
21501
21502   // Ok, we've now decided to do the transformation.
21503   // If 64-bit shifts are legal, use the extract-shift sequence,
21504   // otherwise bounce the vector off the cache.
21505   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21506   SDValue Vals[4];
21507
21508   if (TLI.isOperationLegal(ISD::SRA, MVT::i64)) {
21509     SDValue Cst = DAG.getBitcast(MVT::v2i64, InputVector);
21510     EVT VecIdxTy = DAG.getTargetLoweringInfo().getVectorIdxTy();
21511     SDValue BottomHalf = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Cst,
21512       DAG.getConstant(0, dl, VecIdxTy));
21513     SDValue TopHalf = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Cst,
21514       DAG.getConstant(1, dl, VecIdxTy));
21515
21516     SDValue ShAmt = DAG.getConstant(32, dl,
21517       DAG.getTargetLoweringInfo().getShiftAmountTy(MVT::i64));
21518     Vals[0] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BottomHalf);
21519     Vals[1] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
21520       DAG.getNode(ISD::SRA, dl, MVT::i64, BottomHalf, ShAmt));
21521     Vals[2] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, TopHalf);
21522     Vals[3] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
21523       DAG.getNode(ISD::SRA, dl, MVT::i64, TopHalf, ShAmt));
21524   } else {
21525     // Store the value to a temporary stack slot.
21526     SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
21527     SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
21528       MachinePointerInfo(), false, false, 0);
21529
21530     EVT ElementType = InputVector.getValueType().getVectorElementType();
21531     unsigned EltSize = ElementType.getSizeInBits() / 8;
21532
21533     // Replace each use (extract) with a load of the appropriate element.
21534     for (unsigned i = 0; i < 4; ++i) {
21535       uint64_t Offset = EltSize * i;
21536       SDValue OffsetVal = DAG.getConstant(Offset, dl, TLI.getPointerTy());
21537
21538       SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
21539                                        StackPtr, OffsetVal);
21540
21541       // Load the scalar.
21542       Vals[i] = DAG.getLoad(ElementType, dl, Ch,
21543                             ScalarAddr, MachinePointerInfo(),
21544                             false, false, false, 0);
21545
21546     }
21547   }
21548
21549   // Replace the extracts
21550   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
21551     UE = Uses.end(); UI != UE; ++UI) {
21552     SDNode *Extract = *UI;
21553
21554     SDValue Idx = Extract->getOperand(1);
21555     uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
21556     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), Vals[IdxVal]);
21557   }
21558
21559   // The replacement was made in place; don't return anything.
21560   return SDValue();
21561 }
21562
21563 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
21564 static std::pair<unsigned, bool>
21565 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
21566                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
21567   if (!VT.isVector())
21568     return std::make_pair(0, false);
21569
21570   bool NeedSplit = false;
21571   switch (VT.getSimpleVT().SimpleTy) {
21572   default: return std::make_pair(0, false);
21573   case MVT::v4i64:
21574   case MVT::v2i64:
21575     if (!Subtarget->hasVLX())
21576       return std::make_pair(0, false);
21577     break;
21578   case MVT::v64i8:
21579   case MVT::v32i16:
21580     if (!Subtarget->hasBWI())
21581       return std::make_pair(0, false);
21582     break;
21583   case MVT::v16i32:
21584   case MVT::v8i64:
21585     if (!Subtarget->hasAVX512())
21586       return std::make_pair(0, false);
21587     break;
21588   case MVT::v32i8:
21589   case MVT::v16i16:
21590   case MVT::v8i32:
21591     if (!Subtarget->hasAVX2())
21592       NeedSplit = true;
21593     if (!Subtarget->hasAVX())
21594       return std::make_pair(0, false);
21595     break;
21596   case MVT::v16i8:
21597   case MVT::v8i16:
21598   case MVT::v4i32:
21599     if (!Subtarget->hasSSE2())
21600       return std::make_pair(0, false);
21601   }
21602
21603   // SSE2 has only a small subset of the operations.
21604   bool hasUnsigned = Subtarget->hasSSE41() ||
21605                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
21606   bool hasSigned = Subtarget->hasSSE41() ||
21607                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
21608
21609   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
21610
21611   unsigned Opc = 0;
21612   // Check for x CC y ? x : y.
21613   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
21614       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
21615     switch (CC) {
21616     default: break;
21617     case ISD::SETULT:
21618     case ISD::SETULE:
21619       Opc = hasUnsigned ? X86ISD::UMIN : 0u; break;
21620     case ISD::SETUGT:
21621     case ISD::SETUGE:
21622       Opc = hasUnsigned ? X86ISD::UMAX : 0u; break;
21623     case ISD::SETLT:
21624     case ISD::SETLE:
21625       Opc = hasSigned ? X86ISD::SMIN : 0u; break;
21626     case ISD::SETGT:
21627     case ISD::SETGE:
21628       Opc = hasSigned ? X86ISD::SMAX : 0u; break;
21629     }
21630   // Check for x CC y ? y : x -- a min/max with reversed arms.
21631   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
21632              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
21633     switch (CC) {
21634     default: break;
21635     case ISD::SETULT:
21636     case ISD::SETULE:
21637       Opc = hasUnsigned ? X86ISD::UMAX : 0u; break;
21638     case ISD::SETUGT:
21639     case ISD::SETUGE:
21640       Opc = hasUnsigned ? X86ISD::UMIN : 0u; break;
21641     case ISD::SETLT:
21642     case ISD::SETLE:
21643       Opc = hasSigned ? X86ISD::SMAX : 0u; break;
21644     case ISD::SETGT:
21645     case ISD::SETGE:
21646       Opc = hasSigned ? X86ISD::SMIN : 0u; break;
21647     }
21648   }
21649
21650   return std::make_pair(Opc, NeedSplit);
21651 }
21652
21653 static SDValue
21654 transformVSELECTtoBlendVECTOR_SHUFFLE(SDNode *N, SelectionDAG &DAG,
21655                                       const X86Subtarget *Subtarget) {
21656   SDLoc dl(N);
21657   SDValue Cond = N->getOperand(0);
21658   SDValue LHS = N->getOperand(1);
21659   SDValue RHS = N->getOperand(2);
21660
21661   if (Cond.getOpcode() == ISD::SIGN_EXTEND) {
21662     SDValue CondSrc = Cond->getOperand(0);
21663     if (CondSrc->getOpcode() == ISD::SIGN_EXTEND_INREG)
21664       Cond = CondSrc->getOperand(0);
21665   }
21666
21667   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
21668     return SDValue();
21669
21670   // A vselect where all conditions and data are constants can be optimized into
21671   // a single vector load by SelectionDAGLegalize::ExpandBUILD_VECTOR().
21672   if (ISD::isBuildVectorOfConstantSDNodes(LHS.getNode()) &&
21673       ISD::isBuildVectorOfConstantSDNodes(RHS.getNode()))
21674     return SDValue();
21675
21676   unsigned MaskValue = 0;
21677   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
21678     return SDValue();
21679
21680   MVT VT = N->getSimpleValueType(0);
21681   unsigned NumElems = VT.getVectorNumElements();
21682   SmallVector<int, 8> ShuffleMask(NumElems, -1);
21683   for (unsigned i = 0; i < NumElems; ++i) {
21684     // Be sure we emit undef where we can.
21685     if (Cond.getOperand(i)->getOpcode() == ISD::UNDEF)
21686       ShuffleMask[i] = -1;
21687     else
21688       ShuffleMask[i] = i + NumElems * ((MaskValue >> i) & 1);
21689   }
21690
21691   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21692   if (!TLI.isShuffleMaskLegal(ShuffleMask, VT))
21693     return SDValue();
21694   return DAG.getVectorShuffle(VT, dl, LHS, RHS, &ShuffleMask[0]);
21695 }
21696
21697 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
21698 /// nodes.
21699 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
21700                                     TargetLowering::DAGCombinerInfo &DCI,
21701                                     const X86Subtarget *Subtarget) {
21702   SDLoc DL(N);
21703   SDValue Cond = N->getOperand(0);
21704   // Get the LHS/RHS of the select.
21705   SDValue LHS = N->getOperand(1);
21706   SDValue RHS = N->getOperand(2);
21707   EVT VT = LHS.getValueType();
21708   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
21709
21710   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
21711   // instructions match the semantics of the common C idiom x<y?x:y but not
21712   // x<=y?x:y, because of how they handle negative zero (which can be
21713   // ignored in unsafe-math mode).
21714   // We also try to create v2f32 min/max nodes, which we later widen to v4f32.
21715   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
21716       VT != MVT::f80 && (TLI.isTypeLegal(VT) || VT == MVT::v2f32) &&
21717       (Subtarget->hasSSE2() ||
21718        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
21719     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
21720
21721     unsigned Opcode = 0;
21722     // Check for x CC y ? x : y.
21723     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
21724         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
21725       switch (CC) {
21726       default: break;
21727       case ISD::SETULT:
21728         // Converting this to a min would handle NaNs incorrectly, and swapping
21729         // the operands would cause it to handle comparisons between positive
21730         // and negative zero incorrectly.
21731         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
21732           if (!DAG.getTarget().Options.UnsafeFPMath &&
21733               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
21734             break;
21735           std::swap(LHS, RHS);
21736         }
21737         Opcode = X86ISD::FMIN;
21738         break;
21739       case ISD::SETOLE:
21740         // Converting this to a min would handle comparisons between positive
21741         // and negative zero incorrectly.
21742         if (!DAG.getTarget().Options.UnsafeFPMath &&
21743             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
21744           break;
21745         Opcode = X86ISD::FMIN;
21746         break;
21747       case ISD::SETULE:
21748         // Converting this to a min would handle both negative zeros and NaNs
21749         // incorrectly, but we can swap the operands to fix both.
21750         std::swap(LHS, RHS);
21751       case ISD::SETOLT:
21752       case ISD::SETLT:
21753       case ISD::SETLE:
21754         Opcode = X86ISD::FMIN;
21755         break;
21756
21757       case ISD::SETOGE:
21758         // Converting this to a max would handle comparisons between positive
21759         // and negative zero incorrectly.
21760         if (!DAG.getTarget().Options.UnsafeFPMath &&
21761             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
21762           break;
21763         Opcode = X86ISD::FMAX;
21764         break;
21765       case ISD::SETUGT:
21766         // Converting this to a max would handle NaNs incorrectly, and swapping
21767         // the operands would cause it to handle comparisons between positive
21768         // and negative zero incorrectly.
21769         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
21770           if (!DAG.getTarget().Options.UnsafeFPMath &&
21771               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
21772             break;
21773           std::swap(LHS, RHS);
21774         }
21775         Opcode = X86ISD::FMAX;
21776         break;
21777       case ISD::SETUGE:
21778         // Converting this to a max would handle both negative zeros and NaNs
21779         // incorrectly, but we can swap the operands to fix both.
21780         std::swap(LHS, RHS);
21781       case ISD::SETOGT:
21782       case ISD::SETGT:
21783       case ISD::SETGE:
21784         Opcode = X86ISD::FMAX;
21785         break;
21786       }
21787     // Check for x CC y ? y : x -- a min/max with reversed arms.
21788     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
21789                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
21790       switch (CC) {
21791       default: break;
21792       case ISD::SETOGE:
21793         // Converting this to a min would handle comparisons between positive
21794         // and negative zero incorrectly, and swapping the operands would
21795         // cause it to handle NaNs incorrectly.
21796         if (!DAG.getTarget().Options.UnsafeFPMath &&
21797             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
21798           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
21799             break;
21800           std::swap(LHS, RHS);
21801         }
21802         Opcode = X86ISD::FMIN;
21803         break;
21804       case ISD::SETUGT:
21805         // Converting this to a min would handle NaNs incorrectly.
21806         if (!DAG.getTarget().Options.UnsafeFPMath &&
21807             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
21808           break;
21809         Opcode = X86ISD::FMIN;
21810         break;
21811       case ISD::SETUGE:
21812         // Converting this to a min would handle both negative zeros and NaNs
21813         // incorrectly, but we can swap the operands to fix both.
21814         std::swap(LHS, RHS);
21815       case ISD::SETOGT:
21816       case ISD::SETGT:
21817       case ISD::SETGE:
21818         Opcode = X86ISD::FMIN;
21819         break;
21820
21821       case ISD::SETULT:
21822         // Converting this to a max would handle NaNs incorrectly.
21823         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
21824           break;
21825         Opcode = X86ISD::FMAX;
21826         break;
21827       case ISD::SETOLE:
21828         // Converting this to a max would handle comparisons between positive
21829         // and negative zero incorrectly, and swapping the operands would
21830         // cause it to handle NaNs incorrectly.
21831         if (!DAG.getTarget().Options.UnsafeFPMath &&
21832             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
21833           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
21834             break;
21835           std::swap(LHS, RHS);
21836         }
21837         Opcode = X86ISD::FMAX;
21838         break;
21839       case ISD::SETULE:
21840         // Converting this to a max would handle both negative zeros and NaNs
21841         // incorrectly, but we can swap the operands to fix both.
21842         std::swap(LHS, RHS);
21843       case ISD::SETOLT:
21844       case ISD::SETLT:
21845       case ISD::SETLE:
21846         Opcode = X86ISD::FMAX;
21847         break;
21848       }
21849     }
21850
21851     if (Opcode)
21852       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
21853   }
21854
21855   EVT CondVT = Cond.getValueType();
21856   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
21857       CondVT.getVectorElementType() == MVT::i1) {
21858     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
21859     // lowering on KNL. In this case we convert it to
21860     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
21861     // The same situation for all 128 and 256-bit vectors of i8 and i16.
21862     // Since SKX these selects have a proper lowering.
21863     EVT OpVT = LHS.getValueType();
21864     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
21865         (OpVT.getVectorElementType() == MVT::i8 ||
21866          OpVT.getVectorElementType() == MVT::i16) &&
21867         !(Subtarget->hasBWI() && Subtarget->hasVLX())) {
21868       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
21869       DCI.AddToWorklist(Cond.getNode());
21870       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
21871     }
21872   }
21873   // If this is a select between two integer constants, try to do some
21874   // optimizations.
21875   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
21876     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
21877       // Don't do this for crazy integer types.
21878       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
21879         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
21880         // so that TrueC (the true value) is larger than FalseC.
21881         bool NeedsCondInvert = false;
21882
21883         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
21884             // Efficiently invertible.
21885             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
21886              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
21887               isa<ConstantSDNode>(Cond.getOperand(1))))) {
21888           NeedsCondInvert = true;
21889           std::swap(TrueC, FalseC);
21890         }
21891
21892         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
21893         if (FalseC->getAPIntValue() == 0 &&
21894             TrueC->getAPIntValue().isPowerOf2()) {
21895           if (NeedsCondInvert) // Invert the condition if needed.
21896             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
21897                                DAG.getConstant(1, DL, Cond.getValueType()));
21898
21899           // Zero extend the condition if needed.
21900           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
21901
21902           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
21903           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
21904                              DAG.getConstant(ShAmt, DL, MVT::i8));
21905         }
21906
21907         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
21908         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
21909           if (NeedsCondInvert) // Invert the condition if needed.
21910             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
21911                                DAG.getConstant(1, DL, Cond.getValueType()));
21912
21913           // Zero extend the condition if needed.
21914           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
21915                              FalseC->getValueType(0), Cond);
21916           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
21917                              SDValue(FalseC, 0));
21918         }
21919
21920         // Optimize cases that will turn into an LEA instruction.  This requires
21921         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
21922         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
21923           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
21924           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
21925
21926           bool isFastMultiplier = false;
21927           if (Diff < 10) {
21928             switch ((unsigned char)Diff) {
21929               default: break;
21930               case 1:  // result = add base, cond
21931               case 2:  // result = lea base(    , cond*2)
21932               case 3:  // result = lea base(cond, cond*2)
21933               case 4:  // result = lea base(    , cond*4)
21934               case 5:  // result = lea base(cond, cond*4)
21935               case 8:  // result = lea base(    , cond*8)
21936               case 9:  // result = lea base(cond, cond*8)
21937                 isFastMultiplier = true;
21938                 break;
21939             }
21940           }
21941
21942           if (isFastMultiplier) {
21943             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
21944             if (NeedsCondInvert) // Invert the condition if needed.
21945               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
21946                                  DAG.getConstant(1, DL, Cond.getValueType()));
21947
21948             // Zero extend the condition if needed.
21949             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
21950                                Cond);
21951             // Scale the condition by the difference.
21952             if (Diff != 1)
21953               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
21954                                  DAG.getConstant(Diff, DL,
21955                                                  Cond.getValueType()));
21956
21957             // Add the base if non-zero.
21958             if (FalseC->getAPIntValue() != 0)
21959               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
21960                                  SDValue(FalseC, 0));
21961             return Cond;
21962           }
21963         }
21964       }
21965   }
21966
21967   // Canonicalize max and min:
21968   // (x > y) ? x : y -> (x >= y) ? x : y
21969   // (x < y) ? x : y -> (x <= y) ? x : y
21970   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
21971   // the need for an extra compare
21972   // against zero. e.g.
21973   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
21974   // subl   %esi, %edi
21975   // testl  %edi, %edi
21976   // movl   $0, %eax
21977   // cmovgl %edi, %eax
21978   // =>
21979   // xorl   %eax, %eax
21980   // subl   %esi, $edi
21981   // cmovsl %eax, %edi
21982   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
21983       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
21984       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
21985     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
21986     switch (CC) {
21987     default: break;
21988     case ISD::SETLT:
21989     case ISD::SETGT: {
21990       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
21991       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
21992                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
21993       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
21994     }
21995     }
21996   }
21997
21998   // Early exit check
21999   if (!TLI.isTypeLegal(VT))
22000     return SDValue();
22001
22002   // Match VSELECTs into subs with unsigned saturation.
22003   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
22004       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
22005       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
22006        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
22007     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
22008
22009     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
22010     // left side invert the predicate to simplify logic below.
22011     SDValue Other;
22012     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
22013       Other = RHS;
22014       CC = ISD::getSetCCInverse(CC, true);
22015     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
22016       Other = LHS;
22017     }
22018
22019     if (Other.getNode() && Other->getNumOperands() == 2 &&
22020         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
22021       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
22022       SDValue CondRHS = Cond->getOperand(1);
22023
22024       // Look for a general sub with unsigned saturation first.
22025       // x >= y ? x-y : 0 --> subus x, y
22026       // x >  y ? x-y : 0 --> subus x, y
22027       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
22028           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
22029         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
22030
22031       if (auto *OpRHSBV = dyn_cast<BuildVectorSDNode>(OpRHS))
22032         if (auto *OpRHSConst = OpRHSBV->getConstantSplatNode()) {
22033           if (auto *CondRHSBV = dyn_cast<BuildVectorSDNode>(CondRHS))
22034             if (auto *CondRHSConst = CondRHSBV->getConstantSplatNode())
22035               // If the RHS is a constant we have to reverse the const
22036               // canonicalization.
22037               // x > C-1 ? x+-C : 0 --> subus x, C
22038               if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
22039                   CondRHSConst->getAPIntValue() ==
22040                       (-OpRHSConst->getAPIntValue() - 1))
22041                 return DAG.getNode(
22042                     X86ISD::SUBUS, DL, VT, OpLHS,
22043                     DAG.getConstant(-OpRHSConst->getAPIntValue(), DL, VT));
22044
22045           // Another special case: If C was a sign bit, the sub has been
22046           // canonicalized into a xor.
22047           // FIXME: Would it be better to use computeKnownBits to determine
22048           //        whether it's safe to decanonicalize the xor?
22049           // x s< 0 ? x^C : 0 --> subus x, C
22050           if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
22051               ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
22052               OpRHSConst->getAPIntValue().isSignBit())
22053             // Note that we have to rebuild the RHS constant here to ensure we
22054             // don't rely on particular values of undef lanes.
22055             return DAG.getNode(
22056                 X86ISD::SUBUS, DL, VT, OpLHS,
22057                 DAG.getConstant(OpRHSConst->getAPIntValue(), DL, VT));
22058         }
22059     }
22060   }
22061
22062   // Try to match a min/max vector operation.
22063   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
22064     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
22065     unsigned Opc = ret.first;
22066     bool NeedSplit = ret.second;
22067
22068     if (Opc && NeedSplit) {
22069       unsigned NumElems = VT.getVectorNumElements();
22070       // Extract the LHS vectors
22071       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
22072       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
22073
22074       // Extract the RHS vectors
22075       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
22076       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
22077
22078       // Create min/max for each subvector
22079       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
22080       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
22081
22082       // Merge the result
22083       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
22084     } else if (Opc)
22085       return DAG.getNode(Opc, DL, VT, LHS, RHS);
22086   }
22087
22088   // Simplify vector selection if condition value type matches vselect
22089   // operand type
22090   if (N->getOpcode() == ISD::VSELECT && CondVT == VT) {
22091     assert(Cond.getValueType().isVector() &&
22092            "vector select expects a vector selector!");
22093
22094     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
22095     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
22096
22097     // Try invert the condition if true value is not all 1s and false value
22098     // is not all 0s.
22099     if (!TValIsAllOnes && !FValIsAllZeros &&
22100         // Check if the selector will be produced by CMPP*/PCMP*
22101         Cond.getOpcode() == ISD::SETCC &&
22102         // Check if SETCC has already been promoted
22103         TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT) {
22104       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
22105       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
22106
22107       if (TValIsAllZeros || FValIsAllOnes) {
22108         SDValue CC = Cond.getOperand(2);
22109         ISD::CondCode NewCC =
22110           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
22111                                Cond.getOperand(0).getValueType().isInteger());
22112         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
22113         std::swap(LHS, RHS);
22114         TValIsAllOnes = FValIsAllOnes;
22115         FValIsAllZeros = TValIsAllZeros;
22116       }
22117     }
22118
22119     if (TValIsAllOnes || FValIsAllZeros) {
22120       SDValue Ret;
22121
22122       if (TValIsAllOnes && FValIsAllZeros)
22123         Ret = Cond;
22124       else if (TValIsAllOnes)
22125         Ret =
22126             DAG.getNode(ISD::OR, DL, CondVT, Cond, DAG.getBitcast(CondVT, RHS));
22127       else if (FValIsAllZeros)
22128         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
22129                           DAG.getBitcast(CondVT, LHS));
22130
22131       return DAG.getBitcast(VT, Ret);
22132     }
22133   }
22134
22135   // We should generate an X86ISD::BLENDI from a vselect if its argument
22136   // is a sign_extend_inreg of an any_extend of a BUILD_VECTOR of
22137   // constants. This specific pattern gets generated when we split a
22138   // selector for a 512 bit vector in a machine without AVX512 (but with
22139   // 256-bit vectors), during legalization:
22140   //
22141   // (vselect (sign_extend (any_extend (BUILD_VECTOR)) i1) LHS RHS)
22142   //
22143   // Iff we find this pattern and the build_vectors are built from
22144   // constants, we translate the vselect into a shuffle_vector that we
22145   // know will be matched by LowerVECTOR_SHUFFLEtoBlend.
22146   if ((N->getOpcode() == ISD::VSELECT ||
22147        N->getOpcode() == X86ISD::SHRUNKBLEND) &&
22148       !DCI.isBeforeLegalize() && !VT.is512BitVector()) {
22149     SDValue Shuffle = transformVSELECTtoBlendVECTOR_SHUFFLE(N, DAG, Subtarget);
22150     if (Shuffle.getNode())
22151       return Shuffle;
22152   }
22153
22154   // If this is a *dynamic* select (non-constant condition) and we can match
22155   // this node with one of the variable blend instructions, restructure the
22156   // condition so that the blends can use the high bit of each element and use
22157   // SimplifyDemandedBits to simplify the condition operand.
22158   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
22159       !DCI.isBeforeLegalize() &&
22160       !ISD::isBuildVectorOfConstantSDNodes(Cond.getNode())) {
22161     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
22162
22163     // Don't optimize vector selects that map to mask-registers.
22164     if (BitWidth == 1)
22165       return SDValue();
22166
22167     // We can only handle the cases where VSELECT is directly legal on the
22168     // subtarget. We custom lower VSELECT nodes with constant conditions and
22169     // this makes it hard to see whether a dynamic VSELECT will correctly
22170     // lower, so we both check the operation's status and explicitly handle the
22171     // cases where a *dynamic* blend will fail even though a constant-condition
22172     // blend could be custom lowered.
22173     // FIXME: We should find a better way to handle this class of problems.
22174     // Potentially, we should combine constant-condition vselect nodes
22175     // pre-legalization into shuffles and not mark as many types as custom
22176     // lowered.
22177     if (!TLI.isOperationLegalOrCustom(ISD::VSELECT, VT))
22178       return SDValue();
22179     // FIXME: We don't support i16-element blends currently. We could and
22180     // should support them by making *all* the bits in the condition be set
22181     // rather than just the high bit and using an i8-element blend.
22182     if (VT.getScalarType() == MVT::i16)
22183       return SDValue();
22184     // Dynamic blending was only available from SSE4.1 onward.
22185     if (VT.getSizeInBits() == 128 && !Subtarget->hasSSE41())
22186       return SDValue();
22187     // Byte blends are only available in AVX2
22188     if (VT.getSizeInBits() == 256 && VT.getScalarType() == MVT::i8 &&
22189         !Subtarget->hasAVX2())
22190       return SDValue();
22191
22192     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
22193     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
22194
22195     APInt KnownZero, KnownOne;
22196     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
22197                                           DCI.isBeforeLegalizeOps());
22198     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
22199         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne,
22200                                  TLO)) {
22201       // If we changed the computation somewhere in the DAG, this change
22202       // will affect all users of Cond.
22203       // Make sure it is fine and update all the nodes so that we do not
22204       // use the generic VSELECT anymore. Otherwise, we may perform
22205       // wrong optimizations as we messed up with the actual expectation
22206       // for the vector boolean values.
22207       if (Cond != TLO.Old) {
22208         // Check all uses of that condition operand to check whether it will be
22209         // consumed by non-BLEND instructions, which may depend on all bits are
22210         // set properly.
22211         for (SDNode::use_iterator I = Cond->use_begin(), E = Cond->use_end();
22212              I != E; ++I)
22213           if (I->getOpcode() != ISD::VSELECT)
22214             // TODO: Add other opcodes eventually lowered into BLEND.
22215             return SDValue();
22216
22217         // Update all the users of the condition, before committing the change,
22218         // so that the VSELECT optimizations that expect the correct vector
22219         // boolean value will not be triggered.
22220         for (SDNode::use_iterator I = Cond->use_begin(), E = Cond->use_end();
22221              I != E; ++I)
22222           DAG.ReplaceAllUsesOfValueWith(
22223               SDValue(*I, 0),
22224               DAG.getNode(X86ISD::SHRUNKBLEND, SDLoc(*I), I->getValueType(0),
22225                           Cond, I->getOperand(1), I->getOperand(2)));
22226         DCI.CommitTargetLoweringOpt(TLO);
22227         return SDValue();
22228       }
22229       // At this point, only Cond is changed. Change the condition
22230       // just for N to keep the opportunity to optimize all other
22231       // users their own way.
22232       DAG.ReplaceAllUsesOfValueWith(
22233           SDValue(N, 0),
22234           DAG.getNode(X86ISD::SHRUNKBLEND, SDLoc(N), N->getValueType(0),
22235                       TLO.New, N->getOperand(1), N->getOperand(2)));
22236       return SDValue();
22237     }
22238   }
22239
22240   return SDValue();
22241 }
22242
22243 // Check whether a boolean test is testing a boolean value generated by
22244 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
22245 // code.
22246 //
22247 // Simplify the following patterns:
22248 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
22249 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
22250 // to (Op EFLAGS Cond)
22251 //
22252 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
22253 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
22254 // to (Op EFLAGS !Cond)
22255 //
22256 // where Op could be BRCOND or CMOV.
22257 //
22258 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
22259   // Quit if not CMP and SUB with its value result used.
22260   if (Cmp.getOpcode() != X86ISD::CMP &&
22261       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
22262       return SDValue();
22263
22264   // Quit if not used as a boolean value.
22265   if (CC != X86::COND_E && CC != X86::COND_NE)
22266     return SDValue();
22267
22268   // Check CMP operands. One of them should be 0 or 1 and the other should be
22269   // an SetCC or extended from it.
22270   SDValue Op1 = Cmp.getOperand(0);
22271   SDValue Op2 = Cmp.getOperand(1);
22272
22273   SDValue SetCC;
22274   const ConstantSDNode* C = nullptr;
22275   bool needOppositeCond = (CC == X86::COND_E);
22276   bool checkAgainstTrue = false; // Is it a comparison against 1?
22277
22278   if ((C = dyn_cast<ConstantSDNode>(Op1)))
22279     SetCC = Op2;
22280   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
22281     SetCC = Op1;
22282   else // Quit if all operands are not constants.
22283     return SDValue();
22284
22285   if (C->getZExtValue() == 1) {
22286     needOppositeCond = !needOppositeCond;
22287     checkAgainstTrue = true;
22288   } else if (C->getZExtValue() != 0)
22289     // Quit if the constant is neither 0 or 1.
22290     return SDValue();
22291
22292   bool truncatedToBoolWithAnd = false;
22293   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
22294   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
22295          SetCC.getOpcode() == ISD::TRUNCATE ||
22296          SetCC.getOpcode() == ISD::AND) {
22297     if (SetCC.getOpcode() == ISD::AND) {
22298       int OpIdx = -1;
22299       ConstantSDNode *CS;
22300       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
22301           CS->getZExtValue() == 1)
22302         OpIdx = 1;
22303       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
22304           CS->getZExtValue() == 1)
22305         OpIdx = 0;
22306       if (OpIdx == -1)
22307         break;
22308       SetCC = SetCC.getOperand(OpIdx);
22309       truncatedToBoolWithAnd = true;
22310     } else
22311       SetCC = SetCC.getOperand(0);
22312   }
22313
22314   switch (SetCC.getOpcode()) {
22315   case X86ISD::SETCC_CARRY:
22316     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
22317     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
22318     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
22319     // truncated to i1 using 'and'.
22320     if (checkAgainstTrue && !truncatedToBoolWithAnd)
22321       break;
22322     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
22323            "Invalid use of SETCC_CARRY!");
22324     // FALL THROUGH
22325   case X86ISD::SETCC:
22326     // Set the condition code or opposite one if necessary.
22327     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
22328     if (needOppositeCond)
22329       CC = X86::GetOppositeBranchCondition(CC);
22330     return SetCC.getOperand(1);
22331   case X86ISD::CMOV: {
22332     // Check whether false/true value has canonical one, i.e. 0 or 1.
22333     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
22334     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
22335     // Quit if true value is not a constant.
22336     if (!TVal)
22337       return SDValue();
22338     // Quit if false value is not a constant.
22339     if (!FVal) {
22340       SDValue Op = SetCC.getOperand(0);
22341       // Skip 'zext' or 'trunc' node.
22342       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
22343           Op.getOpcode() == ISD::TRUNCATE)
22344         Op = Op.getOperand(0);
22345       // A special case for rdrand/rdseed, where 0 is set if false cond is
22346       // found.
22347       if ((Op.getOpcode() != X86ISD::RDRAND &&
22348            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
22349         return SDValue();
22350     }
22351     // Quit if false value is not the constant 0 or 1.
22352     bool FValIsFalse = true;
22353     if (FVal && FVal->getZExtValue() != 0) {
22354       if (FVal->getZExtValue() != 1)
22355         return SDValue();
22356       // If FVal is 1, opposite cond is needed.
22357       needOppositeCond = !needOppositeCond;
22358       FValIsFalse = false;
22359     }
22360     // Quit if TVal is not the constant opposite of FVal.
22361     if (FValIsFalse && TVal->getZExtValue() != 1)
22362       return SDValue();
22363     if (!FValIsFalse && TVal->getZExtValue() != 0)
22364       return SDValue();
22365     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
22366     if (needOppositeCond)
22367       CC = X86::GetOppositeBranchCondition(CC);
22368     return SetCC.getOperand(3);
22369   }
22370   }
22371
22372   return SDValue();
22373 }
22374
22375 /// Check whether Cond is an AND/OR of SETCCs off of the same EFLAGS.
22376 /// Match:
22377 ///   (X86or (X86setcc) (X86setcc))
22378 ///   (X86cmp (and (X86setcc) (X86setcc)), 0)
22379 static bool checkBoolTestAndOrSetCCCombine(SDValue Cond, X86::CondCode &CC0,
22380                                            X86::CondCode &CC1, SDValue &Flags,
22381                                            bool &isAnd) {
22382   if (Cond->getOpcode() == X86ISD::CMP) {
22383     ConstantSDNode *CondOp1C = dyn_cast<ConstantSDNode>(Cond->getOperand(1));
22384     if (!CondOp1C || !CondOp1C->isNullValue())
22385       return false;
22386
22387     Cond = Cond->getOperand(0);
22388   }
22389
22390   isAnd = false;
22391
22392   SDValue SetCC0, SetCC1;
22393   switch (Cond->getOpcode()) {
22394   default: return false;
22395   case ISD::AND:
22396   case X86ISD::AND:
22397     isAnd = true;
22398     // fallthru
22399   case ISD::OR:
22400   case X86ISD::OR:
22401     SetCC0 = Cond->getOperand(0);
22402     SetCC1 = Cond->getOperand(1);
22403     break;
22404   };
22405
22406   // Make sure we have SETCC nodes, using the same flags value.
22407   if (SetCC0.getOpcode() != X86ISD::SETCC ||
22408       SetCC1.getOpcode() != X86ISD::SETCC ||
22409       SetCC0->getOperand(1) != SetCC1->getOperand(1))
22410     return false;
22411
22412   CC0 = (X86::CondCode)SetCC0->getConstantOperandVal(0);
22413   CC1 = (X86::CondCode)SetCC1->getConstantOperandVal(0);
22414   Flags = SetCC0->getOperand(1);
22415   return true;
22416 }
22417
22418 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
22419 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
22420                                   TargetLowering::DAGCombinerInfo &DCI,
22421                                   const X86Subtarget *Subtarget) {
22422   SDLoc DL(N);
22423
22424   // If the flag operand isn't dead, don't touch this CMOV.
22425   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
22426     return SDValue();
22427
22428   SDValue FalseOp = N->getOperand(0);
22429   SDValue TrueOp = N->getOperand(1);
22430   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
22431   SDValue Cond = N->getOperand(3);
22432
22433   if (CC == X86::COND_E || CC == X86::COND_NE) {
22434     switch (Cond.getOpcode()) {
22435     default: break;
22436     case X86ISD::BSR:
22437     case X86ISD::BSF:
22438       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
22439       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
22440         return (CC == X86::COND_E) ? FalseOp : TrueOp;
22441     }
22442   }
22443
22444   SDValue Flags;
22445
22446   Flags = checkBoolTestSetCCCombine(Cond, CC);
22447   if (Flags.getNode() &&
22448       // Extra check as FCMOV only supports a subset of X86 cond.
22449       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
22450     SDValue Ops[] = { FalseOp, TrueOp,
22451                       DAG.getConstant(CC, DL, MVT::i8), Flags };
22452     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
22453   }
22454
22455   // If this is a select between two integer constants, try to do some
22456   // optimizations.  Note that the operands are ordered the opposite of SELECT
22457   // operands.
22458   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
22459     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
22460       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
22461       // larger than FalseC (the false value).
22462       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
22463         CC = X86::GetOppositeBranchCondition(CC);
22464         std::swap(TrueC, FalseC);
22465         std::swap(TrueOp, FalseOp);
22466       }
22467
22468       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
22469       // This is efficient for any integer data type (including i8/i16) and
22470       // shift amount.
22471       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
22472         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
22473                            DAG.getConstant(CC, DL, MVT::i8), Cond);
22474
22475         // Zero extend the condition if needed.
22476         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
22477
22478         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
22479         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
22480                            DAG.getConstant(ShAmt, DL, MVT::i8));
22481         if (N->getNumValues() == 2)  // Dead flag value?
22482           return DCI.CombineTo(N, Cond, SDValue());
22483         return Cond;
22484       }
22485
22486       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
22487       // for any integer data type, including i8/i16.
22488       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
22489         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
22490                            DAG.getConstant(CC, DL, MVT::i8), Cond);
22491
22492         // Zero extend the condition if needed.
22493         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
22494                            FalseC->getValueType(0), Cond);
22495         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
22496                            SDValue(FalseC, 0));
22497
22498         if (N->getNumValues() == 2)  // Dead flag value?
22499           return DCI.CombineTo(N, Cond, SDValue());
22500         return Cond;
22501       }
22502
22503       // Optimize cases that will turn into an LEA instruction.  This requires
22504       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
22505       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
22506         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
22507         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
22508
22509         bool isFastMultiplier = false;
22510         if (Diff < 10) {
22511           switch ((unsigned char)Diff) {
22512           default: break;
22513           case 1:  // result = add base, cond
22514           case 2:  // result = lea base(    , cond*2)
22515           case 3:  // result = lea base(cond, cond*2)
22516           case 4:  // result = lea base(    , cond*4)
22517           case 5:  // result = lea base(cond, cond*4)
22518           case 8:  // result = lea base(    , cond*8)
22519           case 9:  // result = lea base(cond, cond*8)
22520             isFastMultiplier = true;
22521             break;
22522           }
22523         }
22524
22525         if (isFastMultiplier) {
22526           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
22527           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
22528                              DAG.getConstant(CC, DL, MVT::i8), Cond);
22529           // Zero extend the condition if needed.
22530           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
22531                              Cond);
22532           // Scale the condition by the difference.
22533           if (Diff != 1)
22534             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
22535                                DAG.getConstant(Diff, DL, Cond.getValueType()));
22536
22537           // Add the base if non-zero.
22538           if (FalseC->getAPIntValue() != 0)
22539             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
22540                                SDValue(FalseC, 0));
22541           if (N->getNumValues() == 2)  // Dead flag value?
22542             return DCI.CombineTo(N, Cond, SDValue());
22543           return Cond;
22544         }
22545       }
22546     }
22547   }
22548
22549   // Handle these cases:
22550   //   (select (x != c), e, c) -> select (x != c), e, x),
22551   //   (select (x == c), c, e) -> select (x == c), x, e)
22552   // where the c is an integer constant, and the "select" is the combination
22553   // of CMOV and CMP.
22554   //
22555   // The rationale for this change is that the conditional-move from a constant
22556   // needs two instructions, however, conditional-move from a register needs
22557   // only one instruction.
22558   //
22559   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
22560   //  some instruction-combining opportunities. This opt needs to be
22561   //  postponed as late as possible.
22562   //
22563   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
22564     // the DCI.xxxx conditions are provided to postpone the optimization as
22565     // late as possible.
22566
22567     ConstantSDNode *CmpAgainst = nullptr;
22568     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
22569         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
22570         !isa<ConstantSDNode>(Cond.getOperand(0))) {
22571
22572       if (CC == X86::COND_NE &&
22573           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
22574         CC = X86::GetOppositeBranchCondition(CC);
22575         std::swap(TrueOp, FalseOp);
22576       }
22577
22578       if (CC == X86::COND_E &&
22579           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
22580         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
22581                           DAG.getConstant(CC, DL, MVT::i8), Cond };
22582         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
22583       }
22584     }
22585   }
22586
22587   // Fold and/or of setcc's to double CMOV:
22588   //   (CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
22589   //   (CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
22590   //
22591   // This combine lets us generate:
22592   //   cmovcc1 (jcc1 if we don't have CMOV)
22593   //   cmovcc2 (same)
22594   // instead of:
22595   //   setcc1
22596   //   setcc2
22597   //   and/or
22598   //   cmovne (jne if we don't have CMOV)
22599   // When we can't use the CMOV instruction, it might increase branch
22600   // mispredicts.
22601   // When we can use CMOV, or when there is no mispredict, this improves
22602   // throughput and reduces register pressure.
22603   //
22604   if (CC == X86::COND_NE) {
22605     SDValue Flags;
22606     X86::CondCode CC0, CC1;
22607     bool isAndSetCC;
22608     if (checkBoolTestAndOrSetCCCombine(Cond, CC0, CC1, Flags, isAndSetCC)) {
22609       if (isAndSetCC) {
22610         std::swap(FalseOp, TrueOp);
22611         CC0 = X86::GetOppositeBranchCondition(CC0);
22612         CC1 = X86::GetOppositeBranchCondition(CC1);
22613       }
22614
22615       SDValue LOps[] = {FalseOp, TrueOp, DAG.getConstant(CC0, DL, MVT::i8),
22616         Flags};
22617       SDValue LCMOV = DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), LOps);
22618       SDValue Ops[] = {LCMOV, TrueOp, DAG.getConstant(CC1, DL, MVT::i8), Flags};
22619       SDValue CMOV = DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
22620       DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SDValue(CMOV.getNode(), 1));
22621       return CMOV;
22622     }
22623   }
22624
22625   return SDValue();
22626 }
22627
22628 static SDValue PerformINTRINSIC_WO_CHAINCombine(SDNode *N, SelectionDAG &DAG,
22629                                                 const X86Subtarget *Subtarget) {
22630   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
22631   switch (IntNo) {
22632   default: return SDValue();
22633   // SSE/AVX/AVX2 blend intrinsics.
22634   case Intrinsic::x86_avx2_pblendvb:
22635     // Don't try to simplify this intrinsic if we don't have AVX2.
22636     if (!Subtarget->hasAVX2())
22637       return SDValue();
22638     // FALL-THROUGH
22639   case Intrinsic::x86_avx_blendv_pd_256:
22640   case Intrinsic::x86_avx_blendv_ps_256:
22641     // Don't try to simplify this intrinsic if we don't have AVX.
22642     if (!Subtarget->hasAVX())
22643       return SDValue();
22644     // FALL-THROUGH
22645   case Intrinsic::x86_sse41_blendvps:
22646   case Intrinsic::x86_sse41_blendvpd:
22647   case Intrinsic::x86_sse41_pblendvb: {
22648     SDValue Op0 = N->getOperand(1);
22649     SDValue Op1 = N->getOperand(2);
22650     SDValue Mask = N->getOperand(3);
22651
22652     // Don't try to simplify this intrinsic if we don't have SSE4.1.
22653     if (!Subtarget->hasSSE41())
22654       return SDValue();
22655
22656     // fold (blend A, A, Mask) -> A
22657     if (Op0 == Op1)
22658       return Op0;
22659     // fold (blend A, B, allZeros) -> A
22660     if (ISD::isBuildVectorAllZeros(Mask.getNode()))
22661       return Op0;
22662     // fold (blend A, B, allOnes) -> B
22663     if (ISD::isBuildVectorAllOnes(Mask.getNode()))
22664       return Op1;
22665
22666     // Simplify the case where the mask is a constant i32 value.
22667     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Mask)) {
22668       if (C->isNullValue())
22669         return Op0;
22670       if (C->isAllOnesValue())
22671         return Op1;
22672     }
22673
22674     return SDValue();
22675   }
22676
22677   // Packed SSE2/AVX2 arithmetic shift immediate intrinsics.
22678   case Intrinsic::x86_sse2_psrai_w:
22679   case Intrinsic::x86_sse2_psrai_d:
22680   case Intrinsic::x86_avx2_psrai_w:
22681   case Intrinsic::x86_avx2_psrai_d:
22682   case Intrinsic::x86_sse2_psra_w:
22683   case Intrinsic::x86_sse2_psra_d:
22684   case Intrinsic::x86_avx2_psra_w:
22685   case Intrinsic::x86_avx2_psra_d: {
22686     SDValue Op0 = N->getOperand(1);
22687     SDValue Op1 = N->getOperand(2);
22688     EVT VT = Op0.getValueType();
22689     assert(VT.isVector() && "Expected a vector type!");
22690
22691     if (isa<BuildVectorSDNode>(Op1))
22692       Op1 = Op1.getOperand(0);
22693
22694     if (!isa<ConstantSDNode>(Op1))
22695       return SDValue();
22696
22697     EVT SVT = VT.getVectorElementType();
22698     unsigned SVTBits = SVT.getSizeInBits();
22699
22700     ConstantSDNode *CND = cast<ConstantSDNode>(Op1);
22701     const APInt &C = APInt(SVTBits, CND->getAPIntValue().getZExtValue());
22702     uint64_t ShAmt = C.getZExtValue();
22703
22704     // Don't try to convert this shift into a ISD::SRA if the shift
22705     // count is bigger than or equal to the element size.
22706     if (ShAmt >= SVTBits)
22707       return SDValue();
22708
22709     // Trivial case: if the shift count is zero, then fold this
22710     // into the first operand.
22711     if (ShAmt == 0)
22712       return Op0;
22713
22714     // Replace this packed shift intrinsic with a target independent
22715     // shift dag node.
22716     SDLoc DL(N);
22717     SDValue Splat = DAG.getConstant(C, DL, VT);
22718     return DAG.getNode(ISD::SRA, DL, VT, Op0, Splat);
22719   }
22720   }
22721 }
22722
22723 /// PerformMulCombine - Optimize a single multiply with constant into two
22724 /// in order to implement it with two cheaper instructions, e.g.
22725 /// LEA + SHL, LEA + LEA.
22726 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
22727                                  TargetLowering::DAGCombinerInfo &DCI) {
22728   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
22729     return SDValue();
22730
22731   EVT VT = N->getValueType(0);
22732   if (VT != MVT::i64 && VT != MVT::i32)
22733     return SDValue();
22734
22735   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
22736   if (!C)
22737     return SDValue();
22738   uint64_t MulAmt = C->getZExtValue();
22739   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
22740     return SDValue();
22741
22742   uint64_t MulAmt1 = 0;
22743   uint64_t MulAmt2 = 0;
22744   if ((MulAmt % 9) == 0) {
22745     MulAmt1 = 9;
22746     MulAmt2 = MulAmt / 9;
22747   } else if ((MulAmt % 5) == 0) {
22748     MulAmt1 = 5;
22749     MulAmt2 = MulAmt / 5;
22750   } else if ((MulAmt % 3) == 0) {
22751     MulAmt1 = 3;
22752     MulAmt2 = MulAmt / 3;
22753   }
22754   if (MulAmt2 &&
22755       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
22756     SDLoc DL(N);
22757
22758     if (isPowerOf2_64(MulAmt2) &&
22759         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
22760       // If second multiplifer is pow2, issue it first. We want the multiply by
22761       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
22762       // is an add.
22763       std::swap(MulAmt1, MulAmt2);
22764
22765     SDValue NewMul;
22766     if (isPowerOf2_64(MulAmt1))
22767       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
22768                            DAG.getConstant(Log2_64(MulAmt1), DL, MVT::i8));
22769     else
22770       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
22771                            DAG.getConstant(MulAmt1, DL, VT));
22772
22773     if (isPowerOf2_64(MulAmt2))
22774       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
22775                            DAG.getConstant(Log2_64(MulAmt2), DL, MVT::i8));
22776     else
22777       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
22778                            DAG.getConstant(MulAmt2, DL, VT));
22779
22780     // Do not add new nodes to DAG combiner worklist.
22781     DCI.CombineTo(N, NewMul, false);
22782   }
22783   return SDValue();
22784 }
22785
22786 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
22787   SDValue N0 = N->getOperand(0);
22788   SDValue N1 = N->getOperand(1);
22789   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
22790   EVT VT = N0.getValueType();
22791
22792   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
22793   // since the result of setcc_c is all zero's or all ones.
22794   if (VT.isInteger() && !VT.isVector() &&
22795       N1C && N0.getOpcode() == ISD::AND &&
22796       N0.getOperand(1).getOpcode() == ISD::Constant) {
22797     SDValue N00 = N0.getOperand(0);
22798     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
22799         ((N00.getOpcode() == ISD::ANY_EXTEND ||
22800           N00.getOpcode() == ISD::ZERO_EXTEND) &&
22801          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
22802       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
22803       APInt ShAmt = N1C->getAPIntValue();
22804       Mask = Mask.shl(ShAmt);
22805       if (Mask != 0) {
22806         SDLoc DL(N);
22807         return DAG.getNode(ISD::AND, DL, VT,
22808                            N00, DAG.getConstant(Mask, DL, VT));
22809       }
22810     }
22811   }
22812
22813   // Hardware support for vector shifts is sparse which makes us scalarize the
22814   // vector operations in many cases. Also, on sandybridge ADD is faster than
22815   // shl.
22816   // (shl V, 1) -> add V,V
22817   if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
22818     if (auto *N1SplatC = N1BV->getConstantSplatNode()) {
22819       assert(N0.getValueType().isVector() && "Invalid vector shift type");
22820       // We shift all of the values by one. In many cases we do not have
22821       // hardware support for this operation. This is better expressed as an ADD
22822       // of two values.
22823       if (N1SplatC->getZExtValue() == 1)
22824         return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
22825     }
22826
22827   return SDValue();
22828 }
22829
22830 /// \brief Returns a vector of 0s if the node in input is a vector logical
22831 /// shift by a constant amount which is known to be bigger than or equal
22832 /// to the vector element size in bits.
22833 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
22834                                       const X86Subtarget *Subtarget) {
22835   EVT VT = N->getValueType(0);
22836
22837   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
22838       (!Subtarget->hasInt256() ||
22839        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
22840     return SDValue();
22841
22842   SDValue Amt = N->getOperand(1);
22843   SDLoc DL(N);
22844   if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Amt))
22845     if (auto *AmtSplat = AmtBV->getConstantSplatNode()) {
22846       APInt ShiftAmt = AmtSplat->getAPIntValue();
22847       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
22848
22849       // SSE2/AVX2 logical shifts always return a vector of 0s
22850       // if the shift amount is bigger than or equal to
22851       // the element size. The constant shift amount will be
22852       // encoded as a 8-bit immediate.
22853       if (ShiftAmt.trunc(8).uge(MaxAmount))
22854         return getZeroVector(VT, Subtarget, DAG, DL);
22855     }
22856
22857   return SDValue();
22858 }
22859
22860 /// PerformShiftCombine - Combine shifts.
22861 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
22862                                    TargetLowering::DAGCombinerInfo &DCI,
22863                                    const X86Subtarget *Subtarget) {
22864   if (N->getOpcode() == ISD::SHL)
22865     if (SDValue V = PerformSHLCombine(N, DAG))
22866       return V;
22867
22868   // Try to fold this logical shift into a zero vector.
22869   if (N->getOpcode() != ISD::SRA)
22870     if (SDValue V = performShiftToAllZeros(N, DAG, Subtarget))
22871       return V;
22872
22873   return SDValue();
22874 }
22875
22876 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
22877 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
22878 // and friends.  Likewise for OR -> CMPNEQSS.
22879 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
22880                             TargetLowering::DAGCombinerInfo &DCI,
22881                             const X86Subtarget *Subtarget) {
22882   unsigned opcode;
22883
22884   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
22885   // we're requiring SSE2 for both.
22886   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
22887     SDValue N0 = N->getOperand(0);
22888     SDValue N1 = N->getOperand(1);
22889     SDValue CMP0 = N0->getOperand(1);
22890     SDValue CMP1 = N1->getOperand(1);
22891     SDLoc DL(N);
22892
22893     // The SETCCs should both refer to the same CMP.
22894     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
22895       return SDValue();
22896
22897     SDValue CMP00 = CMP0->getOperand(0);
22898     SDValue CMP01 = CMP0->getOperand(1);
22899     EVT     VT    = CMP00.getValueType();
22900
22901     if (VT == MVT::f32 || VT == MVT::f64) {
22902       bool ExpectingFlags = false;
22903       // Check for any users that want flags:
22904       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
22905            !ExpectingFlags && UI != UE; ++UI)
22906         switch (UI->getOpcode()) {
22907         default:
22908         case ISD::BR_CC:
22909         case ISD::BRCOND:
22910         case ISD::SELECT:
22911           ExpectingFlags = true;
22912           break;
22913         case ISD::CopyToReg:
22914         case ISD::SIGN_EXTEND:
22915         case ISD::ZERO_EXTEND:
22916         case ISD::ANY_EXTEND:
22917           break;
22918         }
22919
22920       if (!ExpectingFlags) {
22921         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
22922         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
22923
22924         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
22925           X86::CondCode tmp = cc0;
22926           cc0 = cc1;
22927           cc1 = tmp;
22928         }
22929
22930         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
22931             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
22932           // FIXME: need symbolic constants for these magic numbers.
22933           // See X86ATTInstPrinter.cpp:printSSECC().
22934           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
22935           if (Subtarget->hasAVX512()) {
22936             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
22937                                          CMP01,
22938                                          DAG.getConstant(x86cc, DL, MVT::i8));
22939             if (N->getValueType(0) != MVT::i1)
22940               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
22941                                  FSetCC);
22942             return FSetCC;
22943           }
22944           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
22945                                               CMP00.getValueType(), CMP00, CMP01,
22946                                               DAG.getConstant(x86cc, DL,
22947                                                               MVT::i8));
22948
22949           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
22950           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
22951
22952           if (is64BitFP && !Subtarget->is64Bit()) {
22953             // On a 32-bit target, we cannot bitcast the 64-bit float to a
22954             // 64-bit integer, since that's not a legal type. Since
22955             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
22956             // bits, but can do this little dance to extract the lowest 32 bits
22957             // and work with those going forward.
22958             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
22959                                            OnesOrZeroesF);
22960             SDValue Vector32 = DAG.getBitcast(MVT::v4f32, Vector64);
22961             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
22962                                         Vector32, DAG.getIntPtrConstant(0, DL));
22963             IntVT = MVT::i32;
22964           }
22965
22966           SDValue OnesOrZeroesI = DAG.getBitcast(IntVT, OnesOrZeroesF);
22967           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
22968                                       DAG.getConstant(1, DL, IntVT));
22969           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8,
22970                                               ANDed);
22971           return OneBitOfTruth;
22972         }
22973       }
22974     }
22975   }
22976   return SDValue();
22977 }
22978
22979 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
22980 /// so it can be folded inside ANDNP.
22981 static bool CanFoldXORWithAllOnes(const SDNode *N) {
22982   EVT VT = N->getValueType(0);
22983
22984   // Match direct AllOnes for 128 and 256-bit vectors
22985   if (ISD::isBuildVectorAllOnes(N))
22986     return true;
22987
22988   // Look through a bit convert.
22989   if (N->getOpcode() == ISD::BITCAST)
22990     N = N->getOperand(0).getNode();
22991
22992   // Sometimes the operand may come from a insert_subvector building a 256-bit
22993   // allones vector
22994   if (VT.is256BitVector() &&
22995       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
22996     SDValue V1 = N->getOperand(0);
22997     SDValue V2 = N->getOperand(1);
22998
22999     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
23000         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
23001         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
23002         ISD::isBuildVectorAllOnes(V2.getNode()))
23003       return true;
23004   }
23005
23006   return false;
23007 }
23008
23009 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
23010 // register. In most cases we actually compare or select YMM-sized registers
23011 // and mixing the two types creates horrible code. This method optimizes
23012 // some of the transition sequences.
23013 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
23014                                  TargetLowering::DAGCombinerInfo &DCI,
23015                                  const X86Subtarget *Subtarget) {
23016   EVT VT = N->getValueType(0);
23017   if (!VT.is256BitVector())
23018     return SDValue();
23019
23020   assert((N->getOpcode() == ISD::ANY_EXTEND ||
23021           N->getOpcode() == ISD::ZERO_EXTEND ||
23022           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
23023
23024   SDValue Narrow = N->getOperand(0);
23025   EVT NarrowVT = Narrow->getValueType(0);
23026   if (!NarrowVT.is128BitVector())
23027     return SDValue();
23028
23029   if (Narrow->getOpcode() != ISD::XOR &&
23030       Narrow->getOpcode() != ISD::AND &&
23031       Narrow->getOpcode() != ISD::OR)
23032     return SDValue();
23033
23034   SDValue N0  = Narrow->getOperand(0);
23035   SDValue N1  = Narrow->getOperand(1);
23036   SDLoc DL(Narrow);
23037
23038   // The Left side has to be a trunc.
23039   if (N0.getOpcode() != ISD::TRUNCATE)
23040     return SDValue();
23041
23042   // The type of the truncated inputs.
23043   EVT WideVT = N0->getOperand(0)->getValueType(0);
23044   if (WideVT != VT)
23045     return SDValue();
23046
23047   // The right side has to be a 'trunc' or a constant vector.
23048   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
23049   ConstantSDNode *RHSConstSplat = nullptr;
23050   if (auto *RHSBV = dyn_cast<BuildVectorSDNode>(N1))
23051     RHSConstSplat = RHSBV->getConstantSplatNode();
23052   if (!RHSTrunc && !RHSConstSplat)
23053     return SDValue();
23054
23055   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23056
23057   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
23058     return SDValue();
23059
23060   // Set N0 and N1 to hold the inputs to the new wide operation.
23061   N0 = N0->getOperand(0);
23062   if (RHSConstSplat) {
23063     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
23064                      SDValue(RHSConstSplat, 0));
23065     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
23066     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
23067   } else if (RHSTrunc) {
23068     N1 = N1->getOperand(0);
23069   }
23070
23071   // Generate the wide operation.
23072   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
23073   unsigned Opcode = N->getOpcode();
23074   switch (Opcode) {
23075   case ISD::ANY_EXTEND:
23076     return Op;
23077   case ISD::ZERO_EXTEND: {
23078     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
23079     APInt Mask = APInt::getAllOnesValue(InBits);
23080     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
23081     return DAG.getNode(ISD::AND, DL, VT,
23082                        Op, DAG.getConstant(Mask, DL, VT));
23083   }
23084   case ISD::SIGN_EXTEND:
23085     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
23086                        Op, DAG.getValueType(NarrowVT));
23087   default:
23088     llvm_unreachable("Unexpected opcode");
23089   }
23090 }
23091
23092 static SDValue VectorZextCombine(SDNode *N, SelectionDAG &DAG,
23093                                  TargetLowering::DAGCombinerInfo &DCI,
23094                                  const X86Subtarget *Subtarget) {
23095   SDValue N0 = N->getOperand(0);
23096   SDValue N1 = N->getOperand(1);
23097   SDLoc DL(N);
23098
23099   // A vector zext_in_reg may be represented as a shuffle,
23100   // feeding into a bitcast (this represents anyext) feeding into
23101   // an and with a mask.
23102   // We'd like to try to combine that into a shuffle with zero
23103   // plus a bitcast, removing the and.
23104   if (N0.getOpcode() != ISD::BITCAST ||
23105       N0.getOperand(0).getOpcode() != ISD::VECTOR_SHUFFLE)
23106     return SDValue();
23107
23108   // The other side of the AND should be a splat of 2^C, where C
23109   // is the number of bits in the source type.
23110   if (N1.getOpcode() == ISD::BITCAST)
23111     N1 = N1.getOperand(0);
23112   if (N1.getOpcode() != ISD::BUILD_VECTOR)
23113     return SDValue();
23114   BuildVectorSDNode *Vector = cast<BuildVectorSDNode>(N1);
23115
23116   ShuffleVectorSDNode *Shuffle = cast<ShuffleVectorSDNode>(N0.getOperand(0));
23117   EVT SrcType = Shuffle->getValueType(0);
23118
23119   // We expect a single-source shuffle
23120   if (Shuffle->getOperand(1)->getOpcode() != ISD::UNDEF)
23121     return SDValue();
23122
23123   unsigned SrcSize = SrcType.getScalarSizeInBits();
23124
23125   APInt SplatValue, SplatUndef;
23126   unsigned SplatBitSize;
23127   bool HasAnyUndefs;
23128   if (!Vector->isConstantSplat(SplatValue, SplatUndef,
23129                                 SplatBitSize, HasAnyUndefs))
23130     return SDValue();
23131
23132   unsigned ResSize = N1.getValueType().getScalarSizeInBits();
23133   // Make sure the splat matches the mask we expect
23134   if (SplatBitSize > ResSize ||
23135       (SplatValue + 1).exactLogBase2() != (int)SrcSize)
23136     return SDValue();
23137
23138   // Make sure the input and output size make sense
23139   if (SrcSize >= ResSize || ResSize % SrcSize)
23140     return SDValue();
23141
23142   // We expect a shuffle of the form <0, u, u, u, 1, u, u, u...>
23143   // The number of u's between each two values depends on the ratio between
23144   // the source and dest type.
23145   unsigned ZextRatio = ResSize / SrcSize;
23146   bool IsZext = true;
23147   for (unsigned i = 0; i < SrcType.getVectorNumElements(); ++i) {
23148     if (i % ZextRatio) {
23149       if (Shuffle->getMaskElt(i) > 0) {
23150         // Expected undef
23151         IsZext = false;
23152         break;
23153       }
23154     } else {
23155       if (Shuffle->getMaskElt(i) != (int)(i / ZextRatio)) {
23156         // Expected element number
23157         IsZext = false;
23158         break;
23159       }
23160     }
23161   }
23162
23163   if (!IsZext)
23164     return SDValue();
23165
23166   // Ok, perform the transformation - replace the shuffle with
23167   // a shuffle of the form <0, k, k, k, 1, k, k, k> with zero
23168   // (instead of undef) where the k elements come from the zero vector.
23169   SmallVector<int, 8> Mask;
23170   unsigned NumElems = SrcType.getVectorNumElements();
23171   for (unsigned i = 0; i < NumElems; ++i)
23172     if (i % ZextRatio)
23173       Mask.push_back(NumElems);
23174     else
23175       Mask.push_back(i / ZextRatio);
23176
23177   SDValue NewShuffle = DAG.getVectorShuffle(Shuffle->getValueType(0), DL,
23178     Shuffle->getOperand(0), DAG.getConstant(0, DL, SrcType), Mask);
23179   return DAG.getBitcast(N0.getValueType(), NewShuffle);
23180 }
23181
23182 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
23183                                  TargetLowering::DAGCombinerInfo &DCI,
23184                                  const X86Subtarget *Subtarget) {
23185   if (DCI.isBeforeLegalizeOps())
23186     return SDValue();
23187
23188   if (SDValue Zext = VectorZextCombine(N, DAG, DCI, Subtarget))
23189     return Zext;
23190
23191   if (SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget))
23192     return R;
23193
23194   EVT VT = N->getValueType(0);
23195   SDValue N0 = N->getOperand(0);
23196   SDValue N1 = N->getOperand(1);
23197   SDLoc DL(N);
23198
23199   // Create BEXTR instructions
23200   // BEXTR is ((X >> imm) & (2**size-1))
23201   if (VT == MVT::i32 || VT == MVT::i64) {
23202     // Check for BEXTR.
23203     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
23204         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
23205       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
23206       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
23207       if (MaskNode && ShiftNode) {
23208         uint64_t Mask = MaskNode->getZExtValue();
23209         uint64_t Shift = ShiftNode->getZExtValue();
23210         if (isMask_64(Mask)) {
23211           uint64_t MaskSize = countPopulation(Mask);
23212           if (Shift + MaskSize <= VT.getSizeInBits())
23213             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
23214                                DAG.getConstant(Shift | (MaskSize << 8), DL,
23215                                                VT));
23216         }
23217       }
23218     } // BEXTR
23219
23220     return SDValue();
23221   }
23222
23223   // Want to form ANDNP nodes:
23224   // 1) In the hopes of then easily combining them with OR and AND nodes
23225   //    to form PBLEND/PSIGN.
23226   // 2) To match ANDN packed intrinsics
23227   if (VT != MVT::v2i64 && VT != MVT::v4i64)
23228     return SDValue();
23229
23230   // Check LHS for vnot
23231   if (N0.getOpcode() == ISD::XOR &&
23232       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
23233       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
23234     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
23235
23236   // Check RHS for vnot
23237   if (N1.getOpcode() == ISD::XOR &&
23238       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
23239       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
23240     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
23241
23242   return SDValue();
23243 }
23244
23245 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
23246                                 TargetLowering::DAGCombinerInfo &DCI,
23247                                 const X86Subtarget *Subtarget) {
23248   if (DCI.isBeforeLegalizeOps())
23249     return SDValue();
23250
23251   if (SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget))
23252     return R;
23253
23254   SDValue N0 = N->getOperand(0);
23255   SDValue N1 = N->getOperand(1);
23256   EVT VT = N->getValueType(0);
23257
23258   // look for psign/blend
23259   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
23260     if (!Subtarget->hasSSSE3() ||
23261         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
23262       return SDValue();
23263
23264     // Canonicalize pandn to RHS
23265     if (N0.getOpcode() == X86ISD::ANDNP)
23266       std::swap(N0, N1);
23267     // or (and (m, y), (pandn m, x))
23268     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
23269       SDValue Mask = N1.getOperand(0);
23270       SDValue X    = N1.getOperand(1);
23271       SDValue Y;
23272       if (N0.getOperand(0) == Mask)
23273         Y = N0.getOperand(1);
23274       if (N0.getOperand(1) == Mask)
23275         Y = N0.getOperand(0);
23276
23277       // Check to see if the mask appeared in both the AND and ANDNP and
23278       if (!Y.getNode())
23279         return SDValue();
23280
23281       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
23282       // Look through mask bitcast.
23283       if (Mask.getOpcode() == ISD::BITCAST)
23284         Mask = Mask.getOperand(0);
23285       if (X.getOpcode() == ISD::BITCAST)
23286         X = X.getOperand(0);
23287       if (Y.getOpcode() == ISD::BITCAST)
23288         Y = Y.getOperand(0);
23289
23290       EVT MaskVT = Mask.getValueType();
23291
23292       // Validate that the Mask operand is a vector sra node.
23293       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
23294       // there is no psrai.b
23295       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
23296       unsigned SraAmt = ~0;
23297       if (Mask.getOpcode() == ISD::SRA) {
23298         if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Mask.getOperand(1)))
23299           if (auto *AmtConst = AmtBV->getConstantSplatNode())
23300             SraAmt = AmtConst->getZExtValue();
23301       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
23302         SDValue SraC = Mask.getOperand(1);
23303         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
23304       }
23305       if ((SraAmt + 1) != EltBits)
23306         return SDValue();
23307
23308       SDLoc DL(N);
23309
23310       // Now we know we at least have a plendvb with the mask val.  See if
23311       // we can form a psignb/w/d.
23312       // psign = x.type == y.type == mask.type && y = sub(0, x);
23313       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
23314           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
23315           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
23316         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
23317                "Unsupported VT for PSIGN");
23318         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
23319         return DAG.getBitcast(VT, Mask);
23320       }
23321       // PBLENDVB only available on SSE 4.1
23322       if (!Subtarget->hasSSE41())
23323         return SDValue();
23324
23325       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
23326
23327       X = DAG.getBitcast(BlendVT, X);
23328       Y = DAG.getBitcast(BlendVT, Y);
23329       Mask = DAG.getBitcast(BlendVT, Mask);
23330       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
23331       return DAG.getBitcast(VT, Mask);
23332     }
23333   }
23334
23335   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
23336     return SDValue();
23337
23338   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
23339   MachineFunction &MF = DAG.getMachineFunction();
23340   bool OptForSize =
23341       MF.getFunction()->hasFnAttribute(Attribute::OptimizeForSize);
23342
23343   // SHLD/SHRD instructions have lower register pressure, but on some
23344   // platforms they have higher latency than the equivalent
23345   // series of shifts/or that would otherwise be generated.
23346   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
23347   // have higher latencies and we are not optimizing for size.
23348   if (!OptForSize && Subtarget->isSHLDSlow())
23349     return SDValue();
23350
23351   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
23352     std::swap(N0, N1);
23353   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
23354     return SDValue();
23355   if (!N0.hasOneUse() || !N1.hasOneUse())
23356     return SDValue();
23357
23358   SDValue ShAmt0 = N0.getOperand(1);
23359   if (ShAmt0.getValueType() != MVT::i8)
23360     return SDValue();
23361   SDValue ShAmt1 = N1.getOperand(1);
23362   if (ShAmt1.getValueType() != MVT::i8)
23363     return SDValue();
23364   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
23365     ShAmt0 = ShAmt0.getOperand(0);
23366   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
23367     ShAmt1 = ShAmt1.getOperand(0);
23368
23369   SDLoc DL(N);
23370   unsigned Opc = X86ISD::SHLD;
23371   SDValue Op0 = N0.getOperand(0);
23372   SDValue Op1 = N1.getOperand(0);
23373   if (ShAmt0.getOpcode() == ISD::SUB) {
23374     Opc = X86ISD::SHRD;
23375     std::swap(Op0, Op1);
23376     std::swap(ShAmt0, ShAmt1);
23377   }
23378
23379   unsigned Bits = VT.getSizeInBits();
23380   if (ShAmt1.getOpcode() == ISD::SUB) {
23381     SDValue Sum = ShAmt1.getOperand(0);
23382     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
23383       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
23384       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
23385         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
23386       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
23387         return DAG.getNode(Opc, DL, VT,
23388                            Op0, Op1,
23389                            DAG.getNode(ISD::TRUNCATE, DL,
23390                                        MVT::i8, ShAmt0));
23391     }
23392   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
23393     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
23394     if (ShAmt0C &&
23395         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
23396       return DAG.getNode(Opc, DL, VT,
23397                          N0.getOperand(0), N1.getOperand(0),
23398                          DAG.getNode(ISD::TRUNCATE, DL,
23399                                        MVT::i8, ShAmt0));
23400   }
23401
23402   return SDValue();
23403 }
23404
23405 // Generate NEG and CMOV for integer abs.
23406 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
23407   EVT VT = N->getValueType(0);
23408
23409   // Since X86 does not have CMOV for 8-bit integer, we don't convert
23410   // 8-bit integer abs to NEG and CMOV.
23411   if (VT.isInteger() && VT.getSizeInBits() == 8)
23412     return SDValue();
23413
23414   SDValue N0 = N->getOperand(0);
23415   SDValue N1 = N->getOperand(1);
23416   SDLoc DL(N);
23417
23418   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
23419   // and change it to SUB and CMOV.
23420   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
23421       N0.getOpcode() == ISD::ADD &&
23422       N0.getOperand(1) == N1 &&
23423       N1.getOpcode() == ISD::SRA &&
23424       N1.getOperand(0) == N0.getOperand(0))
23425     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
23426       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
23427         // Generate SUB & CMOV.
23428         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
23429                                   DAG.getConstant(0, DL, VT), N0.getOperand(0));
23430
23431         SDValue Ops[] = { N0.getOperand(0), Neg,
23432                           DAG.getConstant(X86::COND_GE, DL, MVT::i8),
23433                           SDValue(Neg.getNode(), 1) };
23434         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
23435       }
23436   return SDValue();
23437 }
23438
23439 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
23440 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
23441                                  TargetLowering::DAGCombinerInfo &DCI,
23442                                  const X86Subtarget *Subtarget) {
23443   if (DCI.isBeforeLegalizeOps())
23444     return SDValue();
23445
23446   if (Subtarget->hasCMov())
23447     if (SDValue RV = performIntegerAbsCombine(N, DAG))
23448       return RV;
23449
23450   return SDValue();
23451 }
23452
23453 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
23454 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
23455                                   TargetLowering::DAGCombinerInfo &DCI,
23456                                   const X86Subtarget *Subtarget) {
23457   LoadSDNode *Ld = cast<LoadSDNode>(N);
23458   EVT RegVT = Ld->getValueType(0);
23459   EVT MemVT = Ld->getMemoryVT();
23460   SDLoc dl(Ld);
23461   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23462
23463   // For chips with slow 32-byte unaligned loads, break the 32-byte operation
23464   // into two 16-byte operations.
23465   ISD::LoadExtType Ext = Ld->getExtensionType();
23466   unsigned Alignment = Ld->getAlignment();
23467   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
23468   if (RegVT.is256BitVector() && Subtarget->isUnalignedMem32Slow() &&
23469       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
23470     unsigned NumElems = RegVT.getVectorNumElements();
23471     if (NumElems < 2)
23472       return SDValue();
23473
23474     SDValue Ptr = Ld->getBasePtr();
23475     SDValue Increment = DAG.getConstant(16, dl, TLI.getPointerTy());
23476
23477     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
23478                                   NumElems/2);
23479     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
23480                                 Ld->getPointerInfo(), Ld->isVolatile(),
23481                                 Ld->isNonTemporal(), Ld->isInvariant(),
23482                                 Alignment);
23483     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
23484     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
23485                                 Ld->getPointerInfo(), Ld->isVolatile(),
23486                                 Ld->isNonTemporal(), Ld->isInvariant(),
23487                                 std::min(16U, Alignment));
23488     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
23489                              Load1.getValue(1),
23490                              Load2.getValue(1));
23491
23492     SDValue NewVec = DAG.getUNDEF(RegVT);
23493     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
23494     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
23495     return DCI.CombineTo(N, NewVec, TF, true);
23496   }
23497
23498   return SDValue();
23499 }
23500
23501 /// PerformMLOADCombine - Resolve extending loads
23502 static SDValue PerformMLOADCombine(SDNode *N, SelectionDAG &DAG,
23503                                    TargetLowering::DAGCombinerInfo &DCI,
23504                                    const X86Subtarget *Subtarget) {
23505   MaskedLoadSDNode *Mld = cast<MaskedLoadSDNode>(N);
23506   if (Mld->getExtensionType() != ISD::SEXTLOAD)
23507     return SDValue();
23508
23509   EVT VT = Mld->getValueType(0);
23510   unsigned NumElems = VT.getVectorNumElements();
23511   EVT LdVT = Mld->getMemoryVT();
23512   SDLoc dl(Mld);
23513
23514   assert(LdVT != VT && "Cannot extend to the same type");
23515   unsigned ToSz = VT.getVectorElementType().getSizeInBits();
23516   unsigned FromSz = LdVT.getVectorElementType().getSizeInBits();
23517   // From, To sizes and ElemCount must be pow of two
23518   assert (isPowerOf2_32(NumElems * FromSz * ToSz) &&
23519     "Unexpected size for extending masked load");
23520
23521   unsigned SizeRatio  = ToSz / FromSz;
23522   assert(SizeRatio * NumElems * FromSz == VT.getSizeInBits());
23523
23524   // Create a type on which we perform the shuffle
23525   EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
23526           LdVT.getScalarType(), NumElems*SizeRatio);
23527   assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
23528
23529   // Convert Src0 value
23530   SDValue WideSrc0 = DAG.getBitcast(WideVecVT, Mld->getSrc0());
23531   if (Mld->getSrc0().getOpcode() != ISD::UNDEF) {
23532     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
23533     for (unsigned i = 0; i != NumElems; ++i)
23534       ShuffleVec[i] = i * SizeRatio;
23535
23536     // Can't shuffle using an illegal type.
23537     assert (DAG.getTargetLoweringInfo().isTypeLegal(WideVecVT)
23538             && "WideVecVT should be legal");
23539     WideSrc0 = DAG.getVectorShuffle(WideVecVT, dl, WideSrc0,
23540                                     DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
23541   }
23542   // Prepare the new mask
23543   SDValue NewMask;
23544   SDValue Mask = Mld->getMask();
23545   if (Mask.getValueType() == VT) {
23546     // Mask and original value have the same type
23547     NewMask = DAG.getBitcast(WideVecVT, Mask);
23548     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
23549     for (unsigned i = 0; i != NumElems; ++i)
23550       ShuffleVec[i] = i * SizeRatio;
23551     for (unsigned i = NumElems; i != NumElems*SizeRatio; ++i)
23552       ShuffleVec[i] = NumElems*SizeRatio;
23553     NewMask = DAG.getVectorShuffle(WideVecVT, dl, NewMask,
23554                                    DAG.getConstant(0, dl, WideVecVT),
23555                                    &ShuffleVec[0]);
23556   }
23557   else {
23558     assert(Mask.getValueType().getVectorElementType() == MVT::i1);
23559     unsigned WidenNumElts = NumElems*SizeRatio;
23560     unsigned MaskNumElts = VT.getVectorNumElements();
23561     EVT NewMaskVT = EVT::getVectorVT(*DAG.getContext(),  MVT::i1,
23562                                      WidenNumElts);
23563
23564     unsigned NumConcat = WidenNumElts / MaskNumElts;
23565     SmallVector<SDValue, 16> Ops(NumConcat);
23566     SDValue ZeroVal = DAG.getConstant(0, dl, Mask.getValueType());
23567     Ops[0] = Mask;
23568     for (unsigned i = 1; i != NumConcat; ++i)
23569       Ops[i] = ZeroVal;
23570
23571     NewMask = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewMaskVT, Ops);
23572   }
23573
23574   SDValue WideLd = DAG.getMaskedLoad(WideVecVT, dl, Mld->getChain(),
23575                                      Mld->getBasePtr(), NewMask, WideSrc0,
23576                                      Mld->getMemoryVT(), Mld->getMemOperand(),
23577                                      ISD::NON_EXTLOAD);
23578   SDValue NewVec = DAG.getNode(X86ISD::VSEXT, dl, VT, WideLd);
23579   return DCI.CombineTo(N, NewVec, WideLd.getValue(1), true);
23580
23581 }
23582 /// PerformMSTORECombine - Resolve truncating stores
23583 static SDValue PerformMSTORECombine(SDNode *N, SelectionDAG &DAG,
23584                                     const X86Subtarget *Subtarget) {
23585   MaskedStoreSDNode *Mst = cast<MaskedStoreSDNode>(N);
23586   if (!Mst->isTruncatingStore())
23587     return SDValue();
23588
23589   EVT VT = Mst->getValue().getValueType();
23590   unsigned NumElems = VT.getVectorNumElements();
23591   EVT StVT = Mst->getMemoryVT();
23592   SDLoc dl(Mst);
23593
23594   assert(StVT != VT && "Cannot truncate to the same type");
23595   unsigned FromSz = VT.getVectorElementType().getSizeInBits();
23596   unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
23597
23598   // From, To sizes and ElemCount must be pow of two
23599   assert (isPowerOf2_32(NumElems * FromSz * ToSz) &&
23600     "Unexpected size for truncating masked store");
23601   // We are going to use the original vector elt for storing.
23602   // Accumulated smaller vector elements must be a multiple of the store size.
23603   assert (((NumElems * FromSz) % ToSz) == 0 &&
23604           "Unexpected ratio for truncating masked store");
23605
23606   unsigned SizeRatio  = FromSz / ToSz;
23607   assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
23608
23609   // Create a type on which we perform the shuffle
23610   EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
23611           StVT.getScalarType(), NumElems*SizeRatio);
23612
23613   assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
23614
23615   SDValue WideVec = DAG.getBitcast(WideVecVT, Mst->getValue());
23616   SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
23617   for (unsigned i = 0; i != NumElems; ++i)
23618     ShuffleVec[i] = i * SizeRatio;
23619
23620   // Can't shuffle using an illegal type.
23621   assert (DAG.getTargetLoweringInfo().isTypeLegal(WideVecVT)
23622           && "WideVecVT should be legal");
23623
23624   SDValue TruncatedVal = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
23625                                         DAG.getUNDEF(WideVecVT),
23626                                         &ShuffleVec[0]);
23627
23628   SDValue NewMask;
23629   SDValue Mask = Mst->getMask();
23630   if (Mask.getValueType() == VT) {
23631     // Mask and original value have the same type
23632     NewMask = DAG.getBitcast(WideVecVT, Mask);
23633     for (unsigned i = 0; i != NumElems; ++i)
23634       ShuffleVec[i] = i * SizeRatio;
23635     for (unsigned i = NumElems; i != NumElems*SizeRatio; ++i)
23636       ShuffleVec[i] = NumElems*SizeRatio;
23637     NewMask = DAG.getVectorShuffle(WideVecVT, dl, NewMask,
23638                                    DAG.getConstant(0, dl, WideVecVT),
23639                                    &ShuffleVec[0]);
23640   }
23641   else {
23642     assert(Mask.getValueType().getVectorElementType() == MVT::i1);
23643     unsigned WidenNumElts = NumElems*SizeRatio;
23644     unsigned MaskNumElts = VT.getVectorNumElements();
23645     EVT NewMaskVT = EVT::getVectorVT(*DAG.getContext(),  MVT::i1,
23646                                      WidenNumElts);
23647
23648     unsigned NumConcat = WidenNumElts / MaskNumElts;
23649     SmallVector<SDValue, 16> Ops(NumConcat);
23650     SDValue ZeroVal = DAG.getConstant(0, dl, Mask.getValueType());
23651     Ops[0] = Mask;
23652     for (unsigned i = 1; i != NumConcat; ++i)
23653       Ops[i] = ZeroVal;
23654
23655     NewMask = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewMaskVT, Ops);
23656   }
23657
23658   return DAG.getMaskedStore(Mst->getChain(), dl, TruncatedVal, Mst->getBasePtr(),
23659                             NewMask, StVT, Mst->getMemOperand(), false);
23660 }
23661 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
23662 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
23663                                    const X86Subtarget *Subtarget) {
23664   StoreSDNode *St = cast<StoreSDNode>(N);
23665   EVT VT = St->getValue().getValueType();
23666   EVT StVT = St->getMemoryVT();
23667   SDLoc dl(St);
23668   SDValue StoredVal = St->getOperand(1);
23669   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23670
23671   // If we are saving a concatenation of two XMM registers and 32-byte stores
23672   // are slow, such as on Sandy Bridge, perform two 16-byte stores.
23673   unsigned Alignment = St->getAlignment();
23674   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
23675   if (VT.is256BitVector() && Subtarget->isUnalignedMem32Slow() &&
23676       StVT == VT && !IsAligned) {
23677     unsigned NumElems = VT.getVectorNumElements();
23678     if (NumElems < 2)
23679       return SDValue();
23680
23681     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
23682     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
23683
23684     SDValue Stride = DAG.getConstant(16, dl, TLI.getPointerTy());
23685     SDValue Ptr0 = St->getBasePtr();
23686     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
23687
23688     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
23689                                 St->getPointerInfo(), St->isVolatile(),
23690                                 St->isNonTemporal(), Alignment);
23691     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
23692                                 St->getPointerInfo(), St->isVolatile(),
23693                                 St->isNonTemporal(),
23694                                 std::min(16U, Alignment));
23695     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
23696   }
23697
23698   // Optimize trunc store (of multiple scalars) to shuffle and store.
23699   // First, pack all of the elements in one place. Next, store to memory
23700   // in fewer chunks.
23701   if (St->isTruncatingStore() && VT.isVector()) {
23702     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23703     unsigned NumElems = VT.getVectorNumElements();
23704     assert(StVT != VT && "Cannot truncate to the same type");
23705     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
23706     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
23707
23708     // From, To sizes and ElemCount must be pow of two
23709     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
23710     // We are going to use the original vector elt for storing.
23711     // Accumulated smaller vector elements must be a multiple of the store size.
23712     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
23713
23714     unsigned SizeRatio  = FromSz / ToSz;
23715
23716     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
23717
23718     // Create a type on which we perform the shuffle
23719     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
23720             StVT.getScalarType(), NumElems*SizeRatio);
23721
23722     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
23723
23724     SDValue WideVec = DAG.getBitcast(WideVecVT, St->getValue());
23725     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
23726     for (unsigned i = 0; i != NumElems; ++i)
23727       ShuffleVec[i] = i * SizeRatio;
23728
23729     // Can't shuffle using an illegal type.
23730     if (!TLI.isTypeLegal(WideVecVT))
23731       return SDValue();
23732
23733     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
23734                                          DAG.getUNDEF(WideVecVT),
23735                                          &ShuffleVec[0]);
23736     // At this point all of the data is stored at the bottom of the
23737     // register. We now need to save it to mem.
23738
23739     // Find the largest store unit
23740     MVT StoreType = MVT::i8;
23741     for (MVT Tp : MVT::integer_valuetypes()) {
23742       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
23743         StoreType = Tp;
23744     }
23745
23746     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
23747     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
23748         (64 <= NumElems * ToSz))
23749       StoreType = MVT::f64;
23750
23751     // Bitcast the original vector into a vector of store-size units
23752     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
23753             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
23754     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
23755     SDValue ShuffWide = DAG.getBitcast(StoreVecVT, Shuff);
23756     SmallVector<SDValue, 8> Chains;
23757     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8, dl,
23758                                         TLI.getPointerTy());
23759     SDValue Ptr = St->getBasePtr();
23760
23761     // Perform one or more big stores into memory.
23762     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
23763       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
23764                                    StoreType, ShuffWide,
23765                                    DAG.getIntPtrConstant(i, dl));
23766       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
23767                                 St->getPointerInfo(), St->isVolatile(),
23768                                 St->isNonTemporal(), St->getAlignment());
23769       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
23770       Chains.push_back(Ch);
23771     }
23772
23773     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
23774   }
23775
23776   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
23777   // the FP state in cases where an emms may be missing.
23778   // A preferable solution to the general problem is to figure out the right
23779   // places to insert EMMS.  This qualifies as a quick hack.
23780
23781   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
23782   if (VT.getSizeInBits() != 64)
23783     return SDValue();
23784
23785   const Function *F = DAG.getMachineFunction().getFunction();
23786   bool NoImplicitFloatOps = F->hasFnAttribute(Attribute::NoImplicitFloat);
23787   bool F64IsLegal =
23788       !Subtarget->useSoftFloat() && !NoImplicitFloatOps && Subtarget->hasSSE2();
23789   if ((VT.isVector() ||
23790        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
23791       isa<LoadSDNode>(St->getValue()) &&
23792       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
23793       St->getChain().hasOneUse() && !St->isVolatile()) {
23794     SDNode* LdVal = St->getValue().getNode();
23795     LoadSDNode *Ld = nullptr;
23796     int TokenFactorIndex = -1;
23797     SmallVector<SDValue, 8> Ops;
23798     SDNode* ChainVal = St->getChain().getNode();
23799     // Must be a store of a load.  We currently handle two cases:  the load
23800     // is a direct child, and it's under an intervening TokenFactor.  It is
23801     // possible to dig deeper under nested TokenFactors.
23802     if (ChainVal == LdVal)
23803       Ld = cast<LoadSDNode>(St->getChain());
23804     else if (St->getValue().hasOneUse() &&
23805              ChainVal->getOpcode() == ISD::TokenFactor) {
23806       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
23807         if (ChainVal->getOperand(i).getNode() == LdVal) {
23808           TokenFactorIndex = i;
23809           Ld = cast<LoadSDNode>(St->getValue());
23810         } else
23811           Ops.push_back(ChainVal->getOperand(i));
23812       }
23813     }
23814
23815     if (!Ld || !ISD::isNormalLoad(Ld))
23816       return SDValue();
23817
23818     // If this is not the MMX case, i.e. we are just turning i64 load/store
23819     // into f64 load/store, avoid the transformation if there are multiple
23820     // uses of the loaded value.
23821     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
23822       return SDValue();
23823
23824     SDLoc LdDL(Ld);
23825     SDLoc StDL(N);
23826     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
23827     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
23828     // pair instead.
23829     if (Subtarget->is64Bit() || F64IsLegal) {
23830       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
23831       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
23832                                   Ld->getPointerInfo(), Ld->isVolatile(),
23833                                   Ld->isNonTemporal(), Ld->isInvariant(),
23834                                   Ld->getAlignment());
23835       SDValue NewChain = NewLd.getValue(1);
23836       if (TokenFactorIndex != -1) {
23837         Ops.push_back(NewChain);
23838         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
23839       }
23840       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
23841                           St->getPointerInfo(),
23842                           St->isVolatile(), St->isNonTemporal(),
23843                           St->getAlignment());
23844     }
23845
23846     // Otherwise, lower to two pairs of 32-bit loads / stores.
23847     SDValue LoAddr = Ld->getBasePtr();
23848     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
23849                                  DAG.getConstant(4, LdDL, MVT::i32));
23850
23851     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
23852                                Ld->getPointerInfo(),
23853                                Ld->isVolatile(), Ld->isNonTemporal(),
23854                                Ld->isInvariant(), Ld->getAlignment());
23855     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
23856                                Ld->getPointerInfo().getWithOffset(4),
23857                                Ld->isVolatile(), Ld->isNonTemporal(),
23858                                Ld->isInvariant(),
23859                                MinAlign(Ld->getAlignment(), 4));
23860
23861     SDValue NewChain = LoLd.getValue(1);
23862     if (TokenFactorIndex != -1) {
23863       Ops.push_back(LoLd);
23864       Ops.push_back(HiLd);
23865       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
23866     }
23867
23868     LoAddr = St->getBasePtr();
23869     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
23870                          DAG.getConstant(4, StDL, MVT::i32));
23871
23872     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
23873                                 St->getPointerInfo(),
23874                                 St->isVolatile(), St->isNonTemporal(),
23875                                 St->getAlignment());
23876     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
23877                                 St->getPointerInfo().getWithOffset(4),
23878                                 St->isVolatile(),
23879                                 St->isNonTemporal(),
23880                                 MinAlign(St->getAlignment(), 4));
23881     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
23882   }
23883
23884   // This is similar to the above case, but here we handle a scalar 64-bit
23885   // integer store that is extracted from a vector on a 32-bit target.
23886   // If we have SSE2, then we can treat it like a floating-point double
23887   // to get past legalization. The execution dependencies fixup pass will
23888   // choose the optimal machine instruction for the store if this really is
23889   // an integer or v2f32 rather than an f64.
23890   if (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit() &&
23891       St->getOperand(1).getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
23892     SDValue OldExtract = St->getOperand(1);
23893     SDValue ExtOp0 = OldExtract.getOperand(0);
23894     unsigned VecSize = ExtOp0.getValueSizeInBits();
23895     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, VecSize / 64);
23896     SDValue BitCast = DAG.getBitcast(VecVT, ExtOp0);
23897     SDValue NewExtract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
23898                                      BitCast, OldExtract.getOperand(1));
23899     return DAG.getStore(St->getChain(), dl, NewExtract, St->getBasePtr(),
23900                         St->getPointerInfo(), St->isVolatile(),
23901                         St->isNonTemporal(), St->getAlignment());
23902   }
23903
23904   return SDValue();
23905 }
23906
23907 /// Return 'true' if this vector operation is "horizontal"
23908 /// and return the operands for the horizontal operation in LHS and RHS.  A
23909 /// horizontal operation performs the binary operation on successive elements
23910 /// of its first operand, then on successive elements of its second operand,
23911 /// returning the resulting values in a vector.  For example, if
23912 ///   A = < float a0, float a1, float a2, float a3 >
23913 /// and
23914 ///   B = < float b0, float b1, float b2, float b3 >
23915 /// then the result of doing a horizontal operation on A and B is
23916 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
23917 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
23918 /// A horizontal-op B, for some already available A and B, and if so then LHS is
23919 /// set to A, RHS to B, and the routine returns 'true'.
23920 /// Note that the binary operation should have the property that if one of the
23921 /// operands is UNDEF then the result is UNDEF.
23922 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
23923   // Look for the following pattern: if
23924   //   A = < float a0, float a1, float a2, float a3 >
23925   //   B = < float b0, float b1, float b2, float b3 >
23926   // and
23927   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
23928   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
23929   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
23930   // which is A horizontal-op B.
23931
23932   // At least one of the operands should be a vector shuffle.
23933   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
23934       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
23935     return false;
23936
23937   MVT VT = LHS.getSimpleValueType();
23938
23939   assert((VT.is128BitVector() || VT.is256BitVector()) &&
23940          "Unsupported vector type for horizontal add/sub");
23941
23942   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
23943   // operate independently on 128-bit lanes.
23944   unsigned NumElts = VT.getVectorNumElements();
23945   unsigned NumLanes = VT.getSizeInBits()/128;
23946   unsigned NumLaneElts = NumElts / NumLanes;
23947   assert((NumLaneElts % 2 == 0) &&
23948          "Vector type should have an even number of elements in each lane");
23949   unsigned HalfLaneElts = NumLaneElts/2;
23950
23951   // View LHS in the form
23952   //   LHS = VECTOR_SHUFFLE A, B, LMask
23953   // If LHS is not a shuffle then pretend it is the shuffle
23954   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
23955   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
23956   // type VT.
23957   SDValue A, B;
23958   SmallVector<int, 16> LMask(NumElts);
23959   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
23960     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
23961       A = LHS.getOperand(0);
23962     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
23963       B = LHS.getOperand(1);
23964     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
23965     std::copy(Mask.begin(), Mask.end(), LMask.begin());
23966   } else {
23967     if (LHS.getOpcode() != ISD::UNDEF)
23968       A = LHS;
23969     for (unsigned i = 0; i != NumElts; ++i)
23970       LMask[i] = i;
23971   }
23972
23973   // Likewise, view RHS in the form
23974   //   RHS = VECTOR_SHUFFLE C, D, RMask
23975   SDValue C, D;
23976   SmallVector<int, 16> RMask(NumElts);
23977   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
23978     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
23979       C = RHS.getOperand(0);
23980     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
23981       D = RHS.getOperand(1);
23982     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
23983     std::copy(Mask.begin(), Mask.end(), RMask.begin());
23984   } else {
23985     if (RHS.getOpcode() != ISD::UNDEF)
23986       C = RHS;
23987     for (unsigned i = 0; i != NumElts; ++i)
23988       RMask[i] = i;
23989   }
23990
23991   // Check that the shuffles are both shuffling the same vectors.
23992   if (!(A == C && B == D) && !(A == D && B == C))
23993     return false;
23994
23995   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
23996   if (!A.getNode() && !B.getNode())
23997     return false;
23998
23999   // If A and B occur in reverse order in RHS, then "swap" them (which means
24000   // rewriting the mask).
24001   if (A != C)
24002     ShuffleVectorSDNode::commuteMask(RMask);
24003
24004   // At this point LHS and RHS are equivalent to
24005   //   LHS = VECTOR_SHUFFLE A, B, LMask
24006   //   RHS = VECTOR_SHUFFLE A, B, RMask
24007   // Check that the masks correspond to performing a horizontal operation.
24008   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
24009     for (unsigned i = 0; i != NumLaneElts; ++i) {
24010       int LIdx = LMask[i+l], RIdx = RMask[i+l];
24011
24012       // Ignore any UNDEF components.
24013       if (LIdx < 0 || RIdx < 0 ||
24014           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
24015           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
24016         continue;
24017
24018       // Check that successive elements are being operated on.  If not, this is
24019       // not a horizontal operation.
24020       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
24021       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
24022       if (!(LIdx == Index && RIdx == Index + 1) &&
24023           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
24024         return false;
24025     }
24026   }
24027
24028   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
24029   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
24030   return true;
24031 }
24032
24033 /// Do target-specific dag combines on floating point adds.
24034 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
24035                                   const X86Subtarget *Subtarget) {
24036   EVT VT = N->getValueType(0);
24037   SDValue LHS = N->getOperand(0);
24038   SDValue RHS = N->getOperand(1);
24039
24040   // Try to synthesize horizontal adds from adds of shuffles.
24041   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
24042        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
24043       isHorizontalBinOp(LHS, RHS, true))
24044     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
24045   return SDValue();
24046 }
24047
24048 /// Do target-specific dag combines on floating point subs.
24049 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
24050                                   const X86Subtarget *Subtarget) {
24051   EVT VT = N->getValueType(0);
24052   SDValue LHS = N->getOperand(0);
24053   SDValue RHS = N->getOperand(1);
24054
24055   // Try to synthesize horizontal subs from subs of shuffles.
24056   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
24057        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
24058       isHorizontalBinOp(LHS, RHS, false))
24059     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
24060   return SDValue();
24061 }
24062
24063 /// Do target-specific dag combines on X86ISD::FOR and X86ISD::FXOR nodes.
24064 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
24065   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
24066
24067   // F[X]OR(0.0, x) -> x
24068   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
24069     if (C->getValueAPF().isPosZero())
24070       return N->getOperand(1);
24071
24072   // F[X]OR(x, 0.0) -> x
24073   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
24074     if (C->getValueAPF().isPosZero())
24075       return N->getOperand(0);
24076   return SDValue();
24077 }
24078
24079 /// Do target-specific dag combines on X86ISD::FMIN and X86ISD::FMAX nodes.
24080 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
24081   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
24082
24083   // Only perform optimizations if UnsafeMath is used.
24084   if (!DAG.getTarget().Options.UnsafeFPMath)
24085     return SDValue();
24086
24087   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
24088   // into FMINC and FMAXC, which are Commutative operations.
24089   unsigned NewOp = 0;
24090   switch (N->getOpcode()) {
24091     default: llvm_unreachable("unknown opcode");
24092     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
24093     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
24094   }
24095
24096   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
24097                      N->getOperand(0), N->getOperand(1));
24098 }
24099
24100 /// Do target-specific dag combines on X86ISD::FAND nodes.
24101 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
24102   // FAND(0.0, x) -> 0.0
24103   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
24104     if (C->getValueAPF().isPosZero())
24105       return N->getOperand(0);
24106
24107   // FAND(x, 0.0) -> 0.0
24108   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
24109     if (C->getValueAPF().isPosZero())
24110       return N->getOperand(1);
24111
24112   return SDValue();
24113 }
24114
24115 /// Do target-specific dag combines on X86ISD::FANDN nodes
24116 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
24117   // FANDN(0.0, x) -> x
24118   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
24119     if (C->getValueAPF().isPosZero())
24120       return N->getOperand(1);
24121
24122   // FANDN(x, 0.0) -> 0.0
24123   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
24124     if (C->getValueAPF().isPosZero())
24125       return N->getOperand(1);
24126
24127   return SDValue();
24128 }
24129
24130 static SDValue PerformBTCombine(SDNode *N,
24131                                 SelectionDAG &DAG,
24132                                 TargetLowering::DAGCombinerInfo &DCI) {
24133   // BT ignores high bits in the bit index operand.
24134   SDValue Op1 = N->getOperand(1);
24135   if (Op1.hasOneUse()) {
24136     unsigned BitWidth = Op1.getValueSizeInBits();
24137     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
24138     APInt KnownZero, KnownOne;
24139     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
24140                                           !DCI.isBeforeLegalizeOps());
24141     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24142     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
24143         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
24144       DCI.CommitTargetLoweringOpt(TLO);
24145   }
24146   return SDValue();
24147 }
24148
24149 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
24150   SDValue Op = N->getOperand(0);
24151   if (Op.getOpcode() == ISD::BITCAST)
24152     Op = Op.getOperand(0);
24153   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
24154   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
24155       VT.getVectorElementType().getSizeInBits() ==
24156       OpVT.getVectorElementType().getSizeInBits()) {
24157     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
24158   }
24159   return SDValue();
24160 }
24161
24162 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
24163                                                const X86Subtarget *Subtarget) {
24164   EVT VT = N->getValueType(0);
24165   if (!VT.isVector())
24166     return SDValue();
24167
24168   SDValue N0 = N->getOperand(0);
24169   SDValue N1 = N->getOperand(1);
24170   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
24171   SDLoc dl(N);
24172
24173   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
24174   // both SSE and AVX2 since there is no sign-extended shift right
24175   // operation on a vector with 64-bit elements.
24176   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
24177   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
24178   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
24179       N0.getOpcode() == ISD::SIGN_EXTEND)) {
24180     SDValue N00 = N0.getOperand(0);
24181
24182     // EXTLOAD has a better solution on AVX2,
24183     // it may be replaced with X86ISD::VSEXT node.
24184     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
24185       if (!ISD::isNormalLoad(N00.getNode()))
24186         return SDValue();
24187
24188     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
24189         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
24190                                   N00, N1);
24191       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
24192     }
24193   }
24194   return SDValue();
24195 }
24196
24197 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
24198                                   TargetLowering::DAGCombinerInfo &DCI,
24199                                   const X86Subtarget *Subtarget) {
24200   SDValue N0 = N->getOperand(0);
24201   EVT VT = N->getValueType(0);
24202   EVT SVT = VT.getScalarType();
24203   EVT InVT = N0.getValueType();
24204   EVT InSVT = InVT.getScalarType();
24205   SDLoc DL(N);
24206
24207   // (i8,i32 sext (sdivrem (i8 x, i8 y)) ->
24208   // (i8,i32 (sdivrem_sext_hreg (i8 x, i8 y)
24209   // This exposes the sext to the sdivrem lowering, so that it directly extends
24210   // from AH (which we otherwise need to do contortions to access).
24211   if (N0.getOpcode() == ISD::SDIVREM && N0.getResNo() == 1 &&
24212       InVT == MVT::i8 && VT == MVT::i32) {
24213     SDVTList NodeTys = DAG.getVTList(MVT::i8, VT);
24214     SDValue R = DAG.getNode(X86ISD::SDIVREM8_SEXT_HREG, DL, NodeTys,
24215                             N0.getOperand(0), N0.getOperand(1));
24216     DAG.ReplaceAllUsesOfValueWith(N0.getValue(0), R.getValue(0));
24217     return R.getValue(1);
24218   }
24219
24220   if (!DCI.isBeforeLegalizeOps()) {
24221     if (InVT == MVT::i1) {
24222       SDValue Zero = DAG.getConstant(0, DL, VT);
24223       SDValue AllOnes =
24224         DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), DL, VT);
24225       return DAG.getNode(ISD::SELECT, DL, VT, N0, AllOnes, Zero);
24226     }
24227     return SDValue();
24228   }
24229
24230   if (VT.isVector()) {
24231     auto ExtendToVec128 = [&DAG](SDLoc DL, SDValue N) {
24232       EVT InVT = N.getValueType();
24233       EVT OutVT = EVT::getVectorVT(*DAG.getContext(), InVT.getScalarType(),
24234                                    128 / InVT.getScalarSizeInBits());
24235       SmallVector<SDValue, 8> Opnds(128 / InVT.getSizeInBits(),
24236                                     DAG.getUNDEF(InVT));
24237       Opnds[0] = N;
24238       return DAG.getNode(ISD::CONCAT_VECTORS, DL, OutVT, Opnds);
24239     };
24240
24241     // If target-size is 128-bits, then convert to ISD::SIGN_EXTEND_VECTOR_INREG
24242     // which ensures lowering to X86ISD::VSEXT (pmovsx*).
24243     if (VT.getSizeInBits() == 128 &&
24244         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
24245         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
24246       SDValue ExOp = ExtendToVec128(DL, N0);
24247       return DAG.getSignExtendVectorInReg(ExOp, DL, VT);
24248     }
24249
24250     // On pre-AVX2 targets, split into 128-bit nodes of
24251     // ISD::SIGN_EXTEND_VECTOR_INREG.
24252     if (!Subtarget->hasInt256() && !(VT.getSizeInBits() % 128) &&
24253         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
24254         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
24255       unsigned NumVecs = VT.getSizeInBits() / 128;
24256       unsigned NumSubElts = 128 / SVT.getSizeInBits();
24257       EVT SubVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumSubElts);
24258       EVT InSubVT = EVT::getVectorVT(*DAG.getContext(), InSVT, NumSubElts);
24259
24260       SmallVector<SDValue, 8> Opnds;
24261       for (unsigned i = 0, Offset = 0; i != NumVecs;
24262            ++i, Offset += NumSubElts) {
24263         SDValue SrcVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InSubVT, N0,
24264                                      DAG.getIntPtrConstant(Offset, DL));
24265         SrcVec = ExtendToVec128(DL, SrcVec);
24266         SrcVec = DAG.getSignExtendVectorInReg(SrcVec, DL, SubVT);
24267         Opnds.push_back(SrcVec);
24268       }
24269       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Opnds);
24270     }
24271   }
24272
24273   if (!Subtarget->hasFp256())
24274     return SDValue();
24275
24276   if (VT.isVector() && VT.getSizeInBits() == 256)
24277     if (SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget))
24278       return R;
24279
24280   return SDValue();
24281 }
24282
24283 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
24284                                  const X86Subtarget* Subtarget) {
24285   SDLoc dl(N);
24286   EVT VT = N->getValueType(0);
24287
24288   // Let legalize expand this if it isn't a legal type yet.
24289   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
24290     return SDValue();
24291
24292   EVT ScalarVT = VT.getScalarType();
24293   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
24294       (!Subtarget->hasFMA() && !Subtarget->hasFMA4() &&
24295        !Subtarget->hasAVX512()))
24296     return SDValue();
24297
24298   SDValue A = N->getOperand(0);
24299   SDValue B = N->getOperand(1);
24300   SDValue C = N->getOperand(2);
24301
24302   bool NegA = (A.getOpcode() == ISD::FNEG);
24303   bool NegB = (B.getOpcode() == ISD::FNEG);
24304   bool NegC = (C.getOpcode() == ISD::FNEG);
24305
24306   // Negative multiplication when NegA xor NegB
24307   bool NegMul = (NegA != NegB);
24308   if (NegA)
24309     A = A.getOperand(0);
24310   if (NegB)
24311     B = B.getOperand(0);
24312   if (NegC)
24313     C = C.getOperand(0);
24314
24315   unsigned Opcode;
24316   if (!NegMul)
24317     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
24318   else
24319     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
24320
24321   return DAG.getNode(Opcode, dl, VT, A, B, C);
24322 }
24323
24324 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
24325                                   TargetLowering::DAGCombinerInfo &DCI,
24326                                   const X86Subtarget *Subtarget) {
24327   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
24328   //           (and (i32 x86isd::setcc_carry), 1)
24329   // This eliminates the zext. This transformation is necessary because
24330   // ISD::SETCC is always legalized to i8.
24331   SDLoc dl(N);
24332   SDValue N0 = N->getOperand(0);
24333   EVT VT = N->getValueType(0);
24334
24335   if (N0.getOpcode() == ISD::AND &&
24336       N0.hasOneUse() &&
24337       N0.getOperand(0).hasOneUse()) {
24338     SDValue N00 = N0.getOperand(0);
24339     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
24340       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
24341       if (!C || C->getZExtValue() != 1)
24342         return SDValue();
24343       return DAG.getNode(ISD::AND, dl, VT,
24344                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
24345                                      N00.getOperand(0), N00.getOperand(1)),
24346                          DAG.getConstant(1, dl, VT));
24347     }
24348   }
24349
24350   if (N0.getOpcode() == ISD::TRUNCATE &&
24351       N0.hasOneUse() &&
24352       N0.getOperand(0).hasOneUse()) {
24353     SDValue N00 = N0.getOperand(0);
24354     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
24355       return DAG.getNode(ISD::AND, dl, VT,
24356                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
24357                                      N00.getOperand(0), N00.getOperand(1)),
24358                          DAG.getConstant(1, dl, VT));
24359     }
24360   }
24361
24362   if (VT.is256BitVector())
24363     if (SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget))
24364       return R;
24365
24366   // (i8,i32 zext (udivrem (i8 x, i8 y)) ->
24367   // (i8,i32 (udivrem_zext_hreg (i8 x, i8 y)
24368   // This exposes the zext to the udivrem lowering, so that it directly extends
24369   // from AH (which we otherwise need to do contortions to access).
24370   if (N0.getOpcode() == ISD::UDIVREM &&
24371       N0.getResNo() == 1 && N0.getValueType() == MVT::i8 &&
24372       (VT == MVT::i32 || VT == MVT::i64)) {
24373     SDVTList NodeTys = DAG.getVTList(MVT::i8, VT);
24374     SDValue R = DAG.getNode(X86ISD::UDIVREM8_ZEXT_HREG, dl, NodeTys,
24375                             N0.getOperand(0), N0.getOperand(1));
24376     DAG.ReplaceAllUsesOfValueWith(N0.getValue(0), R.getValue(0));
24377     return R.getValue(1);
24378   }
24379
24380   return SDValue();
24381 }
24382
24383 // Optimize x == -y --> x+y == 0
24384 //          x != -y --> x+y != 0
24385 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
24386                                       const X86Subtarget* Subtarget) {
24387   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
24388   SDValue LHS = N->getOperand(0);
24389   SDValue RHS = N->getOperand(1);
24390   EVT VT = N->getValueType(0);
24391   SDLoc DL(N);
24392
24393   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
24394     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
24395       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
24396         SDValue addV = DAG.getNode(ISD::ADD, DL, LHS.getValueType(), RHS,
24397                                    LHS.getOperand(1));
24398         return DAG.getSetCC(DL, N->getValueType(0), addV,
24399                             DAG.getConstant(0, DL, addV.getValueType()), CC);
24400       }
24401   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
24402     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
24403       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
24404         SDValue addV = DAG.getNode(ISD::ADD, DL, RHS.getValueType(), LHS,
24405                                    RHS.getOperand(1));
24406         return DAG.getSetCC(DL, N->getValueType(0), addV,
24407                             DAG.getConstant(0, DL, addV.getValueType()), CC);
24408       }
24409
24410   if (VT.getScalarType() == MVT::i1 &&
24411       (CC == ISD::SETNE || CC == ISD::SETEQ || ISD::isSignedIntSetCC(CC))) {
24412     bool IsSEXT0 =
24413         (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
24414         (LHS.getOperand(0).getValueType().getScalarType() == MVT::i1);
24415     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
24416
24417     if (!IsSEXT0 || !IsVZero1) {
24418       // Swap the operands and update the condition code.
24419       std::swap(LHS, RHS);
24420       CC = ISD::getSetCCSwappedOperands(CC);
24421
24422       IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
24423                 (LHS.getOperand(0).getValueType().getScalarType() == MVT::i1);
24424       IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
24425     }
24426
24427     if (IsSEXT0 && IsVZero1) {
24428       assert(VT == LHS.getOperand(0).getValueType() &&
24429              "Uexpected operand type");
24430       if (CC == ISD::SETGT)
24431         return DAG.getConstant(0, DL, VT);
24432       if (CC == ISD::SETLE)
24433         return DAG.getConstant(1, DL, VT);
24434       if (CC == ISD::SETEQ || CC == ISD::SETGE)
24435         return DAG.getNOT(DL, LHS.getOperand(0), VT);
24436
24437       assert((CC == ISD::SETNE || CC == ISD::SETLT) &&
24438              "Unexpected condition code!");
24439       return LHS.getOperand(0);
24440     }
24441   }
24442
24443   return SDValue();
24444 }
24445
24446 static SDValue NarrowVectorLoadToElement(LoadSDNode *Load, unsigned Index,
24447                                          SelectionDAG &DAG) {
24448   SDLoc dl(Load);
24449   MVT VT = Load->getSimpleValueType(0);
24450   MVT EVT = VT.getVectorElementType();
24451   SDValue Addr = Load->getOperand(1);
24452   SDValue NewAddr = DAG.getNode(
24453       ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
24454       DAG.getConstant(Index * EVT.getStoreSize(), dl,
24455                       Addr.getSimpleValueType()));
24456
24457   SDValue NewLoad =
24458       DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
24459                   DAG.getMachineFunction().getMachineMemOperand(
24460                       Load->getMemOperand(), 0, EVT.getStoreSize()));
24461   return NewLoad;
24462 }
24463
24464 static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG,
24465                                       const X86Subtarget *Subtarget) {
24466   SDLoc dl(N);
24467   MVT VT = N->getOperand(1)->getSimpleValueType(0);
24468   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
24469          "X86insertps is only defined for v4x32");
24470
24471   SDValue Ld = N->getOperand(1);
24472   if (MayFoldLoad(Ld)) {
24473     // Extract the countS bits from the immediate so we can get the proper
24474     // address when narrowing the vector load to a specific element.
24475     // When the second source op is a memory address, insertps doesn't use
24476     // countS and just gets an f32 from that address.
24477     unsigned DestIndex =
24478         cast<ConstantSDNode>(N->getOperand(2))->getZExtValue() >> 6;
24479
24480     Ld = NarrowVectorLoadToElement(cast<LoadSDNode>(Ld), DestIndex, DAG);
24481
24482     // Create this as a scalar to vector to match the instruction pattern.
24483     SDValue LoadScalarToVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Ld);
24484     // countS bits are ignored when loading from memory on insertps, which
24485     // means we don't need to explicitly set them to 0.
24486     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N->getOperand(0),
24487                        LoadScalarToVector, N->getOperand(2));
24488   }
24489   return SDValue();
24490 }
24491
24492 static SDValue PerformBLENDICombine(SDNode *N, SelectionDAG &DAG) {
24493   SDValue V0 = N->getOperand(0);
24494   SDValue V1 = N->getOperand(1);
24495   SDLoc DL(N);
24496   EVT VT = N->getValueType(0);
24497
24498   // Canonicalize a v2f64 blend with a mask of 2 by swapping the vector
24499   // operands and changing the mask to 1. This saves us a bunch of
24500   // pattern-matching possibilities related to scalar math ops in SSE/AVX.
24501   // x86InstrInfo knows how to commute this back after instruction selection
24502   // if it would help register allocation.
24503
24504   // TODO: If optimizing for size or a processor that doesn't suffer from
24505   // partial register update stalls, this should be transformed into a MOVSD
24506   // instruction because a MOVSD is 1-2 bytes smaller than a BLENDPD.
24507
24508   if (VT == MVT::v2f64)
24509     if (auto *Mask = dyn_cast<ConstantSDNode>(N->getOperand(2)))
24510       if (Mask->getZExtValue() == 2 && !isShuffleFoldableLoad(V0)) {
24511         SDValue NewMask = DAG.getConstant(1, DL, MVT::i8);
24512         return DAG.getNode(X86ISD::BLENDI, DL, VT, V1, V0, NewMask);
24513       }
24514
24515   return SDValue();
24516 }
24517
24518 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
24519 // as "sbb reg,reg", since it can be extended without zext and produces
24520 // an all-ones bit which is more useful than 0/1 in some cases.
24521 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
24522                                MVT VT) {
24523   if (VT == MVT::i8)
24524     return DAG.getNode(ISD::AND, DL, VT,
24525                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
24526                                    DAG.getConstant(X86::COND_B, DL, MVT::i8),
24527                                    EFLAGS),
24528                        DAG.getConstant(1, DL, VT));
24529   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
24530   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
24531                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
24532                                  DAG.getConstant(X86::COND_B, DL, MVT::i8),
24533                                  EFLAGS));
24534 }
24535
24536 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
24537 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
24538                                    TargetLowering::DAGCombinerInfo &DCI,
24539                                    const X86Subtarget *Subtarget) {
24540   SDLoc DL(N);
24541   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
24542   SDValue EFLAGS = N->getOperand(1);
24543
24544   if (CC == X86::COND_A) {
24545     // Try to convert COND_A into COND_B in an attempt to facilitate
24546     // materializing "setb reg".
24547     //
24548     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
24549     // cannot take an immediate as its first operand.
24550     //
24551     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
24552         EFLAGS.getValueType().isInteger() &&
24553         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
24554       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
24555                                    EFLAGS.getNode()->getVTList(),
24556                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
24557       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
24558       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
24559     }
24560   }
24561
24562   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
24563   // a zext and produces an all-ones bit which is more useful than 0/1 in some
24564   // cases.
24565   if (CC == X86::COND_B)
24566     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
24567
24568   if (SDValue Flags = checkBoolTestSetCCCombine(EFLAGS, CC)) {
24569     SDValue Cond = DAG.getConstant(CC, DL, MVT::i8);
24570     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
24571   }
24572
24573   return SDValue();
24574 }
24575
24576 // Optimize branch condition evaluation.
24577 //
24578 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
24579                                     TargetLowering::DAGCombinerInfo &DCI,
24580                                     const X86Subtarget *Subtarget) {
24581   SDLoc DL(N);
24582   SDValue Chain = N->getOperand(0);
24583   SDValue Dest = N->getOperand(1);
24584   SDValue EFLAGS = N->getOperand(3);
24585   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
24586
24587   if (SDValue Flags = checkBoolTestSetCCCombine(EFLAGS, CC)) {
24588     SDValue Cond = DAG.getConstant(CC, DL, MVT::i8);
24589     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
24590                        Flags);
24591   }
24592
24593   return SDValue();
24594 }
24595
24596 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
24597                                                          SelectionDAG &DAG) {
24598   // Take advantage of vector comparisons producing 0 or -1 in each lane to
24599   // optimize away operation when it's from a constant.
24600   //
24601   // The general transformation is:
24602   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
24603   //       AND(VECTOR_CMP(x,y), constant2)
24604   //    constant2 = UNARYOP(constant)
24605
24606   // Early exit if this isn't a vector operation, the operand of the
24607   // unary operation isn't a bitwise AND, or if the sizes of the operations
24608   // aren't the same.
24609   EVT VT = N->getValueType(0);
24610   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
24611       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
24612       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
24613     return SDValue();
24614
24615   // Now check that the other operand of the AND is a constant. We could
24616   // make the transformation for non-constant splats as well, but it's unclear
24617   // that would be a benefit as it would not eliminate any operations, just
24618   // perform one more step in scalar code before moving to the vector unit.
24619   if (BuildVectorSDNode *BV =
24620           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
24621     // Bail out if the vector isn't a constant.
24622     if (!BV->isConstant())
24623       return SDValue();
24624
24625     // Everything checks out. Build up the new and improved node.
24626     SDLoc DL(N);
24627     EVT IntVT = BV->getValueType(0);
24628     // Create a new constant of the appropriate type for the transformed
24629     // DAG.
24630     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
24631     // The AND node needs bitcasts to/from an integer vector type around it.
24632     SDValue MaskConst = DAG.getBitcast(IntVT, SourceConst);
24633     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
24634                                  N->getOperand(0)->getOperand(0), MaskConst);
24635     SDValue Res = DAG.getBitcast(VT, NewAnd);
24636     return Res;
24637   }
24638
24639   return SDValue();
24640 }
24641
24642 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
24643                                         const X86Subtarget *Subtarget) {
24644   // First try to optimize away the conversion entirely when it's
24645   // conditionally from a constant. Vectors only.
24646   if (SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG))
24647     return Res;
24648
24649   // Now move on to more general possibilities.
24650   SDValue Op0 = N->getOperand(0);
24651   EVT InVT = Op0->getValueType(0);
24652
24653   // SINT_TO_FP(vXi8) -> SINT_TO_FP(SEXT(vXi8 to vXi32))
24654   // SINT_TO_FP(vXi16) -> SINT_TO_FP(SEXT(vXi16 to vXi32))
24655   if (InVT == MVT::v8i8 || InVT == MVT::v4i8 ||
24656       InVT == MVT::v8i16 || InVT == MVT::v4i16) {
24657     SDLoc dl(N);
24658     MVT DstVT = MVT::getVectorVT(MVT::i32, InVT.getVectorNumElements());
24659     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
24660     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
24661   }
24662
24663   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
24664   // a 32-bit target where SSE doesn't support i64->FP operations.
24665   if (Op0.getOpcode() == ISD::LOAD) {
24666     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
24667     EVT LdVT = Ld->getValueType(0);
24668
24669     // This transformation is not supported if the result type is f16
24670     if (N->getValueType(0) == MVT::f16)
24671       return SDValue();
24672
24673     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
24674         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
24675         !Subtarget->is64Bit() && LdVT == MVT::i64) {
24676       SDValue FILDChain = Subtarget->getTargetLowering()->BuildFILD(
24677           SDValue(N, 0), LdVT, Ld->getChain(), Op0, DAG);
24678       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
24679       return FILDChain;
24680     }
24681   }
24682   return SDValue();
24683 }
24684
24685 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
24686 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
24687                                  X86TargetLowering::DAGCombinerInfo &DCI) {
24688   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
24689   // the result is either zero or one (depending on the input carry bit).
24690   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
24691   if (X86::isZeroNode(N->getOperand(0)) &&
24692       X86::isZeroNode(N->getOperand(1)) &&
24693       // We don't have a good way to replace an EFLAGS use, so only do this when
24694       // dead right now.
24695       SDValue(N, 1).use_empty()) {
24696     SDLoc DL(N);
24697     EVT VT = N->getValueType(0);
24698     SDValue CarryOut = DAG.getConstant(0, DL, N->getValueType(1));
24699     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
24700                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
24701                                            DAG.getConstant(X86::COND_B, DL,
24702                                                            MVT::i8),
24703                                            N->getOperand(2)),
24704                                DAG.getConstant(1, DL, VT));
24705     return DCI.CombineTo(N, Res1, CarryOut);
24706   }
24707
24708   return SDValue();
24709 }
24710
24711 // fold (add Y, (sete  X, 0)) -> adc  0, Y
24712 //      (add Y, (setne X, 0)) -> sbb -1, Y
24713 //      (sub (sete  X, 0), Y) -> sbb  0, Y
24714 //      (sub (setne X, 0), Y) -> adc -1, Y
24715 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
24716   SDLoc DL(N);
24717
24718   // Look through ZExts.
24719   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
24720   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
24721     return SDValue();
24722
24723   SDValue SetCC = Ext.getOperand(0);
24724   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
24725     return SDValue();
24726
24727   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
24728   if (CC != X86::COND_E && CC != X86::COND_NE)
24729     return SDValue();
24730
24731   SDValue Cmp = SetCC.getOperand(1);
24732   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
24733       !X86::isZeroNode(Cmp.getOperand(1)) ||
24734       !Cmp.getOperand(0).getValueType().isInteger())
24735     return SDValue();
24736
24737   SDValue CmpOp0 = Cmp.getOperand(0);
24738   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
24739                                DAG.getConstant(1, DL, CmpOp0.getValueType()));
24740
24741   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
24742   if (CC == X86::COND_NE)
24743     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
24744                        DL, OtherVal.getValueType(), OtherVal,
24745                        DAG.getConstant(-1ULL, DL, OtherVal.getValueType()),
24746                        NewCmp);
24747   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
24748                      DL, OtherVal.getValueType(), OtherVal,
24749                      DAG.getConstant(0, DL, OtherVal.getValueType()), NewCmp);
24750 }
24751
24752 /// PerformADDCombine - Do target-specific dag combines on integer adds.
24753 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
24754                                  const X86Subtarget *Subtarget) {
24755   EVT VT = N->getValueType(0);
24756   SDValue Op0 = N->getOperand(0);
24757   SDValue Op1 = N->getOperand(1);
24758
24759   // Try to synthesize horizontal adds from adds of shuffles.
24760   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
24761        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
24762       isHorizontalBinOp(Op0, Op1, true))
24763     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
24764
24765   return OptimizeConditionalInDecrement(N, DAG);
24766 }
24767
24768 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
24769                                  const X86Subtarget *Subtarget) {
24770   SDValue Op0 = N->getOperand(0);
24771   SDValue Op1 = N->getOperand(1);
24772
24773   // X86 can't encode an immediate LHS of a sub. See if we can push the
24774   // negation into a preceding instruction.
24775   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
24776     // If the RHS of the sub is a XOR with one use and a constant, invert the
24777     // immediate. Then add one to the LHS of the sub so we can turn
24778     // X-Y -> X+~Y+1, saving one register.
24779     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
24780         isa<ConstantSDNode>(Op1.getOperand(1))) {
24781       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
24782       EVT VT = Op0.getValueType();
24783       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
24784                                    Op1.getOperand(0),
24785                                    DAG.getConstant(~XorC, SDLoc(Op1), VT));
24786       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
24787                          DAG.getConstant(C->getAPIntValue() + 1, SDLoc(N), VT));
24788     }
24789   }
24790
24791   // Try to synthesize horizontal adds from adds of shuffles.
24792   EVT VT = N->getValueType(0);
24793   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
24794        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
24795       isHorizontalBinOp(Op0, Op1, true))
24796     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
24797
24798   return OptimizeConditionalInDecrement(N, DAG);
24799 }
24800
24801 /// performVZEXTCombine - Performs build vector combines
24802 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
24803                                    TargetLowering::DAGCombinerInfo &DCI,
24804                                    const X86Subtarget *Subtarget) {
24805   SDLoc DL(N);
24806   MVT VT = N->getSimpleValueType(0);
24807   SDValue Op = N->getOperand(0);
24808   MVT OpVT = Op.getSimpleValueType();
24809   MVT OpEltVT = OpVT.getVectorElementType();
24810   unsigned InputBits = OpEltVT.getSizeInBits() * VT.getVectorNumElements();
24811
24812   // (vzext (bitcast (vzext (x)) -> (vzext x)
24813   SDValue V = Op;
24814   while (V.getOpcode() == ISD::BITCAST)
24815     V = V.getOperand(0);
24816
24817   if (V != Op && V.getOpcode() == X86ISD::VZEXT) {
24818     MVT InnerVT = V.getSimpleValueType();
24819     MVT InnerEltVT = InnerVT.getVectorElementType();
24820
24821     // If the element sizes match exactly, we can just do one larger vzext. This
24822     // is always an exact type match as vzext operates on integer types.
24823     if (OpEltVT == InnerEltVT) {
24824       assert(OpVT == InnerVT && "Types must match for vzext!");
24825       return DAG.getNode(X86ISD::VZEXT, DL, VT, V.getOperand(0));
24826     }
24827
24828     // The only other way we can combine them is if only a single element of the
24829     // inner vzext is used in the input to the outer vzext.
24830     if (InnerEltVT.getSizeInBits() < InputBits)
24831       return SDValue();
24832
24833     // In this case, the inner vzext is completely dead because we're going to
24834     // only look at bits inside of the low element. Just do the outer vzext on
24835     // a bitcast of the input to the inner.
24836     return DAG.getNode(X86ISD::VZEXT, DL, VT, DAG.getBitcast(OpVT, V));
24837   }
24838
24839   // Check if we can bypass extracting and re-inserting an element of an input
24840   // vector. Essentialy:
24841   // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
24842   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR &&
24843       V.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
24844       V.getOperand(0).getSimpleValueType().getSizeInBits() == InputBits) {
24845     SDValue ExtractedV = V.getOperand(0);
24846     SDValue OrigV = ExtractedV.getOperand(0);
24847     if (auto *ExtractIdx = dyn_cast<ConstantSDNode>(ExtractedV.getOperand(1)))
24848       if (ExtractIdx->getZExtValue() == 0) {
24849         MVT OrigVT = OrigV.getSimpleValueType();
24850         // Extract a subvector if necessary...
24851         if (OrigVT.getSizeInBits() > OpVT.getSizeInBits()) {
24852           int Ratio = OrigVT.getSizeInBits() / OpVT.getSizeInBits();
24853           OrigVT = MVT::getVectorVT(OrigVT.getVectorElementType(),
24854                                     OrigVT.getVectorNumElements() / Ratio);
24855           OrigV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigVT, OrigV,
24856                               DAG.getIntPtrConstant(0, DL));
24857         }
24858         Op = DAG.getBitcast(OpVT, OrigV);
24859         return DAG.getNode(X86ISD::VZEXT, DL, VT, Op);
24860       }
24861   }
24862
24863   return SDValue();
24864 }
24865
24866 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
24867                                              DAGCombinerInfo &DCI) const {
24868   SelectionDAG &DAG = DCI.DAG;
24869   switch (N->getOpcode()) {
24870   default: break;
24871   case ISD::EXTRACT_VECTOR_ELT:
24872     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
24873   case ISD::VSELECT:
24874   case ISD::SELECT:
24875   case X86ISD::SHRUNKBLEND:
24876     return PerformSELECTCombine(N, DAG, DCI, Subtarget);
24877   case ISD::BITCAST:        return PerformBITCASTCombine(N, DAG);
24878   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
24879   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
24880   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
24881   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
24882   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
24883   case ISD::SHL:
24884   case ISD::SRA:
24885   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
24886   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
24887   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
24888   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
24889   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
24890   case ISD::MLOAD:          return PerformMLOADCombine(N, DAG, DCI, Subtarget);
24891   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
24892   case ISD::MSTORE:         return PerformMSTORECombine(N, DAG, Subtarget);
24893   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, Subtarget);
24894   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
24895   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
24896   case X86ISD::FXOR:
24897   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
24898   case X86ISD::FMIN:
24899   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
24900   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
24901   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
24902   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
24903   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
24904   case ISD::ANY_EXTEND:
24905   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
24906   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
24907   case ISD::SIGN_EXTEND_INREG:
24908     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
24909   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
24910   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
24911   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
24912   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
24913   case X86ISD::SHUFP:       // Handle all target specific shuffles
24914   case X86ISD::PALIGNR:
24915   case X86ISD::UNPCKH:
24916   case X86ISD::UNPCKL:
24917   case X86ISD::MOVHLPS:
24918   case X86ISD::MOVLHPS:
24919   case X86ISD::PSHUFB:
24920   case X86ISD::PSHUFD:
24921   case X86ISD::PSHUFHW:
24922   case X86ISD::PSHUFLW:
24923   case X86ISD::MOVSS:
24924   case X86ISD::MOVSD:
24925   case X86ISD::VPERMILPI:
24926   case X86ISD::VPERM2X128:
24927   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
24928   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
24929   case ISD::INTRINSIC_WO_CHAIN:
24930     return PerformINTRINSIC_WO_CHAINCombine(N, DAG, Subtarget);
24931   case X86ISD::INSERTPS: {
24932     if (getTargetMachine().getOptLevel() > CodeGenOpt::None)
24933       return PerformINSERTPSCombine(N, DAG, Subtarget);
24934     break;
24935   }
24936   case X86ISD::BLENDI:    return PerformBLENDICombine(N, DAG);
24937   }
24938
24939   return SDValue();
24940 }
24941
24942 /// isTypeDesirableForOp - Return true if the target has native support for
24943 /// the specified value type and it is 'desirable' to use the type for the
24944 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
24945 /// instruction encodings are longer and some i16 instructions are slow.
24946 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
24947   if (!isTypeLegal(VT))
24948     return false;
24949   if (VT != MVT::i16)
24950     return true;
24951
24952   switch (Opc) {
24953   default:
24954     return true;
24955   case ISD::LOAD:
24956   case ISD::SIGN_EXTEND:
24957   case ISD::ZERO_EXTEND:
24958   case ISD::ANY_EXTEND:
24959   case ISD::SHL:
24960   case ISD::SRL:
24961   case ISD::SUB:
24962   case ISD::ADD:
24963   case ISD::MUL:
24964   case ISD::AND:
24965   case ISD::OR:
24966   case ISD::XOR:
24967     return false;
24968   }
24969 }
24970
24971 /// IsDesirableToPromoteOp - This method query the target whether it is
24972 /// beneficial for dag combiner to promote the specified node. If true, it
24973 /// should return the desired promotion type by reference.
24974 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
24975   EVT VT = Op.getValueType();
24976   if (VT != MVT::i16)
24977     return false;
24978
24979   bool Promote = false;
24980   bool Commute = false;
24981   switch (Op.getOpcode()) {
24982   default: break;
24983   case ISD::LOAD: {
24984     LoadSDNode *LD = cast<LoadSDNode>(Op);
24985     // If the non-extending load has a single use and it's not live out, then it
24986     // might be folded.
24987     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
24988                                                      Op.hasOneUse()*/) {
24989       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
24990              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
24991         // The only case where we'd want to promote LOAD (rather then it being
24992         // promoted as an operand is when it's only use is liveout.
24993         if (UI->getOpcode() != ISD::CopyToReg)
24994           return false;
24995       }
24996     }
24997     Promote = true;
24998     break;
24999   }
25000   case ISD::SIGN_EXTEND:
25001   case ISD::ZERO_EXTEND:
25002   case ISD::ANY_EXTEND:
25003     Promote = true;
25004     break;
25005   case ISD::SHL:
25006   case ISD::SRL: {
25007     SDValue N0 = Op.getOperand(0);
25008     // Look out for (store (shl (load), x)).
25009     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
25010       return false;
25011     Promote = true;
25012     break;
25013   }
25014   case ISD::ADD:
25015   case ISD::MUL:
25016   case ISD::AND:
25017   case ISD::OR:
25018   case ISD::XOR:
25019     Commute = true;
25020     // fallthrough
25021   case ISD::SUB: {
25022     SDValue N0 = Op.getOperand(0);
25023     SDValue N1 = Op.getOperand(1);
25024     if (!Commute && MayFoldLoad(N1))
25025       return false;
25026     // Avoid disabling potential load folding opportunities.
25027     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
25028       return false;
25029     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
25030       return false;
25031     Promote = true;
25032   }
25033   }
25034
25035   PVT = MVT::i32;
25036   return Promote;
25037 }
25038
25039 //===----------------------------------------------------------------------===//
25040 //                           X86 Inline Assembly Support
25041 //===----------------------------------------------------------------------===//
25042
25043 // Helper to match a string separated by whitespace.
25044 static bool matchAsm(StringRef S, ArrayRef<const char *> Pieces) {
25045   S = S.substr(S.find_first_not_of(" \t")); // Skip leading whitespace.
25046
25047   for (StringRef Piece : Pieces) {
25048     if (!S.startswith(Piece)) // Check if the piece matches.
25049       return false;
25050
25051     S = S.substr(Piece.size());
25052     StringRef::size_type Pos = S.find_first_not_of(" \t");
25053     if (Pos == 0) // We matched a prefix.
25054       return false;
25055
25056     S = S.substr(Pos);
25057   }
25058
25059   return S.empty();
25060 }
25061
25062 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
25063
25064   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
25065     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
25066         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
25067         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
25068
25069       if (AsmPieces.size() == 3)
25070         return true;
25071       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
25072         return true;
25073     }
25074   }
25075   return false;
25076 }
25077
25078 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
25079   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
25080
25081   std::string AsmStr = IA->getAsmString();
25082
25083   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
25084   if (!Ty || Ty->getBitWidth() % 16 != 0)
25085     return false;
25086
25087   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
25088   SmallVector<StringRef, 4> AsmPieces;
25089   SplitString(AsmStr, AsmPieces, ";\n");
25090
25091   switch (AsmPieces.size()) {
25092   default: return false;
25093   case 1:
25094     // FIXME: this should verify that we are targeting a 486 or better.  If not,
25095     // we will turn this bswap into something that will be lowered to logical
25096     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
25097     // lower so don't worry about this.
25098     // bswap $0
25099     if (matchAsm(AsmPieces[0], {"bswap", "$0"}) ||
25100         matchAsm(AsmPieces[0], {"bswapl", "$0"}) ||
25101         matchAsm(AsmPieces[0], {"bswapq", "$0"}) ||
25102         matchAsm(AsmPieces[0], {"bswap", "${0:q}"}) ||
25103         matchAsm(AsmPieces[0], {"bswapl", "${0:q}"}) ||
25104         matchAsm(AsmPieces[0], {"bswapq", "${0:q}"})) {
25105       // No need to check constraints, nothing other than the equivalent of
25106       // "=r,0" would be valid here.
25107       return IntrinsicLowering::LowerToByteSwap(CI);
25108     }
25109
25110     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
25111     if (CI->getType()->isIntegerTy(16) &&
25112         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
25113         (matchAsm(AsmPieces[0], {"rorw", "$$8,", "${0:w}"}) ||
25114          matchAsm(AsmPieces[0], {"rolw", "$$8,", "${0:w}"}))) {
25115       AsmPieces.clear();
25116       const std::string &ConstraintsStr = IA->getConstraintString();
25117       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
25118       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
25119       if (clobbersFlagRegisters(AsmPieces))
25120         return IntrinsicLowering::LowerToByteSwap(CI);
25121     }
25122     break;
25123   case 3:
25124     if (CI->getType()->isIntegerTy(32) &&
25125         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
25126         matchAsm(AsmPieces[0], {"rorw", "$$8,", "${0:w}"}) &&
25127         matchAsm(AsmPieces[1], {"rorl", "$$16,", "$0"}) &&
25128         matchAsm(AsmPieces[2], {"rorw", "$$8,", "${0:w}"})) {
25129       AsmPieces.clear();
25130       const std::string &ConstraintsStr = IA->getConstraintString();
25131       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
25132       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
25133       if (clobbersFlagRegisters(AsmPieces))
25134         return IntrinsicLowering::LowerToByteSwap(CI);
25135     }
25136
25137     if (CI->getType()->isIntegerTy(64)) {
25138       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
25139       if (Constraints.size() >= 2 &&
25140           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
25141           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
25142         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
25143         if (matchAsm(AsmPieces[0], {"bswap", "%eax"}) &&
25144             matchAsm(AsmPieces[1], {"bswap", "%edx"}) &&
25145             matchAsm(AsmPieces[2], {"xchgl", "%eax,", "%edx"}))
25146           return IntrinsicLowering::LowerToByteSwap(CI);
25147       }
25148     }
25149     break;
25150   }
25151   return false;
25152 }
25153
25154 /// getConstraintType - Given a constraint letter, return the type of
25155 /// constraint it is for this target.
25156 X86TargetLowering::ConstraintType
25157 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
25158   if (Constraint.size() == 1) {
25159     switch (Constraint[0]) {
25160     case 'R':
25161     case 'q':
25162     case 'Q':
25163     case 'f':
25164     case 't':
25165     case 'u':
25166     case 'y':
25167     case 'x':
25168     case 'Y':
25169     case 'l':
25170       return C_RegisterClass;
25171     case 'a':
25172     case 'b':
25173     case 'c':
25174     case 'd':
25175     case 'S':
25176     case 'D':
25177     case 'A':
25178       return C_Register;
25179     case 'I':
25180     case 'J':
25181     case 'K':
25182     case 'L':
25183     case 'M':
25184     case 'N':
25185     case 'G':
25186     case 'C':
25187     case 'e':
25188     case 'Z':
25189       return C_Other;
25190     default:
25191       break;
25192     }
25193   }
25194   return TargetLowering::getConstraintType(Constraint);
25195 }
25196
25197 /// Examine constraint type and operand type and determine a weight value.
25198 /// This object must already have been set up with the operand type
25199 /// and the current alternative constraint selected.
25200 TargetLowering::ConstraintWeight
25201   X86TargetLowering::getSingleConstraintMatchWeight(
25202     AsmOperandInfo &info, const char *constraint) const {
25203   ConstraintWeight weight = CW_Invalid;
25204   Value *CallOperandVal = info.CallOperandVal;
25205     // If we don't have a value, we can't do a match,
25206     // but allow it at the lowest weight.
25207   if (!CallOperandVal)
25208     return CW_Default;
25209   Type *type = CallOperandVal->getType();
25210   // Look at the constraint type.
25211   switch (*constraint) {
25212   default:
25213     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
25214   case 'R':
25215   case 'q':
25216   case 'Q':
25217   case 'a':
25218   case 'b':
25219   case 'c':
25220   case 'd':
25221   case 'S':
25222   case 'D':
25223   case 'A':
25224     if (CallOperandVal->getType()->isIntegerTy())
25225       weight = CW_SpecificReg;
25226     break;
25227   case 'f':
25228   case 't':
25229   case 'u':
25230     if (type->isFloatingPointTy())
25231       weight = CW_SpecificReg;
25232     break;
25233   case 'y':
25234     if (type->isX86_MMXTy() && Subtarget->hasMMX())
25235       weight = CW_SpecificReg;
25236     break;
25237   case 'x':
25238   case 'Y':
25239     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
25240         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
25241       weight = CW_Register;
25242     break;
25243   case 'I':
25244     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
25245       if (C->getZExtValue() <= 31)
25246         weight = CW_Constant;
25247     }
25248     break;
25249   case 'J':
25250     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25251       if (C->getZExtValue() <= 63)
25252         weight = CW_Constant;
25253     }
25254     break;
25255   case 'K':
25256     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25257       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
25258         weight = CW_Constant;
25259     }
25260     break;
25261   case 'L':
25262     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25263       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
25264         weight = CW_Constant;
25265     }
25266     break;
25267   case 'M':
25268     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25269       if (C->getZExtValue() <= 3)
25270         weight = CW_Constant;
25271     }
25272     break;
25273   case 'N':
25274     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25275       if (C->getZExtValue() <= 0xff)
25276         weight = CW_Constant;
25277     }
25278     break;
25279   case 'G':
25280   case 'C':
25281     if (isa<ConstantFP>(CallOperandVal)) {
25282       weight = CW_Constant;
25283     }
25284     break;
25285   case 'e':
25286     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25287       if ((C->getSExtValue() >= -0x80000000LL) &&
25288           (C->getSExtValue() <= 0x7fffffffLL))
25289         weight = CW_Constant;
25290     }
25291     break;
25292   case 'Z':
25293     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
25294       if (C->getZExtValue() <= 0xffffffff)
25295         weight = CW_Constant;
25296     }
25297     break;
25298   }
25299   return weight;
25300 }
25301
25302 /// LowerXConstraint - try to replace an X constraint, which matches anything,
25303 /// with another that has more specific requirements based on the type of the
25304 /// corresponding operand.
25305 const char *X86TargetLowering::
25306 LowerXConstraint(EVT ConstraintVT) const {
25307   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
25308   // 'f' like normal targets.
25309   if (ConstraintVT.isFloatingPoint()) {
25310     if (Subtarget->hasSSE2())
25311       return "Y";
25312     if (Subtarget->hasSSE1())
25313       return "x";
25314   }
25315
25316   return TargetLowering::LowerXConstraint(ConstraintVT);
25317 }
25318
25319 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
25320 /// vector.  If it is invalid, don't add anything to Ops.
25321 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
25322                                                      std::string &Constraint,
25323                                                      std::vector<SDValue>&Ops,
25324                                                      SelectionDAG &DAG) const {
25325   SDValue Result;
25326
25327   // Only support length 1 constraints for now.
25328   if (Constraint.length() > 1) return;
25329
25330   char ConstraintLetter = Constraint[0];
25331   switch (ConstraintLetter) {
25332   default: break;
25333   case 'I':
25334     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25335       if (C->getZExtValue() <= 31) {
25336         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25337                                        Op.getValueType());
25338         break;
25339       }
25340     }
25341     return;
25342   case 'J':
25343     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25344       if (C->getZExtValue() <= 63) {
25345         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25346                                        Op.getValueType());
25347         break;
25348       }
25349     }
25350     return;
25351   case 'K':
25352     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25353       if (isInt<8>(C->getSExtValue())) {
25354         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25355                                        Op.getValueType());
25356         break;
25357       }
25358     }
25359     return;
25360   case 'L':
25361     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25362       if (C->getZExtValue() == 0xff || C->getZExtValue() == 0xffff ||
25363           (Subtarget->is64Bit() && C->getZExtValue() == 0xffffffff)) {
25364         Result = DAG.getTargetConstant(C->getSExtValue(), SDLoc(Op),
25365                                        Op.getValueType());
25366         break;
25367       }
25368     }
25369     return;
25370   case 'M':
25371     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25372       if (C->getZExtValue() <= 3) {
25373         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25374                                        Op.getValueType());
25375         break;
25376       }
25377     }
25378     return;
25379   case 'N':
25380     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25381       if (C->getZExtValue() <= 255) {
25382         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25383                                        Op.getValueType());
25384         break;
25385       }
25386     }
25387     return;
25388   case 'O':
25389     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25390       if (C->getZExtValue() <= 127) {
25391         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25392                                        Op.getValueType());
25393         break;
25394       }
25395     }
25396     return;
25397   case 'e': {
25398     // 32-bit signed value
25399     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25400       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
25401                                            C->getSExtValue())) {
25402         // Widen to 64 bits here to get it sign extended.
25403         Result = DAG.getTargetConstant(C->getSExtValue(), SDLoc(Op), MVT::i64);
25404         break;
25405       }
25406     // FIXME gcc accepts some relocatable values here too, but only in certain
25407     // memory models; it's complicated.
25408     }
25409     return;
25410   }
25411   case 'Z': {
25412     // 32-bit unsigned value
25413     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
25414       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
25415                                            C->getZExtValue())) {
25416         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
25417                                        Op.getValueType());
25418         break;
25419       }
25420     }
25421     // FIXME gcc accepts some relocatable values here too, but only in certain
25422     // memory models; it's complicated.
25423     return;
25424   }
25425   case 'i': {
25426     // Literal immediates are always ok.
25427     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
25428       // Widen to 64 bits here to get it sign extended.
25429       Result = DAG.getTargetConstant(CST->getSExtValue(), SDLoc(Op), MVT::i64);
25430       break;
25431     }
25432
25433     // In any sort of PIC mode addresses need to be computed at runtime by
25434     // adding in a register or some sort of table lookup.  These can't
25435     // be used as immediates.
25436     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
25437       return;
25438
25439     // If we are in non-pic codegen mode, we allow the address of a global (with
25440     // an optional displacement) to be used with 'i'.
25441     GlobalAddressSDNode *GA = nullptr;
25442     int64_t Offset = 0;
25443
25444     // Match either (GA), (GA+C), (GA+C1+C2), etc.
25445     while (1) {
25446       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
25447         Offset += GA->getOffset();
25448         break;
25449       } else if (Op.getOpcode() == ISD::ADD) {
25450         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
25451           Offset += C->getZExtValue();
25452           Op = Op.getOperand(0);
25453           continue;
25454         }
25455       } else if (Op.getOpcode() == ISD::SUB) {
25456         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
25457           Offset += -C->getZExtValue();
25458           Op = Op.getOperand(0);
25459           continue;
25460         }
25461       }
25462
25463       // Otherwise, this isn't something we can handle, reject it.
25464       return;
25465     }
25466
25467     const GlobalValue *GV = GA->getGlobal();
25468     // If we require an extra load to get this address, as in PIC mode, we
25469     // can't accept it.
25470     if (isGlobalStubReference(
25471             Subtarget->ClassifyGlobalReference(GV, DAG.getTarget())))
25472       return;
25473
25474     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
25475                                         GA->getValueType(0), Offset);
25476     break;
25477   }
25478   }
25479
25480   if (Result.getNode()) {
25481     Ops.push_back(Result);
25482     return;
25483   }
25484   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
25485 }
25486
25487 std::pair<unsigned, const TargetRegisterClass *>
25488 X86TargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
25489                                                 const std::string &Constraint,
25490                                                 MVT VT) const {
25491   // First, see if this is a constraint that directly corresponds to an LLVM
25492   // register class.
25493   if (Constraint.size() == 1) {
25494     // GCC Constraint Letters
25495     switch (Constraint[0]) {
25496     default: break;
25497       // TODO: Slight differences here in allocation order and leaving
25498       // RIP in the class. Do they matter any more here than they do
25499       // in the normal allocation?
25500     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
25501       if (Subtarget->is64Bit()) {
25502         if (VT == MVT::i32 || VT == MVT::f32)
25503           return std::make_pair(0U, &X86::GR32RegClass);
25504         if (VT == MVT::i16)
25505           return std::make_pair(0U, &X86::GR16RegClass);
25506         if (VT == MVT::i8 || VT == MVT::i1)
25507           return std::make_pair(0U, &X86::GR8RegClass);
25508         if (VT == MVT::i64 || VT == MVT::f64)
25509           return std::make_pair(0U, &X86::GR64RegClass);
25510         break;
25511       }
25512       // 32-bit fallthrough
25513     case 'Q':   // Q_REGS
25514       if (VT == MVT::i32 || VT == MVT::f32)
25515         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
25516       if (VT == MVT::i16)
25517         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
25518       if (VT == MVT::i8 || VT == MVT::i1)
25519         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
25520       if (VT == MVT::i64)
25521         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
25522       break;
25523     case 'r':   // GENERAL_REGS
25524     case 'l':   // INDEX_REGS
25525       if (VT == MVT::i8 || VT == MVT::i1)
25526         return std::make_pair(0U, &X86::GR8RegClass);
25527       if (VT == MVT::i16)
25528         return std::make_pair(0U, &X86::GR16RegClass);
25529       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
25530         return std::make_pair(0U, &X86::GR32RegClass);
25531       return std::make_pair(0U, &X86::GR64RegClass);
25532     case 'R':   // LEGACY_REGS
25533       if (VT == MVT::i8 || VT == MVT::i1)
25534         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
25535       if (VT == MVT::i16)
25536         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
25537       if (VT == MVT::i32 || !Subtarget->is64Bit())
25538         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
25539       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
25540     case 'f':  // FP Stack registers.
25541       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
25542       // value to the correct fpstack register class.
25543       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
25544         return std::make_pair(0U, &X86::RFP32RegClass);
25545       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
25546         return std::make_pair(0U, &X86::RFP64RegClass);
25547       return std::make_pair(0U, &X86::RFP80RegClass);
25548     case 'y':   // MMX_REGS if MMX allowed.
25549       if (!Subtarget->hasMMX()) break;
25550       return std::make_pair(0U, &X86::VR64RegClass);
25551     case 'Y':   // SSE_REGS if SSE2 allowed
25552       if (!Subtarget->hasSSE2()) break;
25553       // FALL THROUGH.
25554     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
25555       if (!Subtarget->hasSSE1()) break;
25556
25557       switch (VT.SimpleTy) {
25558       default: break;
25559       // Scalar SSE types.
25560       case MVT::f32:
25561       case MVT::i32:
25562         return std::make_pair(0U, &X86::FR32RegClass);
25563       case MVT::f64:
25564       case MVT::i64:
25565         return std::make_pair(0U, &X86::FR64RegClass);
25566       // Vector types.
25567       case MVT::v16i8:
25568       case MVT::v8i16:
25569       case MVT::v4i32:
25570       case MVT::v2i64:
25571       case MVT::v4f32:
25572       case MVT::v2f64:
25573         return std::make_pair(0U, &X86::VR128RegClass);
25574       // AVX types.
25575       case MVT::v32i8:
25576       case MVT::v16i16:
25577       case MVT::v8i32:
25578       case MVT::v4i64:
25579       case MVT::v8f32:
25580       case MVT::v4f64:
25581         return std::make_pair(0U, &X86::VR256RegClass);
25582       case MVT::v8f64:
25583       case MVT::v16f32:
25584       case MVT::v16i32:
25585       case MVT::v8i64:
25586         return std::make_pair(0U, &X86::VR512RegClass);
25587       }
25588       break;
25589     }
25590   }
25591
25592   // Use the default implementation in TargetLowering to convert the register
25593   // constraint into a member of a register class.
25594   std::pair<unsigned, const TargetRegisterClass*> Res;
25595   Res = TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
25596
25597   // Not found as a standard register?
25598   if (!Res.second) {
25599     // Map st(0) -> st(7) -> ST0
25600     if (Constraint.size() == 7 && Constraint[0] == '{' &&
25601         tolower(Constraint[1]) == 's' &&
25602         tolower(Constraint[2]) == 't' &&
25603         Constraint[3] == '(' &&
25604         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
25605         Constraint[5] == ')' &&
25606         Constraint[6] == '}') {
25607
25608       Res.first = X86::FP0+Constraint[4]-'0';
25609       Res.second = &X86::RFP80RegClass;
25610       return Res;
25611     }
25612
25613     // GCC allows "st(0)" to be called just plain "st".
25614     if (StringRef("{st}").equals_lower(Constraint)) {
25615       Res.first = X86::FP0;
25616       Res.second = &X86::RFP80RegClass;
25617       return Res;
25618     }
25619
25620     // flags -> EFLAGS
25621     if (StringRef("{flags}").equals_lower(Constraint)) {
25622       Res.first = X86::EFLAGS;
25623       Res.second = &X86::CCRRegClass;
25624       return Res;
25625     }
25626
25627     // 'A' means EAX + EDX.
25628     if (Constraint == "A") {
25629       Res.first = X86::EAX;
25630       Res.second = &X86::GR32_ADRegClass;
25631       return Res;
25632     }
25633     return Res;
25634   }
25635
25636   // Otherwise, check to see if this is a register class of the wrong value
25637   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
25638   // turn into {ax},{dx}.
25639   // MVT::Other is used to specify clobber names.
25640   if (Res.second->hasType(VT) || VT == MVT::Other)
25641     return Res;   // Correct type already, nothing to do.
25642
25643   // Get a matching integer of the correct size. i.e. "ax" with MVT::32 should
25644   // return "eax". This should even work for things like getting 64bit integer
25645   // registers when given an f64 type.
25646   const TargetRegisterClass *Class = Res.second;
25647   if (Class == &X86::GR8RegClass || Class == &X86::GR16RegClass ||
25648       Class == &X86::GR32RegClass || Class == &X86::GR64RegClass) {
25649     unsigned Size = VT.getSizeInBits();
25650     MVT::SimpleValueType SimpleTy = Size == 1 || Size == 8 ? MVT::i8
25651                                   : Size == 16 ? MVT::i16
25652                                   : Size == 32 ? MVT::i32
25653                                   : Size == 64 ? MVT::i64
25654                                   : MVT::Other;
25655     unsigned DestReg = getX86SubSuperRegisterOrZero(Res.first, SimpleTy);
25656     if (DestReg > 0) {
25657       Res.first = DestReg;
25658       Res.second = SimpleTy == MVT::i8 ? &X86::GR8RegClass
25659                  : SimpleTy == MVT::i16 ? &X86::GR16RegClass
25660                  : SimpleTy == MVT::i32 ? &X86::GR32RegClass
25661                  : &X86::GR64RegClass;
25662       assert(Res.second->contains(Res.first) && "Register in register class");
25663     } else {
25664       // No register found/type mismatch.
25665       Res.first = 0;
25666       Res.second = nullptr;
25667     }
25668   } else if (Class == &X86::FR32RegClass || Class == &X86::FR64RegClass ||
25669              Class == &X86::VR128RegClass || Class == &X86::VR256RegClass ||
25670              Class == &X86::FR32XRegClass || Class == &X86::FR64XRegClass ||
25671              Class == &X86::VR128XRegClass || Class == &X86::VR256XRegClass ||
25672              Class == &X86::VR512RegClass) {
25673     // Handle references to XMM physical registers that got mapped into the
25674     // wrong class.  This can happen with constraints like {xmm0} where the
25675     // target independent register mapper will just pick the first match it can
25676     // find, ignoring the required type.
25677
25678     if (VT == MVT::f32 || VT == MVT::i32)
25679       Res.second = &X86::FR32RegClass;
25680     else if (VT == MVT::f64 || VT == MVT::i64)
25681       Res.second = &X86::FR64RegClass;
25682     else if (X86::VR128RegClass.hasType(VT))
25683       Res.second = &X86::VR128RegClass;
25684     else if (X86::VR256RegClass.hasType(VT))
25685       Res.second = &X86::VR256RegClass;
25686     else if (X86::VR512RegClass.hasType(VT))
25687       Res.second = &X86::VR512RegClass;
25688     else {
25689       // Type mismatch and not a clobber: Return an error;
25690       Res.first = 0;
25691       Res.second = nullptr;
25692     }
25693   }
25694
25695   return Res;
25696 }
25697
25698 int X86TargetLowering::getScalingFactorCost(const AddrMode &AM,
25699                                             Type *Ty,
25700                                             unsigned AS) const {
25701   // Scaling factors are not free at all.
25702   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
25703   // will take 2 allocations in the out of order engine instead of 1
25704   // for plain addressing mode, i.e. inst (reg1).
25705   // E.g.,
25706   // vaddps (%rsi,%drx), %ymm0, %ymm1
25707   // Requires two allocations (one for the load, one for the computation)
25708   // whereas:
25709   // vaddps (%rsi), %ymm0, %ymm1
25710   // Requires just 1 allocation, i.e., freeing allocations for other operations
25711   // and having less micro operations to execute.
25712   //
25713   // For some X86 architectures, this is even worse because for instance for
25714   // stores, the complex addressing mode forces the instruction to use the
25715   // "load" ports instead of the dedicated "store" port.
25716   // E.g., on Haswell:
25717   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
25718   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.
25719   if (isLegalAddressingMode(AM, Ty, AS))
25720     // Scale represents reg2 * scale, thus account for 1
25721     // as soon as we use a second register.
25722     return AM.Scale != 0;
25723   return -1;
25724 }
25725
25726 bool X86TargetLowering::isTargetFTOL() const {
25727   return Subtarget->isTargetKnownWindowsMSVC() && !Subtarget->is64Bit();
25728 }