AVX512: Lowering i8/i16 vector CTLZ using the dword LZCNT vector instruction
[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 X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
71                                      const X86Subtarget &STI)
72     : TargetLowering(TM), Subtarget(&STI) {
73   X86ScalarSSEf64 = Subtarget->hasSSE2();
74   X86ScalarSSEf32 = Subtarget->hasSSE1();
75   MVT PtrVT = MVT::getIntegerVT(8 * TM.getPointerSize());
76
77   // Set up the TargetLowering object.
78   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
79
80   // X86 is weird. It always uses i8 for shift amounts and setcc results.
81   setBooleanContents(ZeroOrOneBooleanContent);
82   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
83   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
84
85   // For 64-bit, since we have so many registers, use the ILP scheduler.
86   // For 32-bit, use the register pressure specific scheduling.
87   // For Atom, always use ILP scheduling.
88   if (Subtarget->isAtom())
89     setSchedulingPreference(Sched::ILP);
90   else if (Subtarget->is64Bit())
91     setSchedulingPreference(Sched::ILP);
92   else
93     setSchedulingPreference(Sched::RegPressure);
94   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
95   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
96
97   // Bypass expensive divides on Atom when compiling with O2.
98   if (TM.getOptLevel() >= CodeGenOpt::Default) {
99     if (Subtarget->hasSlowDivide32())
100       addBypassSlowDiv(32, 8);
101     if (Subtarget->hasSlowDivide64() && Subtarget->is64Bit())
102       addBypassSlowDiv(64, 16);
103   }
104
105   if (Subtarget->isTargetKnownWindowsMSVC()) {
106     // Setup Windows compiler runtime calls.
107     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
108     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
109     setLibcallName(RTLIB::SREM_I64, "_allrem");
110     setLibcallName(RTLIB::UREM_I64, "_aullrem");
111     setLibcallName(RTLIB::MUL_I64, "_allmul");
112     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
113     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
114     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
115     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
116     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
117   }
118
119   if (Subtarget->isTargetDarwin()) {
120     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
121     setUseUnderscoreSetJmp(false);
122     setUseUnderscoreLongJmp(false);
123   } else if (Subtarget->isTargetWindowsGNU()) {
124     // MS runtime is weird: it exports _setjmp, but longjmp!
125     setUseUnderscoreSetJmp(true);
126     setUseUnderscoreLongJmp(false);
127   } else {
128     setUseUnderscoreSetJmp(true);
129     setUseUnderscoreLongJmp(true);
130   }
131
132   // Set up the register classes.
133   addRegisterClass(MVT::i8, &X86::GR8RegClass);
134   addRegisterClass(MVT::i16, &X86::GR16RegClass);
135   addRegisterClass(MVT::i32, &X86::GR32RegClass);
136   if (Subtarget->is64Bit())
137     addRegisterClass(MVT::i64, &X86::GR64RegClass);
138
139   for (MVT VT : MVT::integer_valuetypes())
140     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
141
142   // We don't accept any truncstore of integer registers.
143   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
144   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
145   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
146   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
147   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
148   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
149
150   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
151
152   // SETOEQ and SETUNE require checking two conditions.
153   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
154   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
155   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
156   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
157   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
158   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
159
160   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
161   // operation.
162   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
163   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
164   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
165
166   if (Subtarget->is64Bit()) {
167     if (!Subtarget->useSoftFloat() && Subtarget->hasAVX512())
168       // f32/f64 are legal, f80 is custom.
169       setOperationAction(ISD::UINT_TO_FP   , MVT::i32  , Custom);
170     else
171       setOperationAction(ISD::UINT_TO_FP   , MVT::i32  , Promote);
172     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
173   } else if (!Subtarget->useSoftFloat()) {
174     // We have an algorithm for SSE2->double, and we turn this into a
175     // 64-bit FILD followed by conditional FADD for other targets.
176     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
177     // We have an algorithm for SSE2, and we turn this into a 64-bit
178     // FILD or VCVTUSI2SS/SD for other targets.
179     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
180   }
181
182   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
183   // this operation.
184   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
185   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
186
187   if (!Subtarget->useSoftFloat()) {
188     // SSE has no i16 to fp conversion, only i32
189     if (X86ScalarSSEf32) {
190       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
191       // f32 and f64 cases are Legal, f80 case is not
192       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
193     } else {
194       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
195       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
196     }
197   } else {
198     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
199     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
200   }
201
202   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
203   // are Legal, f80 is custom lowered.
204   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
205   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
206
207   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
208   // this operation.
209   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
210   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
211
212   if (X86ScalarSSEf32) {
213     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
214     // f32 and f64 cases are Legal, f80 case is not
215     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
216   } else {
217     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
218     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
219   }
220
221   // Handle FP_TO_UINT by promoting the destination to a larger signed
222   // conversion.
223   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
224   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
225   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
226
227   if (Subtarget->is64Bit()) {
228     if (!Subtarget->useSoftFloat() && Subtarget->hasAVX512()) {
229       // FP_TO_UINT-i32/i64 is legal for f32/f64, but custom for f80.
230       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
231       setOperationAction(ISD::FP_TO_UINT   , MVT::i64  , Custom);
232     } else {
233       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Promote);
234       setOperationAction(ISD::FP_TO_UINT   , MVT::i64  , Expand);
235     }
236   } else if (!Subtarget->useSoftFloat()) {
237     // Since AVX is a superset of SSE3, only check for SSE here.
238     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
239       // Expand FP_TO_UINT into a select.
240       // FIXME: We would like to use a Custom expander here eventually to do
241       // the optimal thing for SSE vs. the default expansion in the legalizer.
242       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
243     else
244       // With AVX512 we can use vcvts[ds]2usi for f32/f64->i32, f80 is custom.
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     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
250   }
251
252   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
253   if (!X86ScalarSSEf64) {
254     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
255     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
256     if (Subtarget->is64Bit()) {
257       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
258       // Without SSE, i64->f64 goes through memory.
259       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
260     }
261   }
262
263   // Scalar integer divide and remainder are lowered to use operations that
264   // produce two results, to match the available instructions. This exposes
265   // the two-result form to trivial CSE, which is able to combine x/y and x%y
266   // into a single instruction.
267   //
268   // Scalar integer multiply-high is also lowered to use two-result
269   // operations, to match the available instructions. However, plain multiply
270   // (low) operations are left as Legal, as there are single-result
271   // instructions for this in x86. Using the two-result multiply instructions
272   // when both high and low results are needed must be arranged by dagcombine.
273   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
274     MVT VT = IntVTs[i];
275     setOperationAction(ISD::MULHS, VT, Expand);
276     setOperationAction(ISD::MULHU, VT, Expand);
277     setOperationAction(ISD::SDIV, VT, Expand);
278     setOperationAction(ISD::UDIV, VT, Expand);
279     setOperationAction(ISD::SREM, VT, Expand);
280     setOperationAction(ISD::UREM, VT, Expand);
281
282     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
283     setOperationAction(ISD::ADDC, VT, Custom);
284     setOperationAction(ISD::ADDE, VT, Custom);
285     setOperationAction(ISD::SUBC, VT, Custom);
286     setOperationAction(ISD::SUBE, VT, Custom);
287   }
288
289   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
290   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
291   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
292   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
293   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
294   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
295   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
296   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
297   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
298   setOperationAction(ISD::SELECT_CC        , MVT::f32,   Expand);
299   setOperationAction(ISD::SELECT_CC        , MVT::f64,   Expand);
300   setOperationAction(ISD::SELECT_CC        , MVT::f80,   Expand);
301   setOperationAction(ISD::SELECT_CC        , MVT::i8,    Expand);
302   setOperationAction(ISD::SELECT_CC        , MVT::i16,   Expand);
303   setOperationAction(ISD::SELECT_CC        , MVT::i32,   Expand);
304   setOperationAction(ISD::SELECT_CC        , MVT::i64,   Expand);
305   if (Subtarget->is64Bit())
306     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
307   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
308   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
309   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
310   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
311
312   if (Subtarget->is32Bit() && Subtarget->isTargetKnownWindowsMSVC()) {
313     // On 32 bit MSVC, `fmodf(f32)` is not defined - only `fmod(f64)`
314     // is. We should promote the value to 64-bits to solve this.
315     // This is what the CRT headers do - `fmodf` is an inline header
316     // function casting to f64 and calling `fmod`.
317     setOperationAction(ISD::FREM           , MVT::f32  , Promote);
318   } else {
319     setOperationAction(ISD::FREM           , MVT::f32  , Expand);
320   }
321
322   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
323   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
324   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
325
326   // Promote the i8 variants and force them on up to i32 which has a shorter
327   // encoding.
328   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
329   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
330   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
331   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
332   if (Subtarget->hasBMI()) {
333     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
334     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
335     if (Subtarget->is64Bit())
336       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
337   } else {
338     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
339     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
340     if (Subtarget->is64Bit())
341       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
342   }
343
344   if (Subtarget->hasLZCNT()) {
345     // When promoting the i8 variants, force them to i32 for a shorter
346     // encoding.
347     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
348     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
349     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
350     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
351     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
352     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
353     if (Subtarget->is64Bit())
354       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
355   } else {
356     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
357     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
358     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
359     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
360     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
361     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
362     if (Subtarget->is64Bit()) {
363       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
364       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
365     }
366   }
367
368   // Special handling for half-precision floating point conversions.
369   // If we don't have F16C support, then lower half float conversions
370   // into library calls.
371   if (Subtarget->useSoftFloat() || !Subtarget->hasF16C()) {
372     setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
373     setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
374   }
375
376   // There's never any support for operations beyond MVT::f32.
377   setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
378   setOperationAction(ISD::FP16_TO_FP, MVT::f80, Expand);
379   setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
380   setOperationAction(ISD::FP_TO_FP16, MVT::f80, Expand);
381
382   setLoadExtAction(ISD::EXTLOAD, MVT::f32, MVT::f16, Expand);
383   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f16, Expand);
384   setLoadExtAction(ISD::EXTLOAD, MVT::f80, MVT::f16, Expand);
385   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
386   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
387   setTruncStoreAction(MVT::f80, MVT::f16, Expand);
388
389   if (Subtarget->hasPOPCNT()) {
390     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
391   } else {
392     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
393     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
394     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
395     if (Subtarget->is64Bit())
396       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
397   }
398
399   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
400
401   if (!Subtarget->hasMOVBE())
402     setOperationAction(ISD::BSWAP          , MVT::i16  , Expand);
403
404   // These should be promoted to a larger select which is supported.
405   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
406   // X86 wants to expand cmov itself.
407   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
408   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
409   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
410   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
411   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
412   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
413   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
414   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
415   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
416   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
417   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
418   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
419   if (Subtarget->is64Bit()) {
420     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
421     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
422   }
423   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
424   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
425   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
426   // support continuation, user-level threading, and etc.. As a result, no
427   // other SjLj exception interfaces are implemented and please don't build
428   // your own exception handling based on them.
429   // LLVM/Clang supports zero-cost DWARF exception handling.
430   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
431   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
432
433   // Darwin ABI issue.
434   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
435   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
436   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
437   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
438   if (Subtarget->is64Bit())
439     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
440   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
441   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
442   if (Subtarget->is64Bit()) {
443     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
444     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
445     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
446     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
447     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
448   }
449   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
450   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
451   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
452   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
453   if (Subtarget->is64Bit()) {
454     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
455     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
456     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
457   }
458
459   if (Subtarget->hasSSE1())
460     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
461
462   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
463
464   // Expand certain atomics
465   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
466     MVT VT = IntVTs[i];
467     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Custom);
468     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
469     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
470   }
471
472   if (Subtarget->hasCmpxchg16b()) {
473     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i128, Custom);
474   }
475
476   // FIXME - use subtarget debug flags
477   if (!Subtarget->isTargetDarwin() && !Subtarget->isTargetELF() &&
478       !Subtarget->isTargetCygMing() && !Subtarget->isTargetWin64()) {
479     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
480   }
481
482   if (Subtarget->isTarget64BitLP64()) {
483     setExceptionPointerRegister(X86::RAX);
484     setExceptionSelectorRegister(X86::RDX);
485   } else {
486     setExceptionPointerRegister(X86::EAX);
487     setExceptionSelectorRegister(X86::EDX);
488   }
489   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
490   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
491
492   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
493   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
494
495   setOperationAction(ISD::TRAP, MVT::Other, Legal);
496   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
497
498   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
499   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
500   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
501   if (Subtarget->is64Bit()) {
502     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
503     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
504   } else {
505     // TargetInfo::CharPtrBuiltinVaList
506     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
507     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
508   }
509
510   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
511   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
512
513   setOperationAction(ISD::DYNAMIC_STACKALLOC, PtrVT, Custom);
514
515   // GC_TRANSITION_START and GC_TRANSITION_END need custom lowering.
516   setOperationAction(ISD::GC_TRANSITION_START, MVT::Other, Custom);
517   setOperationAction(ISD::GC_TRANSITION_END, MVT::Other, Custom);
518
519   if (!Subtarget->useSoftFloat() && X86ScalarSSEf64) {
520     // f32 and f64 use SSE.
521     // Set up the FP register classes.
522     addRegisterClass(MVT::f32, &X86::FR32RegClass);
523     addRegisterClass(MVT::f64, &X86::FR64RegClass);
524
525     // Use ANDPD to simulate FABS.
526     setOperationAction(ISD::FABS , MVT::f64, Custom);
527     setOperationAction(ISD::FABS , MVT::f32, Custom);
528
529     // Use XORP to simulate FNEG.
530     setOperationAction(ISD::FNEG , MVT::f64, Custom);
531     setOperationAction(ISD::FNEG , MVT::f32, Custom);
532
533     // Use ANDPD and ORPD to simulate FCOPYSIGN.
534     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
535     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
536
537     // Lower this to FGETSIGNx86 plus an AND.
538     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
539     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
540
541     // We don't support sin/cos/fmod
542     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
543     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
544     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
545     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
546     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
547     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
548
549     // Expand FP immediates into loads from the stack, except for the special
550     // cases we handle.
551     addLegalFPImmediate(APFloat(+0.0)); // xorpd
552     addLegalFPImmediate(APFloat(+0.0f)); // xorps
553   } else if (!Subtarget->useSoftFloat() && X86ScalarSSEf32) {
554     // Use SSE for f32, x87 for f64.
555     // Set up the FP register classes.
556     addRegisterClass(MVT::f32, &X86::FR32RegClass);
557     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
558
559     // Use ANDPS to simulate FABS.
560     setOperationAction(ISD::FABS , MVT::f32, Custom);
561
562     // Use XORP to simulate FNEG.
563     setOperationAction(ISD::FNEG , MVT::f32, Custom);
564
565     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
566
567     // Use ANDPS and ORPS to simulate FCOPYSIGN.
568     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
569     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
570
571     // We don't support sin/cos/fmod
572     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
573     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
574     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
575
576     // Special cases we handle for FP constants.
577     addLegalFPImmediate(APFloat(+0.0f)); // xorps
578     addLegalFPImmediate(APFloat(+0.0)); // FLD0
579     addLegalFPImmediate(APFloat(+1.0)); // FLD1
580     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
581     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
582
583     if (!TM.Options.UnsafeFPMath) {
584       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
585       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
586       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
587     }
588   } else if (!Subtarget->useSoftFloat()) {
589     // f32 and f64 in x87.
590     // Set up the FP register classes.
591     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
592     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
593
594     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
595     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
596     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
597     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
598
599     if (!TM.Options.UnsafeFPMath) {
600       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
601       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
602       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
603       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
604       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
605       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
606     }
607     addLegalFPImmediate(APFloat(+0.0)); // FLD0
608     addLegalFPImmediate(APFloat(+1.0)); // FLD1
609     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
610     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
611     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
612     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
613     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
614     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
615   }
616
617   // We don't support FMA.
618   setOperationAction(ISD::FMA, MVT::f64, Expand);
619   setOperationAction(ISD::FMA, MVT::f32, Expand);
620
621   // Long double always uses X87.
622   if (!Subtarget->useSoftFloat()) {
623     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
624     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
625     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
626     {
627       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
628       addLegalFPImmediate(TmpFlt);  // FLD0
629       TmpFlt.changeSign();
630       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
631
632       bool ignored;
633       APFloat TmpFlt2(+1.0);
634       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
635                       &ignored);
636       addLegalFPImmediate(TmpFlt2);  // FLD1
637       TmpFlt2.changeSign();
638       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
639     }
640
641     if (!TM.Options.UnsafeFPMath) {
642       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
643       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
644       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
645     }
646
647     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
648     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
649     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
650     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
651     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
652     setOperationAction(ISD::FMA, MVT::f80, Expand);
653   }
654
655   // Always use a library call for pow.
656   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
657   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
658   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
659
660   setOperationAction(ISD::FLOG, MVT::f80, Expand);
661   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
662   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
663   setOperationAction(ISD::FEXP, MVT::f80, Expand);
664   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
665   setOperationAction(ISD::FMINNUM, MVT::f80, Expand);
666   setOperationAction(ISD::FMAXNUM, MVT::f80, Expand);
667
668   // First set operation action for all vector types to either promote
669   // (for widening) or expand (for scalarization). Then we will selectively
670   // turn on ones that can be effectively codegen'd.
671   for (MVT VT : MVT::vector_valuetypes()) {
672     setOperationAction(ISD::ADD , VT, Expand);
673     setOperationAction(ISD::SUB , VT, Expand);
674     setOperationAction(ISD::FADD, VT, Expand);
675     setOperationAction(ISD::FNEG, VT, Expand);
676     setOperationAction(ISD::FSUB, VT, Expand);
677     setOperationAction(ISD::MUL , VT, Expand);
678     setOperationAction(ISD::FMUL, VT, Expand);
679     setOperationAction(ISD::SDIV, VT, Expand);
680     setOperationAction(ISD::UDIV, VT, Expand);
681     setOperationAction(ISD::FDIV, VT, Expand);
682     setOperationAction(ISD::SREM, VT, Expand);
683     setOperationAction(ISD::UREM, VT, Expand);
684     setOperationAction(ISD::LOAD, VT, Expand);
685     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
686     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
687     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
688     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
689     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
690     setOperationAction(ISD::FABS, VT, Expand);
691     setOperationAction(ISD::FSIN, VT, Expand);
692     setOperationAction(ISD::FSINCOS, VT, Expand);
693     setOperationAction(ISD::FCOS, VT, Expand);
694     setOperationAction(ISD::FSINCOS, VT, Expand);
695     setOperationAction(ISD::FREM, VT, Expand);
696     setOperationAction(ISD::FMA,  VT, Expand);
697     setOperationAction(ISD::FPOWI, VT, Expand);
698     setOperationAction(ISD::FSQRT, VT, Expand);
699     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
700     setOperationAction(ISD::FFLOOR, VT, Expand);
701     setOperationAction(ISD::FCEIL, VT, Expand);
702     setOperationAction(ISD::FTRUNC, VT, Expand);
703     setOperationAction(ISD::FRINT, VT, Expand);
704     setOperationAction(ISD::FNEARBYINT, VT, Expand);
705     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
706     setOperationAction(ISD::MULHS, VT, Expand);
707     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
708     setOperationAction(ISD::MULHU, VT, Expand);
709     setOperationAction(ISD::SDIVREM, VT, Expand);
710     setOperationAction(ISD::UDIVREM, VT, Expand);
711     setOperationAction(ISD::FPOW, VT, Expand);
712     setOperationAction(ISD::CTPOP, VT, Expand);
713     setOperationAction(ISD::CTTZ, VT, Expand);
714     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
715     setOperationAction(ISD::CTLZ, VT, Expand);
716     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
717     setOperationAction(ISD::SHL, VT, Expand);
718     setOperationAction(ISD::SRA, VT, Expand);
719     setOperationAction(ISD::SRL, VT, Expand);
720     setOperationAction(ISD::ROTL, VT, Expand);
721     setOperationAction(ISD::ROTR, VT, Expand);
722     setOperationAction(ISD::BSWAP, VT, Expand);
723     setOperationAction(ISD::SETCC, VT, Expand);
724     setOperationAction(ISD::FLOG, VT, Expand);
725     setOperationAction(ISD::FLOG2, VT, Expand);
726     setOperationAction(ISD::FLOG10, VT, Expand);
727     setOperationAction(ISD::FEXP, VT, Expand);
728     setOperationAction(ISD::FEXP2, VT, Expand);
729     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
730     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
731     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
732     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
733     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
734     setOperationAction(ISD::TRUNCATE, VT, Expand);
735     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
736     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
737     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
738     setOperationAction(ISD::VSELECT, VT, Expand);
739     setOperationAction(ISD::SELECT_CC, VT, Expand);
740     for (MVT InnerVT : MVT::vector_valuetypes()) {
741       setTruncStoreAction(InnerVT, VT, Expand);
742
743       setLoadExtAction(ISD::SEXTLOAD, InnerVT, VT, Expand);
744       setLoadExtAction(ISD::ZEXTLOAD, InnerVT, VT, Expand);
745
746       // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like
747       // types, we have to deal with them whether we ask for Expansion or not.
748       // Setting Expand causes its own optimisation problems though, so leave
749       // them legal.
750       if (VT.getVectorElementType() == MVT::i1)
751         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
752
753       // EXTLOAD for MVT::f16 vectors is not legal because f16 vectors are
754       // split/scalarized right now.
755       if (VT.getVectorElementType() == MVT::f16)
756         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
757     }
758   }
759
760   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
761   // with -msoft-float, disable use of MMX as well.
762   if (!Subtarget->useSoftFloat() && Subtarget->hasMMX()) {
763     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
764     // No operations on x86mmx supported, everything uses intrinsics.
765   }
766
767   // MMX-sized vectors (other than x86mmx) are expected to be expanded
768   // into smaller operations.
769   for (MVT MMXTy : {MVT::v8i8, MVT::v4i16, MVT::v2i32, MVT::v1i64}) {
770     setOperationAction(ISD::MULHS,              MMXTy,      Expand);
771     setOperationAction(ISD::AND,                MMXTy,      Expand);
772     setOperationAction(ISD::OR,                 MMXTy,      Expand);
773     setOperationAction(ISD::XOR,                MMXTy,      Expand);
774     setOperationAction(ISD::SCALAR_TO_VECTOR,   MMXTy,      Expand);
775     setOperationAction(ISD::SELECT,             MMXTy,      Expand);
776     setOperationAction(ISD::BITCAST,            MMXTy,      Expand);
777   }
778   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
779
780   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE1()) {
781     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
782
783     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
784     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
785     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
786     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
787     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
788     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
789     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
790     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
791     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
792     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
793     setOperationAction(ISD::VSELECT,            MVT::v4f32, Custom);
794     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
795     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
796     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Custom);
797   }
798
799   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE2()) {
800     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
801
802     // FIXME: Unfortunately, -soft-float and -no-implicit-float mean XMM
803     // registers cannot be used even for integer operations.
804     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
805     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
806     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
807     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
808
809     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
810     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
811     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
812     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
813     setOperationAction(ISD::MUL,                MVT::v16i8, Custom);
814     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
815     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
816     setOperationAction(ISD::UMUL_LOHI,          MVT::v4i32, Custom);
817     setOperationAction(ISD::SMUL_LOHI,          MVT::v4i32, Custom);
818     setOperationAction(ISD::MULHU,              MVT::v8i16, Legal);
819     setOperationAction(ISD::MULHS,              MVT::v8i16, Legal);
820     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
821     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
822     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
823     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
824     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
825     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
826     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
827     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
828     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
829     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
830     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
831     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
832
833     setOperationAction(ISD::SMAX,               MVT::v8i16, Legal);
834     setOperationAction(ISD::UMAX,               MVT::v16i8, Legal);
835     setOperationAction(ISD::SMIN,               MVT::v8i16, Legal);
836     setOperationAction(ISD::UMIN,               MVT::v16i8, Legal);
837
838     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
839     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
840     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
841     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
842
843     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
844     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
845     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
846     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
847     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
848
849     setOperationAction(ISD::CTPOP,              MVT::v16i8, Custom);
850     setOperationAction(ISD::CTPOP,              MVT::v8i16, Custom);
851     setOperationAction(ISD::CTPOP,              MVT::v4i32, Custom);
852     setOperationAction(ISD::CTPOP,              MVT::v2i64, Custom);
853
854     setOperationAction(ISD::CTTZ,               MVT::v16i8, Custom);
855     setOperationAction(ISD::CTTZ,               MVT::v8i16, Custom);
856     setOperationAction(ISD::CTTZ,               MVT::v4i32, Custom);
857     // ISD::CTTZ v2i64 - scalarization is faster.
858     setOperationAction(ISD::CTTZ_ZERO_UNDEF,    MVT::v16i8, Custom);
859     setOperationAction(ISD::CTTZ_ZERO_UNDEF,    MVT::v8i16, Custom);
860     setOperationAction(ISD::CTTZ_ZERO_UNDEF,    MVT::v4i32, Custom);
861     // ISD::CTTZ_ZERO_UNDEF v2i64 - scalarization is faster.
862
863     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
864     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
865       MVT VT = (MVT::SimpleValueType)i;
866       // Do not attempt to custom lower non-power-of-2 vectors
867       if (!isPowerOf2_32(VT.getVectorNumElements()))
868         continue;
869       // Do not attempt to custom lower non-128-bit vectors
870       if (!VT.is128BitVector())
871         continue;
872       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
873       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
874       setOperationAction(ISD::VSELECT,            VT, Custom);
875       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
876     }
877
878     // We support custom legalizing of sext and anyext loads for specific
879     // memory vector types which we can load as a scalar (or sequence of
880     // scalars) and extend in-register to a legal 128-bit vector type. For sext
881     // loads these must work with a single scalar load.
882     for (MVT VT : MVT::integer_vector_valuetypes()) {
883       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i8, Custom);
884       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i16, Custom);
885       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v8i8, Custom);
886       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i8, Custom);
887       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i16, Custom);
888       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i32, Custom);
889       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i8, Custom);
890       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i16, Custom);
891       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v8i8, Custom);
892     }
893
894     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
895     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
896     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
897     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
898     setOperationAction(ISD::VSELECT,            MVT::v2f64, Custom);
899     setOperationAction(ISD::VSELECT,            MVT::v2i64, Custom);
900     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
901     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
902
903     if (Subtarget->is64Bit()) {
904       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
905       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
906     }
907
908     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
909     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
910       MVT VT = (MVT::SimpleValueType)i;
911
912       // Do not attempt to promote non-128-bit vectors
913       if (!VT.is128BitVector())
914         continue;
915
916       setOperationAction(ISD::AND,    VT, Promote);
917       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
918       setOperationAction(ISD::OR,     VT, Promote);
919       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
920       setOperationAction(ISD::XOR,    VT, Promote);
921       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
922       setOperationAction(ISD::LOAD,   VT, Promote);
923       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
924       setOperationAction(ISD::SELECT, VT, Promote);
925       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
926     }
927
928     // Custom lower v2i64 and v2f64 selects.
929     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
930     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
931     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
932     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
933
934     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
935     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
936
937     setOperationAction(ISD::SINT_TO_FP,         MVT::v2i32, Custom);
938
939     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
940     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
941     // As there is no 64-bit GPR available, we need build a special custom
942     // sequence to convert from v2i32 to v2f32.
943     if (!Subtarget->is64Bit())
944       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
945
946     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
947     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
948
949     for (MVT VT : MVT::fp_vector_valuetypes())
950       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2f32, Legal);
951
952     setOperationAction(ISD::BITCAST,            MVT::v2i32, Custom);
953     setOperationAction(ISD::BITCAST,            MVT::v4i16, Custom);
954     setOperationAction(ISD::BITCAST,            MVT::v8i8,  Custom);
955   }
956
957   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE41()) {
958     for (MVT RoundedTy : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
959       setOperationAction(ISD::FFLOOR,           RoundedTy,  Legal);
960       setOperationAction(ISD::FCEIL,            RoundedTy,  Legal);
961       setOperationAction(ISD::FTRUNC,           RoundedTy,  Legal);
962       setOperationAction(ISD::FRINT,            RoundedTy,  Legal);
963       setOperationAction(ISD::FNEARBYINT,       RoundedTy,  Legal);
964     }
965
966     setOperationAction(ISD::SMAX,               MVT::v16i8, Legal);
967     setOperationAction(ISD::SMAX,               MVT::v4i32, Legal);
968     setOperationAction(ISD::UMAX,               MVT::v8i16, Legal);
969     setOperationAction(ISD::UMAX,               MVT::v4i32, Legal);
970     setOperationAction(ISD::SMIN,               MVT::v16i8, Legal);
971     setOperationAction(ISD::SMIN,               MVT::v4i32, Legal);
972     setOperationAction(ISD::UMIN,               MVT::v8i16, Legal);
973     setOperationAction(ISD::UMIN,               MVT::v4i32, Legal);
974
975     // FIXME: Do we need to handle scalar-to-vector here?
976     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
977
978     // We directly match byte blends in the backend as they match the VSELECT
979     // condition form.
980     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
981
982     // SSE41 brings specific instructions for doing vector sign extend even in
983     // cases where we don't have SRA.
984     for (MVT VT : MVT::integer_vector_valuetypes()) {
985       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i8, Custom);
986       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i16, Custom);
987       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i32, Custom);
988     }
989
990     // SSE41 also has vector sign/zero extending loads, PMOV[SZ]X
991     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i16, MVT::v8i8,  Legal);
992     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i8,  Legal);
993     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i8,  Legal);
994     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i16, Legal);
995     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i16, Legal);
996     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i32, Legal);
997
998     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i16, MVT::v8i8,  Legal);
999     setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i8,  Legal);
1000     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i8,  Legal);
1001     setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i16, Legal);
1002     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i16, Legal);
1003     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i32, Legal);
1004
1005     // i8 and i16 vectors are custom because the source register and source
1006     // source memory operand types are not the same width.  f32 vectors are
1007     // custom since the immediate controlling the insert encodes additional
1008     // information.
1009     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1010     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1011     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1012     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1013
1014     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1015     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1016     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1017     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1018
1019     // FIXME: these should be Legal, but that's only for the case where
1020     // the index is constant.  For now custom expand to deal with that.
1021     if (Subtarget->is64Bit()) {
1022       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1023       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1024     }
1025   }
1026
1027   if (Subtarget->hasSSE2()) {
1028     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v2i64, Custom);
1029     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v4i32, Custom);
1030     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v8i16, Custom);
1031
1032     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1033     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1034
1035     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1036     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1037
1038     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1039     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1040
1041     // In the customized shift lowering, the legal cases in AVX2 will be
1042     // recognized.
1043     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1044     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1045
1046     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1047     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1048
1049     setOperationAction(ISD::SRA,               MVT::v2i64, Custom);
1050     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1051   }
1052
1053   if (!Subtarget->useSoftFloat() && Subtarget->hasFp256()) {
1054     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1055     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1056     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1057     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1058     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1059     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1060
1061     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1062     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1063     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1064
1065     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1066     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1067     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1068     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1069     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1070     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1071     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1072     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1073     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1074     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1075     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1076     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1077
1078     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1079     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1080     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1081     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1082     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1083     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1084     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1085     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1086     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1087     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1088     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1089     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1090
1091     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1092     // even though v8i16 is a legal type.
1093     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1094     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1095     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1096
1097     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1098     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1099     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1100
1101     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1102     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1103
1104     for (MVT VT : MVT::fp_vector_valuetypes())
1105       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4f32, Legal);
1106
1107     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1108     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1109
1110     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1111     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1112
1113     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1114     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1115
1116     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1117     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1118     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1119     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1120
1121     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1122     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1123     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1124
1125     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1126     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1127     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1128     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1129     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1130     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1131     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1132     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1133     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1134     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1135     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1136     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1137
1138     setOperationAction(ISD::CTPOP,             MVT::v32i8, Custom);
1139     setOperationAction(ISD::CTPOP,             MVT::v16i16, Custom);
1140     setOperationAction(ISD::CTPOP,             MVT::v8i32, Custom);
1141     setOperationAction(ISD::CTPOP,             MVT::v4i64, Custom);
1142
1143     setOperationAction(ISD::CTTZ,              MVT::v32i8, Custom);
1144     setOperationAction(ISD::CTTZ,              MVT::v16i16, Custom);
1145     setOperationAction(ISD::CTTZ,              MVT::v8i32, Custom);
1146     setOperationAction(ISD::CTTZ,              MVT::v4i64, Custom);
1147     setOperationAction(ISD::CTTZ_ZERO_UNDEF,   MVT::v32i8, Custom);
1148     setOperationAction(ISD::CTTZ_ZERO_UNDEF,   MVT::v16i16, Custom);
1149     setOperationAction(ISD::CTTZ_ZERO_UNDEF,   MVT::v8i32, Custom);
1150     setOperationAction(ISD::CTTZ_ZERO_UNDEF,   MVT::v4i64, Custom);
1151
1152     if (Subtarget->hasFMA() || Subtarget->hasFMA4() || Subtarget->hasAVX512()) {
1153       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1154       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1155       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1156       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1157       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1158       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1159     }
1160
1161     if (Subtarget->hasInt256()) {
1162       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1163       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1164       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1165       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1166
1167       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1168       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1169       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1170       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1171
1172       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1173       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1174       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1175       setOperationAction(ISD::MUL,             MVT::v32i8, Custom);
1176
1177       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1178       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1179       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1180       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1181
1182       setOperationAction(ISD::SMAX,            MVT::v32i8,  Legal);
1183       setOperationAction(ISD::SMAX,            MVT::v16i16, Legal);
1184       setOperationAction(ISD::SMAX,            MVT::v8i32,  Legal);
1185       setOperationAction(ISD::UMAX,            MVT::v32i8,  Legal);
1186       setOperationAction(ISD::UMAX,            MVT::v16i16, Legal);
1187       setOperationAction(ISD::UMAX,            MVT::v8i32,  Legal);
1188       setOperationAction(ISD::SMIN,            MVT::v32i8,  Legal);
1189       setOperationAction(ISD::SMIN,            MVT::v16i16, Legal);
1190       setOperationAction(ISD::SMIN,            MVT::v8i32,  Legal);
1191       setOperationAction(ISD::UMIN,            MVT::v32i8,  Legal);
1192       setOperationAction(ISD::UMIN,            MVT::v16i16, Legal);
1193       setOperationAction(ISD::UMIN,            MVT::v8i32,  Legal);
1194
1195       // The custom lowering for UINT_TO_FP for v8i32 becomes interesting
1196       // when we have a 256bit-wide blend with immediate.
1197       setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Custom);
1198
1199       // AVX2 also has wider vector sign/zero extending loads, VPMOV[SZ]X
1200       setLoadExtAction(ISD::SEXTLOAD, MVT::v16i16, MVT::v16i8, Legal);
1201       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i32,  MVT::v8i8,  Legal);
1202       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i8,  Legal);
1203       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i32,  MVT::v8i16, Legal);
1204       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i16, Legal);
1205       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i32, Legal);
1206
1207       setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i16, MVT::v16i8, Legal);
1208       setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i32,  MVT::v8i8,  Legal);
1209       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i8,  Legal);
1210       setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i32,  MVT::v8i16, Legal);
1211       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i16, Legal);
1212       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i32, Legal);
1213     } else {
1214       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1215       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1216       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1217       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1218
1219       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1220       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1221       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1222       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1223
1224       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1225       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1226       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1227       setOperationAction(ISD::MUL,             MVT::v32i8, Custom);
1228
1229       setOperationAction(ISD::SMAX,            MVT::v32i8,  Custom);
1230       setOperationAction(ISD::SMAX,            MVT::v16i16, Custom);
1231       setOperationAction(ISD::SMAX,            MVT::v8i32,  Custom);
1232       setOperationAction(ISD::UMAX,            MVT::v32i8,  Custom);
1233       setOperationAction(ISD::UMAX,            MVT::v16i16, Custom);
1234       setOperationAction(ISD::UMAX,            MVT::v8i32,  Custom);
1235       setOperationAction(ISD::SMIN,            MVT::v32i8,  Custom);
1236       setOperationAction(ISD::SMIN,            MVT::v16i16, Custom);
1237       setOperationAction(ISD::SMIN,            MVT::v8i32,  Custom);
1238       setOperationAction(ISD::UMIN,            MVT::v32i8,  Custom);
1239       setOperationAction(ISD::UMIN,            MVT::v16i16, Custom);
1240       setOperationAction(ISD::UMIN,            MVT::v8i32,  Custom);
1241     }
1242
1243     // In the customized shift lowering, the legal cases in AVX2 will be
1244     // recognized.
1245     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1246     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1247
1248     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1249     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1250
1251     setOperationAction(ISD::SRA,               MVT::v4i64, Custom);
1252     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1253
1254     // Custom lower several nodes for 256-bit types.
1255     for (MVT VT : MVT::vector_valuetypes()) {
1256       if (VT.getScalarSizeInBits() >= 32) {
1257         setOperationAction(ISD::MLOAD,  VT, Legal);
1258         setOperationAction(ISD::MSTORE, VT, Legal);
1259       }
1260       // Extract subvector is special because the value type
1261       // (result) is 128-bit but the source is 256-bit wide.
1262       if (VT.is128BitVector()) {
1263         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1264       }
1265       // Do not attempt to custom lower other non-256-bit vectors
1266       if (!VT.is256BitVector())
1267         continue;
1268
1269       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1270       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1271       setOperationAction(ISD::VSELECT,            VT, Custom);
1272       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1273       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1275       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1276       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1277     }
1278
1279     if (Subtarget->hasInt256())
1280       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1281
1282     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1283     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1284       MVT VT = (MVT::SimpleValueType)i;
1285
1286       // Do not attempt to promote non-256-bit vectors
1287       if (!VT.is256BitVector())
1288         continue;
1289
1290       setOperationAction(ISD::AND,    VT, Promote);
1291       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1292       setOperationAction(ISD::OR,     VT, Promote);
1293       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1294       setOperationAction(ISD::XOR,    VT, Promote);
1295       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1296       setOperationAction(ISD::LOAD,   VT, Promote);
1297       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1298       setOperationAction(ISD::SELECT, VT, Promote);
1299       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1300     }
1301   }
1302
1303   if (!Subtarget->useSoftFloat() && Subtarget->hasAVX512()) {
1304     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1305     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1306     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1307     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1308
1309     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1310     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1311     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1312
1313     for (MVT VT : MVT::fp_vector_valuetypes())
1314       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v8f32, Legal);
1315
1316     setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i32, MVT::v16i8, Legal);
1317     setLoadExtAction(ISD::SEXTLOAD, MVT::v16i32, MVT::v16i8, Legal);
1318     setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i32, MVT::v16i16, Legal);
1319     setLoadExtAction(ISD::SEXTLOAD, MVT::v16i32, MVT::v16i16, Legal);
1320     setLoadExtAction(ISD::ZEXTLOAD, MVT::v32i16, MVT::v32i8, Legal);
1321     setLoadExtAction(ISD::SEXTLOAD, MVT::v32i16, MVT::v32i8, Legal);
1322     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i8,  Legal);
1323     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i8,  Legal);
1324     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i16,  Legal);
1325     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i16,  Legal);
1326     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i32,  Legal);
1327     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i32,  Legal);
1328
1329     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1330     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1331     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1332     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1333     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1334     setOperationAction(ISD::SUB,                MVT::i1,    Custom);
1335     setOperationAction(ISD::ADD,                MVT::i1,    Custom);
1336     setOperationAction(ISD::MUL,                MVT::i1,    Custom);
1337     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1338     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1339     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1340     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1341     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1342
1343     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1344     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1345     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1346     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1347     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1348     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1349
1350     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1351     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1352     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1353     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1354     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1355     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1356     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1357     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1358
1359     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1360     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1361     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1362     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1363     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1364     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i1,   Custom);
1365     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i1,  Custom);
1366     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i8,  Promote);
1367     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i16, Promote);
1368     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1369     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1370     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1371     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i8, Custom);
1372     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i16, Custom);
1373     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1374     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1375
1376     setTruncStoreAction(MVT::v8i64,   MVT::v8i8,   Legal);
1377     setTruncStoreAction(MVT::v8i64,   MVT::v8i16,  Legal);
1378     setTruncStoreAction(MVT::v8i64,   MVT::v8i32,  Legal);
1379     setTruncStoreAction(MVT::v16i32,  MVT::v16i8,  Legal);
1380     setTruncStoreAction(MVT::v16i32,  MVT::v16i16, Legal);
1381     if (Subtarget->hasVLX()){
1382       setTruncStoreAction(MVT::v4i64, MVT::v4i8,  Legal);
1383       setTruncStoreAction(MVT::v4i64, MVT::v4i16, Legal);
1384       setTruncStoreAction(MVT::v4i64, MVT::v4i32, Legal);
1385       setTruncStoreAction(MVT::v8i32, MVT::v8i8,  Legal);
1386       setTruncStoreAction(MVT::v8i32, MVT::v8i16, Legal);
1387
1388       setTruncStoreAction(MVT::v2i64, MVT::v2i8,  Legal);
1389       setTruncStoreAction(MVT::v2i64, MVT::v2i16, Legal);
1390       setTruncStoreAction(MVT::v2i64, MVT::v2i32, Legal);
1391       setTruncStoreAction(MVT::v4i32, MVT::v4i8,  Legal);
1392       setTruncStoreAction(MVT::v4i32, MVT::v4i16, Legal);
1393     }
1394     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1395     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1396     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1397     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v8i1,  Custom);
1398     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v16i1, Custom);
1399     if (Subtarget->hasDQI()) {
1400       setOperationAction(ISD::TRUNCATE,         MVT::v2i1, Custom);
1401       setOperationAction(ISD::TRUNCATE,         MVT::v4i1, Custom);
1402
1403       setOperationAction(ISD::SINT_TO_FP,       MVT::v8i64, Legal);
1404       setOperationAction(ISD::UINT_TO_FP,       MVT::v8i64, Legal);
1405       setOperationAction(ISD::FP_TO_SINT,       MVT::v8i64, Legal);
1406       setOperationAction(ISD::FP_TO_UINT,       MVT::v8i64, Legal);
1407       if (Subtarget->hasVLX()) {
1408         setOperationAction(ISD::SINT_TO_FP,    MVT::v4i64, Legal);
1409         setOperationAction(ISD::SINT_TO_FP,    MVT::v2i64, Legal);
1410         setOperationAction(ISD::UINT_TO_FP,    MVT::v4i64, Legal);
1411         setOperationAction(ISD::UINT_TO_FP,    MVT::v2i64, Legal);
1412         setOperationAction(ISD::FP_TO_SINT,    MVT::v4i64, Legal);
1413         setOperationAction(ISD::FP_TO_SINT,    MVT::v2i64, Legal);
1414         setOperationAction(ISD::FP_TO_UINT,    MVT::v4i64, Legal);
1415         setOperationAction(ISD::FP_TO_UINT,    MVT::v2i64, Legal);
1416       }
1417     }
1418     if (Subtarget->hasVLX()) {
1419       setOperationAction(ISD::SINT_TO_FP,       MVT::v8i32, Legal);
1420       setOperationAction(ISD::UINT_TO_FP,       MVT::v8i32, Legal);
1421       setOperationAction(ISD::FP_TO_SINT,       MVT::v8i32, Legal);
1422       setOperationAction(ISD::FP_TO_UINT,       MVT::v8i32, Legal);
1423       setOperationAction(ISD::SINT_TO_FP,       MVT::v4i32, Legal);
1424       setOperationAction(ISD::UINT_TO_FP,       MVT::v4i32, Legal);
1425       setOperationAction(ISD::FP_TO_SINT,       MVT::v4i32, Legal);
1426       setOperationAction(ISD::FP_TO_UINT,       MVT::v4i32, Legal);
1427     }
1428     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1429     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1430     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1431     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1432     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1433     setOperationAction(ISD::ANY_EXTEND,         MVT::v16i32, Custom);
1434     setOperationAction(ISD::ANY_EXTEND,         MVT::v8i64, Custom);
1435     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1436     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1437     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1438     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1439     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1440     if (Subtarget->hasDQI()) {
1441       setOperationAction(ISD::SIGN_EXTEND,        MVT::v4i32, Custom);
1442       setOperationAction(ISD::SIGN_EXTEND,        MVT::v2i64, Custom);
1443     }
1444     setOperationAction(ISD::FFLOOR,             MVT::v16f32, Legal);
1445     setOperationAction(ISD::FFLOOR,             MVT::v8f64, Legal);
1446     setOperationAction(ISD::FCEIL,              MVT::v16f32, Legal);
1447     setOperationAction(ISD::FCEIL,              MVT::v8f64, Legal);
1448     setOperationAction(ISD::FTRUNC,             MVT::v16f32, Legal);
1449     setOperationAction(ISD::FTRUNC,             MVT::v8f64, Legal);
1450     setOperationAction(ISD::FRINT,              MVT::v16f32, Legal);
1451     setOperationAction(ISD::FRINT,              MVT::v8f64, Legal);
1452     setOperationAction(ISD::FNEARBYINT,         MVT::v16f32, Legal);
1453     setOperationAction(ISD::FNEARBYINT,         MVT::v8f64, Legal);
1454
1455     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1456     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1457     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1458     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1459     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1460
1461     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1462     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1463
1464     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1465
1466     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1467     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1468     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1469     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1470     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1471     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1472     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1473     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1474     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1475     setOperationAction(ISD::SELECT,             MVT::v16i1, Custom);
1476     setOperationAction(ISD::SELECT,             MVT::v8i1,  Custom);
1477
1478     setOperationAction(ISD::SMAX,               MVT::v16i32, Legal);
1479     setOperationAction(ISD::SMAX,               MVT::v8i64, Legal);
1480     setOperationAction(ISD::UMAX,               MVT::v16i32, Legal);
1481     setOperationAction(ISD::UMAX,               MVT::v8i64, Legal);
1482     setOperationAction(ISD::SMIN,               MVT::v16i32, Legal);
1483     setOperationAction(ISD::SMIN,               MVT::v8i64, Legal);
1484     setOperationAction(ISD::UMIN,               MVT::v16i32, Legal);
1485     setOperationAction(ISD::UMIN,               MVT::v8i64, Legal);
1486
1487     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1488     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1489
1490     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1491     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1492
1493     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1494
1495     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1496     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1497
1498     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1499     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1500
1501     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1502     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1503
1504     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1505     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1506     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1507     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1508     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1509     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1510
1511     if (Subtarget->hasCDI()) {
1512       setOperationAction(ISD::CTLZ,             MVT::v8i64,  Legal);
1513       setOperationAction(ISD::CTLZ,             MVT::v16i32, Legal);
1514       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v8i64,  Legal);
1515       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v16i32, Legal);
1516
1517       setOperationAction(ISD::CTLZ,             MVT::v8i16,  Custom);
1518       setOperationAction(ISD::CTLZ,             MVT::v16i8,  Custom);
1519       setOperationAction(ISD::CTLZ,             MVT::v16i16, Custom);
1520       setOperationAction(ISD::CTLZ,             MVT::v32i8,  Custom);
1521       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v8i16,  Custom);
1522       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v16i8,  Custom);
1523       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v16i16, Custom);
1524       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v32i8,  Custom);
1525
1526       setOperationAction(ISD::CTTZ_ZERO_UNDEF,  MVT::v8i64,  Custom);
1527       setOperationAction(ISD::CTTZ_ZERO_UNDEF,  MVT::v16i32, Custom);
1528
1529       if (Subtarget->hasVLX()) {
1530         setOperationAction(ISD::CTLZ,             MVT::v4i64, Legal);
1531         setOperationAction(ISD::CTLZ,             MVT::v8i32, Legal);
1532         setOperationAction(ISD::CTLZ,             MVT::v2i64, Legal);
1533         setOperationAction(ISD::CTLZ,             MVT::v4i32, Legal);
1534         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v4i64, Legal);
1535         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v8i32, Legal);
1536         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v2i64, Legal);
1537         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v4i32, Legal);
1538
1539         setOperationAction(ISD::CTTZ_ZERO_UNDEF,  MVT::v4i64, Custom);
1540         setOperationAction(ISD::CTTZ_ZERO_UNDEF,  MVT::v8i32, Custom);
1541         setOperationAction(ISD::CTTZ_ZERO_UNDEF,  MVT::v2i64, Custom);
1542         setOperationAction(ISD::CTTZ_ZERO_UNDEF,  MVT::v4i32, Custom);
1543       } else {
1544         setOperationAction(ISD::CTLZ,             MVT::v4i64, Custom);
1545         setOperationAction(ISD::CTLZ,             MVT::v8i32, Custom);
1546         setOperationAction(ISD::CTLZ,             MVT::v2i64, Custom);
1547         setOperationAction(ISD::CTLZ,             MVT::v4i32, Custom);
1548         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v4i64, Custom);
1549         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v8i32, Custom);
1550         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v2i64, Custom);
1551         setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v4i32, Custom);
1552       }
1553     } // Subtarget->hasCDI()
1554
1555     if (Subtarget->hasDQI()) {
1556       setOperationAction(ISD::MUL,             MVT::v2i64, Legal);
1557       setOperationAction(ISD::MUL,             MVT::v4i64, Legal);
1558       setOperationAction(ISD::MUL,             MVT::v8i64, Legal);
1559     }
1560     // Custom lower several nodes.
1561     for (MVT VT : MVT::vector_valuetypes()) {
1562       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1563       if (EltSize == 1) {
1564         setOperationAction(ISD::AND, VT, Legal);
1565         setOperationAction(ISD::OR,  VT, Legal);
1566         setOperationAction(ISD::XOR,  VT, Legal);
1567       }
1568       if (EltSize >= 32 && VT.getSizeInBits() <= 512) {
1569         setOperationAction(ISD::MGATHER,  VT, Custom);
1570         setOperationAction(ISD::MSCATTER, VT, Custom);
1571       }
1572       // Extract subvector is special because the value type
1573       // (result) is 256/128-bit but the source is 512-bit wide.
1574       if (VT.is128BitVector() || VT.is256BitVector()) {
1575         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1576       }
1577       if (VT.getVectorElementType() == MVT::i1)
1578         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1579
1580       // Do not attempt to custom lower other non-512-bit vectors
1581       if (!VT.is512BitVector())
1582         continue;
1583
1584       if (EltSize >= 32) {
1585         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1586         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1587         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1588         setOperationAction(ISD::VSELECT,             VT, Legal);
1589         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1590         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1591         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1592         setOperationAction(ISD::MLOAD,               VT, Legal);
1593         setOperationAction(ISD::MSTORE,              VT, Legal);
1594       }
1595     }
1596     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1597       MVT VT = (MVT::SimpleValueType)i;
1598
1599       // Do not attempt to promote non-512-bit vectors.
1600       if (!VT.is512BitVector())
1601         continue;
1602
1603       setOperationAction(ISD::SELECT, VT, Promote);
1604       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1605     }
1606   }// has  AVX-512
1607
1608   if (!Subtarget->useSoftFloat() && Subtarget->hasBWI()) {
1609     addRegisterClass(MVT::v32i16, &X86::VR512RegClass);
1610     addRegisterClass(MVT::v64i8,  &X86::VR512RegClass);
1611
1612     addRegisterClass(MVT::v32i1,  &X86::VK32RegClass);
1613     addRegisterClass(MVT::v64i1,  &X86::VK64RegClass);
1614
1615     setOperationAction(ISD::LOAD,               MVT::v32i16, Legal);
1616     setOperationAction(ISD::LOAD,               MVT::v64i8, Legal);
1617     setOperationAction(ISD::SETCC,              MVT::v32i1, Custom);
1618     setOperationAction(ISD::SETCC,              MVT::v64i1, Custom);
1619     setOperationAction(ISD::ADD,                MVT::v32i16, Legal);
1620     setOperationAction(ISD::ADD,                MVT::v64i8, Legal);
1621     setOperationAction(ISD::SUB,                MVT::v32i16, Legal);
1622     setOperationAction(ISD::SUB,                MVT::v64i8, Legal);
1623     setOperationAction(ISD::MUL,                MVT::v32i16, Legal);
1624     setOperationAction(ISD::MULHS,              MVT::v32i16, Legal);
1625     setOperationAction(ISD::MULHU,              MVT::v32i16, Legal);
1626     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v32i1, Legal);
1627     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v64i1, Legal);
1628     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v32i16, Custom);
1629     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v64i8, Custom);
1630     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v32i1, Custom);
1631     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v64i1, Custom);
1632     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v32i16, Custom);
1633     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v64i8, Custom);
1634     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v32i16, Custom);
1635     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v64i8, Custom);
1636     setOperationAction(ISD::SELECT,             MVT::v32i1, Custom);
1637     setOperationAction(ISD::SELECT,             MVT::v64i1, Custom);
1638     setOperationAction(ISD::SIGN_EXTEND,        MVT::v32i8, Custom);
1639     setOperationAction(ISD::ZERO_EXTEND,        MVT::v32i8, Custom);
1640     setOperationAction(ISD::SIGN_EXTEND,        MVT::v32i16, Custom);
1641     setOperationAction(ISD::ZERO_EXTEND,        MVT::v32i16, Custom);
1642     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v32i16, Custom);
1643     setOperationAction(ISD::SIGN_EXTEND,        MVT::v64i8, Custom);
1644     setOperationAction(ISD::ZERO_EXTEND,        MVT::v64i8, Custom);
1645     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v32i1, Custom);
1646     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v64i1, Custom);
1647     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v32i16, Custom);
1648     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v64i8, Custom);
1649     setOperationAction(ISD::VSELECT,            MVT::v32i16, Legal);
1650     setOperationAction(ISD::VSELECT,            MVT::v64i8, Legal);
1651     setOperationAction(ISD::TRUNCATE,           MVT::v32i1, Custom);
1652     setOperationAction(ISD::TRUNCATE,           MVT::v64i1, Custom);
1653     setOperationAction(ISD::TRUNCATE,           MVT::v32i8, Custom);
1654     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v32i1, Custom);
1655     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v64i1, Custom);
1656
1657     setOperationAction(ISD::SMAX,               MVT::v64i8, Legal);
1658     setOperationAction(ISD::SMAX,               MVT::v32i16, Legal);
1659     setOperationAction(ISD::UMAX,               MVT::v64i8, Legal);
1660     setOperationAction(ISD::UMAX,               MVT::v32i16, Legal);
1661     setOperationAction(ISD::SMIN,               MVT::v64i8, Legal);
1662     setOperationAction(ISD::SMIN,               MVT::v32i16, Legal);
1663     setOperationAction(ISD::UMIN,               MVT::v64i8, Legal);
1664     setOperationAction(ISD::UMIN,               MVT::v32i16, Legal);
1665
1666     setTruncStoreAction(MVT::v32i16,  MVT::v32i8, Legal);
1667     setTruncStoreAction(MVT::v16i16,  MVT::v16i8, Legal);
1668     if (Subtarget->hasVLX())
1669       setTruncStoreAction(MVT::v8i16,   MVT::v8i8,  Legal);
1670
1671     if (Subtarget->hasCDI()) {
1672       setOperationAction(ISD::CTLZ,            MVT::v32i16, Custom);
1673       setOperationAction(ISD::CTLZ,            MVT::v64i8,  Custom);
1674       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::v32i16, Custom);
1675       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::v64i8,  Custom);
1676     }
1677
1678     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1679       const MVT VT = (MVT::SimpleValueType)i;
1680
1681       const unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1682
1683       // Do not attempt to promote non-512-bit vectors.
1684       if (!VT.is512BitVector())
1685         continue;
1686
1687       if (EltSize < 32) {
1688         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1689         setOperationAction(ISD::VSELECT,             VT, Legal);
1690       }
1691     }
1692   }
1693
1694   if (!Subtarget->useSoftFloat() && Subtarget->hasVLX()) {
1695     addRegisterClass(MVT::v4i1,   &X86::VK4RegClass);
1696     addRegisterClass(MVT::v2i1,   &X86::VK2RegClass);
1697
1698     setOperationAction(ISD::SETCC,              MVT::v4i1, Custom);
1699     setOperationAction(ISD::SETCC,              MVT::v2i1, Custom);
1700     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4i1, Custom);
1701     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1, Custom);
1702     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v8i1, Custom);
1703     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v4i1, Custom);
1704     setOperationAction(ISD::SELECT,             MVT::v4i1, Custom);
1705     setOperationAction(ISD::SELECT,             MVT::v2i1, Custom);
1706     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4i1, Custom);
1707     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i1, Custom);
1708     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i1, Custom);
1709     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4i1, Custom);
1710
1711     setOperationAction(ISD::AND,                MVT::v8i32, Legal);
1712     setOperationAction(ISD::OR,                 MVT::v8i32, Legal);
1713     setOperationAction(ISD::XOR,                MVT::v8i32, Legal);
1714     setOperationAction(ISD::AND,                MVT::v4i32, Legal);
1715     setOperationAction(ISD::OR,                 MVT::v4i32, Legal);
1716     setOperationAction(ISD::XOR,                MVT::v4i32, Legal);
1717     setOperationAction(ISD::SRA,                MVT::v2i64, Custom);
1718     setOperationAction(ISD::SRA,                MVT::v4i64, Custom);
1719
1720     setOperationAction(ISD::SMAX,               MVT::v2i64, Legal);
1721     setOperationAction(ISD::SMAX,               MVT::v4i64, Legal);
1722     setOperationAction(ISD::UMAX,               MVT::v2i64, Legal);
1723     setOperationAction(ISD::UMAX,               MVT::v4i64, Legal);
1724     setOperationAction(ISD::SMIN,               MVT::v2i64, Legal);
1725     setOperationAction(ISD::SMIN,               MVT::v4i64, Legal);
1726     setOperationAction(ISD::UMIN,               MVT::v2i64, Legal);
1727     setOperationAction(ISD::UMIN,               MVT::v4i64, Legal);
1728   }
1729
1730   // We want to custom lower some of our intrinsics.
1731   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1732   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1733   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1734   if (!Subtarget->is64Bit())
1735     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1736
1737   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1738   // handle type legalization for these operations here.
1739   //
1740   // FIXME: We really should do custom legalization for addition and
1741   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1742   // than generic legalization for 64-bit multiplication-with-overflow, though.
1743   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1744     // Add/Sub/Mul with overflow operations are custom lowered.
1745     MVT VT = IntVTs[i];
1746     setOperationAction(ISD::SADDO, VT, Custom);
1747     setOperationAction(ISD::UADDO, VT, Custom);
1748     setOperationAction(ISD::SSUBO, VT, Custom);
1749     setOperationAction(ISD::USUBO, VT, Custom);
1750     setOperationAction(ISD::SMULO, VT, Custom);
1751     setOperationAction(ISD::UMULO, VT, Custom);
1752   }
1753
1754   if (!Subtarget->is64Bit()) {
1755     // These libcalls are not available in 32-bit.
1756     setLibcallName(RTLIB::SHL_I128, nullptr);
1757     setLibcallName(RTLIB::SRL_I128, nullptr);
1758     setLibcallName(RTLIB::SRA_I128, nullptr);
1759   }
1760
1761   // Combine sin / cos into one node or libcall if possible.
1762   if (Subtarget->hasSinCos()) {
1763     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1764     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1765     if (Subtarget->isTargetDarwin()) {
1766       // For MacOSX, we don't want the normal expansion of a libcall to sincos.
1767       // We want to issue a libcall to __sincos_stret to avoid memory traffic.
1768       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1769       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1770     }
1771   }
1772
1773   if (Subtarget->isTargetWin64()) {
1774     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1775     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1776     setOperationAction(ISD::SREM, MVT::i128, Custom);
1777     setOperationAction(ISD::UREM, MVT::i128, Custom);
1778     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1779     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1780   }
1781
1782   // We have target-specific dag combine patterns for the following nodes:
1783   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1784   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1785   setTargetDAGCombine(ISD::BITCAST);
1786   setTargetDAGCombine(ISD::VSELECT);
1787   setTargetDAGCombine(ISD::SELECT);
1788   setTargetDAGCombine(ISD::SHL);
1789   setTargetDAGCombine(ISD::SRA);
1790   setTargetDAGCombine(ISD::SRL);
1791   setTargetDAGCombine(ISD::OR);
1792   setTargetDAGCombine(ISD::AND);
1793   setTargetDAGCombine(ISD::ADD);
1794   setTargetDAGCombine(ISD::FADD);
1795   setTargetDAGCombine(ISD::FSUB);
1796   setTargetDAGCombine(ISD::FMA);
1797   setTargetDAGCombine(ISD::SUB);
1798   setTargetDAGCombine(ISD::LOAD);
1799   setTargetDAGCombine(ISD::MLOAD);
1800   setTargetDAGCombine(ISD::STORE);
1801   setTargetDAGCombine(ISD::MSTORE);
1802   setTargetDAGCombine(ISD::ZERO_EXTEND);
1803   setTargetDAGCombine(ISD::ANY_EXTEND);
1804   setTargetDAGCombine(ISD::SIGN_EXTEND);
1805   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1806   setTargetDAGCombine(ISD::SINT_TO_FP);
1807   setTargetDAGCombine(ISD::UINT_TO_FP);
1808   setTargetDAGCombine(ISD::SETCC);
1809   setTargetDAGCombine(ISD::BUILD_VECTOR);
1810   setTargetDAGCombine(ISD::MUL);
1811   setTargetDAGCombine(ISD::XOR);
1812
1813   computeRegisterProperties(Subtarget->getRegisterInfo());
1814
1815   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1816   MaxStoresPerMemsetOptSize = 8;
1817   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1818   MaxStoresPerMemcpyOptSize = 4;
1819   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1820   MaxStoresPerMemmoveOptSize = 4;
1821   setPrefLoopAlignment(4); // 2^4 bytes.
1822
1823   // A predictable cmov does not hurt on an in-order CPU.
1824   // FIXME: Use a CPU attribute to trigger this, not a CPU model.
1825   PredictableSelectIsExpensive = !Subtarget->isAtom();
1826   EnableExtLdPromotion = true;
1827   setPrefFunctionAlignment(4); // 2^4 bytes.
1828
1829   verifyIntrinsicTables();
1830 }
1831
1832 // This has so far only been implemented for 64-bit MachO.
1833 bool X86TargetLowering::useLoadStackGuardNode() const {
1834   return Subtarget->isTargetMachO() && Subtarget->is64Bit();
1835 }
1836
1837 TargetLoweringBase::LegalizeTypeAction
1838 X86TargetLowering::getPreferredVectorAction(EVT VT) const {
1839   if (ExperimentalVectorWideningLegalization &&
1840       VT.getVectorNumElements() != 1 &&
1841       VT.getVectorElementType().getSimpleVT() != MVT::i1)
1842     return TypeWidenVector;
1843
1844   return TargetLoweringBase::getPreferredVectorAction(VT);
1845 }
1846
1847 EVT X86TargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1848                                           EVT VT) const {
1849   if (!VT.isVector())
1850     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1851
1852   const unsigned NumElts = VT.getVectorNumElements();
1853   const EVT EltVT = VT.getVectorElementType();
1854   if (VT.is512BitVector()) {
1855     if (Subtarget->hasAVX512())
1856       if (EltVT == MVT::i32 || EltVT == MVT::i64 ||
1857           EltVT == MVT::f32 || EltVT == MVT::f64)
1858         switch(NumElts) {
1859         case  8: return MVT::v8i1;
1860         case 16: return MVT::v16i1;
1861       }
1862     if (Subtarget->hasBWI())
1863       if (EltVT == MVT::i8 || EltVT == MVT::i16)
1864         switch(NumElts) {
1865         case 32: return MVT::v32i1;
1866         case 64: return MVT::v64i1;
1867       }
1868   }
1869
1870   if (VT.is256BitVector() || VT.is128BitVector()) {
1871     if (Subtarget->hasVLX())
1872       if (EltVT == MVT::i32 || EltVT == MVT::i64 ||
1873           EltVT == MVT::f32 || EltVT == MVT::f64)
1874         switch(NumElts) {
1875         case 2: return MVT::v2i1;
1876         case 4: return MVT::v4i1;
1877         case 8: return MVT::v8i1;
1878       }
1879     if (Subtarget->hasBWI() && Subtarget->hasVLX())
1880       if (EltVT == MVT::i8 || EltVT == MVT::i16)
1881         switch(NumElts) {
1882         case  8: return MVT::v8i1;
1883         case 16: return MVT::v16i1;
1884         case 32: return MVT::v32i1;
1885       }
1886   }
1887
1888   return VT.changeVectorElementTypeToInteger();
1889 }
1890
1891 /// Helper for getByValTypeAlignment to determine
1892 /// the desired ByVal argument alignment.
1893 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1894   if (MaxAlign == 16)
1895     return;
1896   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1897     if (VTy->getBitWidth() == 128)
1898       MaxAlign = 16;
1899   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1900     unsigned EltAlign = 0;
1901     getMaxByValAlign(ATy->getElementType(), EltAlign);
1902     if (EltAlign > MaxAlign)
1903       MaxAlign = EltAlign;
1904   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1905     for (auto *EltTy : STy->elements()) {
1906       unsigned EltAlign = 0;
1907       getMaxByValAlign(EltTy, EltAlign);
1908       if (EltAlign > MaxAlign)
1909         MaxAlign = EltAlign;
1910       if (MaxAlign == 16)
1911         break;
1912     }
1913   }
1914 }
1915
1916 /// Return the desired alignment for ByVal aggregate
1917 /// function arguments in the caller parameter area. For X86, aggregates
1918 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1919 /// are at 4-byte boundaries.
1920 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty,
1921                                                   const DataLayout &DL) const {
1922   if (Subtarget->is64Bit()) {
1923     // Max of 8 and alignment of type.
1924     unsigned TyAlign = DL.getABITypeAlignment(Ty);
1925     if (TyAlign > 8)
1926       return TyAlign;
1927     return 8;
1928   }
1929
1930   unsigned Align = 4;
1931   if (Subtarget->hasSSE1())
1932     getMaxByValAlign(Ty, Align);
1933   return Align;
1934 }
1935
1936 /// Returns the target specific optimal type for load
1937 /// and store operations as a result of memset, memcpy, and memmove
1938 /// lowering. If DstAlign is zero that means it's safe to destination
1939 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1940 /// means there isn't a need to check it against alignment requirement,
1941 /// probably because the source does not need to be loaded. If 'IsMemset' is
1942 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1943 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1944 /// source is constant so it does not need to be loaded.
1945 /// It returns EVT::Other if the type should be determined using generic
1946 /// target-independent logic.
1947 EVT
1948 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1949                                        unsigned DstAlign, unsigned SrcAlign,
1950                                        bool IsMemset, bool ZeroMemset,
1951                                        bool MemcpyStrSrc,
1952                                        MachineFunction &MF) const {
1953   const Function *F = MF.getFunction();
1954   if ((!IsMemset || ZeroMemset) &&
1955       !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
1956     if (Size >= 16 &&
1957         (!Subtarget->isUnalignedMem16Slow() ||
1958          ((DstAlign == 0 || DstAlign >= 16) &&
1959           (SrcAlign == 0 || SrcAlign >= 16)))) {
1960       if (Size >= 32) {
1961         // FIXME: Check if unaligned 32-byte accesses are slow.
1962         if (Subtarget->hasInt256())
1963           return MVT::v8i32;
1964         if (Subtarget->hasFp256())
1965           return MVT::v8f32;
1966       }
1967       if (Subtarget->hasSSE2())
1968         return MVT::v4i32;
1969       if (Subtarget->hasSSE1())
1970         return MVT::v4f32;
1971     } else if (!MemcpyStrSrc && Size >= 8 &&
1972                !Subtarget->is64Bit() &&
1973                Subtarget->hasSSE2()) {
1974       // Do not use f64 to lower memcpy if source is string constant. It's
1975       // better to use i32 to avoid the loads.
1976       return MVT::f64;
1977     }
1978   }
1979   // This is a compromise. If we reach here, unaligned accesses may be slow on
1980   // this target. However, creating smaller, aligned accesses could be even
1981   // slower and would certainly be a lot more code.
1982   if (Subtarget->is64Bit() && Size >= 8)
1983     return MVT::i64;
1984   return MVT::i32;
1985 }
1986
1987 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1988   if (VT == MVT::f32)
1989     return X86ScalarSSEf32;
1990   else if (VT == MVT::f64)
1991     return X86ScalarSSEf64;
1992   return true;
1993 }
1994
1995 bool
1996 X86TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
1997                                                   unsigned,
1998                                                   unsigned,
1999                                                   bool *Fast) const {
2000   if (Fast) {
2001     switch (VT.getSizeInBits()) {
2002     default:
2003       // 8-byte and under are always assumed to be fast.
2004       *Fast = true;
2005       break;
2006     case 128:
2007       *Fast = !Subtarget->isUnalignedMem16Slow();
2008       break;
2009     case 256:
2010       *Fast = !Subtarget->isUnalignedMem32Slow();
2011       break;
2012     // TODO: What about AVX-512 (512-bit) accesses?
2013     }
2014   }
2015   // Misaligned accesses of any size are always allowed.
2016   return true;
2017 }
2018
2019 /// Return the entry encoding for a jump table in the
2020 /// current function.  The returned value is a member of the
2021 /// MachineJumpTableInfo::JTEntryKind enum.
2022 unsigned X86TargetLowering::getJumpTableEncoding() const {
2023   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
2024   // symbol.
2025   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2026       Subtarget->isPICStyleGOT())
2027     return MachineJumpTableInfo::EK_Custom32;
2028
2029   // Otherwise, use the normal jump table encoding heuristics.
2030   return TargetLowering::getJumpTableEncoding();
2031 }
2032
2033 bool X86TargetLowering::useSoftFloat() const {
2034   return Subtarget->useSoftFloat();
2035 }
2036
2037 const MCExpr *
2038 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
2039                                              const MachineBasicBlock *MBB,
2040                                              unsigned uid,MCContext &Ctx) const{
2041   assert(MBB->getParent()->getTarget().getRelocationModel() == Reloc::PIC_ &&
2042          Subtarget->isPICStyleGOT());
2043   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
2044   // entries.
2045   return MCSymbolRefExpr::create(MBB->getSymbol(),
2046                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
2047 }
2048
2049 /// Returns relocation base for the given PIC jumptable.
2050 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
2051                                                     SelectionDAG &DAG) const {
2052   if (!Subtarget->is64Bit())
2053     // This doesn't have SDLoc associated with it, but is not really the
2054     // same as a Register.
2055     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(),
2056                        getPointerTy(DAG.getDataLayout()));
2057   return Table;
2058 }
2059
2060 /// This returns the relocation base for the given PIC jumptable,
2061 /// the same as getPICJumpTableRelocBase, but as an MCExpr.
2062 const MCExpr *X86TargetLowering::
2063 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
2064                              MCContext &Ctx) const {
2065   // X86-64 uses RIP relative addressing based on the jump table label.
2066   if (Subtarget->isPICStyleRIPRel())
2067     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
2068
2069   // Otherwise, the reference is relative to the PIC base.
2070   return MCSymbolRefExpr::create(MF->getPICBaseSymbol(), Ctx);
2071 }
2072
2073 std::pair<const TargetRegisterClass *, uint8_t>
2074 X86TargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
2075                                            MVT VT) const {
2076   const TargetRegisterClass *RRC = nullptr;
2077   uint8_t Cost = 1;
2078   switch (VT.SimpleTy) {
2079   default:
2080     return TargetLowering::findRepresentativeClass(TRI, VT);
2081   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
2082     RRC = Subtarget->is64Bit() ? &X86::GR64RegClass : &X86::GR32RegClass;
2083     break;
2084   case MVT::x86mmx:
2085     RRC = &X86::VR64RegClass;
2086     break;
2087   case MVT::f32: case MVT::f64:
2088   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
2089   case MVT::v4f32: case MVT::v2f64:
2090   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
2091   case MVT::v4f64:
2092     RRC = &X86::VR128RegClass;
2093     break;
2094   }
2095   return std::make_pair(RRC, Cost);
2096 }
2097
2098 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
2099                                                unsigned &Offset) const {
2100   if (!Subtarget->isTargetLinux())
2101     return false;
2102
2103   if (Subtarget->is64Bit()) {
2104     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
2105     Offset = 0x28;
2106     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
2107       AddressSpace = 256;
2108     else
2109       AddressSpace = 257;
2110   } else {
2111     // %gs:0x14 on i386
2112     Offset = 0x14;
2113     AddressSpace = 256;
2114   }
2115   return true;
2116 }
2117
2118 /// Android provides a fixed TLS slot for the SafeStack pointer.
2119 /// See the definition of TLS_SLOT_SAFESTACK in
2120 /// https://android.googlesource.com/platform/bionic/+/master/libc/private/bionic_tls.h
2121 bool X86TargetLowering::getSafeStackPointerLocation(unsigned &AddressSpace,
2122                                                     unsigned &Offset) const {
2123   if (!Subtarget->isTargetAndroid())
2124     return false;
2125
2126   if (Subtarget->is64Bit()) {
2127     // %fs:0x48, unless we're using a Kernel code model, in which case it's %gs:
2128     Offset = 0x48;
2129     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
2130       AddressSpace = 256;
2131     else
2132       AddressSpace = 257;
2133   } else {
2134     // %gs:0x24 on i386
2135     Offset = 0x24;
2136     AddressSpace = 256;
2137   }
2138   return true;
2139 }
2140
2141 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
2142                                             unsigned DestAS) const {
2143   assert(SrcAS != DestAS && "Expected different address spaces!");
2144
2145   return SrcAS < 256 && DestAS < 256;
2146 }
2147
2148 //===----------------------------------------------------------------------===//
2149 //               Return Value Calling Convention Implementation
2150 //===----------------------------------------------------------------------===//
2151
2152 #include "X86GenCallingConv.inc"
2153
2154 bool X86TargetLowering::CanLowerReturn(
2155     CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
2156     const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
2157   SmallVector<CCValAssign, 16> RVLocs;
2158   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
2159   return CCInfo.CheckReturn(Outs, RetCC_X86);
2160 }
2161
2162 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
2163   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
2164   return ScratchRegs;
2165 }
2166
2167 SDValue
2168 X86TargetLowering::LowerReturn(SDValue Chain,
2169                                CallingConv::ID CallConv, bool isVarArg,
2170                                const SmallVectorImpl<ISD::OutputArg> &Outs,
2171                                const SmallVectorImpl<SDValue> &OutVals,
2172                                SDLoc dl, SelectionDAG &DAG) const {
2173   MachineFunction &MF = DAG.getMachineFunction();
2174   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2175
2176   SmallVector<CCValAssign, 16> RVLocs;
2177   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, *DAG.getContext());
2178   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
2179
2180   SDValue Flag;
2181   SmallVector<SDValue, 6> RetOps;
2182   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
2183   // Operand #1 = Bytes To Pop
2184   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(), dl,
2185                    MVT::i16));
2186
2187   // Copy the result values into the output registers.
2188   for (unsigned i = 0; i != RVLocs.size(); ++i) {
2189     CCValAssign &VA = RVLocs[i];
2190     assert(VA.isRegLoc() && "Can only return in registers!");
2191     SDValue ValToCopy = OutVals[i];
2192     EVT ValVT = ValToCopy.getValueType();
2193
2194     // Promote values to the appropriate types.
2195     if (VA.getLocInfo() == CCValAssign::SExt)
2196       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
2197     else if (VA.getLocInfo() == CCValAssign::ZExt)
2198       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
2199     else if (VA.getLocInfo() == CCValAssign::AExt) {
2200       if (ValVT.isVector() && ValVT.getScalarType() == MVT::i1)
2201         ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
2202       else
2203         ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
2204     }
2205     else if (VA.getLocInfo() == CCValAssign::BCvt)
2206       ValToCopy = DAG.getBitcast(VA.getLocVT(), ValToCopy);
2207
2208     assert(VA.getLocInfo() != CCValAssign::FPExt &&
2209            "Unexpected FP-extend for return value.");
2210
2211     // If this is x86-64, and we disabled SSE, we can't return FP values,
2212     // or SSE or MMX vectors.
2213     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
2214          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
2215           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
2216       report_fatal_error("SSE register return with SSE disabled");
2217     }
2218     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
2219     // llvm-gcc has never done it right and no one has noticed, so this
2220     // should be OK for now.
2221     if (ValVT == MVT::f64 &&
2222         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
2223       report_fatal_error("SSE2 register return with SSE2 disabled");
2224
2225     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
2226     // the RET instruction and handled by the FP Stackifier.
2227     if (VA.getLocReg() == X86::FP0 ||
2228         VA.getLocReg() == X86::FP1) {
2229       // If this is a copy from an xmm register to ST(0), use an FPExtend to
2230       // change the value to the FP stack register class.
2231       if (isScalarFPTypeInSSEReg(VA.getValVT()))
2232         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
2233       RetOps.push_back(ValToCopy);
2234       // Don't emit a copytoreg.
2235       continue;
2236     }
2237
2238     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
2239     // which is returned in RAX / RDX.
2240     if (Subtarget->is64Bit()) {
2241       if (ValVT == MVT::x86mmx) {
2242         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
2243           ValToCopy = DAG.getBitcast(MVT::i64, ValToCopy);
2244           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
2245                                   ValToCopy);
2246           // If we don't have SSE2 available, convert to v4f32 so the generated
2247           // register is legal.
2248           if (!Subtarget->hasSSE2())
2249             ValToCopy = DAG.getBitcast(MVT::v4f32, ValToCopy);
2250         }
2251       }
2252     }
2253
2254     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
2255     Flag = Chain.getValue(1);
2256     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2257   }
2258
2259   // All x86 ABIs require that for returning structs by value we copy
2260   // the sret argument into %rax/%eax (depending on ABI) for the return.
2261   // We saved the argument into a virtual register in the entry block,
2262   // so now we copy the value out and into %rax/%eax.
2263   //
2264   // Checking Function.hasStructRetAttr() here is insufficient because the IR
2265   // may not have an explicit sret argument. If FuncInfo.CanLowerReturn is
2266   // false, then an sret argument may be implicitly inserted in the SelDAG. In
2267   // either case FuncInfo->setSRetReturnReg() will have been called.
2268   if (unsigned SRetReg = FuncInfo->getSRetReturnReg()) {
2269     SDValue Val = DAG.getCopyFromReg(Chain, dl, SRetReg,
2270                                      getPointerTy(MF.getDataLayout()));
2271
2272     unsigned RetValReg
2273         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
2274           X86::RAX : X86::EAX;
2275     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
2276     Flag = Chain.getValue(1);
2277
2278     // RAX/EAX now acts like a return value.
2279     RetOps.push_back(
2280         DAG.getRegister(RetValReg, getPointerTy(DAG.getDataLayout())));
2281   }
2282
2283   RetOps[0] = Chain;  // Update chain.
2284
2285   // Add the flag if we have it.
2286   if (Flag.getNode())
2287     RetOps.push_back(Flag);
2288
2289   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
2290 }
2291
2292 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2293   if (N->getNumValues() != 1)
2294     return false;
2295   if (!N->hasNUsesOfValue(1, 0))
2296     return false;
2297
2298   SDValue TCChain = Chain;
2299   SDNode *Copy = *N->use_begin();
2300   if (Copy->getOpcode() == ISD::CopyToReg) {
2301     // If the copy has a glue operand, we conservatively assume it isn't safe to
2302     // perform a tail call.
2303     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2304       return false;
2305     TCChain = Copy->getOperand(0);
2306   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
2307     return false;
2308
2309   bool HasRet = false;
2310   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2311        UI != UE; ++UI) {
2312     if (UI->getOpcode() != X86ISD::RET_FLAG)
2313       return false;
2314     // If we are returning more than one value, we can definitely
2315     // not make a tail call see PR19530
2316     if (UI->getNumOperands() > 4)
2317       return false;
2318     if (UI->getNumOperands() == 4 &&
2319         UI->getOperand(UI->getNumOperands()-1).getValueType() != MVT::Glue)
2320       return false;
2321     HasRet = true;
2322   }
2323
2324   if (!HasRet)
2325     return false;
2326
2327   Chain = TCChain;
2328   return true;
2329 }
2330
2331 EVT
2332 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
2333                                             ISD::NodeType ExtendKind) const {
2334   MVT ReturnMVT;
2335   // TODO: Is this also valid on 32-bit?
2336   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
2337     ReturnMVT = MVT::i8;
2338   else
2339     ReturnMVT = MVT::i32;
2340
2341   EVT MinVT = getRegisterType(Context, ReturnMVT);
2342   return VT.bitsLT(MinVT) ? MinVT : VT;
2343 }
2344
2345 /// Lower the result values of a call into the
2346 /// appropriate copies out of appropriate physical registers.
2347 ///
2348 SDValue
2349 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2350                                    CallingConv::ID CallConv, bool isVarArg,
2351                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2352                                    SDLoc dl, SelectionDAG &DAG,
2353                                    SmallVectorImpl<SDValue> &InVals) const {
2354
2355   // Assign locations to each value returned by this call.
2356   SmallVector<CCValAssign, 16> RVLocs;
2357   bool Is64Bit = Subtarget->is64Bit();
2358   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2359                  *DAG.getContext());
2360   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2361
2362   // Copy all of the result registers out of their specified physreg.
2363   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2364     CCValAssign &VA = RVLocs[i];
2365     EVT CopyVT = VA.getLocVT();
2366
2367     // If this is x86-64, and we disabled SSE, we can't return FP values
2368     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2369         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2370       report_fatal_error("SSE register return with SSE disabled");
2371     }
2372
2373     // If we prefer to use the value in xmm registers, copy it out as f80 and
2374     // use a truncate to move it from fp stack reg to xmm reg.
2375     bool RoundAfterCopy = false;
2376     if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
2377         isScalarFPTypeInSSEReg(VA.getValVT())) {
2378       CopyVT = MVT::f80;
2379       RoundAfterCopy = (CopyVT != VA.getLocVT());
2380     }
2381
2382     Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2383                                CopyVT, InFlag).getValue(1);
2384     SDValue Val = Chain.getValue(0);
2385
2386     if (RoundAfterCopy)
2387       Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2388                         // This truncation won't change the value.
2389                         DAG.getIntPtrConstant(1, dl));
2390
2391     if (VA.isExtInLoc() && VA.getValVT().getScalarType() == MVT::i1)
2392       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
2393
2394     InFlag = Chain.getValue(2);
2395     InVals.push_back(Val);
2396   }
2397
2398   return Chain;
2399 }
2400
2401 //===----------------------------------------------------------------------===//
2402 //                C & StdCall & Fast Calling Convention implementation
2403 //===----------------------------------------------------------------------===//
2404 //  StdCall calling convention seems to be standard for many Windows' API
2405 //  routines and around. It differs from C calling convention just a little:
2406 //  callee should clean up the stack, not caller. Symbols should be also
2407 //  decorated in some fancy way :) It doesn't support any vector arguments.
2408 //  For info on fast calling convention see Fast Calling Convention (tail call)
2409 //  implementation LowerX86_32FastCCCallTo.
2410
2411 /// CallIsStructReturn - Determines whether a call uses struct return
2412 /// semantics.
2413 enum StructReturnType {
2414   NotStructReturn,
2415   RegStructReturn,
2416   StackStructReturn
2417 };
2418 static StructReturnType
2419 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2420   if (Outs.empty())
2421     return NotStructReturn;
2422
2423   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2424   if (!Flags.isSRet())
2425     return NotStructReturn;
2426   if (Flags.isInReg())
2427     return RegStructReturn;
2428   return StackStructReturn;
2429 }
2430
2431 /// Determines whether a function uses struct return semantics.
2432 static StructReturnType
2433 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2434   if (Ins.empty())
2435     return NotStructReturn;
2436
2437   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2438   if (!Flags.isSRet())
2439     return NotStructReturn;
2440   if (Flags.isInReg())
2441     return RegStructReturn;
2442   return StackStructReturn;
2443 }
2444
2445 /// Make a copy of an aggregate at address specified by "Src" to address
2446 /// "Dst" with size and alignment information specified by the specific
2447 /// parameter attribute. The copy will be passed as a byval function parameter.
2448 static SDValue
2449 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2450                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2451                           SDLoc dl) {
2452   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
2453
2454   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2455                        /*isVolatile*/false, /*AlwaysInline=*/true,
2456                        /*isTailCall*/false,
2457                        MachinePointerInfo(), MachinePointerInfo());
2458 }
2459
2460 /// Return true if the calling convention is one that
2461 /// supports tail call optimization.
2462 static bool IsTailCallConvention(CallingConv::ID CC) {
2463   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2464           CC == CallingConv::HiPE || CC == CallingConv::HHVM);
2465 }
2466
2467 /// \brief Return true if the calling convention is a C calling convention.
2468 static bool IsCCallConvention(CallingConv::ID CC) {
2469   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2470           CC == CallingConv::X86_64_SysV);
2471 }
2472
2473 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2474   auto Attr =
2475       CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
2476   if (!CI->isTailCall() || Attr.getValueAsString() == "true")
2477     return false;
2478
2479   CallSite CS(CI);
2480   CallingConv::ID CalleeCC = CS.getCallingConv();
2481   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2482     return false;
2483
2484   return true;
2485 }
2486
2487 /// Return true if the function is being made into
2488 /// a tailcall target by changing its ABI.
2489 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2490                                    bool GuaranteedTailCallOpt) {
2491   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2492 }
2493
2494 SDValue
2495 X86TargetLowering::LowerMemArgument(SDValue Chain,
2496                                     CallingConv::ID CallConv,
2497                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2498                                     SDLoc dl, SelectionDAG &DAG,
2499                                     const CCValAssign &VA,
2500                                     MachineFrameInfo *MFI,
2501                                     unsigned i) const {
2502   // Create the nodes corresponding to a load from this parameter slot.
2503   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2504   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(
2505       CallConv, DAG.getTarget().Options.GuaranteedTailCallOpt);
2506   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2507   EVT ValVT;
2508
2509   // If value is passed by pointer we have address passed instead of the value
2510   // itself.
2511   bool ExtendedInMem = VA.isExtInLoc() &&
2512     VA.getValVT().getScalarType() == MVT::i1;
2513
2514   if (VA.getLocInfo() == CCValAssign::Indirect || ExtendedInMem)
2515     ValVT = VA.getLocVT();
2516   else
2517     ValVT = VA.getValVT();
2518
2519   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2520   // changed with more analysis.
2521   // In case of tail call optimization mark all arguments mutable. Since they
2522   // could be overwritten by lowering of arguments in case of a tail call.
2523   if (Flags.isByVal()) {
2524     unsigned Bytes = Flags.getByValSize();
2525     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2526     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2527     return DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2528   } else {
2529     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2530                                     VA.getLocMemOffset(), isImmutable);
2531     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2532     SDValue Val = DAG.getLoad(
2533         ValVT, dl, Chain, FIN,
2534         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), false,
2535         false, false, 0);
2536     return ExtendedInMem ?
2537       DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val) : Val;
2538   }
2539 }
2540
2541 // FIXME: Get this from tablegen.
2542 static ArrayRef<MCPhysReg> get64BitArgumentGPRs(CallingConv::ID CallConv,
2543                                                 const X86Subtarget *Subtarget) {
2544   assert(Subtarget->is64Bit());
2545
2546   if (Subtarget->isCallingConvWin64(CallConv)) {
2547     static const MCPhysReg GPR64ArgRegsWin64[] = {
2548       X86::RCX, X86::RDX, X86::R8,  X86::R9
2549     };
2550     return makeArrayRef(std::begin(GPR64ArgRegsWin64), std::end(GPR64ArgRegsWin64));
2551   }
2552
2553   static const MCPhysReg GPR64ArgRegs64Bit[] = {
2554     X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2555   };
2556   return makeArrayRef(std::begin(GPR64ArgRegs64Bit), std::end(GPR64ArgRegs64Bit));
2557 }
2558
2559 // FIXME: Get this from tablegen.
2560 static ArrayRef<MCPhysReg> get64BitArgumentXMMs(MachineFunction &MF,
2561                                                 CallingConv::ID CallConv,
2562                                                 const X86Subtarget *Subtarget) {
2563   assert(Subtarget->is64Bit());
2564   if (Subtarget->isCallingConvWin64(CallConv)) {
2565     // The XMM registers which might contain var arg parameters are shadowed
2566     // in their paired GPR.  So we only need to save the GPR to their home
2567     // slots.
2568     // TODO: __vectorcall will change this.
2569     return None;
2570   }
2571
2572   const Function *Fn = MF.getFunction();
2573   bool NoImplicitFloatOps = Fn->hasFnAttribute(Attribute::NoImplicitFloat);
2574   bool isSoftFloat = Subtarget->useSoftFloat();
2575   assert(!(isSoftFloat && NoImplicitFloatOps) &&
2576          "SSE register cannot be used when SSE is disabled!");
2577   if (isSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
2578     // Kernel mode asks for SSE to be disabled, so there are no XMM argument
2579     // registers.
2580     return None;
2581
2582   static const MCPhysReg XMMArgRegs64Bit[] = {
2583     X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2584     X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2585   };
2586   return makeArrayRef(std::begin(XMMArgRegs64Bit), std::end(XMMArgRegs64Bit));
2587 }
2588
2589 SDValue X86TargetLowering::LowerFormalArguments(
2590     SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
2591     const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG,
2592     SmallVectorImpl<SDValue> &InVals) const {
2593   MachineFunction &MF = DAG.getMachineFunction();
2594   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2595   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
2596
2597   const Function* Fn = MF.getFunction();
2598   if (Fn->hasExternalLinkage() &&
2599       Subtarget->isTargetCygMing() &&
2600       Fn->getName() == "main")
2601     FuncInfo->setForceFramePointer(true);
2602
2603   MachineFrameInfo *MFI = MF.getFrameInfo();
2604   bool Is64Bit = Subtarget->is64Bit();
2605   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2606
2607   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2608          "Var args not supported with calling convention fastcc, ghc or hipe");
2609
2610   // Assign locations to all of the incoming arguments.
2611   SmallVector<CCValAssign, 16> ArgLocs;
2612   CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext());
2613
2614   // Allocate shadow area for Win64
2615   if (IsWin64)
2616     CCInfo.AllocateStack(32, 8);
2617
2618   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2619
2620   unsigned LastVal = ~0U;
2621   SDValue ArgValue;
2622   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2623     CCValAssign &VA = ArgLocs[i];
2624     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2625     // places.
2626     assert(VA.getValNo() != LastVal &&
2627            "Don't support value assigned to multiple locs yet");
2628     (void)LastVal;
2629     LastVal = VA.getValNo();
2630
2631     if (VA.isRegLoc()) {
2632       EVT RegVT = VA.getLocVT();
2633       const TargetRegisterClass *RC;
2634       if (RegVT == MVT::i32)
2635         RC = &X86::GR32RegClass;
2636       else if (Is64Bit && RegVT == MVT::i64)
2637         RC = &X86::GR64RegClass;
2638       else if (RegVT == MVT::f32)
2639         RC = &X86::FR32RegClass;
2640       else if (RegVT == MVT::f64)
2641         RC = &X86::FR64RegClass;
2642       else if (RegVT.is512BitVector())
2643         RC = &X86::VR512RegClass;
2644       else if (RegVT.is256BitVector())
2645         RC = &X86::VR256RegClass;
2646       else if (RegVT.is128BitVector())
2647         RC = &X86::VR128RegClass;
2648       else if (RegVT == MVT::x86mmx)
2649         RC = &X86::VR64RegClass;
2650       else if (RegVT == MVT::i1)
2651         RC = &X86::VK1RegClass;
2652       else if (RegVT == MVT::v8i1)
2653         RC = &X86::VK8RegClass;
2654       else if (RegVT == MVT::v16i1)
2655         RC = &X86::VK16RegClass;
2656       else if (RegVT == MVT::v32i1)
2657         RC = &X86::VK32RegClass;
2658       else if (RegVT == MVT::v64i1)
2659         RC = &X86::VK64RegClass;
2660       else
2661         llvm_unreachable("Unknown argument type!");
2662
2663       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2664       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2665
2666       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2667       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2668       // right size.
2669       if (VA.getLocInfo() == CCValAssign::SExt)
2670         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2671                                DAG.getValueType(VA.getValVT()));
2672       else if (VA.getLocInfo() == CCValAssign::ZExt)
2673         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2674                                DAG.getValueType(VA.getValVT()));
2675       else if (VA.getLocInfo() == CCValAssign::BCvt)
2676         ArgValue = DAG.getBitcast(VA.getValVT(), ArgValue);
2677
2678       if (VA.isExtInLoc()) {
2679         // Handle MMX values passed in XMM regs.
2680         if (RegVT.isVector() && VA.getValVT().getScalarType() != MVT::i1)
2681           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2682         else
2683           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2684       }
2685     } else {
2686       assert(VA.isMemLoc());
2687       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2688     }
2689
2690     // If value is passed via pointer - do a load.
2691     if (VA.getLocInfo() == CCValAssign::Indirect)
2692       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2693                              MachinePointerInfo(), false, false, false, 0);
2694
2695     InVals.push_back(ArgValue);
2696   }
2697
2698   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2699     // All x86 ABIs require that for returning structs by value we copy the
2700     // sret argument into %rax/%eax (depending on ABI) for the return. Save
2701     // the argument into a virtual register so that we can access it from the
2702     // return points.
2703     if (Ins[i].Flags.isSRet()) {
2704       unsigned Reg = FuncInfo->getSRetReturnReg();
2705       if (!Reg) {
2706         MVT PtrTy = getPointerTy(DAG.getDataLayout());
2707         Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2708         FuncInfo->setSRetReturnReg(Reg);
2709       }
2710       SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]);
2711       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2712       break;
2713     }
2714   }
2715
2716   unsigned StackSize = CCInfo.getNextStackOffset();
2717   // Align stack specially for tail calls.
2718   if (FuncIsMadeTailCallSafe(CallConv,
2719                              MF.getTarget().Options.GuaranteedTailCallOpt))
2720     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2721
2722   // If the function takes variable number of arguments, make a frame index for
2723   // the start of the first vararg value... for expansion of llvm.va_start. We
2724   // can skip this if there are no va_start calls.
2725   if (MFI->hasVAStart() &&
2726       (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2727                    CallConv != CallingConv::X86_ThisCall))) {
2728     FuncInfo->setVarArgsFrameIndex(
2729         MFI->CreateFixedObject(1, StackSize, true));
2730   }
2731
2732   MachineModuleInfo &MMI = MF.getMMI();
2733
2734   // Figure out if XMM registers are in use.
2735   assert(!(Subtarget->useSoftFloat() &&
2736            Fn->hasFnAttribute(Attribute::NoImplicitFloat)) &&
2737          "SSE register cannot be used when SSE is disabled!");
2738
2739   // 64-bit calling conventions support varargs and register parameters, so we
2740   // have to do extra work to spill them in the prologue.
2741   if (Is64Bit && isVarArg && MFI->hasVAStart()) {
2742     // Find the first unallocated argument registers.
2743     ArrayRef<MCPhysReg> ArgGPRs = get64BitArgumentGPRs(CallConv, Subtarget);
2744     ArrayRef<MCPhysReg> ArgXMMs = get64BitArgumentXMMs(MF, CallConv, Subtarget);
2745     unsigned NumIntRegs = CCInfo.getFirstUnallocated(ArgGPRs);
2746     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(ArgXMMs);
2747     assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2748            "SSE register cannot be used when SSE is disabled!");
2749
2750     // Gather all the live in physical registers.
2751     SmallVector<SDValue, 6> LiveGPRs;
2752     SmallVector<SDValue, 8> LiveXMMRegs;
2753     SDValue ALVal;
2754     for (MCPhysReg Reg : ArgGPRs.slice(NumIntRegs)) {
2755       unsigned GPR = MF.addLiveIn(Reg, &X86::GR64RegClass);
2756       LiveGPRs.push_back(
2757           DAG.getCopyFromReg(Chain, dl, GPR, MVT::i64));
2758     }
2759     if (!ArgXMMs.empty()) {
2760       unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2761       ALVal = DAG.getCopyFromReg(Chain, dl, AL, MVT::i8);
2762       for (MCPhysReg Reg : ArgXMMs.slice(NumXMMRegs)) {
2763         unsigned XMMReg = MF.addLiveIn(Reg, &X86::VR128RegClass);
2764         LiveXMMRegs.push_back(
2765             DAG.getCopyFromReg(Chain, dl, XMMReg, MVT::v4f32));
2766       }
2767     }
2768
2769     if (IsWin64) {
2770       // Get to the caller-allocated home save location.  Add 8 to account
2771       // for the return address.
2772       int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2773       FuncInfo->setRegSaveFrameIndex(
2774           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2775       // Fixup to set vararg frame on shadow area (4 x i64).
2776       if (NumIntRegs < 4)
2777         FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2778     } else {
2779       // For X86-64, if there are vararg parameters that are passed via
2780       // registers, then we must store them to their spots on the stack so
2781       // they may be loaded by deferencing the result of va_next.
2782       FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2783       FuncInfo->setVarArgsFPOffset(ArgGPRs.size() * 8 + NumXMMRegs * 16);
2784       FuncInfo->setRegSaveFrameIndex(MFI->CreateStackObject(
2785           ArgGPRs.size() * 8 + ArgXMMs.size() * 16, 16, false));
2786     }
2787
2788     // Store the integer parameter registers.
2789     SmallVector<SDValue, 8> MemOps;
2790     SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2791                                       getPointerTy(DAG.getDataLayout()));
2792     unsigned Offset = FuncInfo->getVarArgsGPOffset();
2793     for (SDValue Val : LiveGPRs) {
2794       SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
2795                                 RSFIN, DAG.getIntPtrConstant(Offset, dl));
2796       SDValue Store =
2797           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2798                        MachinePointerInfo::getFixedStack(
2799                            DAG.getMachineFunction(),
2800                            FuncInfo->getRegSaveFrameIndex(), Offset),
2801                        false, false, 0);
2802       MemOps.push_back(Store);
2803       Offset += 8;
2804     }
2805
2806     if (!ArgXMMs.empty() && NumXMMRegs != ArgXMMs.size()) {
2807       // Now store the XMM (fp + vector) parameter registers.
2808       SmallVector<SDValue, 12> SaveXMMOps;
2809       SaveXMMOps.push_back(Chain);
2810       SaveXMMOps.push_back(ALVal);
2811       SaveXMMOps.push_back(DAG.getIntPtrConstant(
2812                              FuncInfo->getRegSaveFrameIndex(), dl));
2813       SaveXMMOps.push_back(DAG.getIntPtrConstant(
2814                              FuncInfo->getVarArgsFPOffset(), dl));
2815       SaveXMMOps.insert(SaveXMMOps.end(), LiveXMMRegs.begin(),
2816                         LiveXMMRegs.end());
2817       MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2818                                    MVT::Other, SaveXMMOps));
2819     }
2820
2821     if (!MemOps.empty())
2822       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2823   }
2824
2825   if (isVarArg && MFI->hasMustTailInVarArgFunc()) {
2826     // Find the largest legal vector type.
2827     MVT VecVT = MVT::Other;
2828     // FIXME: Only some x86_32 calling conventions support AVX512.
2829     if (Subtarget->hasAVX512() &&
2830         (Is64Bit || (CallConv == CallingConv::X86_VectorCall ||
2831                      CallConv == CallingConv::Intel_OCL_BI)))
2832       VecVT = MVT::v16f32;
2833     else if (Subtarget->hasAVX())
2834       VecVT = MVT::v8f32;
2835     else if (Subtarget->hasSSE2())
2836       VecVT = MVT::v4f32;
2837
2838     // We forward some GPRs and some vector types.
2839     SmallVector<MVT, 2> RegParmTypes;
2840     MVT IntVT = Is64Bit ? MVT::i64 : MVT::i32;
2841     RegParmTypes.push_back(IntVT);
2842     if (VecVT != MVT::Other)
2843       RegParmTypes.push_back(VecVT);
2844
2845     // Compute the set of forwarded registers. The rest are scratch.
2846     SmallVectorImpl<ForwardedRegister> &Forwards =
2847         FuncInfo->getForwardedMustTailRegParms();
2848     CCInfo.analyzeMustTailForwardedRegisters(Forwards, RegParmTypes, CC_X86);
2849
2850     // Conservatively forward AL on x86_64, since it might be used for varargs.
2851     if (Is64Bit && !CCInfo.isAllocated(X86::AL)) {
2852       unsigned ALVReg = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2853       Forwards.push_back(ForwardedRegister(ALVReg, X86::AL, MVT::i8));
2854     }
2855
2856     // Copy all forwards from physical to virtual registers.
2857     for (ForwardedRegister &F : Forwards) {
2858       // FIXME: Can we use a less constrained schedule?
2859       SDValue RegVal = DAG.getCopyFromReg(Chain, dl, F.VReg, F.VT);
2860       F.VReg = MF.getRegInfo().createVirtualRegister(getRegClassFor(F.VT));
2861       Chain = DAG.getCopyToReg(Chain, dl, F.VReg, RegVal);
2862     }
2863   }
2864
2865   // Some CCs need callee pop.
2866   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2867                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2868     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2869   } else {
2870     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2871     // If this is an sret function, the return should pop the hidden pointer.
2872     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2873         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2874         argsAreStructReturn(Ins) == StackStructReturn)
2875       FuncInfo->setBytesToPopOnReturn(4);
2876   }
2877
2878   if (!Is64Bit) {
2879     // RegSaveFrameIndex is X86-64 only.
2880     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2881     if (CallConv == CallingConv::X86_FastCall ||
2882         CallConv == CallingConv::X86_ThisCall)
2883       // fastcc functions can't have varargs.
2884       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2885   }
2886
2887   FuncInfo->setArgumentStackSize(StackSize);
2888
2889   if (MMI.hasWinEHFuncInfo(Fn)) {
2890     if (Is64Bit) {
2891       int UnwindHelpFI = MFI->CreateStackObject(8, 8, /*isSS=*/false);
2892       SDValue StackSlot = DAG.getFrameIndex(UnwindHelpFI, MVT::i64);
2893       MMI.getWinEHFuncInfo(MF.getFunction()).UnwindHelpFrameIdx = UnwindHelpFI;
2894       SDValue Neg2 = DAG.getConstant(-2, dl, MVT::i64);
2895       Chain = DAG.getStore(Chain, dl, Neg2, StackSlot,
2896                            MachinePointerInfo::getFixedStack(
2897                                DAG.getMachineFunction(), UnwindHelpFI),
2898                            /*isVolatile=*/true,
2899                            /*isNonTemporal=*/false, /*Alignment=*/0);
2900     } else {
2901       // Functions using Win32 EH are considered to have opaque SP adjustments
2902       // to force local variables to be addressed from the frame or base
2903       // pointers.
2904       MFI->setHasOpaqueSPAdjustment(true);
2905     }
2906   }
2907
2908   return Chain;
2909 }
2910
2911 SDValue
2912 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2913                                     SDValue StackPtr, SDValue Arg,
2914                                     SDLoc dl, SelectionDAG &DAG,
2915                                     const CCValAssign &VA,
2916                                     ISD::ArgFlagsTy Flags) const {
2917   unsigned LocMemOffset = VA.getLocMemOffset();
2918   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
2919   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
2920                        StackPtr, PtrOff);
2921   if (Flags.isByVal())
2922     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2923
2924   return DAG.getStore(
2925       Chain, dl, Arg, PtrOff,
2926       MachinePointerInfo::getStack(DAG.getMachineFunction(), LocMemOffset),
2927       false, false, 0);
2928 }
2929
2930 /// Emit a load of return address if tail call
2931 /// optimization is performed and it is required.
2932 SDValue
2933 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2934                                            SDValue &OutRetAddr, SDValue Chain,
2935                                            bool IsTailCall, bool Is64Bit,
2936                                            int FPDiff, SDLoc dl) const {
2937   // Adjust the Return address stack slot.
2938   EVT VT = getPointerTy(DAG.getDataLayout());
2939   OutRetAddr = getReturnAddressFrameIndex(DAG);
2940
2941   // Load the "old" Return address.
2942   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2943                            false, false, false, 0);
2944   return SDValue(OutRetAddr.getNode(), 1);
2945 }
2946
2947 /// Emit a store of the return address if tail call
2948 /// optimization is performed and it is required (FPDiff!=0).
2949 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2950                                         SDValue Chain, SDValue RetAddrFrIdx,
2951                                         EVT PtrVT, unsigned SlotSize,
2952                                         int FPDiff, SDLoc dl) {
2953   // Store the return address to the appropriate stack slot.
2954   if (!FPDiff) return Chain;
2955   // Calculate the new stack slot for the return address.
2956   int NewReturnAddrFI =
2957     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2958                                          false);
2959   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2960   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2961                        MachinePointerInfo::getFixedStack(
2962                            DAG.getMachineFunction(), NewReturnAddrFI),
2963                        false, false, 0);
2964   return Chain;
2965 }
2966
2967 /// Returns a vector_shuffle mask for an movs{s|d}, movd
2968 /// operation of specified width.
2969 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
2970                        SDValue V2) {
2971   unsigned NumElems = VT.getVectorNumElements();
2972   SmallVector<int, 8> Mask;
2973   Mask.push_back(NumElems);
2974   for (unsigned i = 1; i != NumElems; ++i)
2975     Mask.push_back(i);
2976   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
2977 }
2978
2979 SDValue
2980 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2981                              SmallVectorImpl<SDValue> &InVals) const {
2982   SelectionDAG &DAG                     = CLI.DAG;
2983   SDLoc &dl                             = CLI.DL;
2984   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2985   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2986   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2987   SDValue Chain                         = CLI.Chain;
2988   SDValue Callee                        = CLI.Callee;
2989   CallingConv::ID CallConv              = CLI.CallConv;
2990   bool &isTailCall                      = CLI.IsTailCall;
2991   bool isVarArg                         = CLI.IsVarArg;
2992
2993   MachineFunction &MF = DAG.getMachineFunction();
2994   bool Is64Bit        = Subtarget->is64Bit();
2995   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2996   StructReturnType SR = callIsStructReturn(Outs);
2997   bool IsSibcall      = false;
2998   X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2999   auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
3000
3001   if (Attr.getValueAsString() == "true")
3002     isTailCall = false;
3003
3004   if (Subtarget->isPICStyleGOT() &&
3005       !MF.getTarget().Options.GuaranteedTailCallOpt) {
3006     // If we are using a GOT, disable tail calls to external symbols with
3007     // default visibility. Tail calling such a symbol requires using a GOT
3008     // relocation, which forces early binding of the symbol. This breaks code
3009     // that require lazy function symbol resolution. Using musttail or
3010     // GuaranteedTailCallOpt will override this.
3011     GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
3012     if (!G || (!G->getGlobal()->hasLocalLinkage() &&
3013                G->getGlobal()->hasDefaultVisibility()))
3014       isTailCall = false;
3015   }
3016
3017   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
3018   if (IsMustTail) {
3019     // Force this to be a tail call.  The verifier rules are enough to ensure
3020     // that we can lower this successfully without moving the return address
3021     // around.
3022     isTailCall = true;
3023   } else if (isTailCall) {
3024     // Check if it's really possible to do a tail call.
3025     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
3026                     isVarArg, SR != NotStructReturn,
3027                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
3028                     Outs, OutVals, Ins, DAG);
3029
3030     // Sibcalls are automatically detected tailcalls which do not require
3031     // ABI changes.
3032     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
3033       IsSibcall = true;
3034
3035     if (isTailCall)
3036       ++NumTailCalls;
3037   }
3038
3039   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
3040          "Var args not supported with calling convention fastcc, ghc or hipe");
3041
3042   // Analyze operands of the call, assigning locations to each operand.
3043   SmallVector<CCValAssign, 16> ArgLocs;
3044   CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext());
3045
3046   // Allocate shadow area for Win64
3047   if (IsWin64)
3048     CCInfo.AllocateStack(32, 8);
3049
3050   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3051
3052   // Get a count of how many bytes are to be pushed on the stack.
3053   unsigned NumBytes = CCInfo.getAlignedCallFrameSize();
3054   if (IsSibcall)
3055     // This is a sibcall. The memory operands are available in caller's
3056     // own caller's stack.
3057     NumBytes = 0;
3058   else if (MF.getTarget().Options.GuaranteedTailCallOpt &&
3059            IsTailCallConvention(CallConv))
3060     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
3061
3062   int FPDiff = 0;
3063   if (isTailCall && !IsSibcall && !IsMustTail) {
3064     // Lower arguments at fp - stackoffset + fpdiff.
3065     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
3066
3067     FPDiff = NumBytesCallerPushed - NumBytes;
3068
3069     // Set the delta of movement of the returnaddr stackslot.
3070     // But only set if delta is greater than previous delta.
3071     if (FPDiff < X86Info->getTCReturnAddrDelta())
3072       X86Info->setTCReturnAddrDelta(FPDiff);
3073   }
3074
3075   unsigned NumBytesToPush = NumBytes;
3076   unsigned NumBytesToPop = NumBytes;
3077
3078   // If we have an inalloca argument, all stack space has already been allocated
3079   // for us and be right at the top of the stack.  We don't support multiple
3080   // arguments passed in memory when using inalloca.
3081   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
3082     NumBytesToPush = 0;
3083     if (!ArgLocs.back().isMemLoc())
3084       report_fatal_error("cannot use inalloca attribute on a register "
3085                          "parameter");
3086     if (ArgLocs.back().getLocMemOffset() != 0)
3087       report_fatal_error("any parameter with the inalloca attribute must be "
3088                          "the only memory argument");
3089   }
3090
3091   if (!IsSibcall)
3092     Chain = DAG.getCALLSEQ_START(
3093         Chain, DAG.getIntPtrConstant(NumBytesToPush, dl, true), dl);
3094
3095   SDValue RetAddrFrIdx;
3096   // Load return address for tail calls.
3097   if (isTailCall && FPDiff)
3098     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
3099                                     Is64Bit, FPDiff, dl);
3100
3101   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3102   SmallVector<SDValue, 8> MemOpChains;
3103   SDValue StackPtr;
3104
3105   // Walk the register/memloc assignments, inserting copies/loads.  In the case
3106   // of tail call optimization arguments are handle later.
3107   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3108   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3109     // Skip inalloca arguments, they have already been written.
3110     ISD::ArgFlagsTy Flags = Outs[i].Flags;
3111     if (Flags.isInAlloca())
3112       continue;
3113
3114     CCValAssign &VA = ArgLocs[i];
3115     EVT RegVT = VA.getLocVT();
3116     SDValue Arg = OutVals[i];
3117     bool isByVal = Flags.isByVal();
3118
3119     // Promote the value if needed.
3120     switch (VA.getLocInfo()) {
3121     default: llvm_unreachable("Unknown loc info!");
3122     case CCValAssign::Full: break;
3123     case CCValAssign::SExt:
3124       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
3125       break;
3126     case CCValAssign::ZExt:
3127       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
3128       break;
3129     case CCValAssign::AExt:
3130       if (Arg.getValueType().isVector() &&
3131           Arg.getValueType().getScalarType() == MVT::i1)
3132         Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
3133       else if (RegVT.is128BitVector()) {
3134         // Special case: passing MMX values in XMM registers.
3135         Arg = DAG.getBitcast(MVT::i64, Arg);
3136         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
3137         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
3138       } else
3139         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
3140       break;
3141     case CCValAssign::BCvt:
3142       Arg = DAG.getBitcast(RegVT, Arg);
3143       break;
3144     case CCValAssign::Indirect: {
3145       // Store the argument.
3146       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
3147       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
3148       Chain = DAG.getStore(
3149           Chain, dl, Arg, SpillSlot,
3150           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
3151           false, false, 0);
3152       Arg = SpillSlot;
3153       break;
3154     }
3155     }
3156
3157     if (VA.isRegLoc()) {
3158       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3159       if (isVarArg && IsWin64) {
3160         // Win64 ABI requires argument XMM reg to be copied to the corresponding
3161         // shadow reg if callee is a varargs function.
3162         unsigned ShadowReg = 0;
3163         switch (VA.getLocReg()) {
3164         case X86::XMM0: ShadowReg = X86::RCX; break;
3165         case X86::XMM1: ShadowReg = X86::RDX; break;
3166         case X86::XMM2: ShadowReg = X86::R8; break;
3167         case X86::XMM3: ShadowReg = X86::R9; break;
3168         }
3169         if (ShadowReg)
3170           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
3171       }
3172     } else if (!IsSibcall && (!isTailCall || isByVal)) {
3173       assert(VA.isMemLoc());
3174       if (!StackPtr.getNode())
3175         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
3176                                       getPointerTy(DAG.getDataLayout()));
3177       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
3178                                              dl, DAG, VA, Flags));
3179     }
3180   }
3181
3182   if (!MemOpChains.empty())
3183     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
3184
3185   if (Subtarget->isPICStyleGOT()) {
3186     // ELF / PIC requires GOT in the EBX register before function calls via PLT
3187     // GOT pointer.
3188     if (!isTailCall) {
3189       RegsToPass.push_back(std::make_pair(
3190           unsigned(X86::EBX), DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(),
3191                                           getPointerTy(DAG.getDataLayout()))));
3192     } else {
3193       // If we are tail calling and generating PIC/GOT style code load the
3194       // address of the callee into ECX. The value in ecx is used as target of
3195       // the tail jump. This is done to circumvent the ebx/callee-saved problem
3196       // for tail calls on PIC/GOT architectures. Normally we would just put the
3197       // address of GOT into ebx and then call target@PLT. But for tail calls
3198       // ebx would be restored (since ebx is callee saved) before jumping to the
3199       // target@PLT.
3200
3201       // Note: The actual moving to ECX is done further down.
3202       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
3203       if (G && !G->getGlobal()->hasLocalLinkage() &&
3204           G->getGlobal()->hasDefaultVisibility())
3205         Callee = LowerGlobalAddress(Callee, DAG);
3206       else if (isa<ExternalSymbolSDNode>(Callee))
3207         Callee = LowerExternalSymbol(Callee, DAG);
3208     }
3209   }
3210
3211   if (Is64Bit && isVarArg && !IsWin64 && !IsMustTail) {
3212     // From AMD64 ABI document:
3213     // For calls that may call functions that use varargs or stdargs
3214     // (prototype-less calls or calls to functions containing ellipsis (...) in
3215     // the declaration) %al is used as hidden argument to specify the number
3216     // of SSE registers used. The contents of %al do not need to match exactly
3217     // the number of registers, but must be an ubound on the number of SSE
3218     // registers used and is in the range 0 - 8 inclusive.
3219
3220     // Count the number of XMM registers allocated.
3221     static const MCPhysReg XMMArgRegs[] = {
3222       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
3223       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
3224     };
3225     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs);
3226     assert((Subtarget->hasSSE1() || !NumXMMRegs)
3227            && "SSE registers cannot be used when SSE is disabled");
3228
3229     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
3230                                         DAG.getConstant(NumXMMRegs, dl,
3231                                                         MVT::i8)));
3232   }
3233
3234   if (isVarArg && IsMustTail) {
3235     const auto &Forwards = X86Info->getForwardedMustTailRegParms();
3236     for (const auto &F : Forwards) {
3237       SDValue Val = DAG.getCopyFromReg(Chain, dl, F.VReg, F.VT);
3238       RegsToPass.push_back(std::make_pair(unsigned(F.PReg), Val));
3239     }
3240   }
3241
3242   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
3243   // don't need this because the eligibility check rejects calls that require
3244   // shuffling arguments passed in memory.
3245   if (!IsSibcall && isTailCall) {
3246     // Force all the incoming stack arguments to be loaded from the stack
3247     // before any new outgoing arguments are stored to the stack, because the
3248     // outgoing stack slots may alias the incoming argument stack slots, and
3249     // the alias isn't otherwise explicit. This is slightly more conservative
3250     // than necessary, because it means that each store effectively depends
3251     // on every argument instead of just those arguments it would clobber.
3252     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
3253
3254     SmallVector<SDValue, 8> MemOpChains2;
3255     SDValue FIN;
3256     int FI = 0;
3257     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3258       CCValAssign &VA = ArgLocs[i];
3259       if (VA.isRegLoc())
3260         continue;
3261       assert(VA.isMemLoc());
3262       SDValue Arg = OutVals[i];
3263       ISD::ArgFlagsTy Flags = Outs[i].Flags;
3264       // Skip inalloca arguments.  They don't require any work.
3265       if (Flags.isInAlloca())
3266         continue;
3267       // Create frame index.
3268       int32_t Offset = VA.getLocMemOffset()+FPDiff;
3269       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
3270       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3271       FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
3272
3273       if (Flags.isByVal()) {
3274         // Copy relative to framepointer.
3275         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset(), dl);
3276         if (!StackPtr.getNode())
3277           StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
3278                                         getPointerTy(DAG.getDataLayout()));
3279         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
3280                              StackPtr, Source);
3281
3282         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
3283                                                          ArgChain,
3284                                                          Flags, DAG, dl));
3285       } else {
3286         // Store relative to framepointer.
3287         MemOpChains2.push_back(DAG.getStore(
3288             ArgChain, dl, Arg, FIN,
3289             MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
3290             false, false, 0));
3291       }
3292     }
3293
3294     if (!MemOpChains2.empty())
3295       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
3296
3297     // Store the return address to the appropriate stack slot.
3298     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
3299                                      getPointerTy(DAG.getDataLayout()),
3300                                      RegInfo->getSlotSize(), FPDiff, dl);
3301   }
3302
3303   // Build a sequence of copy-to-reg nodes chained together with token chain
3304   // and flag operands which copy the outgoing args into registers.
3305   SDValue InFlag;
3306   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3307     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3308                              RegsToPass[i].second, InFlag);
3309     InFlag = Chain.getValue(1);
3310   }
3311
3312   if (DAG.getTarget().getCodeModel() == CodeModel::Large) {
3313     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
3314     // In the 64-bit large code model, we have to make all calls
3315     // through a register, since the call instruction's 32-bit
3316     // pc-relative offset may not be large enough to hold the whole
3317     // address.
3318   } else if (Callee->getOpcode() == ISD::GlobalAddress) {
3319     // If the callee is a GlobalAddress node (quite common, every direct call
3320     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
3321     // it.
3322     GlobalAddressSDNode* G = cast<GlobalAddressSDNode>(Callee);
3323
3324     // We should use extra load for direct calls to dllimported functions in
3325     // non-JIT mode.
3326     const GlobalValue *GV = G->getGlobal();
3327     if (!GV->hasDLLImportStorageClass()) {
3328       unsigned char OpFlags = 0;
3329       bool ExtraLoad = false;
3330       unsigned WrapperKind = ISD::DELETED_NODE;
3331
3332       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
3333       // external symbols most go through the PLT in PIC mode.  If the symbol
3334       // has hidden or protected visibility, or if it is static or local, then
3335       // we don't need to use the PLT - we can directly call it.
3336       if (Subtarget->isTargetELF() &&
3337           DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
3338           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
3339         OpFlags = X86II::MO_PLT;
3340       } else if (Subtarget->isPICStyleStubAny() &&
3341                  !GV->isStrongDefinitionForLinker() &&
3342                  (!Subtarget->getTargetTriple().isMacOSX() ||
3343                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
3344         // PC-relative references to external symbols should go through $stub,
3345         // unless we're building with the leopard linker or later, which
3346         // automatically synthesizes these stubs.
3347         OpFlags = X86II::MO_DARWIN_STUB;
3348       } else if (Subtarget->isPICStyleRIPRel() && isa<Function>(GV) &&
3349                  cast<Function>(GV)->hasFnAttribute(Attribute::NonLazyBind)) {
3350         // If the function is marked as non-lazy, generate an indirect call
3351         // which loads from the GOT directly. This avoids runtime overhead
3352         // at the cost of eager binding (and one extra byte of encoding).
3353         OpFlags = X86II::MO_GOTPCREL;
3354         WrapperKind = X86ISD::WrapperRIP;
3355         ExtraLoad = true;
3356       }
3357
3358       Callee = DAG.getTargetGlobalAddress(
3359           GV, dl, getPointerTy(DAG.getDataLayout()), G->getOffset(), OpFlags);
3360
3361       // Add a wrapper if needed.
3362       if (WrapperKind != ISD::DELETED_NODE)
3363         Callee = DAG.getNode(X86ISD::WrapperRIP, dl,
3364                              getPointerTy(DAG.getDataLayout()), Callee);
3365       // Add extra indirection if needed.
3366       if (ExtraLoad)
3367         Callee = DAG.getLoad(
3368             getPointerTy(DAG.getDataLayout()), dl, DAG.getEntryNode(), Callee,
3369             MachinePointerInfo::getGOT(DAG.getMachineFunction()), false, false,
3370             false, 0);
3371     }
3372   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3373     unsigned char OpFlags = 0;
3374
3375     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
3376     // external symbols should go through the PLT.
3377     if (Subtarget->isTargetELF() &&
3378         DAG.getTarget().getRelocationModel() == Reloc::PIC_) {
3379       OpFlags = X86II::MO_PLT;
3380     } else if (Subtarget->isPICStyleStubAny() &&
3381                (!Subtarget->getTargetTriple().isMacOSX() ||
3382                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
3383       // PC-relative references to external symbols should go through $stub,
3384       // unless we're building with the leopard linker or later, which
3385       // automatically synthesizes these stubs.
3386       OpFlags = X86II::MO_DARWIN_STUB;
3387     }
3388
3389     Callee = DAG.getTargetExternalSymbol(
3390         S->getSymbol(), getPointerTy(DAG.getDataLayout()), OpFlags);
3391   } else if (Subtarget->isTarget64BitILP32() &&
3392              Callee->getValueType(0) == MVT::i32) {
3393     // Zero-extend the 32-bit Callee address into a 64-bit according to x32 ABI
3394     Callee = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, Callee);
3395   }
3396
3397   // Returns a chain & a flag for retval copy to use.
3398   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3399   SmallVector<SDValue, 8> Ops;
3400
3401   if (!IsSibcall && isTailCall) {
3402     Chain = DAG.getCALLSEQ_END(Chain,
3403                                DAG.getIntPtrConstant(NumBytesToPop, dl, true),
3404                                DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
3405     InFlag = Chain.getValue(1);
3406   }
3407
3408   Ops.push_back(Chain);
3409   Ops.push_back(Callee);
3410
3411   if (isTailCall)
3412     Ops.push_back(DAG.getConstant(FPDiff, dl, MVT::i32));
3413
3414   // Add argument registers to the end of the list so that they are known live
3415   // into the call.
3416   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3417     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3418                                   RegsToPass[i].second.getValueType()));
3419
3420   // Add a register mask operand representing the call-preserved registers.
3421   const uint32_t *Mask = RegInfo->getCallPreservedMask(MF, CallConv);
3422   assert(Mask && "Missing call preserved mask for calling convention");
3423
3424   // If this is an invoke in a 32-bit function using a funclet-based
3425   // personality, assume the function clobbers all registers. If an exception
3426   // is thrown, the runtime will not restore CSRs.
3427   // FIXME: Model this more precisely so that we can register allocate across
3428   // the normal edge and spill and fill across the exceptional edge.
3429   if (!Is64Bit && CLI.CS && CLI.CS->isInvoke()) {
3430     const Function *CallerFn = MF.getFunction();
3431     EHPersonality Pers =
3432         CallerFn->hasPersonalityFn()
3433             ? classifyEHPersonality(CallerFn->getPersonalityFn())
3434             : EHPersonality::Unknown;
3435     if (isFuncletEHPersonality(Pers))
3436       Mask = RegInfo->getNoPreservedMask();
3437   }
3438
3439   Ops.push_back(DAG.getRegisterMask(Mask));
3440
3441   if (InFlag.getNode())
3442     Ops.push_back(InFlag);
3443
3444   if (isTailCall) {
3445     // We used to do:
3446     //// If this is the first return lowered for this function, add the regs
3447     //// to the liveout set for the function.
3448     // This isn't right, although it's probably harmless on x86; liveouts
3449     // should be computed from returns not tail calls.  Consider a void
3450     // function making a tail call to a function returning int.
3451     MF.getFrameInfo()->setHasTailCall();
3452     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
3453   }
3454
3455   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
3456   InFlag = Chain.getValue(1);
3457
3458   // Create the CALLSEQ_END node.
3459   unsigned NumBytesForCalleeToPop;
3460   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
3461                        DAG.getTarget().Options.GuaranteedTailCallOpt))
3462     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
3463   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
3464            !Subtarget->getTargetTriple().isOSMSVCRT() &&
3465            SR == StackStructReturn)
3466     // If this is a call to a struct-return function, the callee
3467     // pops the hidden struct pointer, so we have to push it back.
3468     // This is common for Darwin/X86, Linux & Mingw32 targets.
3469     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
3470     NumBytesForCalleeToPop = 4;
3471   else
3472     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
3473
3474   // Returns a flag for retval copy to use.
3475   if (!IsSibcall) {
3476     Chain = DAG.getCALLSEQ_END(Chain,
3477                                DAG.getIntPtrConstant(NumBytesToPop, dl, true),
3478                                DAG.getIntPtrConstant(NumBytesForCalleeToPop, dl,
3479                                                      true),
3480                                InFlag, dl);
3481     InFlag = Chain.getValue(1);
3482   }
3483
3484   // Handle result values, copying them out of physregs into vregs that we
3485   // return.
3486   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3487                          Ins, dl, DAG, InVals);
3488 }
3489
3490 //===----------------------------------------------------------------------===//
3491 //                Fast Calling Convention (tail call) implementation
3492 //===----------------------------------------------------------------------===//
3493
3494 //  Like std call, callee cleans arguments, convention except that ECX is
3495 //  reserved for storing the tail called function address. Only 2 registers are
3496 //  free for argument passing (inreg). Tail call optimization is performed
3497 //  provided:
3498 //                * tailcallopt is enabled
3499 //                * caller/callee are fastcc
3500 //  On X86_64 architecture with GOT-style position independent code only local
3501 //  (within module) calls are supported at the moment.
3502 //  To keep the stack aligned according to platform abi the function
3503 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3504 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3505 //  If a tail called function callee has more arguments than the caller the
3506 //  caller needs to make sure that there is room to move the RETADDR to. This is
3507 //  achieved by reserving an area the size of the argument delta right after the
3508 //  original RETADDR, but before the saved framepointer or the spilled registers
3509 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3510 //  stack layout:
3511 //    arg1
3512 //    arg2
3513 //    RETADDR
3514 //    [ new RETADDR
3515 //      move area ]
3516 //    (possible EBP)
3517 //    ESI
3518 //    EDI
3519 //    local1 ..
3520
3521 /// Make the stack size align e.g 16n + 12 aligned for a 16-byte align
3522 /// requirement.
3523 unsigned
3524 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3525                                                SelectionDAG& DAG) const {
3526   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3527   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
3528   unsigned StackAlignment = TFI.getStackAlignment();
3529   uint64_t AlignMask = StackAlignment - 1;
3530   int64_t Offset = StackSize;
3531   unsigned SlotSize = RegInfo->getSlotSize();
3532   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3533     // Number smaller than 12 so just add the difference.
3534     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3535   } else {
3536     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3537     Offset = ((~AlignMask) & Offset) + StackAlignment +
3538       (StackAlignment-SlotSize);
3539   }
3540   return Offset;
3541 }
3542
3543 /// Return true if the given stack call argument is already available in the
3544 /// same position (relatively) of the caller's incoming argument stack.
3545 static
3546 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3547                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3548                          const X86InstrInfo *TII) {
3549   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3550   int FI = INT_MAX;
3551   if (Arg.getOpcode() == ISD::CopyFromReg) {
3552     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3553     if (!TargetRegisterInfo::isVirtualRegister(VR))
3554       return false;
3555     MachineInstr *Def = MRI->getVRegDef(VR);
3556     if (!Def)
3557       return false;
3558     if (!Flags.isByVal()) {
3559       if (!TII->isLoadFromStackSlot(Def, FI))
3560         return false;
3561     } else {
3562       unsigned Opcode = Def->getOpcode();
3563       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r ||
3564            Opcode == X86::LEA64_32r) &&
3565           Def->getOperand(1).isFI()) {
3566         FI = Def->getOperand(1).getIndex();
3567         Bytes = Flags.getByValSize();
3568       } else
3569         return false;
3570     }
3571   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3572     if (Flags.isByVal())
3573       // ByVal argument is passed in as a pointer but it's now being
3574       // dereferenced. e.g.
3575       // define @foo(%struct.X* %A) {
3576       //   tail call @bar(%struct.X* byval %A)
3577       // }
3578       return false;
3579     SDValue Ptr = Ld->getBasePtr();
3580     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3581     if (!FINode)
3582       return false;
3583     FI = FINode->getIndex();
3584   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3585     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3586     FI = FINode->getIndex();
3587     Bytes = Flags.getByValSize();
3588   } else
3589     return false;
3590
3591   assert(FI != INT_MAX);
3592   if (!MFI->isFixedObjectIndex(FI))
3593     return false;
3594   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3595 }
3596
3597 /// Check whether the call is eligible for tail call optimization. Targets
3598 /// that want to do tail call optimization should implement this function.
3599 bool X86TargetLowering::IsEligibleForTailCallOptimization(
3600     SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg,
3601     bool isCalleeStructRet, bool isCallerStructRet, Type *RetTy,
3602     const SmallVectorImpl<ISD::OutputArg> &Outs,
3603     const SmallVectorImpl<SDValue> &OutVals,
3604     const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const {
3605   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3606     return false;
3607
3608   // If -tailcallopt is specified, make fastcc functions tail-callable.
3609   const MachineFunction &MF = DAG.getMachineFunction();
3610   const Function *CallerF = MF.getFunction();
3611
3612   // If the function return type is x86_fp80 and the callee return type is not,
3613   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3614   // perform a tailcall optimization here.
3615   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3616     return false;
3617
3618   CallingConv::ID CallerCC = CallerF->getCallingConv();
3619   bool CCMatch = CallerCC == CalleeCC;
3620   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3621   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3622
3623   // Win64 functions have extra shadow space for argument homing. Don't do the
3624   // sibcall if the caller and callee have mismatched expectations for this
3625   // space.
3626   if (IsCalleeWin64 != IsCallerWin64)
3627     return false;
3628
3629   if (DAG.getTarget().Options.GuaranteedTailCallOpt) {
3630     if (IsTailCallConvention(CalleeCC) && CCMatch)
3631       return true;
3632     return false;
3633   }
3634
3635   // Look for obvious safe cases to perform tail call optimization that do not
3636   // require ABI changes. This is what gcc calls sibcall.
3637
3638   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3639   // emit a special epilogue.
3640   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3641   if (RegInfo->needsStackRealignment(MF))
3642     return false;
3643
3644   // Also avoid sibcall optimization if either caller or callee uses struct
3645   // return semantics.
3646   if (isCalleeStructRet || isCallerStructRet)
3647     return false;
3648
3649   // An stdcall/thiscall caller is expected to clean up its arguments; the
3650   // callee isn't going to do that.
3651   // FIXME: this is more restrictive than needed. We could produce a tailcall
3652   // when the stack adjustment matches. For example, with a thiscall that takes
3653   // only one argument.
3654   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3655                    CallerCC == CallingConv::X86_ThisCall))
3656     return false;
3657
3658   // Do not sibcall optimize vararg calls unless all arguments are passed via
3659   // registers.
3660   if (isVarArg && !Outs.empty()) {
3661
3662     // Optimizing for varargs on Win64 is unlikely to be safe without
3663     // additional testing.
3664     if (IsCalleeWin64 || IsCallerWin64)
3665       return false;
3666
3667     SmallVector<CCValAssign, 16> ArgLocs;
3668     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
3669                    *DAG.getContext());
3670
3671     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3672     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3673       if (!ArgLocs[i].isRegLoc())
3674         return false;
3675   }
3676
3677   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3678   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3679   // this into a sibcall.
3680   bool Unused = false;
3681   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3682     if (!Ins[i].Used) {
3683       Unused = true;
3684       break;
3685     }
3686   }
3687   if (Unused) {
3688     SmallVector<CCValAssign, 16> RVLocs;
3689     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(), RVLocs,
3690                    *DAG.getContext());
3691     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3692     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3693       CCValAssign &VA = RVLocs[i];
3694       if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1)
3695         return false;
3696     }
3697   }
3698
3699   // If the calling conventions do not match, then we'd better make sure the
3700   // results are returned in the same way as what the caller expects.
3701   if (!CCMatch) {
3702     SmallVector<CCValAssign, 16> RVLocs1;
3703     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
3704                     *DAG.getContext());
3705     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3706
3707     SmallVector<CCValAssign, 16> RVLocs2;
3708     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
3709                     *DAG.getContext());
3710     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3711
3712     if (RVLocs1.size() != RVLocs2.size())
3713       return false;
3714     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3715       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3716         return false;
3717       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3718         return false;
3719       if (RVLocs1[i].isRegLoc()) {
3720         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3721           return false;
3722       } else {
3723         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3724           return false;
3725       }
3726     }
3727   }
3728
3729   // If the callee takes no arguments then go on to check the results of the
3730   // call.
3731   if (!Outs.empty()) {
3732     // Check if stack adjustment is needed. For now, do not do this if any
3733     // argument is passed on the stack.
3734     SmallVector<CCValAssign, 16> ArgLocs;
3735     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
3736                    *DAG.getContext());
3737
3738     // Allocate shadow area for Win64
3739     if (IsCalleeWin64)
3740       CCInfo.AllocateStack(32, 8);
3741
3742     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3743     if (CCInfo.getNextStackOffset()) {
3744       MachineFunction &MF = DAG.getMachineFunction();
3745       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3746         return false;
3747
3748       // Check if the arguments are already laid out in the right way as
3749       // the caller's fixed stack objects.
3750       MachineFrameInfo *MFI = MF.getFrameInfo();
3751       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3752       const X86InstrInfo *TII = Subtarget->getInstrInfo();
3753       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3754         CCValAssign &VA = ArgLocs[i];
3755         SDValue Arg = OutVals[i];
3756         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3757         if (VA.getLocInfo() == CCValAssign::Indirect)
3758           return false;
3759         if (!VA.isRegLoc()) {
3760           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3761                                    MFI, MRI, TII))
3762             return false;
3763         }
3764       }
3765     }
3766
3767     // If the tailcall address may be in a register, then make sure it's
3768     // possible to register allocate for it. In 32-bit, the call address can
3769     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3770     // callee-saved registers are restored. These happen to be the same
3771     // registers used to pass 'inreg' arguments so watch out for those.
3772     if (!Subtarget->is64Bit() &&
3773         ((!isa<GlobalAddressSDNode>(Callee) &&
3774           !isa<ExternalSymbolSDNode>(Callee)) ||
3775          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3776       unsigned NumInRegs = 0;
3777       // In PIC we need an extra register to formulate the address computation
3778       // for the callee.
3779       unsigned MaxInRegs =
3780         (DAG.getTarget().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3781
3782       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3783         CCValAssign &VA = ArgLocs[i];
3784         if (!VA.isRegLoc())
3785           continue;
3786         unsigned Reg = VA.getLocReg();
3787         switch (Reg) {
3788         default: break;
3789         case X86::EAX: case X86::EDX: case X86::ECX:
3790           if (++NumInRegs == MaxInRegs)
3791             return false;
3792           break;
3793         }
3794       }
3795     }
3796   }
3797
3798   return true;
3799 }
3800
3801 FastISel *
3802 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3803                                   const TargetLibraryInfo *libInfo) const {
3804   return X86::createFastISel(funcInfo, libInfo);
3805 }
3806
3807 //===----------------------------------------------------------------------===//
3808 //                           Other Lowering Hooks
3809 //===----------------------------------------------------------------------===//
3810
3811 static bool MayFoldLoad(SDValue Op) {
3812   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3813 }
3814
3815 static bool MayFoldIntoStore(SDValue Op) {
3816   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3817 }
3818
3819 static bool isTargetShuffle(unsigned Opcode) {
3820   switch(Opcode) {
3821   default: return false;
3822   case X86ISD::BLENDI:
3823   case X86ISD::PSHUFB:
3824   case X86ISD::PSHUFD:
3825   case X86ISD::PSHUFHW:
3826   case X86ISD::PSHUFLW:
3827   case X86ISD::SHUFP:
3828   case X86ISD::PALIGNR:
3829   case X86ISD::MOVLHPS:
3830   case X86ISD::MOVLHPD:
3831   case X86ISD::MOVHLPS:
3832   case X86ISD::MOVLPS:
3833   case X86ISD::MOVLPD:
3834   case X86ISD::MOVSHDUP:
3835   case X86ISD::MOVSLDUP:
3836   case X86ISD::MOVDDUP:
3837   case X86ISD::MOVSS:
3838   case X86ISD::MOVSD:
3839   case X86ISD::UNPCKL:
3840   case X86ISD::UNPCKH:
3841   case X86ISD::VPERMILPI:
3842   case X86ISD::VPERM2X128:
3843   case X86ISD::VPERMI:
3844   case X86ISD::VPERMV:
3845   case X86ISD::VPERMV3:
3846     return true;
3847   }
3848 }
3849
3850 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3851                                     SDValue V1, unsigned TargetMask,
3852                                     SelectionDAG &DAG) {
3853   switch(Opc) {
3854   default: llvm_unreachable("Unknown x86 shuffle node");
3855   case X86ISD::PSHUFD:
3856   case X86ISD::PSHUFHW:
3857   case X86ISD::PSHUFLW:
3858   case X86ISD::VPERMILPI:
3859   case X86ISD::VPERMI:
3860     return DAG.getNode(Opc, dl, VT, V1,
3861                        DAG.getConstant(TargetMask, dl, MVT::i8));
3862   }
3863 }
3864
3865 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3866                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3867   switch(Opc) {
3868   default: llvm_unreachable("Unknown x86 shuffle node");
3869   case X86ISD::MOVLHPS:
3870   case X86ISD::MOVLHPD:
3871   case X86ISD::MOVHLPS:
3872   case X86ISD::MOVLPS:
3873   case X86ISD::MOVLPD:
3874   case X86ISD::MOVSS:
3875   case X86ISD::MOVSD:
3876   case X86ISD::UNPCKL:
3877   case X86ISD::UNPCKH:
3878     return DAG.getNode(Opc, dl, VT, V1, V2);
3879   }
3880 }
3881
3882 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3883   MachineFunction &MF = DAG.getMachineFunction();
3884   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3885   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3886   int ReturnAddrIndex = FuncInfo->getRAIndex();
3887
3888   if (ReturnAddrIndex == 0) {
3889     // Set up a frame object for the return address.
3890     unsigned SlotSize = RegInfo->getSlotSize();
3891     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3892                                                            -(int64_t)SlotSize,
3893                                                            false);
3894     FuncInfo->setRAIndex(ReturnAddrIndex);
3895   }
3896
3897   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy(DAG.getDataLayout()));
3898 }
3899
3900 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3901                                        bool hasSymbolicDisplacement) {
3902   // Offset should fit into 32 bit immediate field.
3903   if (!isInt<32>(Offset))
3904     return false;
3905
3906   // If we don't have a symbolic displacement - we don't have any extra
3907   // restrictions.
3908   if (!hasSymbolicDisplacement)
3909     return true;
3910
3911   // FIXME: Some tweaks might be needed for medium code model.
3912   if (M != CodeModel::Small && M != CodeModel::Kernel)
3913     return false;
3914
3915   // For small code model we assume that latest object is 16MB before end of 31
3916   // bits boundary. We may also accept pretty large negative constants knowing
3917   // that all objects are in the positive half of address space.
3918   if (M == CodeModel::Small && Offset < 16*1024*1024)
3919     return true;
3920
3921   // For kernel code model we know that all object resist in the negative half
3922   // of 32bits address space. We may not accept negative offsets, since they may
3923   // be just off and we may accept pretty large positive ones.
3924   if (M == CodeModel::Kernel && Offset >= 0)
3925     return true;
3926
3927   return false;
3928 }
3929
3930 /// Determines whether the callee is required to pop its own arguments.
3931 /// Callee pop is necessary to support tail calls.
3932 bool X86::isCalleePop(CallingConv::ID CallingConv,
3933                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3934
3935   if (IsTailCallConvention(CallingConv))
3936     return IsVarArg ? false : TailCallOpt;
3937
3938   switch (CallingConv) {
3939   default:
3940     return false;
3941   case CallingConv::X86_StdCall:
3942   case CallingConv::X86_FastCall:
3943   case CallingConv::X86_ThisCall:
3944     return !is64Bit;
3945   }
3946 }
3947
3948 /// \brief Return true if the condition is an unsigned comparison operation.
3949 static bool isX86CCUnsigned(unsigned X86CC) {
3950   switch (X86CC) {
3951   default: llvm_unreachable("Invalid integer condition!");
3952   case X86::COND_E:     return true;
3953   case X86::COND_G:     return false;
3954   case X86::COND_GE:    return false;
3955   case X86::COND_L:     return false;
3956   case X86::COND_LE:    return false;
3957   case X86::COND_NE:    return true;
3958   case X86::COND_B:     return true;
3959   case X86::COND_A:     return true;
3960   case X86::COND_BE:    return true;
3961   case X86::COND_AE:    return true;
3962   }
3963   llvm_unreachable("covered switch fell through?!");
3964 }
3965
3966 /// Do a one-to-one translation of a ISD::CondCode to the X86-specific
3967 /// condition code, returning the condition code and the LHS/RHS of the
3968 /// comparison to make.
3969 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, SDLoc DL, bool isFP,
3970                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3971   if (!isFP) {
3972     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3973       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3974         // X > -1   -> X == 0, jump !sign.
3975         RHS = DAG.getConstant(0, DL, RHS.getValueType());
3976         return X86::COND_NS;
3977       }
3978       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3979         // X < 0   -> X == 0, jump on sign.
3980         return X86::COND_S;
3981       }
3982       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3983         // X < 1   -> X <= 0
3984         RHS = DAG.getConstant(0, DL, RHS.getValueType());
3985         return X86::COND_LE;
3986       }
3987     }
3988
3989     switch (SetCCOpcode) {
3990     default: llvm_unreachable("Invalid integer condition!");
3991     case ISD::SETEQ:  return X86::COND_E;
3992     case ISD::SETGT:  return X86::COND_G;
3993     case ISD::SETGE:  return X86::COND_GE;
3994     case ISD::SETLT:  return X86::COND_L;
3995     case ISD::SETLE:  return X86::COND_LE;
3996     case ISD::SETNE:  return X86::COND_NE;
3997     case ISD::SETULT: return X86::COND_B;
3998     case ISD::SETUGT: return X86::COND_A;
3999     case ISD::SETULE: return X86::COND_BE;
4000     case ISD::SETUGE: return X86::COND_AE;
4001     }
4002   }
4003
4004   // First determine if it is required or is profitable to flip the operands.
4005
4006   // If LHS is a foldable load, but RHS is not, flip the condition.
4007   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
4008       !ISD::isNON_EXTLoad(RHS.getNode())) {
4009     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
4010     std::swap(LHS, RHS);
4011   }
4012
4013   switch (SetCCOpcode) {
4014   default: break;
4015   case ISD::SETOLT:
4016   case ISD::SETOLE:
4017   case ISD::SETUGT:
4018   case ISD::SETUGE:
4019     std::swap(LHS, RHS);
4020     break;
4021   }
4022
4023   // On a floating point condition, the flags are set as follows:
4024   // ZF  PF  CF   op
4025   //  0 | 0 | 0 | X > Y
4026   //  0 | 0 | 1 | X < Y
4027   //  1 | 0 | 0 | X == Y
4028   //  1 | 1 | 1 | unordered
4029   switch (SetCCOpcode) {
4030   default: llvm_unreachable("Condcode should be pre-legalized away");
4031   case ISD::SETUEQ:
4032   case ISD::SETEQ:   return X86::COND_E;
4033   case ISD::SETOLT:              // flipped
4034   case ISD::SETOGT:
4035   case ISD::SETGT:   return X86::COND_A;
4036   case ISD::SETOLE:              // flipped
4037   case ISD::SETOGE:
4038   case ISD::SETGE:   return X86::COND_AE;
4039   case ISD::SETUGT:              // flipped
4040   case ISD::SETULT:
4041   case ISD::SETLT:   return X86::COND_B;
4042   case ISD::SETUGE:              // flipped
4043   case ISD::SETULE:
4044   case ISD::SETLE:   return X86::COND_BE;
4045   case ISD::SETONE:
4046   case ISD::SETNE:   return X86::COND_NE;
4047   case ISD::SETUO:   return X86::COND_P;
4048   case ISD::SETO:    return X86::COND_NP;
4049   case ISD::SETOEQ:
4050   case ISD::SETUNE:  return X86::COND_INVALID;
4051   }
4052 }
4053
4054 /// Is there a floating point cmov for the specific X86 condition code?
4055 /// Current x86 isa includes the following FP cmov instructions:
4056 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
4057 static bool hasFPCMov(unsigned X86CC) {
4058   switch (X86CC) {
4059   default:
4060     return false;
4061   case X86::COND_B:
4062   case X86::COND_BE:
4063   case X86::COND_E:
4064   case X86::COND_P:
4065   case X86::COND_A:
4066   case X86::COND_AE:
4067   case X86::COND_NE:
4068   case X86::COND_NP:
4069     return true;
4070   }
4071 }
4072
4073 /// Returns true if the target can instruction select the
4074 /// specified FP immediate natively. If false, the legalizer will
4075 /// materialize the FP immediate as a load from a constant pool.
4076 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
4077   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
4078     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
4079       return true;
4080   }
4081   return false;
4082 }
4083
4084 bool X86TargetLowering::shouldReduceLoadWidth(SDNode *Load,
4085                                               ISD::LoadExtType ExtTy,
4086                                               EVT NewVT) const {
4087   // "ELF Handling for Thread-Local Storage" specifies that R_X86_64_GOTTPOFF
4088   // relocation target a movq or addq instruction: don't let the load shrink.
4089   SDValue BasePtr = cast<LoadSDNode>(Load)->getBasePtr();
4090   if (BasePtr.getOpcode() == X86ISD::WrapperRIP)
4091     if (const auto *GA = dyn_cast<GlobalAddressSDNode>(BasePtr.getOperand(0)))
4092       return GA->getTargetFlags() != X86II::MO_GOTTPOFF;
4093   return true;
4094 }
4095
4096 /// \brief Returns true if it is beneficial to convert a load of a constant
4097 /// to just the constant itself.
4098 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
4099                                                           Type *Ty) const {
4100   assert(Ty->isIntegerTy());
4101
4102   unsigned BitSize = Ty->getPrimitiveSizeInBits();
4103   if (BitSize == 0 || BitSize > 64)
4104     return false;
4105   return true;
4106 }
4107
4108 bool X86TargetLowering::isExtractSubvectorCheap(EVT ResVT,
4109                                                 unsigned Index) const {
4110   if (!isOperationLegalOrCustom(ISD::EXTRACT_SUBVECTOR, ResVT))
4111     return false;
4112
4113   return (Index == 0 || Index == ResVT.getVectorNumElements());
4114 }
4115
4116 bool X86TargetLowering::isCheapToSpeculateCttz() const {
4117   // Speculate cttz only if we can directly use TZCNT.
4118   return Subtarget->hasBMI();
4119 }
4120
4121 bool X86TargetLowering::isCheapToSpeculateCtlz() const {
4122   // Speculate ctlz only if we can directly use LZCNT.
4123   return Subtarget->hasLZCNT();
4124 }
4125
4126 /// Return true if every element in Mask, beginning
4127 /// from position Pos and ending in Pos+Size is undef.
4128 static bool isUndefInRange(ArrayRef<int> Mask, unsigned Pos, unsigned Size) {
4129   for (unsigned i = Pos, e = Pos + Size; i != e; ++i)
4130     if (0 <= Mask[i])
4131       return false;
4132   return true;
4133 }
4134
4135 /// Return true if Val is undef or if its value falls within the
4136 /// specified range (L, H].
4137 static bool isUndefOrInRange(int Val, int Low, int Hi) {
4138   return (Val < 0) || (Val >= Low && Val < Hi);
4139 }
4140
4141 /// Val is either less than zero (undef) or equal to the specified value.
4142 static bool isUndefOrEqual(int Val, int CmpVal) {
4143   return (Val < 0 || Val == CmpVal);
4144 }
4145
4146 /// Return true if every element in Mask, beginning
4147 /// from position Pos and ending in Pos+Size, falls within the specified
4148 /// sequential range (Low, Low+Size]. or is undef.
4149 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
4150                                        unsigned Pos, unsigned Size, int Low) {
4151   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
4152     if (!isUndefOrEqual(Mask[i], Low))
4153       return false;
4154   return true;
4155 }
4156
4157 /// Return true if the specified EXTRACT_SUBVECTOR operand specifies a vector
4158 /// extract that is suitable for instruction that extract 128 or 256 bit vectors
4159 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4160   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4161   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4162     return false;
4163
4164   // The index should be aligned on a vecWidth-bit boundary.
4165   uint64_t Index =
4166     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4167
4168   MVT VT = N->getSimpleValueType(0);
4169   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4170   bool Result = (Index * ElSize) % vecWidth == 0;
4171
4172   return Result;
4173 }
4174
4175 /// Return true if the specified INSERT_SUBVECTOR
4176 /// operand specifies a subvector insert that is suitable for input to
4177 /// insertion of 128 or 256-bit subvectors
4178 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4179   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4180   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4181     return false;
4182   // The index should be aligned on a vecWidth-bit boundary.
4183   uint64_t Index =
4184     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4185
4186   MVT VT = N->getSimpleValueType(0);
4187   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4188   bool Result = (Index * ElSize) % vecWidth == 0;
4189
4190   return Result;
4191 }
4192
4193 bool X86::isVINSERT128Index(SDNode *N) {
4194   return isVINSERTIndex(N, 128);
4195 }
4196
4197 bool X86::isVINSERT256Index(SDNode *N) {
4198   return isVINSERTIndex(N, 256);
4199 }
4200
4201 bool X86::isVEXTRACT128Index(SDNode *N) {
4202   return isVEXTRACTIndex(N, 128);
4203 }
4204
4205 bool X86::isVEXTRACT256Index(SDNode *N) {
4206   return isVEXTRACTIndex(N, 256);
4207 }
4208
4209 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4210   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4211   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4212     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4213
4214   uint64_t Index =
4215     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4216
4217   MVT VecVT = N->getOperand(0).getSimpleValueType();
4218   MVT ElVT = VecVT.getVectorElementType();
4219
4220   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4221   return Index / NumElemsPerChunk;
4222 }
4223
4224 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4225   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4226   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4227     llvm_unreachable("Illegal insert subvector for VINSERT");
4228
4229   uint64_t Index =
4230     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4231
4232   MVT VecVT = N->getSimpleValueType(0);
4233   MVT ElVT = VecVT.getVectorElementType();
4234
4235   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4236   return Index / NumElemsPerChunk;
4237 }
4238
4239 /// Return the appropriate immediate to extract the specified
4240 /// EXTRACT_SUBVECTOR index with VEXTRACTF128 and VINSERTI128 instructions.
4241 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4242   return getExtractVEXTRACTImmediate(N, 128);
4243 }
4244
4245 /// Return the appropriate immediate to extract the specified
4246 /// EXTRACT_SUBVECTOR index with VEXTRACTF64x4 and VINSERTI64x4 instructions.
4247 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4248   return getExtractVEXTRACTImmediate(N, 256);
4249 }
4250
4251 /// Return the appropriate immediate to insert at the specified
4252 /// INSERT_SUBVECTOR index with VINSERTF128 and VINSERTI128 instructions.
4253 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4254   return getInsertVINSERTImmediate(N, 128);
4255 }
4256
4257 /// Return the appropriate immediate to insert at the specified
4258 /// INSERT_SUBVECTOR index with VINSERTF46x4 and VINSERTI64x4 instructions.
4259 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4260   return getInsertVINSERTImmediate(N, 256);
4261 }
4262
4263 /// Returns true if V is a constant integer zero.
4264 static bool isZero(SDValue V) {
4265   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
4266   return C && C->isNullValue();
4267 }
4268
4269 /// Returns true if Elt is a constant zero or a floating point constant +0.0.
4270 bool X86::isZeroNode(SDValue Elt) {
4271   if (isZero(Elt))
4272     return true;
4273   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4274     return CFP->getValueAPF().isPosZero();
4275   return false;
4276 }
4277
4278 // Build a vector of constants
4279 // Use an UNDEF node if MaskElt == -1.
4280 // Spilt 64-bit constants in the 32-bit mode.
4281 static SDValue getConstVector(ArrayRef<int> Values, EVT VT,
4282                               SelectionDAG &DAG,
4283                               SDLoc dl, bool IsMask = false) {
4284
4285   SmallVector<SDValue, 32>  Ops;
4286   bool Split = false;
4287
4288   EVT ConstVecVT = VT;
4289   unsigned NumElts = VT.getVectorNumElements();
4290   bool In64BitMode = DAG.getTargetLoweringInfo().isTypeLegal(MVT::i64);
4291   if (!In64BitMode && VT.getScalarType() == MVT::i64) {
4292     ConstVecVT = MVT::getVectorVT(MVT::i32, NumElts * 2);
4293     Split = true;
4294   }
4295
4296   EVT EltVT = ConstVecVT.getScalarType();
4297   for (unsigned i = 0; i < NumElts; ++i) {
4298     bool IsUndef = Values[i] < 0 && IsMask;
4299     SDValue OpNode = IsUndef ? DAG.getUNDEF(EltVT) :
4300       DAG.getConstant(Values[i], dl, EltVT);
4301     Ops.push_back(OpNode);
4302     if (Split)
4303       Ops.push_back(IsUndef ? DAG.getUNDEF(EltVT) :
4304                     DAG.getConstant(0, dl, EltVT));
4305   }
4306   SDValue ConstsNode = DAG.getNode(ISD::BUILD_VECTOR, dl, ConstVecVT, Ops);
4307   if (Split)
4308     ConstsNode = DAG.getBitcast(VT, ConstsNode);
4309   return ConstsNode;
4310 }
4311
4312 /// Returns a vector of specified type with all zero elements.
4313 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4314                              SelectionDAG &DAG, SDLoc dl) {
4315   assert(VT.isVector() && "Expected a vector type");
4316
4317   // Always build SSE zero vectors as <4 x i32> bitcasted
4318   // to their dest type. This ensures they get CSE'd.
4319   SDValue Vec;
4320   if (VT.is128BitVector()) {  // SSE
4321     if (Subtarget->hasSSE2()) {  // SSE2
4322       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4323       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4324     } else { // SSE1
4325       SDValue Cst = DAG.getConstantFP(+0.0, dl, MVT::f32);
4326       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4327     }
4328   } else if (VT.is256BitVector()) { // AVX
4329     if (Subtarget->hasInt256()) { // AVX2
4330       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4331       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4332       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4333     } else {
4334       // 256-bit logic and arithmetic instructions in AVX are all
4335       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4336       SDValue Cst = DAG.getConstantFP(+0.0, dl, MVT::f32);
4337       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4338       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4339     }
4340   } else if (VT.is512BitVector()) { // AVX-512
4341       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4342       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4343                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4344       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4345   } else if (VT.getScalarType() == MVT::i1) {
4346
4347     assert((Subtarget->hasBWI() || VT.getVectorNumElements() <= 16)
4348             && "Unexpected vector type");
4349     assert((Subtarget->hasVLX() || VT.getVectorNumElements() >= 8)
4350             && "Unexpected vector type");
4351     SDValue Cst = DAG.getConstant(0, dl, MVT::i1);
4352     SmallVector<SDValue, 64> Ops(VT.getVectorNumElements(), Cst);
4353     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4354   } else
4355     llvm_unreachable("Unexpected vector type");
4356
4357   return DAG.getBitcast(VT, Vec);
4358 }
4359
4360 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
4361                                 SelectionDAG &DAG, SDLoc dl,
4362                                 unsigned vectorWidth) {
4363   assert((vectorWidth == 128 || vectorWidth == 256) &&
4364          "Unsupported vector width");
4365   EVT VT = Vec.getValueType();
4366   EVT ElVT = VT.getVectorElementType();
4367   unsigned Factor = VT.getSizeInBits()/vectorWidth;
4368   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
4369                                   VT.getVectorNumElements()/Factor);
4370
4371   // Extract from UNDEF is UNDEF.
4372   if (Vec.getOpcode() == ISD::UNDEF)
4373     return DAG.getUNDEF(ResultVT);
4374
4375   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
4376   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
4377
4378   // This is the index of the first element of the vectorWidth-bit chunk
4379   // we want.
4380   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
4381                                * ElemsPerChunk);
4382
4383   // If the input is a buildvector just emit a smaller one.
4384   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
4385     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
4386                        makeArrayRef(Vec->op_begin() + NormalizedIdxVal,
4387                                     ElemsPerChunk));
4388
4389   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal, dl);
4390   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec, VecIdx);
4391 }
4392
4393 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
4394 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
4395 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
4396 /// instructions or a simple subregister reference. Idx is an index in the
4397 /// 128 bits we want.  It need not be aligned to a 128-bit boundary.  That makes
4398 /// lowering EXTRACT_VECTOR_ELT operations easier.
4399 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
4400                                    SelectionDAG &DAG, SDLoc dl) {
4401   assert((Vec.getValueType().is256BitVector() ||
4402           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
4403   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
4404 }
4405
4406 /// Generate a DAG to grab 256-bits from a 512-bit vector.
4407 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
4408                                    SelectionDAG &DAG, SDLoc dl) {
4409   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
4410   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
4411 }
4412
4413 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
4414                                unsigned IdxVal, SelectionDAG &DAG,
4415                                SDLoc dl, unsigned vectorWidth) {
4416   assert((vectorWidth == 128 || vectorWidth == 256) &&
4417          "Unsupported vector width");
4418   // Inserting UNDEF is Result
4419   if (Vec.getOpcode() == ISD::UNDEF)
4420     return Result;
4421   EVT VT = Vec.getValueType();
4422   EVT ElVT = VT.getVectorElementType();
4423   EVT ResultVT = Result.getValueType();
4424
4425   // Insert the relevant vectorWidth bits.
4426   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
4427
4428   // This is the index of the first element of the vectorWidth-bit chunk
4429   // we want.
4430   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
4431                                * ElemsPerChunk);
4432
4433   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal, dl);
4434   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec, VecIdx);
4435 }
4436
4437 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
4438 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
4439 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
4440 /// simple superregister reference.  Idx is an index in the 128 bits
4441 /// we want.  It need not be aligned to a 128-bit boundary.  That makes
4442 /// lowering INSERT_VECTOR_ELT operations easier.
4443 static SDValue Insert128BitVector(SDValue Result, SDValue Vec, unsigned IdxVal,
4444                                   SelectionDAG &DAG, SDLoc dl) {
4445   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
4446
4447   // For insertion into the zero index (low half) of a 256-bit vector, it is
4448   // more efficient to generate a blend with immediate instead of an insert*128.
4449   // We are still creating an INSERT_SUBVECTOR below with an undef node to
4450   // extend the subvector to the size of the result vector. Make sure that
4451   // we are not recursing on that node by checking for undef here.
4452   if (IdxVal == 0 && Result.getValueType().is256BitVector() &&
4453       Result.getOpcode() != ISD::UNDEF) {
4454     EVT ResultVT = Result.getValueType();
4455     SDValue ZeroIndex = DAG.getIntPtrConstant(0, dl);
4456     SDValue Undef = DAG.getUNDEF(ResultVT);
4457     SDValue Vec256 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Undef,
4458                                  Vec, ZeroIndex);
4459
4460     // The blend instruction, and therefore its mask, depend on the data type.
4461     MVT ScalarType = ResultVT.getScalarType().getSimpleVT();
4462     if (ScalarType.isFloatingPoint()) {
4463       // Choose either vblendps (float) or vblendpd (double).
4464       unsigned ScalarSize = ScalarType.getSizeInBits();
4465       assert((ScalarSize == 64 || ScalarSize == 32) && "Unknown float type");
4466       unsigned MaskVal = (ScalarSize == 64) ? 0x03 : 0x0f;
4467       SDValue Mask = DAG.getConstant(MaskVal, dl, MVT::i8);
4468       return DAG.getNode(X86ISD::BLENDI, dl, ResultVT, Result, Vec256, Mask);
4469     }
4470
4471     const X86Subtarget &Subtarget =
4472     static_cast<const X86Subtarget &>(DAG.getSubtarget());
4473
4474     // AVX2 is needed for 256-bit integer blend support.
4475     // Integers must be cast to 32-bit because there is only vpblendd;
4476     // vpblendw can't be used for this because it has a handicapped mask.
4477
4478     // If we don't have AVX2, then cast to float. Using a wrong domain blend
4479     // is still more efficient than using the wrong domain vinsertf128 that
4480     // will be created by InsertSubVector().
4481     MVT CastVT = Subtarget.hasAVX2() ? MVT::v8i32 : MVT::v8f32;
4482
4483     SDValue Mask = DAG.getConstant(0x0f, dl, MVT::i8);
4484     Vec256 = DAG.getBitcast(CastVT, Vec256);
4485     Vec256 = DAG.getNode(X86ISD::BLENDI, dl, CastVT, Result, Vec256, Mask);
4486     return DAG.getBitcast(ResultVT, Vec256);
4487   }
4488
4489   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
4490 }
4491
4492 static SDValue Insert256BitVector(SDValue Result, SDValue Vec, unsigned IdxVal,
4493                                   SelectionDAG &DAG, SDLoc dl) {
4494   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
4495   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
4496 }
4497
4498 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
4499 /// instructions. This is used because creating CONCAT_VECTOR nodes of
4500 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
4501 /// large BUILD_VECTORS.
4502 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
4503                                    unsigned NumElems, SelectionDAG &DAG,
4504                                    SDLoc dl) {
4505   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4506   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
4507 }
4508
4509 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
4510                                    unsigned NumElems, SelectionDAG &DAG,
4511                                    SDLoc dl) {
4512   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4513   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
4514 }
4515
4516 /// Returns a vector of specified type with all bits set.
4517 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4518 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4519 /// Then bitcast to their original type, ensuring they get CSE'd.
4520 static SDValue getOnesVector(EVT VT, const X86Subtarget *Subtarget,
4521                              SelectionDAG &DAG, SDLoc dl) {
4522   assert(VT.isVector() && "Expected a vector type");
4523
4524   SDValue Cst = DAG.getConstant(~0U, dl, MVT::i32);
4525   SDValue Vec;
4526   if (VT.is512BitVector()) {
4527     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4528                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4529     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4530   } else if (VT.is256BitVector()) {
4531     if (Subtarget->hasInt256()) { // AVX2
4532       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4533       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4534     } else { // AVX
4535       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4536       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4537     }
4538   } else if (VT.is128BitVector()) {
4539     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4540   } else
4541     llvm_unreachable("Unexpected vector type");
4542
4543   return DAG.getBitcast(VT, Vec);
4544 }
4545
4546 /// Returns a vector_shuffle node for an unpackl operation.
4547 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4548                           SDValue V2) {
4549   unsigned NumElems = VT.getVectorNumElements();
4550   SmallVector<int, 8> Mask;
4551   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4552     Mask.push_back(i);
4553     Mask.push_back(i + NumElems);
4554   }
4555   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4556 }
4557
4558 /// Returns a vector_shuffle node for an unpackh operation.
4559 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4560                           SDValue V2) {
4561   unsigned NumElems = VT.getVectorNumElements();
4562   SmallVector<int, 8> Mask;
4563   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4564     Mask.push_back(i + Half);
4565     Mask.push_back(i + NumElems + Half);
4566   }
4567   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4568 }
4569
4570 /// Return a vector_shuffle of the specified vector of zero or undef vector.
4571 /// This produces a shuffle where the low element of V2 is swizzled into the
4572 /// zero/undef vector, landing at element Idx.
4573 /// This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4574 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4575                                            bool IsZero,
4576                                            const X86Subtarget *Subtarget,
4577                                            SelectionDAG &DAG) {
4578   MVT VT = V2.getSimpleValueType();
4579   SDValue V1 = IsZero
4580     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4581   unsigned NumElems = VT.getVectorNumElements();
4582   SmallVector<int, 16> MaskVec;
4583   for (unsigned i = 0; i != NumElems; ++i)
4584     // If this is the insertion idx, put the low elt of V2 here.
4585     MaskVec.push_back(i == Idx ? NumElems : i);
4586   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4587 }
4588
4589 /// Calculates the shuffle mask corresponding to the target-specific opcode.
4590 /// Returns true if the Mask could be calculated. Sets IsUnary to true if only
4591 /// uses one source. Note that this will set IsUnary for shuffles which use a
4592 /// single input multiple times, and in those cases it will
4593 /// adjust the mask to only have indices within that single input.
4594 /// FIXME: Add support for Decode*Mask functions that return SM_SentinelZero.
4595 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4596                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4597   unsigned NumElems = VT.getVectorNumElements();
4598   SDValue ImmN;
4599
4600   IsUnary = false;
4601   bool IsFakeUnary = false;
4602   switch(N->getOpcode()) {
4603   case X86ISD::BLENDI:
4604     ImmN = N->getOperand(N->getNumOperands()-1);
4605     DecodeBLENDMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4606     break;
4607   case X86ISD::SHUFP:
4608     ImmN = N->getOperand(N->getNumOperands()-1);
4609     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4610     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4611     break;
4612   case X86ISD::UNPCKH:
4613     DecodeUNPCKHMask(VT, Mask);
4614     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4615     break;
4616   case X86ISD::UNPCKL:
4617     DecodeUNPCKLMask(VT, Mask);
4618     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4619     break;
4620   case X86ISD::MOVHLPS:
4621     DecodeMOVHLPSMask(NumElems, Mask);
4622     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4623     break;
4624   case X86ISD::MOVLHPS:
4625     DecodeMOVLHPSMask(NumElems, Mask);
4626     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4627     break;
4628   case X86ISD::PALIGNR:
4629     ImmN = N->getOperand(N->getNumOperands()-1);
4630     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4631     break;
4632   case X86ISD::PSHUFD:
4633   case X86ISD::VPERMILPI:
4634     ImmN = N->getOperand(N->getNumOperands()-1);
4635     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4636     IsUnary = true;
4637     break;
4638   case X86ISD::PSHUFHW:
4639     ImmN = N->getOperand(N->getNumOperands()-1);
4640     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4641     IsUnary = true;
4642     break;
4643   case X86ISD::PSHUFLW:
4644     ImmN = N->getOperand(N->getNumOperands()-1);
4645     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4646     IsUnary = true;
4647     break;
4648   case X86ISD::PSHUFB: {
4649     IsUnary = true;
4650     SDValue MaskNode = N->getOperand(1);
4651     while (MaskNode->getOpcode() == ISD::BITCAST)
4652       MaskNode = MaskNode->getOperand(0);
4653
4654     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4655       // If we have a build-vector, then things are easy.
4656       EVT VT = MaskNode.getValueType();
4657       assert(VT.isVector() &&
4658              "Can't produce a non-vector with a build_vector!");
4659       if (!VT.isInteger())
4660         return false;
4661
4662       int NumBytesPerElement = VT.getVectorElementType().getSizeInBits() / 8;
4663
4664       SmallVector<uint64_t, 32> RawMask;
4665       for (int i = 0, e = MaskNode->getNumOperands(); i < e; ++i) {
4666         SDValue Op = MaskNode->getOperand(i);
4667         if (Op->getOpcode() == ISD::UNDEF) {
4668           RawMask.push_back((uint64_t)SM_SentinelUndef);
4669           continue;
4670         }
4671         auto *CN = dyn_cast<ConstantSDNode>(Op.getNode());
4672         if (!CN)
4673           return false;
4674         APInt MaskElement = CN->getAPIntValue();
4675
4676         // We now have to decode the element which could be any integer size and
4677         // extract each byte of it.
4678         for (int j = 0; j < NumBytesPerElement; ++j) {
4679           // Note that this is x86 and so always little endian: the low byte is
4680           // the first byte of the mask.
4681           RawMask.push_back(MaskElement.getLoBits(8).getZExtValue());
4682           MaskElement = MaskElement.lshr(8);
4683         }
4684       }
4685       DecodePSHUFBMask(RawMask, Mask);
4686       break;
4687     }
4688
4689     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4690     if (!MaskLoad)
4691       return false;
4692
4693     SDValue Ptr = MaskLoad->getBasePtr();
4694     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4695         Ptr->getOpcode() == X86ISD::WrapperRIP)
4696       Ptr = Ptr->getOperand(0);
4697
4698     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4699     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4700       return false;
4701
4702     if (auto *C = dyn_cast<Constant>(MaskCP->getConstVal())) {
4703       DecodePSHUFBMask(C, Mask);
4704       if (Mask.empty())
4705         return false;
4706       break;
4707     }
4708
4709     return false;
4710   }
4711   case X86ISD::VPERMI:
4712     ImmN = N->getOperand(N->getNumOperands()-1);
4713     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4714     IsUnary = true;
4715     break;
4716   case X86ISD::MOVSS:
4717   case X86ISD::MOVSD:
4718     DecodeScalarMoveMask(VT, /* IsLoad */ false, Mask);
4719     break;
4720   case X86ISD::VPERM2X128:
4721     ImmN = N->getOperand(N->getNumOperands()-1);
4722     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4723     if (Mask.empty()) return false;
4724     // Mask only contains negative index if an element is zero.
4725     if (std::any_of(Mask.begin(), Mask.end(),
4726                     [](int M){ return M == SM_SentinelZero; }))
4727       return false;
4728     break;
4729   case X86ISD::MOVSLDUP:
4730     DecodeMOVSLDUPMask(VT, Mask);
4731     IsUnary = true;
4732     break;
4733   case X86ISD::MOVSHDUP:
4734     DecodeMOVSHDUPMask(VT, Mask);
4735     IsUnary = true;
4736     break;
4737   case X86ISD::MOVDDUP:
4738     DecodeMOVDDUPMask(VT, Mask);
4739     IsUnary = true;
4740     break;
4741   case X86ISD::MOVLHPD:
4742   case X86ISD::MOVLPD:
4743   case X86ISD::MOVLPS:
4744     // Not yet implemented
4745     return false;
4746   case X86ISD::VPERMV: {
4747     IsUnary = true;
4748     SDValue MaskNode = N->getOperand(0);
4749     while (MaskNode->getOpcode() == ISD::BITCAST)
4750       MaskNode = MaskNode->getOperand(0);
4751
4752     unsigned MaskLoBits = Log2_64(VT.getVectorNumElements());
4753     SmallVector<uint64_t, 32> RawMask;
4754     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4755       // If we have a build-vector, then things are easy.
4756       assert(MaskNode.getValueType().isInteger() &&
4757              MaskNode.getValueType().getVectorNumElements() ==
4758              VT.getVectorNumElements());
4759
4760       for (unsigned i = 0; i < MaskNode->getNumOperands(); ++i) {
4761         SDValue Op = MaskNode->getOperand(i);
4762         if (Op->getOpcode() == ISD::UNDEF)
4763           RawMask.push_back((uint64_t)SM_SentinelUndef);
4764         else if (isa<ConstantSDNode>(Op)) {
4765           APInt MaskElement = cast<ConstantSDNode>(Op)->getAPIntValue();
4766           RawMask.push_back(MaskElement.getLoBits(MaskLoBits).getZExtValue());
4767         } else
4768           return false;
4769       }
4770       DecodeVPERMVMask(RawMask, Mask);
4771       break;
4772     }
4773     if (MaskNode->getOpcode() == X86ISD::VBROADCAST) {
4774       unsigned NumEltsInMask = MaskNode->getNumOperands();
4775       MaskNode = MaskNode->getOperand(0);
4776       auto *CN = dyn_cast<ConstantSDNode>(MaskNode);
4777       if (CN) {
4778         APInt MaskEltValue = CN->getAPIntValue();
4779         for (unsigned i = 0; i < NumEltsInMask; ++i)
4780           RawMask.push_back(MaskEltValue.getLoBits(MaskLoBits).getZExtValue());
4781         DecodeVPERMVMask(RawMask, Mask);
4782         break;
4783       }
4784       // It may be a scalar load
4785     }
4786
4787     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4788     if (!MaskLoad)
4789       return false;
4790
4791     SDValue Ptr = MaskLoad->getBasePtr();
4792     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4793         Ptr->getOpcode() == X86ISD::WrapperRIP)
4794       Ptr = Ptr->getOperand(0);
4795
4796     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4797     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4798       return false;
4799
4800     auto *C = dyn_cast<Constant>(MaskCP->getConstVal());
4801     if (C) {
4802       DecodeVPERMVMask(C, VT, Mask);
4803       if (Mask.empty())
4804         return false;
4805       break;
4806     }
4807     return false;
4808   }
4809   case X86ISD::VPERMV3: {
4810     IsUnary = false;
4811     SDValue MaskNode = N->getOperand(1);
4812     while (MaskNode->getOpcode() == ISD::BITCAST)
4813       MaskNode = MaskNode->getOperand(1);
4814
4815     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4816       // If we have a build-vector, then things are easy.
4817       assert(MaskNode.getValueType().isInteger() &&
4818              MaskNode.getValueType().getVectorNumElements() ==
4819              VT.getVectorNumElements());
4820
4821       SmallVector<uint64_t, 32> RawMask;
4822       unsigned MaskLoBits = Log2_64(VT.getVectorNumElements()*2);
4823
4824       for (unsigned i = 0; i < MaskNode->getNumOperands(); ++i) {
4825         SDValue Op = MaskNode->getOperand(i);
4826         if (Op->getOpcode() == ISD::UNDEF)
4827           RawMask.push_back((uint64_t)SM_SentinelUndef);
4828         else {
4829           auto *CN = dyn_cast<ConstantSDNode>(Op.getNode());
4830           if (!CN)
4831             return false;
4832           APInt MaskElement = CN->getAPIntValue();
4833           RawMask.push_back(MaskElement.getLoBits(MaskLoBits).getZExtValue());
4834         }
4835       }
4836       DecodeVPERMV3Mask(RawMask, Mask);
4837       break;
4838     }
4839
4840     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4841     if (!MaskLoad)
4842       return false;
4843
4844     SDValue Ptr = MaskLoad->getBasePtr();
4845     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4846         Ptr->getOpcode() == X86ISD::WrapperRIP)
4847       Ptr = Ptr->getOperand(0);
4848
4849     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4850     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4851       return false;
4852
4853     auto *C = dyn_cast<Constant>(MaskCP->getConstVal());
4854     if (C) {
4855       DecodeVPERMV3Mask(C, VT, Mask);
4856       if (Mask.empty())
4857         return false;
4858       break;
4859     }
4860     return false;
4861   }
4862   default: llvm_unreachable("unknown target shuffle node");
4863   }
4864
4865   // If we have a fake unary shuffle, the shuffle mask is spread across two
4866   // inputs that are actually the same node. Re-map the mask to always point
4867   // into the first input.
4868   if (IsFakeUnary)
4869     for (int &M : Mask)
4870       if (M >= (int)Mask.size())
4871         M -= Mask.size();
4872
4873   return true;
4874 }
4875
4876 /// Returns the scalar element that will make up the ith
4877 /// element of the result of the vector shuffle.
4878 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4879                                    unsigned Depth) {
4880   if (Depth == 6)
4881     return SDValue();  // Limit search depth.
4882
4883   SDValue V = SDValue(N, 0);
4884   EVT VT = V.getValueType();
4885   unsigned Opcode = V.getOpcode();
4886
4887   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4888   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4889     int Elt = SV->getMaskElt(Index);
4890
4891     if (Elt < 0)
4892       return DAG.getUNDEF(VT.getVectorElementType());
4893
4894     unsigned NumElems = VT.getVectorNumElements();
4895     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4896                                          : SV->getOperand(1);
4897     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
4898   }
4899
4900   // Recurse into target specific vector shuffles to find scalars.
4901   if (isTargetShuffle(Opcode)) {
4902     MVT ShufVT = V.getSimpleValueType();
4903     unsigned NumElems = ShufVT.getVectorNumElements();
4904     SmallVector<int, 16> ShuffleMask;
4905     bool IsUnary;
4906
4907     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
4908       return SDValue();
4909
4910     int Elt = ShuffleMask[Index];
4911     if (Elt < 0)
4912       return DAG.getUNDEF(ShufVT.getVectorElementType());
4913
4914     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
4915                                          : N->getOperand(1);
4916     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
4917                                Depth+1);
4918   }
4919
4920   // Actual nodes that may contain scalar elements
4921   if (Opcode == ISD::BITCAST) {
4922     V = V.getOperand(0);
4923     EVT SrcVT = V.getValueType();
4924     unsigned NumElems = VT.getVectorNumElements();
4925
4926     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4927       return SDValue();
4928   }
4929
4930   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4931     return (Index == 0) ? V.getOperand(0)
4932                         : DAG.getUNDEF(VT.getVectorElementType());
4933
4934   if (V.getOpcode() == ISD::BUILD_VECTOR)
4935     return V.getOperand(Index);
4936
4937   return SDValue();
4938 }
4939
4940 /// Custom lower build_vector of v16i8.
4941 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4942                                        unsigned NumNonZero, unsigned NumZero,
4943                                        SelectionDAG &DAG,
4944                                        const X86Subtarget* Subtarget,
4945                                        const TargetLowering &TLI) {
4946   if (NumNonZero > 8)
4947     return SDValue();
4948
4949   SDLoc dl(Op);
4950   SDValue V;
4951   bool First = true;
4952
4953   // SSE4.1 - use PINSRB to insert each byte directly.
4954   if (Subtarget->hasSSE41()) {
4955     for (unsigned i = 0; i < 16; ++i) {
4956       bool isNonZero = (NonZeros & (1 << i)) != 0;
4957       if (isNonZero) {
4958         if (First) {
4959           if (NumZero)
4960             V = getZeroVector(MVT::v16i8, Subtarget, DAG, dl);
4961           else
4962             V = DAG.getUNDEF(MVT::v16i8);
4963           First = false;
4964         }
4965         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4966                         MVT::v16i8, V, Op.getOperand(i),
4967                         DAG.getIntPtrConstant(i, dl));
4968       }
4969     }
4970
4971     return V;
4972   }
4973
4974   // Pre-SSE4.1 - merge byte pairs and insert with PINSRW.
4975   for (unsigned i = 0; i < 16; ++i) {
4976     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4977     if (ThisIsNonZero && First) {
4978       if (NumZero)
4979         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4980       else
4981         V = DAG.getUNDEF(MVT::v8i16);
4982       First = false;
4983     }
4984
4985     if ((i & 1) != 0) {
4986       SDValue ThisElt, LastElt;
4987       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4988       if (LastIsNonZero) {
4989         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4990                               MVT::i16, Op.getOperand(i-1));
4991       }
4992       if (ThisIsNonZero) {
4993         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4994         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4995                               ThisElt, DAG.getConstant(8, dl, MVT::i8));
4996         if (LastIsNonZero)
4997           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4998       } else
4999         ThisElt = LastElt;
5000
5001       if (ThisElt.getNode())
5002         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5003                         DAG.getIntPtrConstant(i/2, dl));
5004     }
5005   }
5006
5007   return DAG.getBitcast(MVT::v16i8, V);
5008 }
5009
5010 /// Custom lower build_vector of v8i16.
5011 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5012                                      unsigned NumNonZero, unsigned NumZero,
5013                                      SelectionDAG &DAG,
5014                                      const X86Subtarget* Subtarget,
5015                                      const TargetLowering &TLI) {
5016   if (NumNonZero > 4)
5017     return SDValue();
5018
5019   SDLoc dl(Op);
5020   SDValue V;
5021   bool First = true;
5022   for (unsigned i = 0; i < 8; ++i) {
5023     bool isNonZero = (NonZeros & (1 << i)) != 0;
5024     if (isNonZero) {
5025       if (First) {
5026         if (NumZero)
5027           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5028         else
5029           V = DAG.getUNDEF(MVT::v8i16);
5030         First = false;
5031       }
5032       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5033                       MVT::v8i16, V, Op.getOperand(i),
5034                       DAG.getIntPtrConstant(i, dl));
5035     }
5036   }
5037
5038   return V;
5039 }
5040
5041 /// Custom lower build_vector of v4i32 or v4f32.
5042 static SDValue LowerBuildVectorv4x32(SDValue Op, SelectionDAG &DAG,
5043                                      const X86Subtarget *Subtarget,
5044                                      const TargetLowering &TLI) {
5045   // Find all zeroable elements.
5046   std::bitset<4> Zeroable;
5047   for (int i=0; i < 4; ++i) {
5048     SDValue Elt = Op->getOperand(i);
5049     Zeroable[i] = (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt));
5050   }
5051   assert(Zeroable.size() - Zeroable.count() > 1 &&
5052          "We expect at least two non-zero elements!");
5053
5054   // We only know how to deal with build_vector nodes where elements are either
5055   // zeroable or extract_vector_elt with constant index.
5056   SDValue FirstNonZero;
5057   unsigned FirstNonZeroIdx;
5058   for (unsigned i=0; i < 4; ++i) {
5059     if (Zeroable[i])
5060       continue;
5061     SDValue Elt = Op->getOperand(i);
5062     if (Elt.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5063         !isa<ConstantSDNode>(Elt.getOperand(1)))
5064       return SDValue();
5065     // Make sure that this node is extracting from a 128-bit vector.
5066     MVT VT = Elt.getOperand(0).getSimpleValueType();
5067     if (!VT.is128BitVector())
5068       return SDValue();
5069     if (!FirstNonZero.getNode()) {
5070       FirstNonZero = Elt;
5071       FirstNonZeroIdx = i;
5072     }
5073   }
5074
5075   assert(FirstNonZero.getNode() && "Unexpected build vector of all zeros!");
5076   SDValue V1 = FirstNonZero.getOperand(0);
5077   MVT VT = V1.getSimpleValueType();
5078
5079   // See if this build_vector can be lowered as a blend with zero.
5080   SDValue Elt;
5081   unsigned EltMaskIdx, EltIdx;
5082   int Mask[4];
5083   for (EltIdx = 0; EltIdx < 4; ++EltIdx) {
5084     if (Zeroable[EltIdx]) {
5085       // The zero vector will be on the right hand side.
5086       Mask[EltIdx] = EltIdx+4;
5087       continue;
5088     }
5089
5090     Elt = Op->getOperand(EltIdx);
5091     // By construction, Elt is a EXTRACT_VECTOR_ELT with constant index.
5092     EltMaskIdx = cast<ConstantSDNode>(Elt.getOperand(1))->getZExtValue();
5093     if (Elt.getOperand(0) != V1 || EltMaskIdx != EltIdx)
5094       break;
5095     Mask[EltIdx] = EltIdx;
5096   }
5097
5098   if (EltIdx == 4) {
5099     // Let the shuffle legalizer deal with blend operations.
5100     SDValue VZero = getZeroVector(VT, Subtarget, DAG, SDLoc(Op));
5101     if (V1.getSimpleValueType() != VT)
5102       V1 = DAG.getNode(ISD::BITCAST, SDLoc(V1), VT, V1);
5103     return DAG.getVectorShuffle(VT, SDLoc(V1), V1, VZero, &Mask[0]);
5104   }
5105
5106   // See if we can lower this build_vector to a INSERTPS.
5107   if (!Subtarget->hasSSE41())
5108     return SDValue();
5109
5110   SDValue V2 = Elt.getOperand(0);
5111   if (Elt == FirstNonZero && EltIdx == FirstNonZeroIdx)
5112     V1 = SDValue();
5113
5114   bool CanFold = true;
5115   for (unsigned i = EltIdx + 1; i < 4 && CanFold; ++i) {
5116     if (Zeroable[i])
5117       continue;
5118
5119     SDValue Current = Op->getOperand(i);
5120     SDValue SrcVector = Current->getOperand(0);
5121     if (!V1.getNode())
5122       V1 = SrcVector;
5123     CanFold = SrcVector == V1 &&
5124       cast<ConstantSDNode>(Current.getOperand(1))->getZExtValue() == i;
5125   }
5126
5127   if (!CanFold)
5128     return SDValue();
5129
5130   assert(V1.getNode() && "Expected at least two non-zero elements!");
5131   if (V1.getSimpleValueType() != MVT::v4f32)
5132     V1 = DAG.getNode(ISD::BITCAST, SDLoc(V1), MVT::v4f32, V1);
5133   if (V2.getSimpleValueType() != MVT::v4f32)
5134     V2 = DAG.getNode(ISD::BITCAST, SDLoc(V2), MVT::v4f32, V2);
5135
5136   // Ok, we can emit an INSERTPS instruction.
5137   unsigned ZMask = Zeroable.to_ulong();
5138
5139   unsigned InsertPSMask = EltMaskIdx << 6 | EltIdx << 4 | ZMask;
5140   assert((InsertPSMask & ~0xFFu) == 0 && "Invalid mask!");
5141   SDLoc DL(Op);
5142   SDValue Result = DAG.getNode(X86ISD::INSERTPS, DL, MVT::v4f32, V1, V2,
5143                                DAG.getIntPtrConstant(InsertPSMask, DL));
5144   return DAG.getBitcast(VT, Result);
5145 }
5146
5147 /// Return a vector logical shift node.
5148 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5149                          unsigned NumBits, SelectionDAG &DAG,
5150                          const TargetLowering &TLI, SDLoc dl) {
5151   assert(VT.is128BitVector() && "Unknown type for VShift");
5152   MVT ShVT = MVT::v2i64;
5153   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5154   SrcOp = DAG.getBitcast(ShVT, SrcOp);
5155   MVT ScalarShiftTy = TLI.getScalarShiftAmountTy(DAG.getDataLayout(), VT);
5156   assert(NumBits % 8 == 0 && "Only support byte sized shifts");
5157   SDValue ShiftVal = DAG.getConstant(NumBits/8, dl, ScalarShiftTy);
5158   return DAG.getBitcast(VT, DAG.getNode(Opc, dl, ShVT, SrcOp, ShiftVal));
5159 }
5160
5161 static SDValue
5162 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5163
5164   // Check if the scalar load can be widened into a vector load. And if
5165   // the address is "base + cst" see if the cst can be "absorbed" into
5166   // the shuffle mask.
5167   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5168     SDValue Ptr = LD->getBasePtr();
5169     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5170       return SDValue();
5171     EVT PVT = LD->getValueType(0);
5172     if (PVT != MVT::i32 && PVT != MVT::f32)
5173       return SDValue();
5174
5175     int FI = -1;
5176     int64_t Offset = 0;
5177     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5178       FI = FINode->getIndex();
5179       Offset = 0;
5180     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5181                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5182       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5183       Offset = Ptr.getConstantOperandVal(1);
5184       Ptr = Ptr.getOperand(0);
5185     } else {
5186       return SDValue();
5187     }
5188
5189     // FIXME: 256-bit vector instructions don't require a strict alignment,
5190     // improve this code to support it better.
5191     unsigned RequiredAlign = VT.getSizeInBits()/8;
5192     SDValue Chain = LD->getChain();
5193     // Make sure the stack object alignment is at least 16 or 32.
5194     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5195     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5196       if (MFI->isFixedObjectIndex(FI)) {
5197         // Can't change the alignment. FIXME: It's possible to compute
5198         // the exact stack offset and reference FI + adjust offset instead.
5199         // If someone *really* cares about this. That's the way to implement it.
5200         return SDValue();
5201       } else {
5202         MFI->setObjectAlignment(FI, RequiredAlign);
5203       }
5204     }
5205
5206     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5207     // Ptr + (Offset & ~15).
5208     if (Offset < 0)
5209       return SDValue();
5210     if ((Offset % RequiredAlign) & 3)
5211       return SDValue();
5212     int64_t StartOffset = Offset & ~int64_t(RequiredAlign - 1);
5213     if (StartOffset) {
5214       SDLoc DL(Ptr);
5215       Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
5216                         DAG.getConstant(StartOffset, DL, Ptr.getValueType()));
5217     }
5218
5219     int EltNo = (Offset - StartOffset) >> 2;
5220     unsigned NumElems = VT.getVectorNumElements();
5221
5222     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5223     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5224                              LD->getPointerInfo().getWithOffset(StartOffset),
5225                              false, false, false, 0);
5226
5227     SmallVector<int, 8> Mask(NumElems, EltNo);
5228
5229     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5230   }
5231
5232   return SDValue();
5233 }
5234
5235 /// Given the initializing elements 'Elts' of a vector of type 'VT', see if the
5236 /// elements can be replaced by a single large load which has the same value as
5237 /// a build_vector or insert_subvector whose loaded operands are 'Elts'.
5238 ///
5239 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5240 ///
5241 /// FIXME: we'd also like to handle the case where the last elements are zero
5242 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5243 /// There's even a handy isZeroNode for that purpose.
5244 static SDValue EltsFromConsecutiveLoads(EVT VT, ArrayRef<SDValue> Elts,
5245                                         SDLoc &DL, SelectionDAG &DAG,
5246                                         bool isAfterLegalize) {
5247   unsigned NumElems = Elts.size();
5248
5249   LoadSDNode *LDBase = nullptr;
5250   unsigned LastLoadedElt = -1U;
5251
5252   // For each element in the initializer, see if we've found a load or an undef.
5253   // If we don't find an initial load element, or later load elements are
5254   // non-consecutive, bail out.
5255   for (unsigned i = 0; i < NumElems; ++i) {
5256     SDValue Elt = Elts[i];
5257     // Look through a bitcast.
5258     if (Elt.getNode() && Elt.getOpcode() == ISD::BITCAST)
5259       Elt = Elt.getOperand(0);
5260     if (!Elt.getNode() ||
5261         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5262       return SDValue();
5263     if (!LDBase) {
5264       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5265         return SDValue();
5266       LDBase = cast<LoadSDNode>(Elt.getNode());
5267       LastLoadedElt = i;
5268       continue;
5269     }
5270     if (Elt.getOpcode() == ISD::UNDEF)
5271       continue;
5272
5273     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5274     EVT LdVT = Elt.getValueType();
5275     // Each loaded element must be the correct fractional portion of the
5276     // requested vector load.
5277     if (LdVT.getSizeInBits() != VT.getSizeInBits() / NumElems)
5278       return SDValue();
5279     if (!DAG.isConsecutiveLoad(LD, LDBase, LdVT.getSizeInBits() / 8, i))
5280       return SDValue();
5281     LastLoadedElt = i;
5282   }
5283
5284   // If we have found an entire vector of loads and undefs, then return a large
5285   // load of the entire vector width starting at the base pointer.  If we found
5286   // consecutive loads for the low half, generate a vzext_load node.
5287   if (LastLoadedElt == NumElems - 1) {
5288     assert(LDBase && "Did not find base load for merging consecutive loads");
5289     EVT EltVT = LDBase->getValueType(0);
5290     // Ensure that the input vector size for the merged loads matches the
5291     // cumulative size of the input elements.
5292     if (VT.getSizeInBits() != EltVT.getSizeInBits() * NumElems)
5293       return SDValue();
5294
5295     if (isAfterLegalize &&
5296         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5297       return SDValue();
5298
5299     SDValue NewLd = SDValue();
5300
5301     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5302                         LDBase->getPointerInfo(), LDBase->isVolatile(),
5303                         LDBase->isNonTemporal(), LDBase->isInvariant(),
5304                         LDBase->getAlignment());
5305
5306     if (LDBase->hasAnyUseOfValue(1)) {
5307       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5308                                      SDValue(LDBase, 1),
5309                                      SDValue(NewLd.getNode(), 1));
5310       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5311       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5312                              SDValue(NewLd.getNode(), 1));
5313     }
5314
5315     return NewLd;
5316   }
5317
5318   //TODO: The code below fires only for for loading the low v2i32 / v2f32
5319   //of a v4i32 / v4f32. It's probably worth generalizing.
5320   EVT EltVT = VT.getVectorElementType();
5321   if (NumElems == 4 && LastLoadedElt == 1 && (EltVT.getSizeInBits() == 32) &&
5322       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5323     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5324     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5325     SDValue ResNode =
5326         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
5327                                 LDBase->getPointerInfo(),
5328                                 LDBase->getAlignment(),
5329                                 false/*isVolatile*/, true/*ReadMem*/,
5330                                 false/*WriteMem*/);
5331
5332     // Make sure the newly-created LOAD is in the same position as LDBase in
5333     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5334     // update uses of LDBase's output chain to use the TokenFactor.
5335     if (LDBase->hasAnyUseOfValue(1)) {
5336       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5337                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5338       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5339       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5340                              SDValue(ResNode.getNode(), 1));
5341     }
5342
5343     return DAG.getBitcast(VT, ResNode);
5344   }
5345   return SDValue();
5346 }
5347
5348 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5349 /// to generate a splat value for the following cases:
5350 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5351 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5352 /// a scalar load, or a constant.
5353 /// The VBROADCAST node is returned when a pattern is found,
5354 /// or SDValue() otherwise.
5355 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5356                                     SelectionDAG &DAG) {
5357   // VBROADCAST requires AVX.
5358   // TODO: Splats could be generated for non-AVX CPUs using SSE
5359   // instructions, but there's less potential gain for only 128-bit vectors.
5360   if (!Subtarget->hasAVX())
5361     return SDValue();
5362
5363   MVT VT = Op.getSimpleValueType();
5364   SDLoc dl(Op);
5365
5366   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5367          "Unsupported vector type for broadcast.");
5368
5369   SDValue Ld;
5370   bool ConstSplatVal;
5371
5372   switch (Op.getOpcode()) {
5373     default:
5374       // Unknown pattern found.
5375       return SDValue();
5376
5377     case ISD::BUILD_VECTOR: {
5378       auto *BVOp = cast<BuildVectorSDNode>(Op.getNode());
5379       BitVector UndefElements;
5380       SDValue Splat = BVOp->getSplatValue(&UndefElements);
5381
5382       // We need a splat of a single value to use broadcast, and it doesn't
5383       // make any sense if the value is only in one element of the vector.
5384       if (!Splat || (VT.getVectorNumElements() - UndefElements.count()) <= 1)
5385         return SDValue();
5386
5387       Ld = Splat;
5388       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5389                        Ld.getOpcode() == ISD::ConstantFP);
5390
5391       // Make sure that all of the users of a non-constant load are from the
5392       // BUILD_VECTOR node.
5393       if (!ConstSplatVal && !BVOp->isOnlyUserOf(Ld.getNode()))
5394         return SDValue();
5395       break;
5396     }
5397
5398     case ISD::VECTOR_SHUFFLE: {
5399       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5400
5401       // Shuffles must have a splat mask where the first element is
5402       // broadcasted.
5403       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5404         return SDValue();
5405
5406       SDValue Sc = Op.getOperand(0);
5407       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5408           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5409
5410         if (!Subtarget->hasInt256())
5411           return SDValue();
5412
5413         // Use the register form of the broadcast instruction available on AVX2.
5414         if (VT.getSizeInBits() >= 256)
5415           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5416         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5417       }
5418
5419       Ld = Sc.getOperand(0);
5420       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5421                        Ld.getOpcode() == ISD::ConstantFP);
5422
5423       // The scalar_to_vector node and the suspected
5424       // load node must have exactly one user.
5425       // Constants may have multiple users.
5426
5427       // AVX-512 has register version of the broadcast
5428       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5429         Ld.getValueType().getSizeInBits() >= 32;
5430       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5431           !hasRegVer))
5432         return SDValue();
5433       break;
5434     }
5435   }
5436
5437   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5438   bool IsGE256 = (VT.getSizeInBits() >= 256);
5439
5440   // When optimizing for size, generate up to 5 extra bytes for a broadcast
5441   // instruction to save 8 or more bytes of constant pool data.
5442   // TODO: If multiple splats are generated to load the same constant,
5443   // it may be detrimental to overall size. There needs to be a way to detect
5444   // that condition to know if this is truly a size win.
5445   bool OptForSize = DAG.getMachineFunction().getFunction()->optForSize();
5446
5447   // Handle broadcasting a single constant scalar from the constant pool
5448   // into a vector.
5449   // On Sandybridge (no AVX2), it is still better to load a constant vector
5450   // from the constant pool and not to broadcast it from a scalar.
5451   // But override that restriction when optimizing for size.
5452   // TODO: Check if splatting is recommended for other AVX-capable CPUs.
5453   if (ConstSplatVal && (Subtarget->hasAVX2() || OptForSize)) {
5454     EVT CVT = Ld.getValueType();
5455     assert(!CVT.isVector() && "Must not broadcast a vector type");
5456
5457     // Splat f32, i32, v4f64, v4i64 in all cases with AVX2.
5458     // For size optimization, also splat v2f64 and v2i64, and for size opt
5459     // with AVX2, also splat i8 and i16.
5460     // With pattern matching, the VBROADCAST node may become a VMOVDDUP.
5461     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64) ||
5462         (OptForSize && (ScalarSize == 64 || Subtarget->hasAVX2()))) {
5463       const Constant *C = nullptr;
5464       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5465         C = CI->getConstantIntValue();
5466       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5467         C = CF->getConstantFPValue();
5468
5469       assert(C && "Invalid constant type");
5470
5471       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5472       SDValue CP =
5473           DAG.getConstantPool(C, TLI.getPointerTy(DAG.getDataLayout()));
5474       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5475       Ld = DAG.getLoad(
5476           CVT, dl, DAG.getEntryNode(), CP,
5477           MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
5478           false, false, Alignment);
5479
5480       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5481     }
5482   }
5483
5484   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5485
5486   // Handle AVX2 in-register broadcasts.
5487   if (!IsLoad && Subtarget->hasInt256() &&
5488       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5489     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5490
5491   // The scalar source must be a normal load.
5492   if (!IsLoad)
5493     return SDValue();
5494
5495   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64) ||
5496       (Subtarget->hasVLX() && ScalarSize == 64))
5497     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5498
5499   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5500   // double since there is no vbroadcastsd xmm
5501   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5502     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5503       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5504   }
5505
5506   // Unsupported broadcast.
5507   return SDValue();
5508 }
5509
5510 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5511 /// underlying vector and index.
5512 ///
5513 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5514 /// index.
5515 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5516                                          SDValue ExtIdx) {
5517   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5518   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5519     return Idx;
5520
5521   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5522   // lowered this:
5523   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
5524   // to:
5525   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
5526   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
5527   //                           undef)
5528   //                       Constant<0>)
5529   // In this case the vector is the extract_subvector expression and the index
5530   // is 2, as specified by the shuffle.
5531   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
5532   SDValue ShuffleVec = SVOp->getOperand(0);
5533   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
5534   assert(ShuffleVecVT.getVectorElementType() ==
5535          ExtractedFromVec.getSimpleValueType().getVectorElementType());
5536
5537   int ShuffleIdx = SVOp->getMaskElt(Idx);
5538   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
5539     ExtractedFromVec = ShuffleVec;
5540     return ShuffleIdx;
5541   }
5542   return Idx;
5543 }
5544
5545 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5546   MVT VT = Op.getSimpleValueType();
5547
5548   // Skip if insert_vec_elt is not supported.
5549   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5550   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5551     return SDValue();
5552
5553   SDLoc DL(Op);
5554   unsigned NumElems = Op.getNumOperands();
5555
5556   SDValue VecIn1;
5557   SDValue VecIn2;
5558   SmallVector<unsigned, 4> InsertIndices;
5559   SmallVector<int, 8> Mask(NumElems, -1);
5560
5561   for (unsigned i = 0; i != NumElems; ++i) {
5562     unsigned Opc = Op.getOperand(i).getOpcode();
5563
5564     if (Opc == ISD::UNDEF)
5565       continue;
5566
5567     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5568       // Quit if more than 1 elements need inserting.
5569       if (InsertIndices.size() > 1)
5570         return SDValue();
5571
5572       InsertIndices.push_back(i);
5573       continue;
5574     }
5575
5576     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5577     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5578     // Quit if non-constant index.
5579     if (!isa<ConstantSDNode>(ExtIdx))
5580       return SDValue();
5581     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
5582
5583     // Quit if extracted from vector of different type.
5584     if (ExtractedFromVec.getValueType() != VT)
5585       return SDValue();
5586
5587     if (!VecIn1.getNode())
5588       VecIn1 = ExtractedFromVec;
5589     else if (VecIn1 != ExtractedFromVec) {
5590       if (!VecIn2.getNode())
5591         VecIn2 = ExtractedFromVec;
5592       else if (VecIn2 != ExtractedFromVec)
5593         // Quit if more than 2 vectors to shuffle
5594         return SDValue();
5595     }
5596
5597     if (ExtractedFromVec == VecIn1)
5598       Mask[i] = Idx;
5599     else if (ExtractedFromVec == VecIn2)
5600       Mask[i] = Idx + NumElems;
5601   }
5602
5603   if (!VecIn1.getNode())
5604     return SDValue();
5605
5606   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5607   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5608   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5609     unsigned Idx = InsertIndices[i];
5610     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5611                      DAG.getIntPtrConstant(Idx, DL));
5612   }
5613
5614   return NV;
5615 }
5616
5617 static SDValue ConvertI1VectorToInteger(SDValue Op, SelectionDAG &DAG) {
5618   assert(ISD::isBuildVectorOfConstantSDNodes(Op.getNode()) &&
5619          Op.getScalarValueSizeInBits() == 1 &&
5620          "Can not convert non-constant vector");
5621   uint64_t Immediate = 0;
5622   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5623     SDValue In = Op.getOperand(idx);
5624     if (In.getOpcode() != ISD::UNDEF)
5625       Immediate |= cast<ConstantSDNode>(In)->getZExtValue() << idx;
5626   }
5627   SDLoc dl(Op);
5628   MVT VT =
5629    MVT::getIntegerVT(std::max((int)Op.getValueType().getSizeInBits(), 8));
5630   return DAG.getConstant(Immediate, dl, VT);
5631 }
5632 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5633 SDValue
5634 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5635
5636   MVT VT = Op.getSimpleValueType();
5637   assert((VT.getVectorElementType() == MVT::i1) &&
5638          "Unexpected type in LowerBUILD_VECTORvXi1!");
5639
5640   SDLoc dl(Op);
5641   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5642     SDValue Cst = DAG.getTargetConstant(0, dl, MVT::i1);
5643     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5644     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5645   }
5646
5647   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5648     SDValue Cst = DAG.getTargetConstant(1, dl, MVT::i1);
5649     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5650     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5651   }
5652
5653   if (ISD::isBuildVectorOfConstantSDNodes(Op.getNode())) {
5654     SDValue Imm = ConvertI1VectorToInteger(Op, DAG);
5655     if (Imm.getValueSizeInBits() == VT.getSizeInBits())
5656       return DAG.getBitcast(VT, Imm);
5657     SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
5658     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, ExtVec,
5659                         DAG.getIntPtrConstant(0, dl));
5660   }
5661
5662   // Vector has one or more non-const elements
5663   uint64_t Immediate = 0;
5664   SmallVector<unsigned, 16> NonConstIdx;
5665   bool IsSplat = true;
5666   bool HasConstElts = false;
5667   int SplatIdx = -1;
5668   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5669     SDValue In = Op.getOperand(idx);
5670     if (In.getOpcode() == ISD::UNDEF)
5671       continue;
5672     if (!isa<ConstantSDNode>(In))
5673       NonConstIdx.push_back(idx);
5674     else {
5675       Immediate |= cast<ConstantSDNode>(In)->getZExtValue() << idx;
5676       HasConstElts = true;
5677     }
5678     if (SplatIdx == -1)
5679       SplatIdx = idx;
5680     else if (In != Op.getOperand(SplatIdx))
5681       IsSplat = false;
5682   }
5683
5684   // for splat use " (select i1 splat_elt, all-ones, all-zeroes)"
5685   if (IsSplat)
5686     return DAG.getNode(ISD::SELECT, dl, VT, Op.getOperand(SplatIdx),
5687                        DAG.getConstant(1, dl, VT),
5688                        DAG.getConstant(0, dl, VT));
5689
5690   // insert elements one by one
5691   SDValue DstVec;
5692   SDValue Imm;
5693   if (Immediate) {
5694     MVT ImmVT = MVT::getIntegerVT(std::max((int)VT.getSizeInBits(), 8));
5695     Imm = DAG.getConstant(Immediate, dl, ImmVT);
5696   }
5697   else if (HasConstElts)
5698     Imm = DAG.getConstant(0, dl, VT);
5699   else
5700     Imm = DAG.getUNDEF(VT);
5701   if (Imm.getValueSizeInBits() == VT.getSizeInBits())
5702     DstVec = DAG.getBitcast(VT, Imm);
5703   else {
5704     SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
5705     DstVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, ExtVec,
5706                          DAG.getIntPtrConstant(0, dl));
5707   }
5708
5709   for (unsigned i = 0; i < NonConstIdx.size(); ++i) {
5710     unsigned InsertIdx = NonConstIdx[i];
5711     DstVec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
5712                          Op.getOperand(InsertIdx),
5713                          DAG.getIntPtrConstant(InsertIdx, dl));
5714   }
5715   return DstVec;
5716 }
5717
5718 /// \brief Return true if \p N implements a horizontal binop and return the
5719 /// operands for the horizontal binop into V0 and V1.
5720 ///
5721 /// This is a helper function of LowerToHorizontalOp().
5722 /// This function checks that the build_vector \p N in input implements a
5723 /// horizontal operation. Parameter \p Opcode defines the kind of horizontal
5724 /// operation to match.
5725 /// For example, if \p Opcode is equal to ISD::ADD, then this function
5726 /// checks if \p N implements a horizontal arithmetic add; if instead \p Opcode
5727 /// is equal to ISD::SUB, then this function checks if this is a horizontal
5728 /// arithmetic sub.
5729 ///
5730 /// This function only analyzes elements of \p N whose indices are
5731 /// in range [BaseIdx, LastIdx).
5732 static bool isHorizontalBinOp(const BuildVectorSDNode *N, unsigned Opcode,
5733                               SelectionDAG &DAG,
5734                               unsigned BaseIdx, unsigned LastIdx,
5735                               SDValue &V0, SDValue &V1) {
5736   EVT VT = N->getValueType(0);
5737
5738   assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!");
5739   assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx &&
5740          "Invalid Vector in input!");
5741
5742   bool IsCommutable = (Opcode == ISD::ADD || Opcode == ISD::FADD);
5743   bool CanFold = true;
5744   unsigned ExpectedVExtractIdx = BaseIdx;
5745   unsigned NumElts = LastIdx - BaseIdx;
5746   V0 = DAG.getUNDEF(VT);
5747   V1 = DAG.getUNDEF(VT);
5748
5749   // Check if N implements a horizontal binop.
5750   for (unsigned i = 0, e = NumElts; i != e && CanFold; ++i) {
5751     SDValue Op = N->getOperand(i + BaseIdx);
5752
5753     // Skip UNDEFs.
5754     if (Op->getOpcode() == ISD::UNDEF) {
5755       // Update the expected vector extract index.
5756       if (i * 2 == NumElts)
5757         ExpectedVExtractIdx = BaseIdx;
5758       ExpectedVExtractIdx += 2;
5759       continue;
5760     }
5761
5762     CanFold = Op->getOpcode() == Opcode && Op->hasOneUse();
5763
5764     if (!CanFold)
5765       break;
5766
5767     SDValue Op0 = Op.getOperand(0);
5768     SDValue Op1 = Op.getOperand(1);
5769
5770     // Try to match the following pattern:
5771     // (BINOP (extract_vector_elt A, I), (extract_vector_elt A, I+1))
5772     CanFold = (Op0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5773         Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5774         Op0.getOperand(0) == Op1.getOperand(0) &&
5775         isa<ConstantSDNode>(Op0.getOperand(1)) &&
5776         isa<ConstantSDNode>(Op1.getOperand(1)));
5777     if (!CanFold)
5778       break;
5779
5780     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
5781     unsigned I1 = cast<ConstantSDNode>(Op1.getOperand(1))->getZExtValue();
5782
5783     if (i * 2 < NumElts) {
5784       if (V0.getOpcode() == ISD::UNDEF) {
5785         V0 = Op0.getOperand(0);
5786         if (V0.getValueType() != VT)
5787           return false;
5788       }
5789     } else {
5790       if (V1.getOpcode() == ISD::UNDEF) {
5791         V1 = Op0.getOperand(0);
5792         if (V1.getValueType() != VT)
5793           return false;
5794       }
5795       if (i * 2 == NumElts)
5796         ExpectedVExtractIdx = BaseIdx;
5797     }
5798
5799     SDValue Expected = (i * 2 < NumElts) ? V0 : V1;
5800     if (I0 == ExpectedVExtractIdx)
5801       CanFold = I1 == I0 + 1 && Op0.getOperand(0) == Expected;
5802     else if (IsCommutable && I1 == ExpectedVExtractIdx) {
5803       // Try to match the following dag sequence:
5804       // (BINOP (extract_vector_elt A, I+1), (extract_vector_elt A, I))
5805       CanFold = I0 == I1 + 1 && Op1.getOperand(0) == Expected;
5806     } else
5807       CanFold = false;
5808
5809     ExpectedVExtractIdx += 2;
5810   }
5811
5812   return CanFold;
5813 }
5814
5815 /// \brief Emit a sequence of two 128-bit horizontal add/sub followed by
5816 /// a concat_vector.
5817 ///
5818 /// This is a helper function of LowerToHorizontalOp().
5819 /// This function expects two 256-bit vectors called V0 and V1.
5820 /// At first, each vector is split into two separate 128-bit vectors.
5821 /// Then, the resulting 128-bit vectors are used to implement two
5822 /// horizontal binary operations.
5823 ///
5824 /// The kind of horizontal binary operation is defined by \p X86Opcode.
5825 ///
5826 /// \p Mode specifies how the 128-bit parts of V0 and V1 are passed in input to
5827 /// the two new horizontal binop.
5828 /// When Mode is set, the first horizontal binop dag node would take as input
5829 /// the lower 128-bit of V0 and the upper 128-bit of V0. The second
5830 /// horizontal binop dag node would take as input the lower 128-bit of V1
5831 /// and the upper 128-bit of V1.
5832 ///   Example:
5833 ///     HADD V0_LO, V0_HI
5834 ///     HADD V1_LO, V1_HI
5835 ///
5836 /// Otherwise, the first horizontal binop dag node takes as input the lower
5837 /// 128-bit of V0 and the lower 128-bit of V1, and the second horizontal binop
5838 /// dag node takes the upper 128-bit of V0 and the upper 128-bit of V1.
5839 ///   Example:
5840 ///     HADD V0_LO, V1_LO
5841 ///     HADD V0_HI, V1_HI
5842 ///
5843 /// If \p isUndefLO is set, then the algorithm propagates UNDEF to the lower
5844 /// 128-bits of the result. If \p isUndefHI is set, then UNDEF is propagated to
5845 /// the upper 128-bits of the result.
5846 static SDValue ExpandHorizontalBinOp(const SDValue &V0, const SDValue &V1,
5847                                      SDLoc DL, SelectionDAG &DAG,
5848                                      unsigned X86Opcode, bool Mode,
5849                                      bool isUndefLO, bool isUndefHI) {
5850   EVT VT = V0.getValueType();
5851   assert(VT.is256BitVector() && VT == V1.getValueType() &&
5852          "Invalid nodes in input!");
5853
5854   unsigned NumElts = VT.getVectorNumElements();
5855   SDValue V0_LO = Extract128BitVector(V0, 0, DAG, DL);
5856   SDValue V0_HI = Extract128BitVector(V0, NumElts/2, DAG, DL);
5857   SDValue V1_LO = Extract128BitVector(V1, 0, DAG, DL);
5858   SDValue V1_HI = Extract128BitVector(V1, NumElts/2, DAG, DL);
5859   EVT NewVT = V0_LO.getValueType();
5860
5861   SDValue LO = DAG.getUNDEF(NewVT);
5862   SDValue HI = DAG.getUNDEF(NewVT);
5863
5864   if (Mode) {
5865     // Don't emit a horizontal binop if the result is expected to be UNDEF.
5866     if (!isUndefLO && V0->getOpcode() != ISD::UNDEF)
5867       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V0_HI);
5868     if (!isUndefHI && V1->getOpcode() != ISD::UNDEF)
5869       HI = DAG.getNode(X86Opcode, DL, NewVT, V1_LO, V1_HI);
5870   } else {
5871     // Don't emit a horizontal binop if the result is expected to be UNDEF.
5872     if (!isUndefLO && (V0_LO->getOpcode() != ISD::UNDEF ||
5873                        V1_LO->getOpcode() != ISD::UNDEF))
5874       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V1_LO);
5875
5876     if (!isUndefHI && (V0_HI->getOpcode() != ISD::UNDEF ||
5877                        V1_HI->getOpcode() != ISD::UNDEF))
5878       HI = DAG.getNode(X86Opcode, DL, NewVT, V0_HI, V1_HI);
5879   }
5880
5881   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LO, HI);
5882 }
5883
5884 /// Try to fold a build_vector that performs an 'addsub' to an X86ISD::ADDSUB
5885 /// node.
5886 static SDValue LowerToAddSub(const BuildVectorSDNode *BV,
5887                              const X86Subtarget *Subtarget, SelectionDAG &DAG) {
5888   EVT VT = BV->getValueType(0);
5889   if ((!Subtarget->hasSSE3() || (VT != MVT::v4f32 && VT != MVT::v2f64)) &&
5890       (!Subtarget->hasAVX() || (VT != MVT::v8f32 && VT != MVT::v4f64)))
5891     return SDValue();
5892
5893   SDLoc DL(BV);
5894   unsigned NumElts = VT.getVectorNumElements();
5895   SDValue InVec0 = DAG.getUNDEF(VT);
5896   SDValue InVec1 = DAG.getUNDEF(VT);
5897
5898   assert((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v4f32 ||
5899           VT == MVT::v2f64) && "build_vector with an invalid type found!");
5900
5901   // Odd-numbered elements in the input build vector are obtained from
5902   // adding two integer/float elements.
5903   // Even-numbered elements in the input build vector are obtained from
5904   // subtracting two integer/float elements.
5905   unsigned ExpectedOpcode = ISD::FSUB;
5906   unsigned NextExpectedOpcode = ISD::FADD;
5907   bool AddFound = false;
5908   bool SubFound = false;
5909
5910   for (unsigned i = 0, e = NumElts; i != e; ++i) {
5911     SDValue Op = BV->getOperand(i);
5912
5913     // Skip 'undef' values.
5914     unsigned Opcode = Op.getOpcode();
5915     if (Opcode == ISD::UNDEF) {
5916       std::swap(ExpectedOpcode, NextExpectedOpcode);
5917       continue;
5918     }
5919
5920     // Early exit if we found an unexpected opcode.
5921     if (Opcode != ExpectedOpcode)
5922       return SDValue();
5923
5924     SDValue Op0 = Op.getOperand(0);
5925     SDValue Op1 = Op.getOperand(1);
5926
5927     // Try to match the following pattern:
5928     // (BINOP (extract_vector_elt A, i), (extract_vector_elt B, i))
5929     // Early exit if we cannot match that sequence.
5930     if (Op0.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5931         Op1.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5932         !isa<ConstantSDNode>(Op0.getOperand(1)) ||
5933         !isa<ConstantSDNode>(Op1.getOperand(1)) ||
5934         Op0.getOperand(1) != Op1.getOperand(1))
5935       return SDValue();
5936
5937     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
5938     if (I0 != i)
5939       return SDValue();
5940
5941     // We found a valid add/sub node. Update the information accordingly.
5942     if (i & 1)
5943       AddFound = true;
5944     else
5945       SubFound = true;
5946
5947     // Update InVec0 and InVec1.
5948     if (InVec0.getOpcode() == ISD::UNDEF) {
5949       InVec0 = Op0.getOperand(0);
5950       if (InVec0.getValueType() != VT)
5951         return SDValue();
5952     }
5953     if (InVec1.getOpcode() == ISD::UNDEF) {
5954       InVec1 = Op1.getOperand(0);
5955       if (InVec1.getValueType() != VT)
5956         return SDValue();
5957     }
5958
5959     // Make sure that operands in input to each add/sub node always
5960     // come from a same pair of vectors.
5961     if (InVec0 != Op0.getOperand(0)) {
5962       if (ExpectedOpcode == ISD::FSUB)
5963         return SDValue();
5964
5965       // FADD is commutable. Try to commute the operands
5966       // and then test again.
5967       std::swap(Op0, Op1);
5968       if (InVec0 != Op0.getOperand(0))
5969         return SDValue();
5970     }
5971
5972     if (InVec1 != Op1.getOperand(0))
5973       return SDValue();
5974
5975     // Update the pair of expected opcodes.
5976     std::swap(ExpectedOpcode, NextExpectedOpcode);
5977   }
5978
5979   // Don't try to fold this build_vector into an ADDSUB if the inputs are undef.
5980   if (AddFound && SubFound && InVec0.getOpcode() != ISD::UNDEF &&
5981       InVec1.getOpcode() != ISD::UNDEF)
5982     return DAG.getNode(X86ISD::ADDSUB, DL, VT, InVec0, InVec1);
5983
5984   return SDValue();
5985 }
5986
5987 /// Lower BUILD_VECTOR to a horizontal add/sub operation if possible.
5988 static SDValue LowerToHorizontalOp(const BuildVectorSDNode *BV,
5989                                    const X86Subtarget *Subtarget,
5990                                    SelectionDAG &DAG) {
5991   EVT VT = BV->getValueType(0);
5992   unsigned NumElts = VT.getVectorNumElements();
5993   unsigned NumUndefsLO = 0;
5994   unsigned NumUndefsHI = 0;
5995   unsigned Half = NumElts/2;
5996
5997   // Count the number of UNDEF operands in the build_vector in input.
5998   for (unsigned i = 0, e = Half; i != e; ++i)
5999     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
6000       NumUndefsLO++;
6001
6002   for (unsigned i = Half, e = NumElts; i != e; ++i)
6003     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
6004       NumUndefsHI++;
6005
6006   // Early exit if this is either a build_vector of all UNDEFs or all the
6007   // operands but one are UNDEF.
6008   if (NumUndefsLO + NumUndefsHI + 1 >= NumElts)
6009     return SDValue();
6010
6011   SDLoc DL(BV);
6012   SDValue InVec0, InVec1;
6013   if ((VT == MVT::v4f32 || VT == MVT::v2f64) && Subtarget->hasSSE3()) {
6014     // Try to match an SSE3 float HADD/HSUB.
6015     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6016       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
6017
6018     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6019       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
6020   } else if ((VT == MVT::v4i32 || VT == MVT::v8i16) && Subtarget->hasSSSE3()) {
6021     // Try to match an SSSE3 integer HADD/HSUB.
6022     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6023       return DAG.getNode(X86ISD::HADD, DL, VT, InVec0, InVec1);
6024
6025     if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6026       return DAG.getNode(X86ISD::HSUB, DL, VT, InVec0, InVec1);
6027   }
6028
6029   if (!Subtarget->hasAVX())
6030     return SDValue();
6031
6032   if ((VT == MVT::v8f32 || VT == MVT::v4f64)) {
6033     // Try to match an AVX horizontal add/sub of packed single/double
6034     // precision floating point values from 256-bit vectors.
6035     SDValue InVec2, InVec3;
6036     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, Half, InVec0, InVec1) &&
6037         isHorizontalBinOp(BV, ISD::FADD, DAG, Half, NumElts, InVec2, InVec3) &&
6038         ((InVec0.getOpcode() == ISD::UNDEF ||
6039           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6040         ((InVec1.getOpcode() == ISD::UNDEF ||
6041           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6042       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
6043
6044     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, Half, InVec0, InVec1) &&
6045         isHorizontalBinOp(BV, ISD::FSUB, DAG, Half, NumElts, InVec2, InVec3) &&
6046         ((InVec0.getOpcode() == ISD::UNDEF ||
6047           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6048         ((InVec1.getOpcode() == ISD::UNDEF ||
6049           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6050       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
6051   } else if (VT == MVT::v8i32 || VT == MVT::v16i16) {
6052     // Try to match an AVX2 horizontal add/sub of signed integers.
6053     SDValue InVec2, InVec3;
6054     unsigned X86Opcode;
6055     bool CanFold = true;
6056
6057     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, Half, InVec0, InVec1) &&
6058         isHorizontalBinOp(BV, ISD::ADD, DAG, Half, NumElts, InVec2, InVec3) &&
6059         ((InVec0.getOpcode() == ISD::UNDEF ||
6060           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6061         ((InVec1.getOpcode() == ISD::UNDEF ||
6062           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6063       X86Opcode = X86ISD::HADD;
6064     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, Half, InVec0, InVec1) &&
6065         isHorizontalBinOp(BV, ISD::SUB, DAG, Half, NumElts, InVec2, InVec3) &&
6066         ((InVec0.getOpcode() == ISD::UNDEF ||
6067           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
6068         ((InVec1.getOpcode() == ISD::UNDEF ||
6069           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
6070       X86Opcode = X86ISD::HSUB;
6071     else
6072       CanFold = false;
6073
6074     if (CanFold) {
6075       // Fold this build_vector into a single horizontal add/sub.
6076       // Do this only if the target has AVX2.
6077       if (Subtarget->hasAVX2())
6078         return DAG.getNode(X86Opcode, DL, VT, InVec0, InVec1);
6079
6080       // Do not try to expand this build_vector into a pair of horizontal
6081       // add/sub if we can emit a pair of scalar add/sub.
6082       if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6083         return SDValue();
6084
6085       // Convert this build_vector into a pair of horizontal binop followed by
6086       // a concat vector.
6087       bool isUndefLO = NumUndefsLO == Half;
6088       bool isUndefHI = NumUndefsHI == Half;
6089       return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, false,
6090                                    isUndefLO, isUndefHI);
6091     }
6092   }
6093
6094   if ((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v8i32 ||
6095        VT == MVT::v16i16) && Subtarget->hasAVX()) {
6096     unsigned X86Opcode;
6097     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6098       X86Opcode = X86ISD::HADD;
6099     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6100       X86Opcode = X86ISD::HSUB;
6101     else if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6102       X86Opcode = X86ISD::FHADD;
6103     else if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6104       X86Opcode = X86ISD::FHSUB;
6105     else
6106       return SDValue();
6107
6108     // Don't try to expand this build_vector into a pair of horizontal add/sub
6109     // if we can simply emit a pair of scalar add/sub.
6110     if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6111       return SDValue();
6112
6113     // Convert this build_vector into two horizontal add/sub followed by
6114     // a concat vector.
6115     bool isUndefLO = NumUndefsLO == Half;
6116     bool isUndefHI = NumUndefsHI == Half;
6117     return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, true,
6118                                  isUndefLO, isUndefHI);
6119   }
6120
6121   return SDValue();
6122 }
6123
6124 SDValue
6125 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6126   SDLoc dl(Op);
6127
6128   MVT VT = Op.getSimpleValueType();
6129   MVT ExtVT = VT.getVectorElementType();
6130   unsigned NumElems = Op.getNumOperands();
6131
6132   // Generate vectors for predicate vectors.
6133   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
6134     return LowerBUILD_VECTORvXi1(Op, DAG);
6135
6136   // Vectors containing all zeros can be matched by pxor and xorps later
6137   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6138     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
6139     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
6140     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
6141       return Op;
6142
6143     return getZeroVector(VT, Subtarget, DAG, dl);
6144   }
6145
6146   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
6147   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
6148   // vpcmpeqd on 256-bit vectors.
6149   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
6150     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
6151       return Op;
6152
6153     if (!VT.is512BitVector())
6154       return getOnesVector(VT, Subtarget, DAG, dl);
6155   }
6156
6157   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(Op.getNode());
6158   if (SDValue AddSub = LowerToAddSub(BV, Subtarget, DAG))
6159     return AddSub;
6160   if (SDValue HorizontalOp = LowerToHorizontalOp(BV, Subtarget, DAG))
6161     return HorizontalOp;
6162   if (SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG))
6163     return Broadcast;
6164
6165   unsigned EVTBits = ExtVT.getSizeInBits();
6166
6167   unsigned NumZero  = 0;
6168   unsigned NumNonZero = 0;
6169   unsigned NonZeros = 0;
6170   bool IsAllConstants = true;
6171   SmallSet<SDValue, 8> Values;
6172   for (unsigned i = 0; i < NumElems; ++i) {
6173     SDValue Elt = Op.getOperand(i);
6174     if (Elt.getOpcode() == ISD::UNDEF)
6175       continue;
6176     Values.insert(Elt);
6177     if (Elt.getOpcode() != ISD::Constant &&
6178         Elt.getOpcode() != ISD::ConstantFP)
6179       IsAllConstants = false;
6180     if (X86::isZeroNode(Elt))
6181       NumZero++;
6182     else {
6183       NonZeros |= (1 << i);
6184       NumNonZero++;
6185     }
6186   }
6187
6188   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
6189   if (NumNonZero == 0)
6190     return DAG.getUNDEF(VT);
6191
6192   // Special case for single non-zero, non-undef, element.
6193   if (NumNonZero == 1) {
6194     unsigned Idx = countTrailingZeros(NonZeros);
6195     SDValue Item = Op.getOperand(Idx);
6196
6197     // If this is an insertion of an i64 value on x86-32, and if the top bits of
6198     // the value are obviously zero, truncate the value to i32 and do the
6199     // insertion that way.  Only do this if the value is non-constant or if the
6200     // value is a constant being inserted into element 0.  It is cheaper to do
6201     // a constant pool load than it is to do a movd + shuffle.
6202     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
6203         (!IsAllConstants || Idx == 0)) {
6204       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
6205         // Handle SSE only.
6206         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6207         EVT VecVT = MVT::v4i32;
6208
6209         // Truncate the value (which may itself be a constant) to i32, and
6210         // convert it to a vector with movd (S2V+shuffle to zero extend).
6211         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
6212         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
6213         return DAG.getBitcast(VT, getShuffleVectorZeroOrUndef(
6214                                       Item, Idx * 2, true, Subtarget, DAG));
6215       }
6216     }
6217
6218     // If we have a constant or non-constant insertion into the low element of
6219     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
6220     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
6221     // depending on what the source datatype is.
6222     if (Idx == 0) {
6223       if (NumZero == 0)
6224         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6225
6226       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
6227           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
6228         if (VT.is512BitVector()) {
6229           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
6230           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
6231                              Item, DAG.getIntPtrConstant(0, dl));
6232         }
6233         assert((VT.is128BitVector() || VT.is256BitVector()) &&
6234                "Expected an SSE value type!");
6235         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6236         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6237         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6238       }
6239
6240       // We can't directly insert an i8 or i16 into a vector, so zero extend
6241       // it to i32 first.
6242       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6243         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6244         if (VT.is256BitVector()) {
6245           if (Subtarget->hasAVX()) {
6246             Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v8i32, Item);
6247             Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6248           } else {
6249             // Without AVX, we need to extend to a 128-bit vector and then
6250             // insert into the 256-bit vector.
6251             Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6252             SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6253             Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6254           }
6255         } else {
6256           assert(VT.is128BitVector() && "Expected an SSE value type!");
6257           Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6258           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6259         }
6260         return DAG.getBitcast(VT, Item);
6261       }
6262     }
6263
6264     // Is it a vector logical left shift?
6265     if (NumElems == 2 && Idx == 1 &&
6266         X86::isZeroNode(Op.getOperand(0)) &&
6267         !X86::isZeroNode(Op.getOperand(1))) {
6268       unsigned NumBits = VT.getSizeInBits();
6269       return getVShift(true, VT,
6270                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6271                                    VT, Op.getOperand(1)),
6272                        NumBits/2, DAG, *this, dl);
6273     }
6274
6275     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6276       return SDValue();
6277
6278     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6279     // is a non-constant being inserted into an element other than the low one,
6280     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6281     // movd/movss) to move this into the low element, then shuffle it into
6282     // place.
6283     if (EVTBits == 32) {
6284       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6285       return getShuffleVectorZeroOrUndef(Item, Idx, NumZero > 0, Subtarget, DAG);
6286     }
6287   }
6288
6289   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6290   if (Values.size() == 1) {
6291     if (EVTBits == 32) {
6292       // Instead of a shuffle like this:
6293       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6294       // Check if it's possible to issue this instead.
6295       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6296       unsigned Idx = countTrailingZeros(NonZeros);
6297       SDValue Item = Op.getOperand(Idx);
6298       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6299         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6300     }
6301     return SDValue();
6302   }
6303
6304   // A vector full of immediates; various special cases are already
6305   // handled, so this is best done with a single constant-pool load.
6306   if (IsAllConstants)
6307     return SDValue();
6308
6309   // For AVX-length vectors, see if we can use a vector load to get all of the
6310   // elements, otherwise build the individual 128-bit pieces and use
6311   // shuffles to put them in place.
6312   if (VT.is256BitVector() || VT.is512BitVector()) {
6313     SmallVector<SDValue, 64> V(Op->op_begin(), Op->op_begin() + NumElems);
6314
6315     // Check for a build vector of consecutive loads.
6316     if (SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false))
6317       return LD;
6318
6319     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6320
6321     // Build both the lower and upper subvector.
6322     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6323                                 makeArrayRef(&V[0], NumElems/2));
6324     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6325                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
6326
6327     // Recreate the wider vector with the lower and upper part.
6328     if (VT.is256BitVector())
6329       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6330     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6331   }
6332
6333   // Let legalizer expand 2-wide build_vectors.
6334   if (EVTBits == 64) {
6335     if (NumNonZero == 1) {
6336       // One half is zero or undef.
6337       unsigned Idx = countTrailingZeros(NonZeros);
6338       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6339                                  Op.getOperand(Idx));
6340       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6341     }
6342     return SDValue();
6343   }
6344
6345   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6346   if (EVTBits == 8 && NumElems == 16)
6347     if (SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6348                                         Subtarget, *this))
6349       return V;
6350
6351   if (EVTBits == 16 && NumElems == 8)
6352     if (SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6353                                       Subtarget, *this))
6354       return V;
6355
6356   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
6357   if (EVTBits == 32 && NumElems == 4)
6358     if (SDValue V = LowerBuildVectorv4x32(Op, DAG, Subtarget, *this))
6359       return V;
6360
6361   // If element VT is == 32 bits, turn it into a number of shuffles.
6362   SmallVector<SDValue, 8> V(NumElems);
6363   if (NumElems == 4 && NumZero > 0) {
6364     for (unsigned i = 0; i < 4; ++i) {
6365       bool isZero = !(NonZeros & (1 << i));
6366       if (isZero)
6367         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6368       else
6369         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6370     }
6371
6372     for (unsigned i = 0; i < 2; ++i) {
6373       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6374         default: break;
6375         case 0:
6376           V[i] = V[i*2];  // Must be a zero vector.
6377           break;
6378         case 1:
6379           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6380           break;
6381         case 2:
6382           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6383           break;
6384         case 3:
6385           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6386           break;
6387       }
6388     }
6389
6390     bool Reverse1 = (NonZeros & 0x3) == 2;
6391     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6392     int MaskVec[] = {
6393       Reverse1 ? 1 : 0,
6394       Reverse1 ? 0 : 1,
6395       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6396       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6397     };
6398     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6399   }
6400
6401   if (Values.size() > 1 && VT.is128BitVector()) {
6402     // Check for a build vector of consecutive loads.
6403     for (unsigned i = 0; i < NumElems; ++i)
6404       V[i] = Op.getOperand(i);
6405
6406     // Check for elements which are consecutive loads.
6407     if (SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false))
6408       return LD;
6409
6410     // Check for a build vector from mostly shuffle plus few inserting.
6411     if (SDValue Sh = buildFromShuffleMostly(Op, DAG))
6412       return Sh;
6413
6414     // For SSE 4.1, use insertps to put the high elements into the low element.
6415     if (Subtarget->hasSSE41()) {
6416       SDValue Result;
6417       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6418         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6419       else
6420         Result = DAG.getUNDEF(VT);
6421
6422       for (unsigned i = 1; i < NumElems; ++i) {
6423         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6424         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6425                              Op.getOperand(i), DAG.getIntPtrConstant(i, dl));
6426       }
6427       return Result;
6428     }
6429
6430     // Otherwise, expand into a number of unpckl*, start by extending each of
6431     // our (non-undef) elements to the full vector width with the element in the
6432     // bottom slot of the vector (which generates no code for SSE).
6433     for (unsigned i = 0; i < NumElems; ++i) {
6434       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6435         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6436       else
6437         V[i] = DAG.getUNDEF(VT);
6438     }
6439
6440     // Next, we iteratively mix elements, e.g. for v4f32:
6441     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6442     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6443     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6444     unsigned EltStride = NumElems >> 1;
6445     while (EltStride != 0) {
6446       for (unsigned i = 0; i < EltStride; ++i) {
6447         // If V[i+EltStride] is undef and this is the first round of mixing,
6448         // then it is safe to just drop this shuffle: V[i] is already in the
6449         // right place, the one element (since it's the first round) being
6450         // inserted as undef can be dropped.  This isn't safe for successive
6451         // rounds because they will permute elements within both vectors.
6452         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6453             EltStride == NumElems/2)
6454           continue;
6455
6456         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6457       }
6458       EltStride >>= 1;
6459     }
6460     return V[0];
6461   }
6462   return SDValue();
6463 }
6464
6465 // 256-bit AVX can use the vinsertf128 instruction
6466 // to create 256-bit vectors from two other 128-bit ones.
6467 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6468   SDLoc dl(Op);
6469   MVT ResVT = Op.getSimpleValueType();
6470
6471   assert((ResVT.is256BitVector() ||
6472           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6473
6474   SDValue V1 = Op.getOperand(0);
6475   SDValue V2 = Op.getOperand(1);
6476   unsigned NumElems = ResVT.getVectorNumElements();
6477   if (ResVT.is256BitVector())
6478     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6479
6480   if (Op.getNumOperands() == 4) {
6481     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6482                                 ResVT.getVectorNumElements()/2);
6483     SDValue V3 = Op.getOperand(2);
6484     SDValue V4 = Op.getOperand(3);
6485     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6486       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6487   }
6488   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6489 }
6490
6491 static SDValue LowerCONCAT_VECTORSvXi1(SDValue Op,
6492                                        const X86Subtarget *Subtarget,
6493                                        SelectionDAG & DAG) {
6494   SDLoc dl(Op);
6495   MVT ResVT = Op.getSimpleValueType();
6496   unsigned NumOfOperands = Op.getNumOperands();
6497
6498   assert(isPowerOf2_32(NumOfOperands) &&
6499          "Unexpected number of operands in CONCAT_VECTORS");
6500
6501   if (NumOfOperands > 2) {
6502     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6503                                   ResVT.getVectorNumElements()/2);
6504     SmallVector<SDValue, 2> Ops;
6505     for (unsigned i = 0; i < NumOfOperands/2; i++)
6506       Ops.push_back(Op.getOperand(i));
6507     SDValue Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT, Ops);
6508     Ops.clear();
6509     for (unsigned i = NumOfOperands/2; i < NumOfOperands; i++)
6510       Ops.push_back(Op.getOperand(i));
6511     SDValue Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT, Ops);
6512     return DAG.getNode(ISD::CONCAT_VECTORS, dl, ResVT, Lo, Hi);
6513   }
6514
6515   SDValue V1 = Op.getOperand(0);
6516   SDValue V2 = Op.getOperand(1);
6517   bool IsZeroV1 = ISD::isBuildVectorAllZeros(V1.getNode());
6518   bool IsZeroV2 = ISD::isBuildVectorAllZeros(V2.getNode());
6519
6520   if (IsZeroV1 && IsZeroV2)
6521     return getZeroVector(ResVT, Subtarget, DAG, dl);
6522
6523   SDValue ZeroIdx = DAG.getIntPtrConstant(0, dl);
6524   SDValue Undef = DAG.getUNDEF(ResVT);
6525   unsigned NumElems = ResVT.getVectorNumElements();
6526   SDValue ShiftBits = DAG.getConstant(NumElems/2, dl, MVT::i8);
6527
6528   V2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V2, ZeroIdx);
6529   V2 = DAG.getNode(X86ISD::VSHLI, dl, ResVT, V2, ShiftBits);
6530   if (IsZeroV1)
6531     return V2;
6532
6533   V1 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V1, ZeroIdx);
6534   // Zero the upper bits of V1
6535   V1 = DAG.getNode(X86ISD::VSHLI, dl, ResVT, V1, ShiftBits);
6536   V1 = DAG.getNode(X86ISD::VSRLI, dl, ResVT, V1, ShiftBits);
6537   if (IsZeroV2)
6538     return V1;
6539   return DAG.getNode(ISD::OR, dl, ResVT, V1, V2);
6540 }
6541
6542 static SDValue LowerCONCAT_VECTORS(SDValue Op,
6543                                    const X86Subtarget *Subtarget,
6544                                    SelectionDAG &DAG) {
6545   MVT VT = Op.getSimpleValueType();
6546   if (VT.getVectorElementType() == MVT::i1)
6547     return LowerCONCAT_VECTORSvXi1(Op, Subtarget, DAG);
6548
6549   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6550          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6551           Op.getNumOperands() == 4)));
6552
6553   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6554   // from two other 128-bit ones.
6555
6556   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6557   return LowerAVXCONCAT_VECTORS(Op, DAG);
6558 }
6559
6560 //===----------------------------------------------------------------------===//
6561 // Vector shuffle lowering
6562 //
6563 // This is an experimental code path for lowering vector shuffles on x86. It is
6564 // designed to handle arbitrary vector shuffles and blends, gracefully
6565 // degrading performance as necessary. It works hard to recognize idiomatic
6566 // shuffles and lower them to optimal instruction patterns without leaving
6567 // a framework that allows reasonably efficient handling of all vector shuffle
6568 // patterns.
6569 //===----------------------------------------------------------------------===//
6570
6571 /// \brief Tiny helper function to identify a no-op mask.
6572 ///
6573 /// This is a somewhat boring predicate function. It checks whether the mask
6574 /// array input, which is assumed to be a single-input shuffle mask of the kind
6575 /// used by the X86 shuffle instructions (not a fully general
6576 /// ShuffleVectorSDNode mask) requires any shuffles to occur. Both undef and an
6577 /// in-place shuffle are 'no-op's.
6578 static bool isNoopShuffleMask(ArrayRef<int> Mask) {
6579   for (int i = 0, Size = Mask.size(); i < Size; ++i)
6580     if (Mask[i] != -1 && Mask[i] != i)
6581       return false;
6582   return true;
6583 }
6584
6585 /// \brief Helper function to classify a mask as a single-input mask.
6586 ///
6587 /// This isn't a generic single-input test because in the vector shuffle
6588 /// lowering we canonicalize single inputs to be the first input operand. This
6589 /// means we can more quickly test for a single input by only checking whether
6590 /// an input from the second operand exists. We also assume that the size of
6591 /// mask corresponds to the size of the input vectors which isn't true in the
6592 /// fully general case.
6593 static bool isSingleInputShuffleMask(ArrayRef<int> Mask) {
6594   for (int M : Mask)
6595     if (M >= (int)Mask.size())
6596       return false;
6597   return true;
6598 }
6599
6600 /// \brief Test whether there are elements crossing 128-bit lanes in this
6601 /// shuffle mask.
6602 ///
6603 /// X86 divides up its shuffles into in-lane and cross-lane shuffle operations
6604 /// and we routinely test for these.
6605 static bool is128BitLaneCrossingShuffleMask(MVT VT, ArrayRef<int> Mask) {
6606   int LaneSize = 128 / VT.getScalarSizeInBits();
6607   int Size = Mask.size();
6608   for (int i = 0; i < Size; ++i)
6609     if (Mask[i] >= 0 && (Mask[i] % Size) / LaneSize != i / LaneSize)
6610       return true;
6611   return false;
6612 }
6613
6614 /// \brief Test whether a shuffle mask is equivalent within each 128-bit lane.
6615 ///
6616 /// This checks a shuffle mask to see if it is performing the same
6617 /// 128-bit lane-relative shuffle in each 128-bit lane. This trivially implies
6618 /// that it is also not lane-crossing. It may however involve a blend from the
6619 /// same lane of a second vector.
6620 ///
6621 /// The specific repeated shuffle mask is populated in \p RepeatedMask, as it is
6622 /// non-trivial to compute in the face of undef lanes. The representation is
6623 /// *not* suitable for use with existing 128-bit shuffles as it will contain
6624 /// entries from both V1 and V2 inputs to the wider mask.
6625 static bool
6626 is128BitLaneRepeatedShuffleMask(MVT VT, ArrayRef<int> Mask,
6627                                 SmallVectorImpl<int> &RepeatedMask) {
6628   int LaneSize = 128 / VT.getScalarSizeInBits();
6629   RepeatedMask.resize(LaneSize, -1);
6630   int Size = Mask.size();
6631   for (int i = 0; i < Size; ++i) {
6632     if (Mask[i] < 0)
6633       continue;
6634     if ((Mask[i] % Size) / LaneSize != i / LaneSize)
6635       // This entry crosses lanes, so there is no way to model this shuffle.
6636       return false;
6637
6638     // Ok, handle the in-lane shuffles by detecting if and when they repeat.
6639     if (RepeatedMask[i % LaneSize] == -1)
6640       // This is the first non-undef entry in this slot of a 128-bit lane.
6641       RepeatedMask[i % LaneSize] =
6642           Mask[i] < Size ? Mask[i] % LaneSize : Mask[i] % LaneSize + Size;
6643     else if (RepeatedMask[i % LaneSize] + (i / LaneSize) * LaneSize != Mask[i])
6644       // Found a mismatch with the repeated mask.
6645       return false;
6646   }
6647   return true;
6648 }
6649
6650 /// \brief Checks whether a shuffle mask is equivalent to an explicit list of
6651 /// arguments.
6652 ///
6653 /// This is a fast way to test a shuffle mask against a fixed pattern:
6654 ///
6655 ///   if (isShuffleEquivalent(Mask, 3, 2, {1, 0})) { ... }
6656 ///
6657 /// It returns true if the mask is exactly as wide as the argument list, and
6658 /// each element of the mask is either -1 (signifying undef) or the value given
6659 /// in the argument.
6660 static bool isShuffleEquivalent(SDValue V1, SDValue V2, ArrayRef<int> Mask,
6661                                 ArrayRef<int> ExpectedMask) {
6662   if (Mask.size() != ExpectedMask.size())
6663     return false;
6664
6665   int Size = Mask.size();
6666
6667   // If the values are build vectors, we can look through them to find
6668   // equivalent inputs that make the shuffles equivalent.
6669   auto *BV1 = dyn_cast<BuildVectorSDNode>(V1);
6670   auto *BV2 = dyn_cast<BuildVectorSDNode>(V2);
6671
6672   for (int i = 0; i < Size; ++i)
6673     if (Mask[i] != -1 && Mask[i] != ExpectedMask[i]) {
6674       auto *MaskBV = Mask[i] < Size ? BV1 : BV2;
6675       auto *ExpectedBV = ExpectedMask[i] < Size ? BV1 : BV2;
6676       if (!MaskBV || !ExpectedBV ||
6677           MaskBV->getOperand(Mask[i] % Size) !=
6678               ExpectedBV->getOperand(ExpectedMask[i] % Size))
6679         return false;
6680     }
6681
6682   return true;
6683 }
6684
6685 /// \brief Get a 4-lane 8-bit shuffle immediate for a mask.
6686 ///
6687 /// This helper function produces an 8-bit shuffle immediate corresponding to
6688 /// the ubiquitous shuffle encoding scheme used in x86 instructions for
6689 /// shuffling 4 lanes. It can be used with most of the PSHUF instructions for
6690 /// example.
6691 ///
6692 /// NB: We rely heavily on "undef" masks preserving the input lane.
6693 static SDValue getV4X86ShuffleImm8ForMask(ArrayRef<int> Mask, SDLoc DL,
6694                                           SelectionDAG &DAG) {
6695   assert(Mask.size() == 4 && "Only 4-lane shuffle masks");
6696   assert(Mask[0] >= -1 && Mask[0] < 4 && "Out of bound mask element!");
6697   assert(Mask[1] >= -1 && Mask[1] < 4 && "Out of bound mask element!");
6698   assert(Mask[2] >= -1 && Mask[2] < 4 && "Out of bound mask element!");
6699   assert(Mask[3] >= -1 && Mask[3] < 4 && "Out of bound mask element!");
6700
6701   unsigned Imm = 0;
6702   Imm |= (Mask[0] == -1 ? 0 : Mask[0]) << 0;
6703   Imm |= (Mask[1] == -1 ? 1 : Mask[1]) << 2;
6704   Imm |= (Mask[2] == -1 ? 2 : Mask[2]) << 4;
6705   Imm |= (Mask[3] == -1 ? 3 : Mask[3]) << 6;
6706   return DAG.getConstant(Imm, DL, MVT::i8);
6707 }
6708
6709 /// \brief Compute whether each element of a shuffle is zeroable.
6710 ///
6711 /// A "zeroable" vector shuffle element is one which can be lowered to zero.
6712 /// Either it is an undef element in the shuffle mask, the element of the input
6713 /// referenced is undef, or the element of the input referenced is known to be
6714 /// zero. Many x86 shuffles can zero lanes cheaply and we often want to handle
6715 /// as many lanes with this technique as possible to simplify the remaining
6716 /// shuffle.
6717 static SmallBitVector computeZeroableShuffleElements(ArrayRef<int> Mask,
6718                                                      SDValue V1, SDValue V2) {
6719   SmallBitVector Zeroable(Mask.size(), false);
6720
6721   while (V1.getOpcode() == ISD::BITCAST)
6722     V1 = V1->getOperand(0);
6723   while (V2.getOpcode() == ISD::BITCAST)
6724     V2 = V2->getOperand(0);
6725
6726   bool V1IsZero = ISD::isBuildVectorAllZeros(V1.getNode());
6727   bool V2IsZero = ISD::isBuildVectorAllZeros(V2.getNode());
6728
6729   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6730     int M = Mask[i];
6731     // Handle the easy cases.
6732     if (M < 0 || (M >= 0 && M < Size && V1IsZero) || (M >= Size && V2IsZero)) {
6733       Zeroable[i] = true;
6734       continue;
6735     }
6736
6737     // If this is an index into a build_vector node (which has the same number
6738     // of elements), dig out the input value and use it.
6739     SDValue V = M < Size ? V1 : V2;
6740     if (V.getOpcode() != ISD::BUILD_VECTOR || Size != (int)V.getNumOperands())
6741       continue;
6742
6743     SDValue Input = V.getOperand(M % Size);
6744     // The UNDEF opcode check really should be dead code here, but not quite
6745     // worth asserting on (it isn't invalid, just unexpected).
6746     if (Input.getOpcode() == ISD::UNDEF || X86::isZeroNode(Input))
6747       Zeroable[i] = true;
6748   }
6749
6750   return Zeroable;
6751 }
6752
6753 // X86 has dedicated unpack instructions that can handle specific blend
6754 // operations: UNPCKH and UNPCKL.
6755 static SDValue lowerVectorShuffleWithUNPCK(SDLoc DL, MVT VT, ArrayRef<int> Mask,
6756                                            SDValue V1, SDValue V2,
6757                                            SelectionDAG &DAG) {
6758   int NumElts = VT.getVectorNumElements();
6759   bool Unpckl = true;
6760   bool Unpckh = true;
6761   bool UnpcklSwapped = true;
6762   bool UnpckhSwapped = true;
6763   int NumEltsInLane = 128 / VT.getScalarSizeInBits();
6764
6765   for (int i = 0; i < NumElts; ++i) {
6766     unsigned LaneStart = (i / NumEltsInLane) * NumEltsInLane;
6767
6768     int LoPos = (i % NumEltsInLane) / 2 + LaneStart + NumElts * (i % 2);
6769     int HiPos = LoPos + NumEltsInLane / 2;
6770     int LoPosSwapped = (LoPos + NumElts) % (NumElts * 2);
6771     int HiPosSwapped = (HiPos + NumElts) % (NumElts * 2);
6772
6773     if (Mask[i] == -1)
6774       continue;
6775     if (Mask[i] != LoPos)
6776       Unpckl = false;
6777     if (Mask[i] != HiPos)
6778       Unpckh = false;
6779     if (Mask[i] != LoPosSwapped)
6780       UnpcklSwapped = false;
6781     if (Mask[i] != HiPosSwapped)
6782       UnpckhSwapped = false;
6783     if (!Unpckl && !Unpckh && !UnpcklSwapped && !UnpckhSwapped)
6784       return SDValue();
6785   }
6786   if (Unpckl)
6787     return DAG.getNode(X86ISD::UNPCKL, DL, VT, V1, V2);
6788   if (Unpckh)
6789     return DAG.getNode(X86ISD::UNPCKH, DL, VT, V1, V2);
6790   if (UnpcklSwapped)
6791     return DAG.getNode(X86ISD::UNPCKL, DL, VT, V2, V1);
6792   if (UnpckhSwapped)
6793     return DAG.getNode(X86ISD::UNPCKH, DL, VT, V2, V1);
6794
6795   llvm_unreachable("Unexpected result of UNPCK mask analysis");
6796   return SDValue();
6797 }
6798
6799 /// \brief Try to emit a bitmask instruction for a shuffle.
6800 ///
6801 /// This handles cases where we can model a blend exactly as a bitmask due to
6802 /// one of the inputs being zeroable.
6803 static SDValue lowerVectorShuffleAsBitMask(SDLoc DL, MVT VT, SDValue V1,
6804                                            SDValue V2, ArrayRef<int> Mask,
6805                                            SelectionDAG &DAG) {
6806   MVT EltVT = VT.getScalarType();
6807   int NumEltBits = EltVT.getSizeInBits();
6808   MVT IntEltVT = MVT::getIntegerVT(NumEltBits);
6809   SDValue Zero = DAG.getConstant(0, DL, IntEltVT);
6810   SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL,
6811                                     IntEltVT);
6812   if (EltVT.isFloatingPoint()) {
6813     Zero = DAG.getBitcast(EltVT, Zero);
6814     AllOnes = DAG.getBitcast(EltVT, AllOnes);
6815   }
6816   SmallVector<SDValue, 16> VMaskOps(Mask.size(), Zero);
6817   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
6818   SDValue V;
6819   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6820     if (Zeroable[i])
6821       continue;
6822     if (Mask[i] % Size != i)
6823       return SDValue(); // Not a blend.
6824     if (!V)
6825       V = Mask[i] < Size ? V1 : V2;
6826     else if (V != (Mask[i] < Size ? V1 : V2))
6827       return SDValue(); // Can only let one input through the mask.
6828
6829     VMaskOps[i] = AllOnes;
6830   }
6831   if (!V)
6832     return SDValue(); // No non-zeroable elements!
6833
6834   SDValue VMask = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, VMaskOps);
6835   V = DAG.getNode(VT.isFloatingPoint()
6836                   ? (unsigned) X86ISD::FAND : (unsigned) ISD::AND,
6837                   DL, VT, V, VMask);
6838   return V;
6839 }
6840
6841 /// \brief Try to emit a blend instruction for a shuffle using bit math.
6842 ///
6843 /// This is used as a fallback approach when first class blend instructions are
6844 /// unavailable. Currently it is only suitable for integer vectors, but could
6845 /// be generalized for floating point vectors if desirable.
6846 static SDValue lowerVectorShuffleAsBitBlend(SDLoc DL, MVT VT, SDValue V1,
6847                                             SDValue V2, ArrayRef<int> Mask,
6848                                             SelectionDAG &DAG) {
6849   assert(VT.isInteger() && "Only supports integer vector types!");
6850   MVT EltVT = VT.getScalarType();
6851   int NumEltBits = EltVT.getSizeInBits();
6852   SDValue Zero = DAG.getConstant(0, DL, EltVT);
6853   SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL,
6854                                     EltVT);
6855   SmallVector<SDValue, 16> MaskOps;
6856   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6857     if (Mask[i] != -1 && Mask[i] != i && Mask[i] != i + Size)
6858       return SDValue(); // Shuffled input!
6859     MaskOps.push_back(Mask[i] < Size ? AllOnes : Zero);
6860   }
6861
6862   SDValue V1Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, MaskOps);
6863   V1 = DAG.getNode(ISD::AND, DL, VT, V1, V1Mask);
6864   // We have to cast V2 around.
6865   MVT MaskVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits() / 64);
6866   V2 = DAG.getBitcast(VT, DAG.getNode(X86ISD::ANDNP, DL, MaskVT,
6867                                       DAG.getBitcast(MaskVT, V1Mask),
6868                                       DAG.getBitcast(MaskVT, V2)));
6869   return DAG.getNode(ISD::OR, DL, VT, V1, V2);
6870 }
6871
6872 /// \brief Try to emit a blend instruction for a shuffle.
6873 ///
6874 /// This doesn't do any checks for the availability of instructions for blending
6875 /// these values. It relies on the availability of the X86ISD::BLENDI pattern to
6876 /// be matched in the backend with the type given. What it does check for is
6877 /// that the shuffle mask is in fact a blend.
6878 static SDValue lowerVectorShuffleAsBlend(SDLoc DL, MVT VT, SDValue V1,
6879                                          SDValue V2, ArrayRef<int> Mask,
6880                                          const X86Subtarget *Subtarget,
6881                                          SelectionDAG &DAG) {
6882   unsigned BlendMask = 0;
6883   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6884     if (Mask[i] >= Size) {
6885       if (Mask[i] != i + Size)
6886         return SDValue(); // Shuffled V2 input!
6887       BlendMask |= 1u << i;
6888       continue;
6889     }
6890     if (Mask[i] >= 0 && Mask[i] != i)
6891       return SDValue(); // Shuffled V1 input!
6892   }
6893   switch (VT.SimpleTy) {
6894   case MVT::v2f64:
6895   case MVT::v4f32:
6896   case MVT::v4f64:
6897   case MVT::v8f32:
6898     return DAG.getNode(X86ISD::BLENDI, DL, VT, V1, V2,
6899                        DAG.getConstant(BlendMask, DL, MVT::i8));
6900
6901   case MVT::v4i64:
6902   case MVT::v8i32:
6903     assert(Subtarget->hasAVX2() && "256-bit integer blends require AVX2!");
6904     // FALLTHROUGH
6905   case MVT::v2i64:
6906   case MVT::v4i32:
6907     // If we have AVX2 it is faster to use VPBLENDD when the shuffle fits into
6908     // that instruction.
6909     if (Subtarget->hasAVX2()) {
6910       // Scale the blend by the number of 32-bit dwords per element.
6911       int Scale =  VT.getScalarSizeInBits() / 32;
6912       BlendMask = 0;
6913       for (int i = 0, Size = Mask.size(); i < Size; ++i)
6914         if (Mask[i] >= Size)
6915           for (int j = 0; j < Scale; ++j)
6916             BlendMask |= 1u << (i * Scale + j);
6917
6918       MVT BlendVT = VT.getSizeInBits() > 128 ? MVT::v8i32 : MVT::v4i32;
6919       V1 = DAG.getBitcast(BlendVT, V1);
6920       V2 = DAG.getBitcast(BlendVT, V2);
6921       return DAG.getBitcast(
6922           VT, DAG.getNode(X86ISD::BLENDI, DL, BlendVT, V1, V2,
6923                           DAG.getConstant(BlendMask, DL, MVT::i8)));
6924     }
6925     // FALLTHROUGH
6926   case MVT::v8i16: {
6927     // For integer shuffles we need to expand the mask and cast the inputs to
6928     // v8i16s prior to blending.
6929     int Scale = 8 / VT.getVectorNumElements();
6930     BlendMask = 0;
6931     for (int i = 0, Size = Mask.size(); i < Size; ++i)
6932       if (Mask[i] >= Size)
6933         for (int j = 0; j < Scale; ++j)
6934           BlendMask |= 1u << (i * Scale + j);
6935
6936     V1 = DAG.getBitcast(MVT::v8i16, V1);
6937     V2 = DAG.getBitcast(MVT::v8i16, V2);
6938     return DAG.getBitcast(VT,
6939                           DAG.getNode(X86ISD::BLENDI, DL, MVT::v8i16, V1, V2,
6940                                       DAG.getConstant(BlendMask, DL, MVT::i8)));
6941   }
6942
6943   case MVT::v16i16: {
6944     assert(Subtarget->hasAVX2() && "256-bit integer blends require AVX2!");
6945     SmallVector<int, 8> RepeatedMask;
6946     if (is128BitLaneRepeatedShuffleMask(MVT::v16i16, Mask, RepeatedMask)) {
6947       // We can lower these with PBLENDW which is mirrored across 128-bit lanes.
6948       assert(RepeatedMask.size() == 8 && "Repeated mask size doesn't match!");
6949       BlendMask = 0;
6950       for (int i = 0; i < 8; ++i)
6951         if (RepeatedMask[i] >= 16)
6952           BlendMask |= 1u << i;
6953       return DAG.getNode(X86ISD::BLENDI, DL, MVT::v16i16, V1, V2,
6954                          DAG.getConstant(BlendMask, DL, MVT::i8));
6955     }
6956   }
6957     // FALLTHROUGH
6958   case MVT::v16i8:
6959   case MVT::v32i8: {
6960     assert((VT.getSizeInBits() == 128 || Subtarget->hasAVX2()) &&
6961            "256-bit byte-blends require AVX2 support!");
6962
6963     // Attempt to lower to a bitmask if we can. VPAND is faster than VPBLENDVB.
6964     if (SDValue Masked = lowerVectorShuffleAsBitMask(DL, VT, V1, V2, Mask, DAG))
6965       return Masked;
6966
6967     // Scale the blend by the number of bytes per element.
6968     int Scale = VT.getScalarSizeInBits() / 8;
6969
6970     // This form of blend is always done on bytes. Compute the byte vector
6971     // type.
6972     MVT BlendVT = MVT::getVectorVT(MVT::i8, VT.getSizeInBits() / 8);
6973
6974     // Compute the VSELECT mask. Note that VSELECT is really confusing in the
6975     // mix of LLVM's code generator and the x86 backend. We tell the code
6976     // generator that boolean values in the elements of an x86 vector register
6977     // are -1 for true and 0 for false. We then use the LLVM semantics of 'true'
6978     // mapping a select to operand #1, and 'false' mapping to operand #2. The
6979     // reality in x86 is that vector masks (pre-AVX-512) use only the high bit
6980     // of the element (the remaining are ignored) and 0 in that high bit would
6981     // mean operand #1 while 1 in the high bit would mean operand #2. So while
6982     // the LLVM model for boolean values in vector elements gets the relevant
6983     // bit set, it is set backwards and over constrained relative to x86's
6984     // actual model.
6985     SmallVector<SDValue, 32> VSELECTMask;
6986     for (int i = 0, Size = Mask.size(); i < Size; ++i)
6987       for (int j = 0; j < Scale; ++j)
6988         VSELECTMask.push_back(
6989             Mask[i] < 0 ? DAG.getUNDEF(MVT::i8)
6990                         : DAG.getConstant(Mask[i] < Size ? -1 : 0, DL,
6991                                           MVT::i8));
6992
6993     V1 = DAG.getBitcast(BlendVT, V1);
6994     V2 = DAG.getBitcast(BlendVT, V2);
6995     return DAG.getBitcast(VT, DAG.getNode(ISD::VSELECT, DL, BlendVT,
6996                                           DAG.getNode(ISD::BUILD_VECTOR, DL,
6997                                                       BlendVT, VSELECTMask),
6998                                           V1, V2));
6999   }
7000
7001   default:
7002     llvm_unreachable("Not a supported integer vector type!");
7003   }
7004 }
7005
7006 /// \brief Try to lower as a blend of elements from two inputs followed by
7007 /// a single-input permutation.
7008 ///
7009 /// This matches the pattern where we can blend elements from two inputs and
7010 /// then reduce the shuffle to a single-input permutation.
7011 static SDValue lowerVectorShuffleAsBlendAndPermute(SDLoc DL, MVT VT, SDValue V1,
7012                                                    SDValue V2,
7013                                                    ArrayRef<int> Mask,
7014                                                    SelectionDAG &DAG) {
7015   // We build up the blend mask while checking whether a blend is a viable way
7016   // to reduce the shuffle.
7017   SmallVector<int, 32> BlendMask(Mask.size(), -1);
7018   SmallVector<int, 32> PermuteMask(Mask.size(), -1);
7019
7020   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
7021     if (Mask[i] < 0)
7022       continue;
7023
7024     assert(Mask[i] < Size * 2 && "Shuffle input is out of bounds.");
7025
7026     if (BlendMask[Mask[i] % Size] == -1)
7027       BlendMask[Mask[i] % Size] = Mask[i];
7028     else if (BlendMask[Mask[i] % Size] != Mask[i])
7029       return SDValue(); // Can't blend in the needed input!
7030
7031     PermuteMask[i] = Mask[i] % Size;
7032   }
7033
7034   SDValue V = DAG.getVectorShuffle(VT, DL, V1, V2, BlendMask);
7035   return DAG.getVectorShuffle(VT, DL, V, DAG.getUNDEF(VT), PermuteMask);
7036 }
7037
7038 /// \brief Generic routine to decompose a shuffle and blend into indepndent
7039 /// blends and permutes.
7040 ///
7041 /// This matches the extremely common pattern for handling combined
7042 /// shuffle+blend operations on newer X86 ISAs where we have very fast blend
7043 /// operations. It will try to pick the best arrangement of shuffles and
7044 /// blends.
7045 static SDValue lowerVectorShuffleAsDecomposedShuffleBlend(SDLoc DL, MVT VT,
7046                                                           SDValue V1,
7047                                                           SDValue V2,
7048                                                           ArrayRef<int> Mask,
7049                                                           SelectionDAG &DAG) {
7050   // Shuffle the input elements into the desired positions in V1 and V2 and
7051   // blend them together.
7052   SmallVector<int, 32> V1Mask(Mask.size(), -1);
7053   SmallVector<int, 32> V2Mask(Mask.size(), -1);
7054   SmallVector<int, 32> BlendMask(Mask.size(), -1);
7055   for (int i = 0, Size = Mask.size(); i < Size; ++i)
7056     if (Mask[i] >= 0 && Mask[i] < Size) {
7057       V1Mask[i] = Mask[i];
7058       BlendMask[i] = i;
7059     } else if (Mask[i] >= Size) {
7060       V2Mask[i] = Mask[i] - Size;
7061       BlendMask[i] = i + Size;
7062     }
7063
7064   // Try to lower with the simpler initial blend strategy unless one of the
7065   // input shuffles would be a no-op. We prefer to shuffle inputs as the
7066   // shuffle may be able to fold with a load or other benefit. However, when
7067   // we'll have to do 2x as many shuffles in order to achieve this, blending
7068   // first is a better strategy.
7069   if (!isNoopShuffleMask(V1Mask) && !isNoopShuffleMask(V2Mask))
7070     if (SDValue BlendPerm =
7071             lowerVectorShuffleAsBlendAndPermute(DL, VT, V1, V2, Mask, DAG))
7072       return BlendPerm;
7073
7074   V1 = DAG.getVectorShuffle(VT, DL, V1, DAG.getUNDEF(VT), V1Mask);
7075   V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Mask);
7076   return DAG.getVectorShuffle(VT, DL, V1, V2, BlendMask);
7077 }
7078
7079 /// \brief Try to lower a vector shuffle as a byte rotation.
7080 ///
7081 /// SSSE3 has a generic PALIGNR instruction in x86 that will do an arbitrary
7082 /// byte-rotation of the concatenation of two vectors; pre-SSSE3 can use
7083 /// a PSRLDQ/PSLLDQ/POR pattern to get a similar effect. This routine will
7084 /// try to generically lower a vector shuffle through such an pattern. It
7085 /// does not check for the profitability of lowering either as PALIGNR or
7086 /// PSRLDQ/PSLLDQ/POR, only whether the mask is valid to lower in that form.
7087 /// This matches shuffle vectors that look like:
7088 ///
7089 ///   v8i16 [11, 12, 13, 14, 15, 0, 1, 2]
7090 ///
7091 /// Essentially it concatenates V1 and V2, shifts right by some number of
7092 /// elements, and takes the low elements as the result. Note that while this is
7093 /// specified as a *right shift* because x86 is little-endian, it is a *left
7094 /// rotate* of the vector lanes.
7095 static SDValue lowerVectorShuffleAsByteRotate(SDLoc DL, MVT VT, SDValue V1,
7096                                               SDValue V2,
7097                                               ArrayRef<int> Mask,
7098                                               const X86Subtarget *Subtarget,
7099                                               SelectionDAG &DAG) {
7100   assert(!isNoopShuffleMask(Mask) && "We shouldn't lower no-op shuffles!");
7101
7102   int NumElts = Mask.size();
7103   int NumLanes = VT.getSizeInBits() / 128;
7104   int NumLaneElts = NumElts / NumLanes;
7105
7106   // We need to detect various ways of spelling a rotation:
7107   //   [11, 12, 13, 14, 15,  0,  1,  2]
7108   //   [-1, 12, 13, 14, -1, -1,  1, -1]
7109   //   [-1, -1, -1, -1, -1, -1,  1,  2]
7110   //   [ 3,  4,  5,  6,  7,  8,  9, 10]
7111   //   [-1,  4,  5,  6, -1, -1,  9, -1]
7112   //   [-1,  4,  5,  6, -1, -1, -1, -1]
7113   int Rotation = 0;
7114   SDValue Lo, Hi;
7115   for (int l = 0; l < NumElts; l += NumLaneElts) {
7116     for (int i = 0; i < NumLaneElts; ++i) {
7117       if (Mask[l + i] == -1)
7118         continue;
7119       assert(Mask[l + i] >= 0 && "Only -1 is a valid negative mask element!");
7120
7121       // Get the mod-Size index and lane correct it.
7122       int LaneIdx = (Mask[l + i] % NumElts) - l;
7123       // Make sure it was in this lane.
7124       if (LaneIdx < 0 || LaneIdx >= NumLaneElts)
7125         return SDValue();
7126
7127       // Determine where a rotated vector would have started.
7128       int StartIdx = i - LaneIdx;
7129       if (StartIdx == 0)
7130         // The identity rotation isn't interesting, stop.
7131         return SDValue();
7132
7133       // If we found the tail of a vector the rotation must be the missing
7134       // front. If we found the head of a vector, it must be how much of the
7135       // head.
7136       int CandidateRotation = StartIdx < 0 ? -StartIdx : NumLaneElts - StartIdx;
7137
7138       if (Rotation == 0)
7139         Rotation = CandidateRotation;
7140       else if (Rotation != CandidateRotation)
7141         // The rotations don't match, so we can't match this mask.
7142         return SDValue();
7143
7144       // Compute which value this mask is pointing at.
7145       SDValue MaskV = Mask[l + i] < NumElts ? V1 : V2;
7146
7147       // Compute which of the two target values this index should be assigned
7148       // to. This reflects whether the high elements are remaining or the low
7149       // elements are remaining.
7150       SDValue &TargetV = StartIdx < 0 ? Hi : Lo;
7151
7152       // Either set up this value if we've not encountered it before, or check
7153       // that it remains consistent.
7154       if (!TargetV)
7155         TargetV = MaskV;
7156       else if (TargetV != MaskV)
7157         // This may be a rotation, but it pulls from the inputs in some
7158         // unsupported interleaving.
7159         return SDValue();
7160     }
7161   }
7162
7163   // Check that we successfully analyzed the mask, and normalize the results.
7164   assert(Rotation != 0 && "Failed to locate a viable rotation!");
7165   assert((Lo || Hi) && "Failed to find a rotated input vector!");
7166   if (!Lo)
7167     Lo = Hi;
7168   else if (!Hi)
7169     Hi = Lo;
7170
7171   // The actual rotate instruction rotates bytes, so we need to scale the
7172   // rotation based on how many bytes are in the vector lane.
7173   int Scale = 16 / NumLaneElts;
7174
7175   // SSSE3 targets can use the palignr instruction.
7176   if (Subtarget->hasSSSE3()) {
7177     // Cast the inputs to i8 vector of correct length to match PALIGNR.
7178     MVT AlignVT = MVT::getVectorVT(MVT::i8, 16 * NumLanes);
7179     Lo = DAG.getBitcast(AlignVT, Lo);
7180     Hi = DAG.getBitcast(AlignVT, Hi);
7181
7182     return DAG.getBitcast(
7183         VT, DAG.getNode(X86ISD::PALIGNR, DL, AlignVT, Lo, Hi,
7184                         DAG.getConstant(Rotation * Scale, DL, MVT::i8)));
7185   }
7186
7187   assert(VT.getSizeInBits() == 128 &&
7188          "Rotate-based lowering only supports 128-bit lowering!");
7189   assert(Mask.size() <= 16 &&
7190          "Can shuffle at most 16 bytes in a 128-bit vector!");
7191
7192   // Default SSE2 implementation
7193   int LoByteShift = 16 - Rotation * Scale;
7194   int HiByteShift = Rotation * Scale;
7195
7196   // Cast the inputs to v2i64 to match PSLLDQ/PSRLDQ.
7197   Lo = DAG.getBitcast(MVT::v2i64, Lo);
7198   Hi = DAG.getBitcast(MVT::v2i64, Hi);
7199
7200   SDValue LoShift = DAG.getNode(X86ISD::VSHLDQ, DL, MVT::v2i64, Lo,
7201                                 DAG.getConstant(LoByteShift, DL, MVT::i8));
7202   SDValue HiShift = DAG.getNode(X86ISD::VSRLDQ, DL, MVT::v2i64, Hi,
7203                                 DAG.getConstant(HiByteShift, DL, MVT::i8));
7204   return DAG.getBitcast(VT,
7205                         DAG.getNode(ISD::OR, DL, MVT::v2i64, LoShift, HiShift));
7206 }
7207
7208 /// \brief Try to lower a vector shuffle as a bit shift (shifts in zeros).
7209 ///
7210 /// Attempts to match a shuffle mask against the PSLL(W/D/Q/DQ) and
7211 /// PSRL(W/D/Q/DQ) SSE2 and AVX2 logical bit-shift instructions. The function
7212 /// matches elements from one of the input vectors shuffled to the left or
7213 /// right with zeroable elements 'shifted in'. It handles both the strictly
7214 /// bit-wise element shifts and the byte shift across an entire 128-bit double
7215 /// quad word lane.
7216 ///
7217 /// PSHL : (little-endian) left bit shift.
7218 /// [ zz, 0, zz,  2 ]
7219 /// [ -1, 4, zz, -1 ]
7220 /// PSRL : (little-endian) right bit shift.
7221 /// [  1, zz,  3, zz]
7222 /// [ -1, -1,  7, zz]
7223 /// PSLLDQ : (little-endian) left byte shift
7224 /// [ zz,  0,  1,  2,  3,  4,  5,  6]
7225 /// [ zz, zz, -1, -1,  2,  3,  4, -1]
7226 /// [ zz, zz, zz, zz, zz, zz, -1,  1]
7227 /// PSRLDQ : (little-endian) right byte shift
7228 /// [  5, 6,  7, zz, zz, zz, zz, zz]
7229 /// [ -1, 5,  6,  7, zz, zz, zz, zz]
7230 /// [  1, 2, -1, -1, -1, -1, zz, zz]
7231 static SDValue lowerVectorShuffleAsShift(SDLoc DL, MVT VT, SDValue V1,
7232                                          SDValue V2, ArrayRef<int> Mask,
7233                                          SelectionDAG &DAG) {
7234   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7235
7236   int Size = Mask.size();
7237   assert(Size == (int)VT.getVectorNumElements() && "Unexpected mask size");
7238
7239   auto CheckZeros = [&](int Shift, int Scale, bool Left) {
7240     for (int i = 0; i < Size; i += Scale)
7241       for (int j = 0; j < Shift; ++j)
7242         if (!Zeroable[i + j + (Left ? 0 : (Scale - Shift))])
7243           return false;
7244
7245     return true;
7246   };
7247
7248   auto MatchShift = [&](int Shift, int Scale, bool Left, SDValue V) {
7249     for (int i = 0; i != Size; i += Scale) {
7250       unsigned Pos = Left ? i + Shift : i;
7251       unsigned Low = Left ? i : i + Shift;
7252       unsigned Len = Scale - Shift;
7253       if (!isSequentialOrUndefInRange(Mask, Pos, Len,
7254                                       Low + (V == V1 ? 0 : Size)))
7255         return SDValue();
7256     }
7257
7258     int ShiftEltBits = VT.getScalarSizeInBits() * Scale;
7259     bool ByteShift = ShiftEltBits > 64;
7260     unsigned OpCode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI)
7261                            : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI);
7262     int ShiftAmt = Shift * VT.getScalarSizeInBits() / (ByteShift ? 8 : 1);
7263
7264     // Normalize the scale for byte shifts to still produce an i64 element
7265     // type.
7266     Scale = ByteShift ? Scale / 2 : Scale;
7267
7268     // We need to round trip through the appropriate type for the shift.
7269     MVT ShiftSVT = MVT::getIntegerVT(VT.getScalarSizeInBits() * Scale);
7270     MVT ShiftVT = MVT::getVectorVT(ShiftSVT, Size / Scale);
7271     assert(DAG.getTargetLoweringInfo().isTypeLegal(ShiftVT) &&
7272            "Illegal integer vector type");
7273     V = DAG.getBitcast(ShiftVT, V);
7274
7275     V = DAG.getNode(OpCode, DL, ShiftVT, V,
7276                     DAG.getConstant(ShiftAmt, DL, MVT::i8));
7277     return DAG.getBitcast(VT, V);
7278   };
7279
7280   // SSE/AVX supports logical shifts up to 64-bit integers - so we can just
7281   // keep doubling the size of the integer elements up to that. We can
7282   // then shift the elements of the integer vector by whole multiples of
7283   // their width within the elements of the larger integer vector. Test each
7284   // multiple to see if we can find a match with the moved element indices
7285   // and that the shifted in elements are all zeroable.
7286   for (int Scale = 2; Scale * VT.getScalarSizeInBits() <= 128; Scale *= 2)
7287     for (int Shift = 1; Shift != Scale; ++Shift)
7288       for (bool Left : {true, false})
7289         if (CheckZeros(Shift, Scale, Left))
7290           for (SDValue V : {V1, V2})
7291             if (SDValue Match = MatchShift(Shift, Scale, Left, V))
7292               return Match;
7293
7294   // no match
7295   return SDValue();
7296 }
7297
7298 /// \brief Try to lower a vector shuffle using SSE4a EXTRQ/INSERTQ.
7299 static SDValue lowerVectorShuffleWithSSE4A(SDLoc DL, MVT VT, SDValue V1,
7300                                            SDValue V2, ArrayRef<int> Mask,
7301                                            SelectionDAG &DAG) {
7302   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7303   assert(!Zeroable.all() && "Fully zeroable shuffle mask");
7304
7305   int Size = Mask.size();
7306   int HalfSize = Size / 2;
7307   assert(Size == (int)VT.getVectorNumElements() && "Unexpected mask size");
7308
7309   // Upper half must be undefined.
7310   if (!isUndefInRange(Mask, HalfSize, HalfSize))
7311     return SDValue();
7312
7313   // EXTRQ: Extract Len elements from lower half of source, starting at Idx.
7314   // Remainder of lower half result is zero and upper half is all undef.
7315   auto LowerAsEXTRQ = [&]() {
7316     // Determine the extraction length from the part of the
7317     // lower half that isn't zeroable.
7318     int Len = HalfSize;
7319     for (; Len >= 0; --Len)
7320       if (!Zeroable[Len - 1])
7321         break;
7322     assert(Len > 0 && "Zeroable shuffle mask");
7323
7324     // Attempt to match first Len sequential elements from the lower half.
7325     SDValue Src;
7326     int Idx = -1;
7327     for (int i = 0; i != Len; ++i) {
7328       int M = Mask[i];
7329       if (M < 0)
7330         continue;
7331       SDValue &V = (M < Size ? V1 : V2);
7332       M = M % Size;
7333
7334       // All mask elements must be in the lower half.
7335       if (M > HalfSize)
7336         return SDValue();
7337
7338       if (Idx < 0 || (Src == V && Idx == (M - i))) {
7339         Src = V;
7340         Idx = M - i;
7341         continue;
7342       }
7343       return SDValue();
7344     }
7345
7346     if (Idx < 0)
7347       return SDValue();
7348
7349     assert((Idx + Len) <= HalfSize && "Illegal extraction mask");
7350     int BitLen = (Len * VT.getScalarSizeInBits()) & 0x3f;
7351     int BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f;
7352     return DAG.getNode(X86ISD::EXTRQI, DL, VT, Src,
7353                        DAG.getConstant(BitLen, DL, MVT::i8),
7354                        DAG.getConstant(BitIdx, DL, MVT::i8));
7355   };
7356
7357   if (SDValue ExtrQ = LowerAsEXTRQ())
7358     return ExtrQ;
7359
7360   // INSERTQ: Extract lowest Len elements from lower half of second source and
7361   // insert over first source, starting at Idx.
7362   // { A[0], .., A[Idx-1], B[0], .., B[Len-1], A[Idx+Len], .., UNDEF, ... }
7363   auto LowerAsInsertQ = [&]() {
7364     for (int Idx = 0; Idx != HalfSize; ++Idx) {
7365       SDValue Base;
7366
7367       // Attempt to match first source from mask before insertion point.
7368       if (isUndefInRange(Mask, 0, Idx)) {
7369         /* EMPTY */
7370       } else if (isSequentialOrUndefInRange(Mask, 0, Idx, 0)) {
7371         Base = V1;
7372       } else if (isSequentialOrUndefInRange(Mask, 0, Idx, Size)) {
7373         Base = V2;
7374       } else {
7375         continue;
7376       }
7377
7378       // Extend the extraction length looking to match both the insertion of
7379       // the second source and the remaining elements of the first.
7380       for (int Hi = Idx + 1; Hi <= HalfSize; ++Hi) {
7381         SDValue Insert;
7382         int Len = Hi - Idx;
7383
7384         // Match insertion.
7385         if (isSequentialOrUndefInRange(Mask, Idx, Len, 0)) {
7386           Insert = V1;
7387         } else if (isSequentialOrUndefInRange(Mask, Idx, Len, Size)) {
7388           Insert = V2;
7389         } else {
7390           continue;
7391         }
7392
7393         // Match the remaining elements of the lower half.
7394         if (isUndefInRange(Mask, Hi, HalfSize - Hi)) {
7395           /* EMPTY */
7396         } else if ((!Base || (Base == V1)) &&
7397                    isSequentialOrUndefInRange(Mask, Hi, HalfSize - Hi, Hi)) {
7398           Base = V1;
7399         } else if ((!Base || (Base == V2)) &&
7400                    isSequentialOrUndefInRange(Mask, Hi, HalfSize - Hi,
7401                                               Size + Hi)) {
7402           Base = V2;
7403         } else {
7404           continue;
7405         }
7406
7407         // We may not have a base (first source) - this can safely be undefined.
7408         if (!Base)
7409           Base = DAG.getUNDEF(VT);
7410
7411         int BitLen = (Len * VT.getScalarSizeInBits()) & 0x3f;
7412         int BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f;
7413         return DAG.getNode(X86ISD::INSERTQI, DL, VT, Base, Insert,
7414                            DAG.getConstant(BitLen, DL, MVT::i8),
7415                            DAG.getConstant(BitIdx, DL, MVT::i8));
7416       }
7417     }
7418
7419     return SDValue();
7420   };
7421
7422   if (SDValue InsertQ = LowerAsInsertQ())
7423     return InsertQ;
7424
7425   return SDValue();
7426 }
7427
7428 /// \brief Lower a vector shuffle as a zero or any extension.
7429 ///
7430 /// Given a specific number of elements, element bit width, and extension
7431 /// stride, produce either a zero or any extension based on the available
7432 /// features of the subtarget. The extended elements are consecutive and
7433 /// begin and can start from an offseted element index in the input; to
7434 /// avoid excess shuffling the offset must either being in the bottom lane
7435 /// or at the start of a higher lane. All extended elements must be from
7436 /// the same lane.
7437 static SDValue lowerVectorShuffleAsSpecificZeroOrAnyExtend(
7438     SDLoc DL, MVT VT, int Scale, int Offset, bool AnyExt, SDValue InputV,
7439     ArrayRef<int> Mask, const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7440   assert(Scale > 1 && "Need a scale to extend.");
7441   int EltBits = VT.getScalarSizeInBits();
7442   int NumElements = VT.getVectorNumElements();
7443   int NumEltsPerLane = 128 / EltBits;
7444   int OffsetLane = Offset / NumEltsPerLane;
7445   assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
7446          "Only 8, 16, and 32 bit elements can be extended.");
7447   assert(Scale * EltBits <= 64 && "Cannot zero extend past 64 bits.");
7448   assert(0 <= Offset && "Extension offset must be positive.");
7449   assert((Offset < NumEltsPerLane || Offset % NumEltsPerLane == 0) &&
7450          "Extension offset must be in the first lane or start an upper lane.");
7451
7452   // Check that an index is in same lane as the base offset.
7453   auto SafeOffset = [&](int Idx) {
7454     return OffsetLane == (Idx / NumEltsPerLane);
7455   };
7456
7457   // Shift along an input so that the offset base moves to the first element.
7458   auto ShuffleOffset = [&](SDValue V) {
7459     if (!Offset)
7460       return V;
7461
7462     SmallVector<int, 8> ShMask((unsigned)NumElements, -1);
7463     for (int i = 0; i * Scale < NumElements; ++i) {
7464       int SrcIdx = i + Offset;
7465       ShMask[i] = SafeOffset(SrcIdx) ? SrcIdx : -1;
7466     }
7467     return DAG.getVectorShuffle(VT, DL, V, DAG.getUNDEF(VT), ShMask);
7468   };
7469
7470   // Found a valid zext mask! Try various lowering strategies based on the
7471   // input type and available ISA extensions.
7472   if (Subtarget->hasSSE41()) {
7473     // Not worth offseting 128-bit vectors if scale == 2, a pattern using
7474     // PUNPCK will catch this in a later shuffle match.
7475     if (Offset && Scale == 2 && VT.getSizeInBits() == 128)
7476       return SDValue();
7477     MVT ExtVT = MVT::getVectorVT(MVT::getIntegerVT(EltBits * Scale),
7478                                  NumElements / Scale);
7479     InputV = DAG.getNode(X86ISD::VZEXT, DL, ExtVT, ShuffleOffset(InputV));
7480     return DAG.getBitcast(VT, InputV);
7481   }
7482
7483   assert(VT.getSizeInBits() == 128 && "Only 128-bit vectors can be extended.");
7484
7485   // For any extends we can cheat for larger element sizes and use shuffle
7486   // instructions that can fold with a load and/or copy.
7487   if (AnyExt && EltBits == 32) {
7488     int PSHUFDMask[4] = {Offset, -1, SafeOffset(Offset + 1) ? Offset + 1 : -1,
7489                          -1};
7490     return DAG.getBitcast(
7491         VT, DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7492                         DAG.getBitcast(MVT::v4i32, InputV),
7493                         getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
7494   }
7495   if (AnyExt && EltBits == 16 && Scale > 2) {
7496     int PSHUFDMask[4] = {Offset / 2, -1,
7497                          SafeOffset(Offset + 1) ? (Offset + 1) / 2 : -1, -1};
7498     InputV = DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7499                          DAG.getBitcast(MVT::v4i32, InputV),
7500                          getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG));
7501     int PSHUFWMask[4] = {1, -1, -1, -1};
7502     unsigned OddEvenOp = (Offset & 1 ? X86ISD::PSHUFLW : X86ISD::PSHUFHW);
7503     return DAG.getBitcast(
7504         VT, DAG.getNode(OddEvenOp, DL, MVT::v8i16,
7505                         DAG.getBitcast(MVT::v8i16, InputV),
7506                         getV4X86ShuffleImm8ForMask(PSHUFWMask, DL, DAG)));
7507   }
7508
7509   // The SSE4A EXTRQ instruction can efficiently extend the first 2 lanes
7510   // to 64-bits.
7511   if ((Scale * EltBits) == 64 && EltBits < 32 && Subtarget->hasSSE4A()) {
7512     assert(NumElements == (int)Mask.size() && "Unexpected shuffle mask size!");
7513     assert(VT.getSizeInBits() == 128 && "Unexpected vector width!");
7514
7515     int LoIdx = Offset * EltBits;
7516     SDValue Lo = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
7517                              DAG.getNode(X86ISD::EXTRQI, DL, VT, InputV,
7518                                          DAG.getConstant(EltBits, DL, MVT::i8),
7519                                          DAG.getConstant(LoIdx, DL, MVT::i8)));
7520
7521     if (isUndefInRange(Mask, NumElements / 2, NumElements / 2) ||
7522         !SafeOffset(Offset + 1))
7523       return DAG.getNode(ISD::BITCAST, DL, VT, Lo);
7524
7525     int HiIdx = (Offset + 1) * EltBits;
7526     SDValue Hi = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
7527                              DAG.getNode(X86ISD::EXTRQI, DL, VT, InputV,
7528                                          DAG.getConstant(EltBits, DL, MVT::i8),
7529                                          DAG.getConstant(HiIdx, DL, MVT::i8)));
7530     return DAG.getNode(ISD::BITCAST, DL, VT,
7531                        DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, Lo, Hi));
7532   }
7533
7534   // If this would require more than 2 unpack instructions to expand, use
7535   // pshufb when available. We can only use more than 2 unpack instructions
7536   // when zero extending i8 elements which also makes it easier to use pshufb.
7537   if (Scale > 4 && EltBits == 8 && Subtarget->hasSSSE3()) {
7538     assert(NumElements == 16 && "Unexpected byte vector width!");
7539     SDValue PSHUFBMask[16];
7540     for (int i = 0; i < 16; ++i) {
7541       int Idx = Offset + (i / Scale);
7542       PSHUFBMask[i] = DAG.getConstant(
7543           (i % Scale == 0 && SafeOffset(Idx)) ? Idx : 0x80, DL, MVT::i8);
7544     }
7545     InputV = DAG.getBitcast(MVT::v16i8, InputV);
7546     return DAG.getBitcast(VT,
7547                           DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8, InputV,
7548                                       DAG.getNode(ISD::BUILD_VECTOR, DL,
7549                                                   MVT::v16i8, PSHUFBMask)));
7550   }
7551
7552   // If we are extending from an offset, ensure we start on a boundary that
7553   // we can unpack from.
7554   int AlignToUnpack = Offset % (NumElements / Scale);
7555   if (AlignToUnpack) {
7556     SmallVector<int, 8> ShMask((unsigned)NumElements, -1);
7557     for (int i = AlignToUnpack; i < NumElements; ++i)
7558       ShMask[i - AlignToUnpack] = i;
7559     InputV = DAG.getVectorShuffle(VT, DL, InputV, DAG.getUNDEF(VT), ShMask);
7560     Offset -= AlignToUnpack;
7561   }
7562
7563   // Otherwise emit a sequence of unpacks.
7564   do {
7565     unsigned UnpackLoHi = X86ISD::UNPCKL;
7566     if (Offset >= (NumElements / 2)) {
7567       UnpackLoHi = X86ISD::UNPCKH;
7568       Offset -= (NumElements / 2);
7569     }
7570
7571     MVT InputVT = MVT::getVectorVT(MVT::getIntegerVT(EltBits), NumElements);
7572     SDValue Ext = AnyExt ? DAG.getUNDEF(InputVT)
7573                          : getZeroVector(InputVT, Subtarget, DAG, DL);
7574     InputV = DAG.getBitcast(InputVT, InputV);
7575     InputV = DAG.getNode(UnpackLoHi, DL, InputVT, InputV, Ext);
7576     Scale /= 2;
7577     EltBits *= 2;
7578     NumElements /= 2;
7579   } while (Scale > 1);
7580   return DAG.getBitcast(VT, InputV);
7581 }
7582
7583 /// \brief Try to lower a vector shuffle as a zero extension on any microarch.
7584 ///
7585 /// This routine will try to do everything in its power to cleverly lower
7586 /// a shuffle which happens to match the pattern of a zero extend. It doesn't
7587 /// check for the profitability of this lowering,  it tries to aggressively
7588 /// match this pattern. It will use all of the micro-architectural details it
7589 /// can to emit an efficient lowering. It handles both blends with all-zero
7590 /// inputs to explicitly zero-extend and undef-lanes (sometimes undef due to
7591 /// masking out later).
7592 ///
7593 /// The reason we have dedicated lowering for zext-style shuffles is that they
7594 /// are both incredibly common and often quite performance sensitive.
7595 static SDValue lowerVectorShuffleAsZeroOrAnyExtend(
7596     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
7597     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7598   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7599
7600   int Bits = VT.getSizeInBits();
7601   int NumLanes = Bits / 128;
7602   int NumElements = VT.getVectorNumElements();
7603   int NumEltsPerLane = NumElements / NumLanes;
7604   assert(VT.getScalarSizeInBits() <= 32 &&
7605          "Exceeds 32-bit integer zero extension limit");
7606   assert((int)Mask.size() == NumElements && "Unexpected shuffle mask size");
7607
7608   // Define a helper function to check a particular ext-scale and lower to it if
7609   // valid.
7610   auto Lower = [&](int Scale) -> SDValue {
7611     SDValue InputV;
7612     bool AnyExt = true;
7613     int Offset = 0;
7614     int Matches = 0;
7615     for (int i = 0; i < NumElements; ++i) {
7616       int M = Mask[i];
7617       if (M == -1)
7618         continue; // Valid anywhere but doesn't tell us anything.
7619       if (i % Scale != 0) {
7620         // Each of the extended elements need to be zeroable.
7621         if (!Zeroable[i])
7622           return SDValue();
7623
7624         // We no longer are in the anyext case.
7625         AnyExt = false;
7626         continue;
7627       }
7628
7629       // Each of the base elements needs to be consecutive indices into the
7630       // same input vector.
7631       SDValue V = M < NumElements ? V1 : V2;
7632       M = M % NumElements;
7633       if (!InputV) {
7634         InputV = V;
7635         Offset = M - (i / Scale);
7636       } else if (InputV != V)
7637         return SDValue(); // Flip-flopping inputs.
7638
7639       // Offset must start in the lowest 128-bit lane or at the start of an
7640       // upper lane.
7641       // FIXME: Is it ever worth allowing a negative base offset?
7642       if (!((0 <= Offset && Offset < NumEltsPerLane) ||
7643             (Offset % NumEltsPerLane) == 0))
7644         return SDValue();
7645
7646       // If we are offsetting, all referenced entries must come from the same
7647       // lane.
7648       if (Offset && (Offset / NumEltsPerLane) != (M / NumEltsPerLane))
7649         return SDValue();
7650
7651       if ((M % NumElements) != (Offset + (i / Scale)))
7652         return SDValue(); // Non-consecutive strided elements.
7653       Matches++;
7654     }
7655
7656     // If we fail to find an input, we have a zero-shuffle which should always
7657     // have already been handled.
7658     // FIXME: Maybe handle this here in case during blending we end up with one?
7659     if (!InputV)
7660       return SDValue();
7661
7662     // If we are offsetting, don't extend if we only match a single input, we
7663     // can always do better by using a basic PSHUF or PUNPCK.
7664     if (Offset != 0 && Matches < 2)
7665       return SDValue();
7666
7667     return lowerVectorShuffleAsSpecificZeroOrAnyExtend(
7668         DL, VT, Scale, Offset, AnyExt, InputV, Mask, Subtarget, DAG);
7669   };
7670
7671   // The widest scale possible for extending is to a 64-bit integer.
7672   assert(Bits % 64 == 0 &&
7673          "The number of bits in a vector must be divisible by 64 on x86!");
7674   int NumExtElements = Bits / 64;
7675
7676   // Each iteration, try extending the elements half as much, but into twice as
7677   // many elements.
7678   for (; NumExtElements < NumElements; NumExtElements *= 2) {
7679     assert(NumElements % NumExtElements == 0 &&
7680            "The input vector size must be divisible by the extended size.");
7681     if (SDValue V = Lower(NumElements / NumExtElements))
7682       return V;
7683   }
7684
7685   // General extends failed, but 128-bit vectors may be able to use MOVQ.
7686   if (Bits != 128)
7687     return SDValue();
7688
7689   // Returns one of the source operands if the shuffle can be reduced to a
7690   // MOVQ, copying the lower 64-bits and zero-extending to the upper 64-bits.
7691   auto CanZExtLowHalf = [&]() {
7692     for (int i = NumElements / 2; i != NumElements; ++i)
7693       if (!Zeroable[i])
7694         return SDValue();
7695     if (isSequentialOrUndefInRange(Mask, 0, NumElements / 2, 0))
7696       return V1;
7697     if (isSequentialOrUndefInRange(Mask, 0, NumElements / 2, NumElements))
7698       return V2;
7699     return SDValue();
7700   };
7701
7702   if (SDValue V = CanZExtLowHalf()) {
7703     V = DAG.getBitcast(MVT::v2i64, V);
7704     V = DAG.getNode(X86ISD::VZEXT_MOVL, DL, MVT::v2i64, V);
7705     return DAG.getBitcast(VT, V);
7706   }
7707
7708   // No viable ext lowering found.
7709   return SDValue();
7710 }
7711
7712 /// \brief Try to get a scalar value for a specific element of a vector.
7713 ///
7714 /// Looks through BUILD_VECTOR and SCALAR_TO_VECTOR nodes to find a scalar.
7715 static SDValue getScalarValueForVectorElement(SDValue V, int Idx,
7716                                               SelectionDAG &DAG) {
7717   MVT VT = V.getSimpleValueType();
7718   MVT EltVT = VT.getVectorElementType();
7719   while (V.getOpcode() == ISD::BITCAST)
7720     V = V.getOperand(0);
7721   // If the bitcasts shift the element size, we can't extract an equivalent
7722   // element from it.
7723   MVT NewVT = V.getSimpleValueType();
7724   if (!NewVT.isVector() || NewVT.getScalarSizeInBits() != VT.getScalarSizeInBits())
7725     return SDValue();
7726
7727   if (V.getOpcode() == ISD::BUILD_VECTOR ||
7728       (Idx == 0 && V.getOpcode() == ISD::SCALAR_TO_VECTOR)) {
7729     // Ensure the scalar operand is the same size as the destination.
7730     // FIXME: Add support for scalar truncation where possible.
7731     SDValue S = V.getOperand(Idx);
7732     if (EltVT.getSizeInBits() == S.getSimpleValueType().getSizeInBits())
7733       return DAG.getNode(ISD::BITCAST, SDLoc(V), EltVT, S);
7734   }
7735
7736   return SDValue();
7737 }
7738
7739 /// \brief Helper to test for a load that can be folded with x86 shuffles.
7740 ///
7741 /// This is particularly important because the set of instructions varies
7742 /// significantly based on whether the operand is a load or not.
7743 static bool isShuffleFoldableLoad(SDValue V) {
7744   while (V.getOpcode() == ISD::BITCAST)
7745     V = V.getOperand(0);
7746
7747   return ISD::isNON_EXTLoad(V.getNode());
7748 }
7749
7750 /// \brief Try to lower insertion of a single element into a zero vector.
7751 ///
7752 /// This is a common pattern that we have especially efficient patterns to lower
7753 /// across all subtarget feature sets.
7754 static SDValue lowerVectorShuffleAsElementInsertion(
7755     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
7756     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7757   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7758   MVT ExtVT = VT;
7759   MVT EltVT = VT.getVectorElementType();
7760
7761   int V2Index = std::find_if(Mask.begin(), Mask.end(),
7762                              [&Mask](int M) { return M >= (int)Mask.size(); }) -
7763                 Mask.begin();
7764   bool IsV1Zeroable = true;
7765   for (int i = 0, Size = Mask.size(); i < Size; ++i)
7766     if (i != V2Index && !Zeroable[i]) {
7767       IsV1Zeroable = false;
7768       break;
7769     }
7770
7771   // Check for a single input from a SCALAR_TO_VECTOR node.
7772   // FIXME: All of this should be canonicalized into INSERT_VECTOR_ELT and
7773   // all the smarts here sunk into that routine. However, the current
7774   // lowering of BUILD_VECTOR makes that nearly impossible until the old
7775   // vector shuffle lowering is dead.
7776   SDValue V2S = getScalarValueForVectorElement(V2, Mask[V2Index] - Mask.size(),
7777                                                DAG);
7778   if (V2S && DAG.getTargetLoweringInfo().isTypeLegal(V2S.getValueType())) {
7779     // We need to zext the scalar if it is smaller than an i32.
7780     V2S = DAG.getBitcast(EltVT, V2S);
7781     if (EltVT == MVT::i8 || EltVT == MVT::i16) {
7782       // Using zext to expand a narrow element won't work for non-zero
7783       // insertions.
7784       if (!IsV1Zeroable)
7785         return SDValue();
7786
7787       // Zero-extend directly to i32.
7788       ExtVT = MVT::v4i32;
7789       V2S = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, V2S);
7790     }
7791     V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, ExtVT, V2S);
7792   } else if (Mask[V2Index] != (int)Mask.size() || EltVT == MVT::i8 ||
7793              EltVT == MVT::i16) {
7794     // Either not inserting from the low element of the input or the input
7795     // element size is too small to use VZEXT_MOVL to clear the high bits.
7796     return SDValue();
7797   }
7798
7799   if (!IsV1Zeroable) {
7800     // If V1 can't be treated as a zero vector we have fewer options to lower
7801     // this. We can't support integer vectors or non-zero targets cheaply, and
7802     // the V1 elements can't be permuted in any way.
7803     assert(VT == ExtVT && "Cannot change extended type when non-zeroable!");
7804     if (!VT.isFloatingPoint() || V2Index != 0)
7805       return SDValue();
7806     SmallVector<int, 8> V1Mask(Mask.begin(), Mask.end());
7807     V1Mask[V2Index] = -1;
7808     if (!isNoopShuffleMask(V1Mask))
7809       return SDValue();
7810     // This is essentially a special case blend operation, but if we have
7811     // general purpose blend operations, they are always faster. Bail and let
7812     // the rest of the lowering handle these as blends.
7813     if (Subtarget->hasSSE41())
7814       return SDValue();
7815
7816     // Otherwise, use MOVSD or MOVSS.
7817     assert((EltVT == MVT::f32 || EltVT == MVT::f64) &&
7818            "Only two types of floating point element types to handle!");
7819     return DAG.getNode(EltVT == MVT::f32 ? X86ISD::MOVSS : X86ISD::MOVSD, DL,
7820                        ExtVT, V1, V2);
7821   }
7822
7823   // This lowering only works for the low element with floating point vectors.
7824   if (VT.isFloatingPoint() && V2Index != 0)
7825     return SDValue();
7826
7827   V2 = DAG.getNode(X86ISD::VZEXT_MOVL, DL, ExtVT, V2);
7828   if (ExtVT != VT)
7829     V2 = DAG.getBitcast(VT, V2);
7830
7831   if (V2Index != 0) {
7832     // If we have 4 or fewer lanes we can cheaply shuffle the element into
7833     // the desired position. Otherwise it is more efficient to do a vector
7834     // shift left. We know that we can do a vector shift left because all
7835     // the inputs are zero.
7836     if (VT.isFloatingPoint() || VT.getVectorNumElements() <= 4) {
7837       SmallVector<int, 4> V2Shuffle(Mask.size(), 1);
7838       V2Shuffle[V2Index] = 0;
7839       V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Shuffle);
7840     } else {
7841       V2 = DAG.getBitcast(MVT::v2i64, V2);
7842       V2 = DAG.getNode(
7843           X86ISD::VSHLDQ, DL, MVT::v2i64, V2,
7844           DAG.getConstant(V2Index * EltVT.getSizeInBits() / 8, DL,
7845                           DAG.getTargetLoweringInfo().getScalarShiftAmountTy(
7846                               DAG.getDataLayout(), VT)));
7847       V2 = DAG.getBitcast(VT, V2);
7848     }
7849   }
7850   return V2;
7851 }
7852
7853 /// \brief Try to lower broadcast of a single element.
7854 ///
7855 /// For convenience, this code also bundles all of the subtarget feature set
7856 /// filtering. While a little annoying to re-dispatch on type here, there isn't
7857 /// a convenient way to factor it out.
7858 static SDValue lowerVectorShuffleAsBroadcast(SDLoc DL, MVT VT, SDValue V,
7859                                              ArrayRef<int> Mask,
7860                                              const X86Subtarget *Subtarget,
7861                                              SelectionDAG &DAG) {
7862   if (!Subtarget->hasAVX())
7863     return SDValue();
7864   if (VT.isInteger() && !Subtarget->hasAVX2())
7865     return SDValue();
7866
7867   // Check that the mask is a broadcast.
7868   int BroadcastIdx = -1;
7869   for (int M : Mask)
7870     if (M >= 0 && BroadcastIdx == -1)
7871       BroadcastIdx = M;
7872     else if (M >= 0 && M != BroadcastIdx)
7873       return SDValue();
7874
7875   assert(BroadcastIdx < (int)Mask.size() && "We only expect to be called with "
7876                                             "a sorted mask where the broadcast "
7877                                             "comes from V1.");
7878
7879   // Go up the chain of (vector) values to find a scalar load that we can
7880   // combine with the broadcast.
7881   for (;;) {
7882     switch (V.getOpcode()) {
7883     case ISD::CONCAT_VECTORS: {
7884       int OperandSize = Mask.size() / V.getNumOperands();
7885       V = V.getOperand(BroadcastIdx / OperandSize);
7886       BroadcastIdx %= OperandSize;
7887       continue;
7888     }
7889
7890     case ISD::INSERT_SUBVECTOR: {
7891       SDValue VOuter = V.getOperand(0), VInner = V.getOperand(1);
7892       auto ConstantIdx = dyn_cast<ConstantSDNode>(V.getOperand(2));
7893       if (!ConstantIdx)
7894         break;
7895
7896       int BeginIdx = (int)ConstantIdx->getZExtValue();
7897       int EndIdx =
7898           BeginIdx + (int)VInner.getValueType().getVectorNumElements();
7899       if (BroadcastIdx >= BeginIdx && BroadcastIdx < EndIdx) {
7900         BroadcastIdx -= BeginIdx;
7901         V = VInner;
7902       } else {
7903         V = VOuter;
7904       }
7905       continue;
7906     }
7907     }
7908     break;
7909   }
7910
7911   // Check if this is a broadcast of a scalar. We special case lowering
7912   // for scalars so that we can more effectively fold with loads.
7913   // First, look through bitcast: if the original value has a larger element
7914   // type than the shuffle, the broadcast element is in essence truncated.
7915   // Make that explicit to ease folding.
7916   if (V.getOpcode() == ISD::BITCAST && VT.isInteger()) {
7917     EVT EltVT = VT.getVectorElementType();
7918     SDValue V0 = V.getOperand(0);
7919     EVT V0VT = V0.getValueType();
7920
7921     if (V0VT.isInteger() && V0VT.getVectorElementType().bitsGT(EltVT) &&
7922         ((V0.getOpcode() == ISD::BUILD_VECTOR ||
7923          (V0.getOpcode() == ISD::SCALAR_TO_VECTOR && BroadcastIdx == 0)))) {
7924       V = DAG.getNode(ISD::TRUNCATE, DL, EltVT, V0.getOperand(BroadcastIdx));
7925       BroadcastIdx = 0;
7926     }
7927   }
7928
7929   // Also check the simpler case, where we can directly reuse the scalar.
7930   if (V.getOpcode() == ISD::BUILD_VECTOR ||
7931       (V.getOpcode() == ISD::SCALAR_TO_VECTOR && BroadcastIdx == 0)) {
7932     V = V.getOperand(BroadcastIdx);
7933
7934     // If the scalar isn't a load, we can't broadcast from it in AVX1.
7935     // Only AVX2 has register broadcasts.
7936     if (!Subtarget->hasAVX2() && !isShuffleFoldableLoad(V))
7937       return SDValue();
7938   } else if (BroadcastIdx != 0 || !Subtarget->hasAVX2()) {
7939     // We can't broadcast from a vector register without AVX2, and we can only
7940     // broadcast from the zero-element of a vector register.
7941     return SDValue();
7942   }
7943
7944   return DAG.getNode(X86ISD::VBROADCAST, DL, VT, V);
7945 }
7946
7947 // Check for whether we can use INSERTPS to perform the shuffle. We only use
7948 // INSERTPS when the V1 elements are already in the correct locations
7949 // because otherwise we can just always use two SHUFPS instructions which
7950 // are much smaller to encode than a SHUFPS and an INSERTPS. We can also
7951 // perform INSERTPS if a single V1 element is out of place and all V2
7952 // elements are zeroable.
7953 static SDValue lowerVectorShuffleAsInsertPS(SDValue Op, SDValue V1, SDValue V2,
7954                                             ArrayRef<int> Mask,
7955                                             SelectionDAG &DAG) {
7956   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
7957   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7958   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7959   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7960
7961   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7962
7963   unsigned ZMask = 0;
7964   int V1DstIndex = -1;
7965   int V2DstIndex = -1;
7966   bool V1UsedInPlace = false;
7967
7968   for (int i = 0; i < 4; ++i) {
7969     // Synthesize a zero mask from the zeroable elements (includes undefs).
7970     if (Zeroable[i]) {
7971       ZMask |= 1 << i;
7972       continue;
7973     }
7974
7975     // Flag if we use any V1 inputs in place.
7976     if (i == Mask[i]) {
7977       V1UsedInPlace = true;
7978       continue;
7979     }
7980
7981     // We can only insert a single non-zeroable element.
7982     if (V1DstIndex != -1 || V2DstIndex != -1)
7983       return SDValue();
7984
7985     if (Mask[i] < 4) {
7986       // V1 input out of place for insertion.
7987       V1DstIndex = i;
7988     } else {
7989       // V2 input for insertion.
7990       V2DstIndex = i;
7991     }
7992   }
7993
7994   // Don't bother if we have no (non-zeroable) element for insertion.
7995   if (V1DstIndex == -1 && V2DstIndex == -1)
7996     return SDValue();
7997
7998   // Determine element insertion src/dst indices. The src index is from the
7999   // start of the inserted vector, not the start of the concatenated vector.
8000   unsigned V2SrcIndex = 0;
8001   if (V1DstIndex != -1) {
8002     // If we have a V1 input out of place, we use V1 as the V2 element insertion
8003     // and don't use the original V2 at all.
8004     V2SrcIndex = Mask[V1DstIndex];
8005     V2DstIndex = V1DstIndex;
8006     V2 = V1;
8007   } else {
8008     V2SrcIndex = Mask[V2DstIndex] - 4;
8009   }
8010
8011   // If no V1 inputs are used in place, then the result is created only from
8012   // the zero mask and the V2 insertion - so remove V1 dependency.
8013   if (!V1UsedInPlace)
8014     V1 = DAG.getUNDEF(MVT::v4f32);
8015
8016   unsigned InsertPSMask = V2SrcIndex << 6 | V2DstIndex << 4 | ZMask;
8017   assert((InsertPSMask & ~0xFFu) == 0 && "Invalid mask!");
8018
8019   // Insert the V2 element into the desired position.
8020   SDLoc DL(Op);
8021   return DAG.getNode(X86ISD::INSERTPS, DL, MVT::v4f32, V1, V2,
8022                      DAG.getConstant(InsertPSMask, DL, MVT::i8));
8023 }
8024
8025 /// \brief Try to lower a shuffle as a permute of the inputs followed by an
8026 /// UNPCK instruction.
8027 ///
8028 /// This specifically targets cases where we end up with alternating between
8029 /// the two inputs, and so can permute them into something that feeds a single
8030 /// UNPCK instruction. Note that this routine only targets integer vectors
8031 /// because for floating point vectors we have a generalized SHUFPS lowering
8032 /// strategy that handles everything that doesn't *exactly* match an unpack,
8033 /// making this clever lowering unnecessary.
8034 static SDValue lowerVectorShuffleAsPermuteAndUnpack(SDLoc DL, MVT VT,
8035                                                     SDValue V1, SDValue V2,
8036                                                     ArrayRef<int> Mask,
8037                                                     SelectionDAG &DAG) {
8038   assert(!VT.isFloatingPoint() &&
8039          "This routine only supports integer vectors.");
8040   assert(!isSingleInputShuffleMask(Mask) &&
8041          "This routine should only be used when blending two inputs.");
8042   assert(Mask.size() >= 2 && "Single element masks are invalid.");
8043
8044   int Size = Mask.size();
8045
8046   int NumLoInputs = std::count_if(Mask.begin(), Mask.end(), [Size](int M) {
8047     return M >= 0 && M % Size < Size / 2;
8048   });
8049   int NumHiInputs = std::count_if(
8050       Mask.begin(), Mask.end(), [Size](int M) { return M % Size >= Size / 2; });
8051
8052   bool UnpackLo = NumLoInputs >= NumHiInputs;
8053
8054   auto TryUnpack = [&](MVT UnpackVT, int Scale) {
8055     SmallVector<int, 32> V1Mask(Mask.size(), -1);
8056     SmallVector<int, 32> V2Mask(Mask.size(), -1);
8057
8058     for (int i = 0; i < Size; ++i) {
8059       if (Mask[i] < 0)
8060         continue;
8061
8062       // Each element of the unpack contains Scale elements from this mask.
8063       int UnpackIdx = i / Scale;
8064
8065       // We only handle the case where V1 feeds the first slots of the unpack.
8066       // We rely on canonicalization to ensure this is the case.
8067       if ((UnpackIdx % 2 == 0) != (Mask[i] < Size))
8068         return SDValue();
8069
8070       // Setup the mask for this input. The indexing is tricky as we have to
8071       // handle the unpack stride.
8072       SmallVectorImpl<int> &VMask = (UnpackIdx % 2 == 0) ? V1Mask : V2Mask;
8073       VMask[(UnpackIdx / 2) * Scale + i % Scale + (UnpackLo ? 0 : Size / 2)] =
8074           Mask[i] % Size;
8075     }
8076
8077     // If we will have to shuffle both inputs to use the unpack, check whether
8078     // we can just unpack first and shuffle the result. If so, skip this unpack.
8079     if ((NumLoInputs == 0 || NumHiInputs == 0) && !isNoopShuffleMask(V1Mask) &&
8080         !isNoopShuffleMask(V2Mask))
8081       return SDValue();
8082
8083     // Shuffle the inputs into place.
8084     V1 = DAG.getVectorShuffle(VT, DL, V1, DAG.getUNDEF(VT), V1Mask);
8085     V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Mask);
8086
8087     // Cast the inputs to the type we will use to unpack them.
8088     V1 = DAG.getBitcast(UnpackVT, V1);
8089     V2 = DAG.getBitcast(UnpackVT, V2);
8090
8091     // Unpack the inputs and cast the result back to the desired type.
8092     return DAG.getBitcast(
8093         VT, DAG.getNode(UnpackLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
8094                         UnpackVT, V1, V2));
8095   };
8096
8097   // We try each unpack from the largest to the smallest to try and find one
8098   // that fits this mask.
8099   int OrigNumElements = VT.getVectorNumElements();
8100   int OrigScalarSize = VT.getScalarSizeInBits();
8101   for (int ScalarSize = 64; ScalarSize >= OrigScalarSize; ScalarSize /= 2) {
8102     int Scale = ScalarSize / OrigScalarSize;
8103     int NumElements = OrigNumElements / Scale;
8104     MVT UnpackVT = MVT::getVectorVT(MVT::getIntegerVT(ScalarSize), NumElements);
8105     if (SDValue Unpack = TryUnpack(UnpackVT, Scale))
8106       return Unpack;
8107   }
8108
8109   // If none of the unpack-rooted lowerings worked (or were profitable) try an
8110   // initial unpack.
8111   if (NumLoInputs == 0 || NumHiInputs == 0) {
8112     assert((NumLoInputs > 0 || NumHiInputs > 0) &&
8113            "We have to have *some* inputs!");
8114     int HalfOffset = NumLoInputs == 0 ? Size / 2 : 0;
8115
8116     // FIXME: We could consider the total complexity of the permute of each
8117     // possible unpacking. Or at the least we should consider how many
8118     // half-crossings are created.
8119     // FIXME: We could consider commuting the unpacks.
8120
8121     SmallVector<int, 32> PermMask;
8122     PermMask.assign(Size, -1);
8123     for (int i = 0; i < Size; ++i) {
8124       if (Mask[i] < 0)
8125         continue;
8126
8127       assert(Mask[i] % Size >= HalfOffset && "Found input from wrong half!");
8128
8129       PermMask[i] =
8130           2 * ((Mask[i] % Size) - HalfOffset) + (Mask[i] < Size ? 0 : 1);
8131     }
8132     return DAG.getVectorShuffle(
8133         VT, DL, DAG.getNode(NumLoInputs == 0 ? X86ISD::UNPCKH : X86ISD::UNPCKL,
8134                             DL, VT, V1, V2),
8135         DAG.getUNDEF(VT), PermMask);
8136   }
8137
8138   return SDValue();
8139 }
8140
8141 /// \brief Handle lowering of 2-lane 64-bit floating point shuffles.
8142 ///
8143 /// This is the basis function for the 2-lane 64-bit shuffles as we have full
8144 /// support for floating point shuffles but not integer shuffles. These
8145 /// instructions will incur a domain crossing penalty on some chips though so
8146 /// it is better to avoid lowering through this for integer vectors where
8147 /// possible.
8148 static SDValue lowerV2F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8149                                        const X86Subtarget *Subtarget,
8150                                        SelectionDAG &DAG) {
8151   SDLoc DL(Op);
8152   assert(Op.getSimpleValueType() == MVT::v2f64 && "Bad shuffle type!");
8153   assert(V1.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
8154   assert(V2.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
8155   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8156   ArrayRef<int> Mask = SVOp->getMask();
8157   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
8158
8159   if (isSingleInputShuffleMask(Mask)) {
8160     // Use low duplicate instructions for masks that match their pattern.
8161     if (Subtarget->hasSSE3())
8162       if (isShuffleEquivalent(V1, V2, Mask, {0, 0}))
8163         return DAG.getNode(X86ISD::MOVDDUP, DL, MVT::v2f64, V1);
8164
8165     // Straight shuffle of a single input vector. Simulate this by using the
8166     // single input as both of the "inputs" to this instruction..
8167     unsigned SHUFPDMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1);
8168
8169     if (Subtarget->hasAVX()) {
8170       // If we have AVX, we can use VPERMILPS which will allow folding a load
8171       // into the shuffle.
8172       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v2f64, V1,
8173                          DAG.getConstant(SHUFPDMask, DL, MVT::i8));
8174     }
8175
8176     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v2f64, V1, V1,
8177                        DAG.getConstant(SHUFPDMask, DL, MVT::i8));
8178   }
8179   assert(Mask[0] >= 0 && Mask[0] < 2 && "Non-canonicalized blend!");
8180   assert(Mask[1] >= 2 && "Non-canonicalized blend!");
8181
8182   // If we have a single input, insert that into V1 if we can do so cheaply.
8183   if ((Mask[0] >= 2) + (Mask[1] >= 2) == 1) {
8184     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
8185             DL, MVT::v2f64, V1, V2, Mask, Subtarget, DAG))
8186       return Insertion;
8187     // Try inverting the insertion since for v2 masks it is easy to do and we
8188     // can't reliably sort the mask one way or the other.
8189     int InverseMask[2] = {Mask[0] < 0 ? -1 : (Mask[0] ^ 2),
8190                           Mask[1] < 0 ? -1 : (Mask[1] ^ 2)};
8191     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
8192             DL, MVT::v2f64, V2, V1, InverseMask, Subtarget, DAG))
8193       return Insertion;
8194   }
8195
8196   // Try to use one of the special instruction patterns to handle two common
8197   // blend patterns if a zero-blend above didn't work.
8198   if (isShuffleEquivalent(V1, V2, Mask, {0, 3}) ||
8199       isShuffleEquivalent(V1, V2, Mask, {1, 3}))
8200     if (SDValue V1S = getScalarValueForVectorElement(V1, Mask[0], DAG))
8201       // We can either use a special instruction to load over the low double or
8202       // to move just the low double.
8203       return DAG.getNode(
8204           isShuffleFoldableLoad(V1S) ? X86ISD::MOVLPD : X86ISD::MOVSD,
8205           DL, MVT::v2f64, V2,
8206           DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64, V1S));
8207
8208   if (Subtarget->hasSSE41())
8209     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v2f64, V1, V2, Mask,
8210                                                   Subtarget, DAG))
8211       return Blend;
8212
8213   // Use dedicated unpack instructions for masks that match their pattern.
8214   if (isShuffleEquivalent(V1, V2, Mask, {0, 2}))
8215     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2f64, V1, V2);
8216   if (isShuffleEquivalent(V1, V2, Mask, {1, 3}))
8217     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v2f64, V1, V2);
8218
8219   unsigned SHUFPDMask = (Mask[0] == 1) | (((Mask[1] - 2) == 1) << 1);
8220   return DAG.getNode(X86ISD::SHUFP, DL, MVT::v2f64, V1, V2,
8221                      DAG.getConstant(SHUFPDMask, DL, MVT::i8));
8222 }
8223
8224 /// \brief Handle lowering of 2-lane 64-bit integer shuffles.
8225 ///
8226 /// Tries to lower a 2-lane 64-bit shuffle using shuffle operations provided by
8227 /// the integer unit to minimize domain crossing penalties. However, for blends
8228 /// it falls back to the floating point shuffle operation with appropriate bit
8229 /// casting.
8230 static SDValue lowerV2I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8231                                        const X86Subtarget *Subtarget,
8232                                        SelectionDAG &DAG) {
8233   SDLoc DL(Op);
8234   assert(Op.getSimpleValueType() == MVT::v2i64 && "Bad shuffle type!");
8235   assert(V1.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
8236   assert(V2.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
8237   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8238   ArrayRef<int> Mask = SVOp->getMask();
8239   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
8240
8241   if (isSingleInputShuffleMask(Mask)) {
8242     // Check for being able to broadcast a single element.
8243     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v2i64, V1,
8244                                                           Mask, Subtarget, DAG))
8245       return Broadcast;
8246
8247     // Straight shuffle of a single input vector. For everything from SSE2
8248     // onward this has a single fast instruction with no scary immediates.
8249     // We have to map the mask as it is actually a v4i32 shuffle instruction.
8250     V1 = DAG.getBitcast(MVT::v4i32, V1);
8251     int WidenedMask[4] = {
8252         std::max(Mask[0], 0) * 2, std::max(Mask[0], 0) * 2 + 1,
8253         std::max(Mask[1], 0) * 2, std::max(Mask[1], 0) * 2 + 1};
8254     return DAG.getBitcast(
8255         MVT::v2i64,
8256         DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
8257                     getV4X86ShuffleImm8ForMask(WidenedMask, DL, DAG)));
8258   }
8259   assert(Mask[0] != -1 && "No undef lanes in multi-input v2 shuffles!");
8260   assert(Mask[1] != -1 && "No undef lanes in multi-input v2 shuffles!");
8261   assert(Mask[0] < 2 && "We sort V1 to be the first input.");
8262   assert(Mask[1] >= 2 && "We sort V2 to be the second input.");
8263
8264   // If we have a blend of two PACKUS operations an the blend aligns with the
8265   // low and half halves, we can just merge the PACKUS operations. This is
8266   // particularly important as it lets us merge shuffles that this routine itself
8267   // creates.
8268   auto GetPackNode = [](SDValue V) {
8269     while (V.getOpcode() == ISD::BITCAST)
8270       V = V.getOperand(0);
8271
8272     return V.getOpcode() == X86ISD::PACKUS ? V : SDValue();
8273   };
8274   if (SDValue V1Pack = GetPackNode(V1))
8275     if (SDValue V2Pack = GetPackNode(V2))
8276       return DAG.getBitcast(MVT::v2i64,
8277                             DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8,
8278                                         Mask[0] == 0 ? V1Pack.getOperand(0)
8279                                                      : V1Pack.getOperand(1),
8280                                         Mask[1] == 2 ? V2Pack.getOperand(0)
8281                                                      : V2Pack.getOperand(1)));
8282
8283   // Try to use shift instructions.
8284   if (SDValue Shift =
8285           lowerVectorShuffleAsShift(DL, MVT::v2i64, V1, V2, Mask, DAG))
8286     return Shift;
8287
8288   // When loading a scalar and then shuffling it into a vector we can often do
8289   // the insertion cheaply.
8290   if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
8291           DL, MVT::v2i64, V1, V2, Mask, Subtarget, DAG))
8292     return Insertion;
8293   // Try inverting the insertion since for v2 masks it is easy to do and we
8294   // can't reliably sort the mask one way or the other.
8295   int InverseMask[2] = {Mask[0] ^ 2, Mask[1] ^ 2};
8296   if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
8297           DL, MVT::v2i64, V2, V1, InverseMask, Subtarget, DAG))
8298     return Insertion;
8299
8300   // We have different paths for blend lowering, but they all must use the
8301   // *exact* same predicate.
8302   bool IsBlendSupported = Subtarget->hasSSE41();
8303   if (IsBlendSupported)
8304     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v2i64, V1, V2, Mask,
8305                                                   Subtarget, DAG))
8306       return Blend;
8307
8308   // Use dedicated unpack instructions for masks that match their pattern.
8309   if (isShuffleEquivalent(V1, V2, Mask, {0, 2}))
8310     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, V1, V2);
8311   if (isShuffleEquivalent(V1, V2, Mask, {1, 3}))
8312     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v2i64, V1, V2);
8313
8314   // Try to use byte rotation instructions.
8315   // Its more profitable for pre-SSSE3 to use shuffles/unpacks.
8316   if (Subtarget->hasSSSE3())
8317     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
8318             DL, MVT::v2i64, V1, V2, Mask, Subtarget, DAG))
8319       return Rotate;
8320
8321   // If we have direct support for blends, we should lower by decomposing into
8322   // a permute. That will be faster than the domain cross.
8323   if (IsBlendSupported)
8324     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v2i64, V1, V2,
8325                                                       Mask, DAG);
8326
8327   // We implement this with SHUFPD which is pretty lame because it will likely
8328   // incur 2 cycles of stall for integer vectors on Nehalem and older chips.
8329   // However, all the alternatives are still more cycles and newer chips don't
8330   // have this problem. It would be really nice if x86 had better shuffles here.
8331   V1 = DAG.getBitcast(MVT::v2f64, V1);
8332   V2 = DAG.getBitcast(MVT::v2f64, V2);
8333   return DAG.getBitcast(MVT::v2i64,
8334                         DAG.getVectorShuffle(MVT::v2f64, DL, V1, V2, Mask));
8335 }
8336
8337 /// \brief Test whether this can be lowered with a single SHUFPS instruction.
8338 ///
8339 /// This is used to disable more specialized lowerings when the shufps lowering
8340 /// will happen to be efficient.
8341 static bool isSingleSHUFPSMask(ArrayRef<int> Mask) {
8342   // This routine only handles 128-bit shufps.
8343   assert(Mask.size() == 4 && "Unsupported mask size!");
8344
8345   // To lower with a single SHUFPS we need to have the low half and high half
8346   // each requiring a single input.
8347   if (Mask[0] != -1 && Mask[1] != -1 && (Mask[0] < 4) != (Mask[1] < 4))
8348     return false;
8349   if (Mask[2] != -1 && Mask[3] != -1 && (Mask[2] < 4) != (Mask[3] < 4))
8350     return false;
8351
8352   return true;
8353 }
8354
8355 /// \brief Lower a vector shuffle using the SHUFPS instruction.
8356 ///
8357 /// This is a helper routine dedicated to lowering vector shuffles using SHUFPS.
8358 /// It makes no assumptions about whether this is the *best* lowering, it simply
8359 /// uses it.
8360 static SDValue lowerVectorShuffleWithSHUFPS(SDLoc DL, MVT VT,
8361                                             ArrayRef<int> Mask, SDValue V1,
8362                                             SDValue V2, SelectionDAG &DAG) {
8363   SDValue LowV = V1, HighV = V2;
8364   int NewMask[4] = {Mask[0], Mask[1], Mask[2], Mask[3]};
8365
8366   int NumV2Elements =
8367       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
8368
8369   if (NumV2Elements == 1) {
8370     int V2Index =
8371         std::find_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; }) -
8372         Mask.begin();
8373
8374     // Compute the index adjacent to V2Index and in the same half by toggling
8375     // the low bit.
8376     int V2AdjIndex = V2Index ^ 1;
8377
8378     if (Mask[V2AdjIndex] == -1) {
8379       // Handles all the cases where we have a single V2 element and an undef.
8380       // This will only ever happen in the high lanes because we commute the
8381       // vector otherwise.
8382       if (V2Index < 2)
8383         std::swap(LowV, HighV);
8384       NewMask[V2Index] -= 4;
8385     } else {
8386       // Handle the case where the V2 element ends up adjacent to a V1 element.
8387       // To make this work, blend them together as the first step.
8388       int V1Index = V2AdjIndex;
8389       int BlendMask[4] = {Mask[V2Index] - 4, 0, Mask[V1Index], 0};
8390       V2 = DAG.getNode(X86ISD::SHUFP, DL, VT, V2, V1,
8391                        getV4X86ShuffleImm8ForMask(BlendMask, DL, DAG));
8392
8393       // Now proceed to reconstruct the final blend as we have the necessary
8394       // high or low half formed.
8395       if (V2Index < 2) {
8396         LowV = V2;
8397         HighV = V1;
8398       } else {
8399         HighV = V2;
8400       }
8401       NewMask[V1Index] = 2; // We put the V1 element in V2[2].
8402       NewMask[V2Index] = 0; // We shifted the V2 element into V2[0].
8403     }
8404   } else if (NumV2Elements == 2) {
8405     if (Mask[0] < 4 && Mask[1] < 4) {
8406       // Handle the easy case where we have V1 in the low lanes and V2 in the
8407       // high lanes.
8408       NewMask[2] -= 4;
8409       NewMask[3] -= 4;
8410     } else if (Mask[2] < 4 && Mask[3] < 4) {
8411       // We also handle the reversed case because this utility may get called
8412       // when we detect a SHUFPS pattern but can't easily commute the shuffle to
8413       // arrange things in the right direction.
8414       NewMask[0] -= 4;
8415       NewMask[1] -= 4;
8416       HighV = V1;
8417       LowV = V2;
8418     } else {
8419       // We have a mixture of V1 and V2 in both low and high lanes. Rather than
8420       // trying to place elements directly, just blend them and set up the final
8421       // shuffle to place them.
8422
8423       // The first two blend mask elements are for V1, the second two are for
8424       // V2.
8425       int BlendMask[4] = {Mask[0] < 4 ? Mask[0] : Mask[1],
8426                           Mask[2] < 4 ? Mask[2] : Mask[3],
8427                           (Mask[0] >= 4 ? Mask[0] : Mask[1]) - 4,
8428                           (Mask[2] >= 4 ? Mask[2] : Mask[3]) - 4};
8429       V1 = DAG.getNode(X86ISD::SHUFP, DL, VT, V1, V2,
8430                        getV4X86ShuffleImm8ForMask(BlendMask, DL, DAG));
8431
8432       // Now we do a normal shuffle of V1 by giving V1 as both operands to
8433       // a blend.
8434       LowV = HighV = V1;
8435       NewMask[0] = Mask[0] < 4 ? 0 : 2;
8436       NewMask[1] = Mask[0] < 4 ? 2 : 0;
8437       NewMask[2] = Mask[2] < 4 ? 1 : 3;
8438       NewMask[3] = Mask[2] < 4 ? 3 : 1;
8439     }
8440   }
8441   return DAG.getNode(X86ISD::SHUFP, DL, VT, LowV, HighV,
8442                      getV4X86ShuffleImm8ForMask(NewMask, DL, DAG));
8443 }
8444
8445 /// \brief Lower 4-lane 32-bit floating point shuffles.
8446 ///
8447 /// Uses instructions exclusively from the floating point unit to minimize
8448 /// domain crossing penalties, as these are sufficient to implement all v4f32
8449 /// shuffles.
8450 static SDValue lowerV4F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8451                                        const X86Subtarget *Subtarget,
8452                                        SelectionDAG &DAG) {
8453   SDLoc DL(Op);
8454   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
8455   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
8456   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
8457   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8458   ArrayRef<int> Mask = SVOp->getMask();
8459   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
8460
8461   int NumV2Elements =
8462       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
8463
8464   if (NumV2Elements == 0) {
8465     // Check for being able to broadcast a single element.
8466     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4f32, V1,
8467                                                           Mask, Subtarget, DAG))
8468       return Broadcast;
8469
8470     // Use even/odd duplicate instructions for masks that match their pattern.
8471     if (Subtarget->hasSSE3()) {
8472       if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2}))
8473         return DAG.getNode(X86ISD::MOVSLDUP, DL, MVT::v4f32, V1);
8474       if (isShuffleEquivalent(V1, V2, Mask, {1, 1, 3, 3}))
8475         return DAG.getNode(X86ISD::MOVSHDUP, DL, MVT::v4f32, V1);
8476     }
8477
8478     if (Subtarget->hasAVX()) {
8479       // If we have AVX, we can use VPERMILPS which will allow folding a load
8480       // into the shuffle.
8481       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v4f32, V1,
8482                          getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
8483     }
8484
8485     // Otherwise, use a straight shuffle of a single input vector. We pass the
8486     // input vector to both operands to simulate this with a SHUFPS.
8487     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V1,
8488                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
8489   }
8490
8491   // There are special ways we can lower some single-element blends. However, we
8492   // have custom ways we can lower more complex single-element blends below that
8493   // we defer to if both this and BLENDPS fail to match, so restrict this to
8494   // when the V2 input is targeting element 0 of the mask -- that is the fast
8495   // case here.
8496   if (NumV2Elements == 1 && Mask[0] >= 4)
8497     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v4f32, V1, V2,
8498                                                          Mask, Subtarget, DAG))
8499       return V;
8500
8501   if (Subtarget->hasSSE41()) {
8502     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4f32, V1, V2, Mask,
8503                                                   Subtarget, DAG))
8504       return Blend;
8505
8506     // Use INSERTPS if we can complete the shuffle efficiently.
8507     if (SDValue V = lowerVectorShuffleAsInsertPS(Op, V1, V2, Mask, DAG))
8508       return V;
8509
8510     if (!isSingleSHUFPSMask(Mask))
8511       if (SDValue BlendPerm = lowerVectorShuffleAsBlendAndPermute(
8512               DL, MVT::v4f32, V1, V2, Mask, DAG))
8513         return BlendPerm;
8514   }
8515
8516   // Use dedicated unpack instructions for masks that match their pattern.
8517   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 1, 5}))
8518     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f32, V1, V2);
8519   if (isShuffleEquivalent(V1, V2, Mask, {2, 6, 3, 7}))
8520     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f32, V1, V2);
8521   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 5, 1}))
8522     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f32, V2, V1);
8523   if (isShuffleEquivalent(V1, V2, Mask, {6, 2, 7, 3}))
8524     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f32, V2, V1);
8525
8526   // Otherwise fall back to a SHUFPS lowering strategy.
8527   return lowerVectorShuffleWithSHUFPS(DL, MVT::v4f32, Mask, V1, V2, DAG);
8528 }
8529
8530 /// \brief Lower 4-lane i32 vector shuffles.
8531 ///
8532 /// We try to handle these with integer-domain shuffles where we can, but for
8533 /// blends we use the floating point domain blend instructions.
8534 static SDValue lowerV4I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8535                                        const X86Subtarget *Subtarget,
8536                                        SelectionDAG &DAG) {
8537   SDLoc DL(Op);
8538   assert(Op.getSimpleValueType() == MVT::v4i32 && "Bad shuffle type!");
8539   assert(V1.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
8540   assert(V2.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
8541   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8542   ArrayRef<int> Mask = SVOp->getMask();
8543   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
8544
8545   // Whenever we can lower this as a zext, that instruction is strictly faster
8546   // than any alternative. It also allows us to fold memory operands into the
8547   // shuffle in many cases.
8548   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v4i32, V1, V2,
8549                                                          Mask, Subtarget, DAG))
8550     return ZExt;
8551
8552   int NumV2Elements =
8553       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
8554
8555   if (NumV2Elements == 0) {
8556     // Check for being able to broadcast a single element.
8557     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4i32, V1,
8558                                                           Mask, Subtarget, DAG))
8559       return Broadcast;
8560
8561     // Straight shuffle of a single input vector. For everything from SSE2
8562     // onward this has a single fast instruction with no scary immediates.
8563     // We coerce the shuffle pattern to be compatible with UNPCK instructions
8564     // but we aren't actually going to use the UNPCK instruction because doing
8565     // so prevents folding a load into this instruction or making a copy.
8566     const int UnpackLoMask[] = {0, 0, 1, 1};
8567     const int UnpackHiMask[] = {2, 2, 3, 3};
8568     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 1, 1}))
8569       Mask = UnpackLoMask;
8570     else if (isShuffleEquivalent(V1, V2, Mask, {2, 2, 3, 3}))
8571       Mask = UnpackHiMask;
8572
8573     return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
8574                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
8575   }
8576
8577   // Try to use shift instructions.
8578   if (SDValue Shift =
8579           lowerVectorShuffleAsShift(DL, MVT::v4i32, V1, V2, Mask, DAG))
8580     return Shift;
8581
8582   // There are special ways we can lower some single-element blends.
8583   if (NumV2Elements == 1)
8584     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v4i32, V1, V2,
8585                                                          Mask, Subtarget, DAG))
8586       return V;
8587
8588   // We have different paths for blend lowering, but they all must use the
8589   // *exact* same predicate.
8590   bool IsBlendSupported = Subtarget->hasSSE41();
8591   if (IsBlendSupported)
8592     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4i32, V1, V2, Mask,
8593                                                   Subtarget, DAG))
8594       return Blend;
8595
8596   if (SDValue Masked =
8597           lowerVectorShuffleAsBitMask(DL, MVT::v4i32, V1, V2, Mask, DAG))
8598     return Masked;
8599
8600   // Use dedicated unpack instructions for masks that match their pattern.
8601   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 1, 5}))
8602     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i32, V1, V2);
8603   if (isShuffleEquivalent(V1, V2, Mask, {2, 6, 3, 7}))
8604     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i32, V1, V2);
8605   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 5, 1}))
8606     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i32, V2, V1);
8607   if (isShuffleEquivalent(V1, V2, Mask, {6, 2, 7, 3}))
8608     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i32, V2, V1);
8609
8610   // Try to use byte rotation instructions.
8611   // Its more profitable for pre-SSSE3 to use shuffles/unpacks.
8612   if (Subtarget->hasSSSE3())
8613     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
8614             DL, MVT::v4i32, V1, V2, Mask, Subtarget, DAG))
8615       return Rotate;
8616
8617   // If we have direct support for blends, we should lower by decomposing into
8618   // a permute. That will be faster than the domain cross.
8619   if (IsBlendSupported)
8620     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4i32, V1, V2,
8621                                                       Mask, DAG);
8622
8623   // Try to lower by permuting the inputs into an unpack instruction.
8624   if (SDValue Unpack = lowerVectorShuffleAsPermuteAndUnpack(DL, MVT::v4i32, V1,
8625                                                             V2, Mask, DAG))
8626     return Unpack;
8627
8628   // We implement this with SHUFPS because it can blend from two vectors.
8629   // Because we're going to eventually use SHUFPS, we use SHUFPS even to build
8630   // up the inputs, bypassing domain shift penalties that we would encur if we
8631   // directly used PSHUFD on Nehalem and older. For newer chips, this isn't
8632   // relevant.
8633   return DAG.getBitcast(
8634       MVT::v4i32,
8635       DAG.getVectorShuffle(MVT::v4f32, DL, DAG.getBitcast(MVT::v4f32, V1),
8636                            DAG.getBitcast(MVT::v4f32, V2), Mask));
8637 }
8638
8639 /// \brief Lowering of single-input v8i16 shuffles is the cornerstone of SSE2
8640 /// shuffle lowering, and the most complex part.
8641 ///
8642 /// The lowering strategy is to try to form pairs of input lanes which are
8643 /// targeted at the same half of the final vector, and then use a dword shuffle
8644 /// to place them onto the right half, and finally unpack the paired lanes into
8645 /// their final position.
8646 ///
8647 /// The exact breakdown of how to form these dword pairs and align them on the
8648 /// correct sides is really tricky. See the comments within the function for
8649 /// more of the details.
8650 ///
8651 /// This code also handles repeated 128-bit lanes of v8i16 shuffles, but each
8652 /// lane must shuffle the *exact* same way. In fact, you must pass a v8 Mask to
8653 /// this routine for it to work correctly. To shuffle a 256-bit or 512-bit i16
8654 /// vector, form the analogous 128-bit 8-element Mask.
8655 static SDValue lowerV8I16GeneralSingleInputVectorShuffle(
8656     SDLoc DL, MVT VT, SDValue V, MutableArrayRef<int> Mask,
8657     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
8658   assert(VT.getScalarType() == MVT::i16 && "Bad input type!");
8659   MVT PSHUFDVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() / 2);
8660
8661   assert(Mask.size() == 8 && "Shuffle mask length doen't match!");
8662   MutableArrayRef<int> LoMask = Mask.slice(0, 4);
8663   MutableArrayRef<int> HiMask = Mask.slice(4, 4);
8664
8665   SmallVector<int, 4> LoInputs;
8666   std::copy_if(LoMask.begin(), LoMask.end(), std::back_inserter(LoInputs),
8667                [](int M) { return M >= 0; });
8668   std::sort(LoInputs.begin(), LoInputs.end());
8669   LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()), LoInputs.end());
8670   SmallVector<int, 4> HiInputs;
8671   std::copy_if(HiMask.begin(), HiMask.end(), std::back_inserter(HiInputs),
8672                [](int M) { return M >= 0; });
8673   std::sort(HiInputs.begin(), HiInputs.end());
8674   HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end());
8675   int NumLToL =
8676       std::lower_bound(LoInputs.begin(), LoInputs.end(), 4) - LoInputs.begin();
8677   int NumHToL = LoInputs.size() - NumLToL;
8678   int NumLToH =
8679       std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin();
8680   int NumHToH = HiInputs.size() - NumLToH;
8681   MutableArrayRef<int> LToLInputs(LoInputs.data(), NumLToL);
8682   MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH);
8683   MutableArrayRef<int> HToLInputs(LoInputs.data() + NumLToL, NumHToL);
8684   MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH);
8685
8686   // Simplify the 1-into-3 and 3-into-1 cases with a single pshufd. For all
8687   // such inputs we can swap two of the dwords across the half mark and end up
8688   // with <=2 inputs to each half in each half. Once there, we can fall through
8689   // to the generic code below. For example:
8690   //
8691   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
8692   // Mask:  [0, 1, 2, 7, 4, 5, 6, 3] -----------------> [0, 1, 4, 7, 2, 3, 6, 5]
8693   //
8694   // However in some very rare cases we have a 1-into-3 or 3-into-1 on one half
8695   // and an existing 2-into-2 on the other half. In this case we may have to
8696   // pre-shuffle the 2-into-2 half to avoid turning it into a 3-into-1 or
8697   // 1-into-3 which could cause us to cycle endlessly fixing each side in turn.
8698   // Fortunately, we don't have to handle anything but a 2-into-2 pattern
8699   // because any other situation (including a 3-into-1 or 1-into-3 in the other
8700   // half than the one we target for fixing) will be fixed when we re-enter this
8701   // path. We will also combine away any sequence of PSHUFD instructions that
8702   // result into a single instruction. Here is an example of the tricky case:
8703   //
8704   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
8705   // Mask:  [3, 7, 1, 0, 2, 7, 3, 5] -THIS-IS-BAD!!!!-> [5, 7, 1, 0, 4, 7, 5, 3]
8706   //
8707   // This now has a 1-into-3 in the high half! Instead, we do two shuffles:
8708   //
8709   // Input: [a, b, c, d, e, f, g, h] PSHUFHW[0,2,1,3]-> [a, b, c, d, e, g, f, h]
8710   // Mask:  [3, 7, 1, 0, 2, 7, 3, 5] -----------------> [3, 7, 1, 0, 2, 7, 3, 6]
8711   //
8712   // Input: [a, b, c, d, e, g, f, h] -PSHUFD[0,2,1,3]-> [a, b, e, g, c, d, f, h]
8713   // Mask:  [3, 7, 1, 0, 2, 7, 3, 6] -----------------> [5, 7, 1, 0, 4, 7, 5, 6]
8714   //
8715   // The result is fine to be handled by the generic logic.
8716   auto balanceSides = [&](ArrayRef<int> AToAInputs, ArrayRef<int> BToAInputs,
8717                           ArrayRef<int> BToBInputs, ArrayRef<int> AToBInputs,
8718                           int AOffset, int BOffset) {
8719     assert((AToAInputs.size() == 3 || AToAInputs.size() == 1) &&
8720            "Must call this with A having 3 or 1 inputs from the A half.");
8721     assert((BToAInputs.size() == 1 || BToAInputs.size() == 3) &&
8722            "Must call this with B having 1 or 3 inputs from the B half.");
8723     assert(AToAInputs.size() + BToAInputs.size() == 4 &&
8724            "Must call this with either 3:1 or 1:3 inputs (summing to 4).");
8725
8726     bool ThreeAInputs = AToAInputs.size() == 3;
8727
8728     // Compute the index of dword with only one word among the three inputs in
8729     // a half by taking the sum of the half with three inputs and subtracting
8730     // the sum of the actual three inputs. The difference is the remaining
8731     // slot.
8732     int ADWord, BDWord;
8733     int &TripleDWord = ThreeAInputs ? ADWord : BDWord;
8734     int &OneInputDWord = ThreeAInputs ? BDWord : ADWord;
8735     int TripleInputOffset = ThreeAInputs ? AOffset : BOffset;
8736     ArrayRef<int> TripleInputs = ThreeAInputs ? AToAInputs : BToAInputs;
8737     int OneInput = ThreeAInputs ? BToAInputs[0] : AToAInputs[0];
8738     int TripleInputSum = 0 + 1 + 2 + 3 + (4 * TripleInputOffset);
8739     int TripleNonInputIdx =
8740         TripleInputSum - std::accumulate(TripleInputs.begin(), TripleInputs.end(), 0);
8741     TripleDWord = TripleNonInputIdx / 2;
8742
8743     // We use xor with one to compute the adjacent DWord to whichever one the
8744     // OneInput is in.
8745     OneInputDWord = (OneInput / 2) ^ 1;
8746
8747     // Check for one tricky case: We're fixing a 3<-1 or a 1<-3 shuffle for AToA
8748     // and BToA inputs. If there is also such a problem with the BToB and AToB
8749     // inputs, we don't try to fix it necessarily -- we'll recurse and see it in
8750     // the next pass. However, if we have a 2<-2 in the BToB and AToB inputs, it
8751     // is essential that we don't *create* a 3<-1 as then we might oscillate.
8752     if (BToBInputs.size() == 2 && AToBInputs.size() == 2) {
8753       // Compute how many inputs will be flipped by swapping these DWords. We
8754       // need
8755       // to balance this to ensure we don't form a 3-1 shuffle in the other
8756       // half.
8757       int NumFlippedAToBInputs =
8758           std::count(AToBInputs.begin(), AToBInputs.end(), 2 * ADWord) +
8759           std::count(AToBInputs.begin(), AToBInputs.end(), 2 * ADWord + 1);
8760       int NumFlippedBToBInputs =
8761           std::count(BToBInputs.begin(), BToBInputs.end(), 2 * BDWord) +
8762           std::count(BToBInputs.begin(), BToBInputs.end(), 2 * BDWord + 1);
8763       if ((NumFlippedAToBInputs == 1 &&
8764            (NumFlippedBToBInputs == 0 || NumFlippedBToBInputs == 2)) ||
8765           (NumFlippedBToBInputs == 1 &&
8766            (NumFlippedAToBInputs == 0 || NumFlippedAToBInputs == 2))) {
8767         // We choose whether to fix the A half or B half based on whether that
8768         // half has zero flipped inputs. At zero, we may not be able to fix it
8769         // with that half. We also bias towards fixing the B half because that
8770         // will more commonly be the high half, and we have to bias one way.
8771         auto FixFlippedInputs = [&V, &DL, &Mask, &DAG](int PinnedIdx, int DWord,
8772                                                        ArrayRef<int> Inputs) {
8773           int FixIdx = PinnedIdx ^ 1; // The adjacent slot to the pinned slot.
8774           bool IsFixIdxInput = std::find(Inputs.begin(), Inputs.end(),
8775                                          PinnedIdx ^ 1) != Inputs.end();
8776           // Determine whether the free index is in the flipped dword or the
8777           // unflipped dword based on where the pinned index is. We use this bit
8778           // in an xor to conditionally select the adjacent dword.
8779           int FixFreeIdx = 2 * (DWord ^ (PinnedIdx / 2 == DWord));
8780           bool IsFixFreeIdxInput = std::find(Inputs.begin(), Inputs.end(),
8781                                              FixFreeIdx) != Inputs.end();
8782           if (IsFixIdxInput == IsFixFreeIdxInput)
8783             FixFreeIdx += 1;
8784           IsFixFreeIdxInput = std::find(Inputs.begin(), Inputs.end(),
8785                                         FixFreeIdx) != Inputs.end();
8786           assert(IsFixIdxInput != IsFixFreeIdxInput &&
8787                  "We need to be changing the number of flipped inputs!");
8788           int PSHUFHalfMask[] = {0, 1, 2, 3};
8789           std::swap(PSHUFHalfMask[FixFreeIdx % 4], PSHUFHalfMask[FixIdx % 4]);
8790           V = DAG.getNode(FixIdx < 4 ? X86ISD::PSHUFLW : X86ISD::PSHUFHW, DL,
8791                           MVT::v8i16, V,
8792                           getV4X86ShuffleImm8ForMask(PSHUFHalfMask, DL, DAG));
8793
8794           for (int &M : Mask)
8795             if (M != -1 && M == FixIdx)
8796               M = FixFreeIdx;
8797             else if (M != -1 && M == FixFreeIdx)
8798               M = FixIdx;
8799         };
8800         if (NumFlippedBToBInputs != 0) {
8801           int BPinnedIdx =
8802               BToAInputs.size() == 3 ? TripleNonInputIdx : OneInput;
8803           FixFlippedInputs(BPinnedIdx, BDWord, BToBInputs);
8804         } else {
8805           assert(NumFlippedAToBInputs != 0 && "Impossible given predicates!");
8806           int APinnedIdx = ThreeAInputs ? TripleNonInputIdx : OneInput;
8807           FixFlippedInputs(APinnedIdx, ADWord, AToBInputs);
8808         }
8809       }
8810     }
8811
8812     int PSHUFDMask[] = {0, 1, 2, 3};
8813     PSHUFDMask[ADWord] = BDWord;
8814     PSHUFDMask[BDWord] = ADWord;
8815     V = DAG.getBitcast(
8816         VT,
8817         DAG.getNode(X86ISD::PSHUFD, DL, PSHUFDVT, DAG.getBitcast(PSHUFDVT, V),
8818                     getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
8819
8820     // Adjust the mask to match the new locations of A and B.
8821     for (int &M : Mask)
8822       if (M != -1 && M/2 == ADWord)
8823         M = 2 * BDWord + M % 2;
8824       else if (M != -1 && M/2 == BDWord)
8825         M = 2 * ADWord + M % 2;
8826
8827     // Recurse back into this routine to re-compute state now that this isn't
8828     // a 3 and 1 problem.
8829     return lowerV8I16GeneralSingleInputVectorShuffle(DL, VT, V, Mask, Subtarget,
8830                                                      DAG);
8831   };
8832   if ((NumLToL == 3 && NumHToL == 1) || (NumLToL == 1 && NumHToL == 3))
8833     return balanceSides(LToLInputs, HToLInputs, HToHInputs, LToHInputs, 0, 4);
8834   else if ((NumHToH == 3 && NumLToH == 1) || (NumHToH == 1 && NumLToH == 3))
8835     return balanceSides(HToHInputs, LToHInputs, LToLInputs, HToLInputs, 4, 0);
8836
8837   // At this point there are at most two inputs to the low and high halves from
8838   // each half. That means the inputs can always be grouped into dwords and
8839   // those dwords can then be moved to the correct half with a dword shuffle.
8840   // We use at most one low and one high word shuffle to collect these paired
8841   // inputs into dwords, and finally a dword shuffle to place them.
8842   int PSHUFLMask[4] = {-1, -1, -1, -1};
8843   int PSHUFHMask[4] = {-1, -1, -1, -1};
8844   int PSHUFDMask[4] = {-1, -1, -1, -1};
8845
8846   // First fix the masks for all the inputs that are staying in their
8847   // original halves. This will then dictate the targets of the cross-half
8848   // shuffles.
8849   auto fixInPlaceInputs =
8850       [&PSHUFDMask](ArrayRef<int> InPlaceInputs, ArrayRef<int> IncomingInputs,
8851                     MutableArrayRef<int> SourceHalfMask,
8852                     MutableArrayRef<int> HalfMask, int HalfOffset) {
8853     if (InPlaceInputs.empty())
8854       return;
8855     if (InPlaceInputs.size() == 1) {
8856       SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
8857           InPlaceInputs[0] - HalfOffset;
8858       PSHUFDMask[InPlaceInputs[0] / 2] = InPlaceInputs[0] / 2;
8859       return;
8860     }
8861     if (IncomingInputs.empty()) {
8862       // Just fix all of the in place inputs.
8863       for (int Input : InPlaceInputs) {
8864         SourceHalfMask[Input - HalfOffset] = Input - HalfOffset;
8865         PSHUFDMask[Input / 2] = Input / 2;
8866       }
8867       return;
8868     }
8869
8870     assert(InPlaceInputs.size() == 2 && "Cannot handle 3 or 4 inputs!");
8871     SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
8872         InPlaceInputs[0] - HalfOffset;
8873     // Put the second input next to the first so that they are packed into
8874     // a dword. We find the adjacent index by toggling the low bit.
8875     int AdjIndex = InPlaceInputs[0] ^ 1;
8876     SourceHalfMask[AdjIndex - HalfOffset] = InPlaceInputs[1] - HalfOffset;
8877     std::replace(HalfMask.begin(), HalfMask.end(), InPlaceInputs[1], AdjIndex);
8878     PSHUFDMask[AdjIndex / 2] = AdjIndex / 2;
8879   };
8880   fixInPlaceInputs(LToLInputs, HToLInputs, PSHUFLMask, LoMask, 0);
8881   fixInPlaceInputs(HToHInputs, LToHInputs, PSHUFHMask, HiMask, 4);
8882
8883   // Now gather the cross-half inputs and place them into a free dword of
8884   // their target half.
8885   // FIXME: This operation could almost certainly be simplified dramatically to
8886   // look more like the 3-1 fixing operation.
8887   auto moveInputsToRightHalf = [&PSHUFDMask](
8888       MutableArrayRef<int> IncomingInputs, ArrayRef<int> ExistingInputs,
8889       MutableArrayRef<int> SourceHalfMask, MutableArrayRef<int> HalfMask,
8890       MutableArrayRef<int> FinalSourceHalfMask, int SourceOffset,
8891       int DestOffset) {
8892     auto isWordClobbered = [](ArrayRef<int> SourceHalfMask, int Word) {
8893       return SourceHalfMask[Word] != -1 && SourceHalfMask[Word] != Word;
8894     };
8895     auto isDWordClobbered = [&isWordClobbered](ArrayRef<int> SourceHalfMask,
8896                                                int Word) {
8897       int LowWord = Word & ~1;
8898       int HighWord = Word | 1;
8899       return isWordClobbered(SourceHalfMask, LowWord) ||
8900              isWordClobbered(SourceHalfMask, HighWord);
8901     };
8902
8903     if (IncomingInputs.empty())
8904       return;
8905
8906     if (ExistingInputs.empty()) {
8907       // Map any dwords with inputs from them into the right half.
8908       for (int Input : IncomingInputs) {
8909         // If the source half mask maps over the inputs, turn those into
8910         // swaps and use the swapped lane.
8911         if (isWordClobbered(SourceHalfMask, Input - SourceOffset)) {
8912           if (SourceHalfMask[SourceHalfMask[Input - SourceOffset]] == -1) {
8913             SourceHalfMask[SourceHalfMask[Input - SourceOffset]] =
8914                 Input - SourceOffset;
8915             // We have to swap the uses in our half mask in one sweep.
8916             for (int &M : HalfMask)
8917               if (M == SourceHalfMask[Input - SourceOffset] + SourceOffset)
8918                 M = Input;
8919               else if (M == Input)
8920                 M = SourceHalfMask[Input - SourceOffset] + SourceOffset;
8921           } else {
8922             assert(SourceHalfMask[SourceHalfMask[Input - SourceOffset]] ==
8923                        Input - SourceOffset &&
8924                    "Previous placement doesn't match!");
8925           }
8926           // Note that this correctly re-maps both when we do a swap and when
8927           // we observe the other side of the swap above. We rely on that to
8928           // avoid swapping the members of the input list directly.
8929           Input = SourceHalfMask[Input - SourceOffset] + SourceOffset;
8930         }
8931
8932         // Map the input's dword into the correct half.
8933         if (PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] == -1)
8934           PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] = Input / 2;
8935         else
8936           assert(PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] ==
8937                      Input / 2 &&
8938                  "Previous placement doesn't match!");
8939       }
8940
8941       // And just directly shift any other-half mask elements to be same-half
8942       // as we will have mirrored the dword containing the element into the
8943       // same position within that half.
8944       for (int &M : HalfMask)
8945         if (M >= SourceOffset && M < SourceOffset + 4) {
8946           M = M - SourceOffset + DestOffset;
8947           assert(M >= 0 && "This should never wrap below zero!");
8948         }
8949       return;
8950     }
8951
8952     // Ensure we have the input in a viable dword of its current half. This
8953     // is particularly tricky because the original position may be clobbered
8954     // by inputs being moved and *staying* in that half.
8955     if (IncomingInputs.size() == 1) {
8956       if (isWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
8957         int InputFixed = std::find(std::begin(SourceHalfMask),
8958                                    std::end(SourceHalfMask), -1) -
8959                          std::begin(SourceHalfMask) + SourceOffset;
8960         SourceHalfMask[InputFixed - SourceOffset] =
8961             IncomingInputs[0] - SourceOffset;
8962         std::replace(HalfMask.begin(), HalfMask.end(), IncomingInputs[0],
8963                      InputFixed);
8964         IncomingInputs[0] = InputFixed;
8965       }
8966     } else if (IncomingInputs.size() == 2) {
8967       if (IncomingInputs[0] / 2 != IncomingInputs[1] / 2 ||
8968           isDWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
8969         // We have two non-adjacent or clobbered inputs we need to extract from
8970         // the source half. To do this, we need to map them into some adjacent
8971         // dword slot in the source mask.
8972         int InputsFixed[2] = {IncomingInputs[0] - SourceOffset,
8973                               IncomingInputs[1] - SourceOffset};
8974
8975         // If there is a free slot in the source half mask adjacent to one of
8976         // the inputs, place the other input in it. We use (Index XOR 1) to
8977         // compute an adjacent index.
8978         if (!isWordClobbered(SourceHalfMask, InputsFixed[0]) &&
8979             SourceHalfMask[InputsFixed[0] ^ 1] == -1) {
8980           SourceHalfMask[InputsFixed[0]] = InputsFixed[0];
8981           SourceHalfMask[InputsFixed[0] ^ 1] = InputsFixed[1];
8982           InputsFixed[1] = InputsFixed[0] ^ 1;
8983         } else if (!isWordClobbered(SourceHalfMask, InputsFixed[1]) &&
8984                    SourceHalfMask[InputsFixed[1] ^ 1] == -1) {
8985           SourceHalfMask[InputsFixed[1]] = InputsFixed[1];
8986           SourceHalfMask[InputsFixed[1] ^ 1] = InputsFixed[0];
8987           InputsFixed[0] = InputsFixed[1] ^ 1;
8988         } else if (SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1)] == -1 &&
8989                    SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1) + 1] == -1) {
8990           // The two inputs are in the same DWord but it is clobbered and the
8991           // adjacent DWord isn't used at all. Move both inputs to the free
8992           // slot.
8993           SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1)] = InputsFixed[0];
8994           SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1) + 1] = InputsFixed[1];
8995           InputsFixed[0] = 2 * ((InputsFixed[0] / 2) ^ 1);
8996           InputsFixed[1] = 2 * ((InputsFixed[0] / 2) ^ 1) + 1;
8997         } else {
8998           // The only way we hit this point is if there is no clobbering
8999           // (because there are no off-half inputs to this half) and there is no
9000           // free slot adjacent to one of the inputs. In this case, we have to
9001           // swap an input with a non-input.
9002           for (int i = 0; i < 4; ++i)
9003             assert((SourceHalfMask[i] == -1 || SourceHalfMask[i] == i) &&
9004                    "We can't handle any clobbers here!");
9005           assert(InputsFixed[1] != (InputsFixed[0] ^ 1) &&
9006                  "Cannot have adjacent inputs here!");
9007
9008           SourceHalfMask[InputsFixed[0] ^ 1] = InputsFixed[1];
9009           SourceHalfMask[InputsFixed[1]] = InputsFixed[0] ^ 1;
9010
9011           // We also have to update the final source mask in this case because
9012           // it may need to undo the above swap.
9013           for (int &M : FinalSourceHalfMask)
9014             if (M == (InputsFixed[0] ^ 1) + SourceOffset)
9015               M = InputsFixed[1] + SourceOffset;
9016             else if (M == InputsFixed[1] + SourceOffset)
9017               M = (InputsFixed[0] ^ 1) + SourceOffset;
9018
9019           InputsFixed[1] = InputsFixed[0] ^ 1;
9020         }
9021
9022         // Point everything at the fixed inputs.
9023         for (int &M : HalfMask)
9024           if (M == IncomingInputs[0])
9025             M = InputsFixed[0] + SourceOffset;
9026           else if (M == IncomingInputs[1])
9027             M = InputsFixed[1] + SourceOffset;
9028
9029         IncomingInputs[0] = InputsFixed[0] + SourceOffset;
9030         IncomingInputs[1] = InputsFixed[1] + SourceOffset;
9031       }
9032     } else {
9033       llvm_unreachable("Unhandled input size!");
9034     }
9035
9036     // Now hoist the DWord down to the right half.
9037     int FreeDWord = (PSHUFDMask[DestOffset / 2] == -1 ? 0 : 1) + DestOffset / 2;
9038     assert(PSHUFDMask[FreeDWord] == -1 && "DWord not free");
9039     PSHUFDMask[FreeDWord] = IncomingInputs[0] / 2;
9040     for (int &M : HalfMask)
9041       for (int Input : IncomingInputs)
9042         if (M == Input)
9043           M = FreeDWord * 2 + Input % 2;
9044   };
9045   moveInputsToRightHalf(HToLInputs, LToLInputs, PSHUFHMask, LoMask, HiMask,
9046                         /*SourceOffset*/ 4, /*DestOffset*/ 0);
9047   moveInputsToRightHalf(LToHInputs, HToHInputs, PSHUFLMask, HiMask, LoMask,
9048                         /*SourceOffset*/ 0, /*DestOffset*/ 4);
9049
9050   // Now enact all the shuffles we've computed to move the inputs into their
9051   // target half.
9052   if (!isNoopShuffleMask(PSHUFLMask))
9053     V = DAG.getNode(X86ISD::PSHUFLW, DL, VT, V,
9054                     getV4X86ShuffleImm8ForMask(PSHUFLMask, DL, DAG));
9055   if (!isNoopShuffleMask(PSHUFHMask))
9056     V = DAG.getNode(X86ISD::PSHUFHW, DL, VT, V,
9057                     getV4X86ShuffleImm8ForMask(PSHUFHMask, DL, DAG));
9058   if (!isNoopShuffleMask(PSHUFDMask))
9059     V = DAG.getBitcast(
9060         VT,
9061         DAG.getNode(X86ISD::PSHUFD, DL, PSHUFDVT, DAG.getBitcast(PSHUFDVT, V),
9062                     getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
9063
9064   // At this point, each half should contain all its inputs, and we can then
9065   // just shuffle them into their final position.
9066   assert(std::count_if(LoMask.begin(), LoMask.end(),
9067                        [](int M) { return M >= 4; }) == 0 &&
9068          "Failed to lift all the high half inputs to the low mask!");
9069   assert(std::count_if(HiMask.begin(), HiMask.end(),
9070                        [](int M) { return M >= 0 && M < 4; }) == 0 &&
9071          "Failed to lift all the low half inputs to the high mask!");
9072
9073   // Do a half shuffle for the low mask.
9074   if (!isNoopShuffleMask(LoMask))
9075     V = DAG.getNode(X86ISD::PSHUFLW, DL, VT, V,
9076                     getV4X86ShuffleImm8ForMask(LoMask, DL, DAG));
9077
9078   // Do a half shuffle with the high mask after shifting its values down.
9079   for (int &M : HiMask)
9080     if (M >= 0)
9081       M -= 4;
9082   if (!isNoopShuffleMask(HiMask))
9083     V = DAG.getNode(X86ISD::PSHUFHW, DL, VT, V,
9084                     getV4X86ShuffleImm8ForMask(HiMask, DL, DAG));
9085
9086   return V;
9087 }
9088
9089 /// \brief Helper to form a PSHUFB-based shuffle+blend.
9090 static SDValue lowerVectorShuffleAsPSHUFB(SDLoc DL, MVT VT, SDValue V1,
9091                                           SDValue V2, ArrayRef<int> Mask,
9092                                           SelectionDAG &DAG, bool &V1InUse,
9093                                           bool &V2InUse) {
9094   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
9095   SDValue V1Mask[16];
9096   SDValue V2Mask[16];
9097   V1InUse = false;
9098   V2InUse = false;
9099
9100   int Size = Mask.size();
9101   int Scale = 16 / Size;
9102   for (int i = 0; i < 16; ++i) {
9103     if (Mask[i / Scale] == -1) {
9104       V1Mask[i] = V2Mask[i] = DAG.getUNDEF(MVT::i8);
9105     } else {
9106       const int ZeroMask = 0x80;
9107       int V1Idx = Mask[i / Scale] < Size ? Mask[i / Scale] * Scale + i % Scale
9108                                           : ZeroMask;
9109       int V2Idx = Mask[i / Scale] < Size
9110                       ? ZeroMask
9111                       : (Mask[i / Scale] - Size) * Scale + i % Scale;
9112       if (Zeroable[i / Scale])
9113         V1Idx = V2Idx = ZeroMask;
9114       V1Mask[i] = DAG.getConstant(V1Idx, DL, MVT::i8);
9115       V2Mask[i] = DAG.getConstant(V2Idx, DL, MVT::i8);
9116       V1InUse |= (ZeroMask != V1Idx);
9117       V2InUse |= (ZeroMask != V2Idx);
9118     }
9119   }
9120
9121   if (V1InUse)
9122     V1 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8,
9123                      DAG.getBitcast(MVT::v16i8, V1),
9124                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V1Mask));
9125   if (V2InUse)
9126     V2 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8,
9127                      DAG.getBitcast(MVT::v16i8, V2),
9128                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V2Mask));
9129
9130   // If we need shuffled inputs from both, blend the two.
9131   SDValue V;
9132   if (V1InUse && V2InUse)
9133     V = DAG.getNode(ISD::OR, DL, MVT::v16i8, V1, V2);
9134   else
9135     V = V1InUse ? V1 : V2;
9136
9137   // Cast the result back to the correct type.
9138   return DAG.getBitcast(VT, V);
9139 }
9140
9141 /// \brief Generic lowering of 8-lane i16 shuffles.
9142 ///
9143 /// This handles both single-input shuffles and combined shuffle/blends with
9144 /// two inputs. The single input shuffles are immediately delegated to
9145 /// a dedicated lowering routine.
9146 ///
9147 /// The blends are lowered in one of three fundamental ways. If there are few
9148 /// enough inputs, it delegates to a basic UNPCK-based strategy. If the shuffle
9149 /// of the input is significantly cheaper when lowered as an interleaving of
9150 /// the two inputs, try to interleave them. Otherwise, blend the low and high
9151 /// halves of the inputs separately (making them have relatively few inputs)
9152 /// and then concatenate them.
9153 static SDValue lowerV8I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9154                                        const X86Subtarget *Subtarget,
9155                                        SelectionDAG &DAG) {
9156   SDLoc DL(Op);
9157   assert(Op.getSimpleValueType() == MVT::v8i16 && "Bad shuffle type!");
9158   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
9159   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
9160   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9161   ArrayRef<int> OrigMask = SVOp->getMask();
9162   int MaskStorage[8] = {OrigMask[0], OrigMask[1], OrigMask[2], OrigMask[3],
9163                         OrigMask[4], OrigMask[5], OrigMask[6], OrigMask[7]};
9164   MutableArrayRef<int> Mask(MaskStorage);
9165
9166   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
9167
9168   // Whenever we can lower this as a zext, that instruction is strictly faster
9169   // than any alternative.
9170   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(
9171           DL, MVT::v8i16, V1, V2, OrigMask, Subtarget, DAG))
9172     return ZExt;
9173
9174   auto isV1 = [](int M) { return M >= 0 && M < 8; };
9175   (void)isV1;
9176   auto isV2 = [](int M) { return M >= 8; };
9177
9178   int NumV2Inputs = std::count_if(Mask.begin(), Mask.end(), isV2);
9179
9180   if (NumV2Inputs == 0) {
9181     // Check for being able to broadcast a single element.
9182     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8i16, V1,
9183                                                           Mask, Subtarget, DAG))
9184       return Broadcast;
9185
9186     // Try to use shift instructions.
9187     if (SDValue Shift =
9188             lowerVectorShuffleAsShift(DL, MVT::v8i16, V1, V1, Mask, DAG))
9189       return Shift;
9190
9191     // Use dedicated unpack instructions for masks that match their pattern.
9192     if (isShuffleEquivalent(V1, V1, Mask, {0, 0, 1, 1, 2, 2, 3, 3}))
9193       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, V1, V1);
9194     if (isShuffleEquivalent(V1, V1, Mask, {4, 4, 5, 5, 6, 6, 7, 7}))
9195       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i16, V1, V1);
9196
9197     // Try to use byte rotation instructions.
9198     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(DL, MVT::v8i16, V1, V1,
9199                                                         Mask, Subtarget, DAG))
9200       return Rotate;
9201
9202     return lowerV8I16GeneralSingleInputVectorShuffle(DL, MVT::v8i16, V1, Mask,
9203                                                      Subtarget, DAG);
9204   }
9205
9206   assert(std::any_of(Mask.begin(), Mask.end(), isV1) &&
9207          "All single-input shuffles should be canonicalized to be V1-input "
9208          "shuffles.");
9209
9210   // Try to use shift instructions.
9211   if (SDValue Shift =
9212           lowerVectorShuffleAsShift(DL, MVT::v8i16, V1, V2, Mask, DAG))
9213     return Shift;
9214
9215   // See if we can use SSE4A Extraction / Insertion.
9216   if (Subtarget->hasSSE4A())
9217     if (SDValue V = lowerVectorShuffleWithSSE4A(DL, MVT::v8i16, V1, V2, Mask, DAG))
9218       return V;
9219
9220   // There are special ways we can lower some single-element blends.
9221   if (NumV2Inputs == 1)
9222     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v8i16, V1, V2,
9223                                                          Mask, Subtarget, DAG))
9224       return V;
9225
9226   // We have different paths for blend lowering, but they all must use the
9227   // *exact* same predicate.
9228   bool IsBlendSupported = Subtarget->hasSSE41();
9229   if (IsBlendSupported)
9230     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8i16, V1, V2, Mask,
9231                                                   Subtarget, DAG))
9232       return Blend;
9233
9234   if (SDValue Masked =
9235           lowerVectorShuffleAsBitMask(DL, MVT::v8i16, V1, V2, Mask, DAG))
9236     return Masked;
9237
9238   // Use dedicated unpack instructions for masks that match their pattern.
9239   if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 2, 10, 3, 11}))
9240     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, V1, V2);
9241   if (isShuffleEquivalent(V1, V2, Mask, {4, 12, 5, 13, 6, 14, 7, 15}))
9242     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i16, V1, V2);
9243
9244   // Try to use byte rotation instructions.
9245   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9246           DL, MVT::v8i16, V1, V2, Mask, Subtarget, DAG))
9247     return Rotate;
9248
9249   if (SDValue BitBlend =
9250           lowerVectorShuffleAsBitBlend(DL, MVT::v8i16, V1, V2, Mask, DAG))
9251     return BitBlend;
9252
9253   if (SDValue Unpack = lowerVectorShuffleAsPermuteAndUnpack(DL, MVT::v8i16, V1,
9254                                                             V2, Mask, DAG))
9255     return Unpack;
9256
9257   // If we can't directly blend but can use PSHUFB, that will be better as it
9258   // can both shuffle and set up the inefficient blend.
9259   if (!IsBlendSupported && Subtarget->hasSSSE3()) {
9260     bool V1InUse, V2InUse;
9261     return lowerVectorShuffleAsPSHUFB(DL, MVT::v8i16, V1, V2, Mask, DAG,
9262                                       V1InUse, V2InUse);
9263   }
9264
9265   // We can always bit-blend if we have to so the fallback strategy is to
9266   // decompose into single-input permutes and blends.
9267   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8i16, V1, V2,
9268                                                       Mask, DAG);
9269 }
9270
9271 /// \brief Check whether a compaction lowering can be done by dropping even
9272 /// elements and compute how many times even elements must be dropped.
9273 ///
9274 /// This handles shuffles which take every Nth element where N is a power of
9275 /// two. Example shuffle masks:
9276 ///
9277 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14,  0,  2,  4,  6,  8, 10, 12, 14
9278 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30
9279 ///  N = 2:  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12
9280 ///  N = 2:  0,  4,  8, 12, 16, 20, 24, 28,  0,  4,  8, 12, 16, 20, 24, 28
9281 ///  N = 3:  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8
9282 ///  N = 3:  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24
9283 ///
9284 /// Any of these lanes can of course be undef.
9285 ///
9286 /// This routine only supports N <= 3.
9287 /// FIXME: Evaluate whether either AVX or AVX-512 have any opportunities here
9288 /// for larger N.
9289 ///
9290 /// \returns N above, or the number of times even elements must be dropped if
9291 /// there is such a number. Otherwise returns zero.
9292 static int canLowerByDroppingEvenElements(ArrayRef<int> Mask) {
9293   // Figure out whether we're looping over two inputs or just one.
9294   bool IsSingleInput = isSingleInputShuffleMask(Mask);
9295
9296   // The modulus for the shuffle vector entries is based on whether this is
9297   // a single input or not.
9298   int ShuffleModulus = Mask.size() * (IsSingleInput ? 1 : 2);
9299   assert(isPowerOf2_32((uint32_t)ShuffleModulus) &&
9300          "We should only be called with masks with a power-of-2 size!");
9301
9302   uint64_t ModMask = (uint64_t)ShuffleModulus - 1;
9303
9304   // We track whether the input is viable for all power-of-2 strides 2^1, 2^2,
9305   // and 2^3 simultaneously. This is because we may have ambiguity with
9306   // partially undef inputs.
9307   bool ViableForN[3] = {true, true, true};
9308
9309   for (int i = 0, e = Mask.size(); i < e; ++i) {
9310     // Ignore undef lanes, we'll optimistically collapse them to the pattern we
9311     // want.
9312     if (Mask[i] == -1)
9313       continue;
9314
9315     bool IsAnyViable = false;
9316     for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
9317       if (ViableForN[j]) {
9318         uint64_t N = j + 1;
9319
9320         // The shuffle mask must be equal to (i * 2^N) % M.
9321         if ((uint64_t)Mask[i] == (((uint64_t)i << N) & ModMask))
9322           IsAnyViable = true;
9323         else
9324           ViableForN[j] = false;
9325       }
9326     // Early exit if we exhaust the possible powers of two.
9327     if (!IsAnyViable)
9328       break;
9329   }
9330
9331   for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
9332     if (ViableForN[j])
9333       return j + 1;
9334
9335   // Return 0 as there is no viable power of two.
9336   return 0;
9337 }
9338
9339 /// \brief Generic lowering of v16i8 shuffles.
9340 ///
9341 /// This is a hybrid strategy to lower v16i8 vectors. It first attempts to
9342 /// detect any complexity reducing interleaving. If that doesn't help, it uses
9343 /// UNPCK to spread the i8 elements across two i16-element vectors, and uses
9344 /// the existing lowering for v8i16 blends on each half, finally PACK-ing them
9345 /// back together.
9346 static SDValue lowerV16I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9347                                        const X86Subtarget *Subtarget,
9348                                        SelectionDAG &DAG) {
9349   SDLoc DL(Op);
9350   assert(Op.getSimpleValueType() == MVT::v16i8 && "Bad shuffle type!");
9351   assert(V1.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
9352   assert(V2.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
9353   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9354   ArrayRef<int> Mask = SVOp->getMask();
9355   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
9356
9357   // Try to use shift instructions.
9358   if (SDValue Shift =
9359           lowerVectorShuffleAsShift(DL, MVT::v16i8, V1, V2, Mask, DAG))
9360     return Shift;
9361
9362   // Try to use byte rotation instructions.
9363   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9364           DL, MVT::v16i8, V1, V2, Mask, Subtarget, DAG))
9365     return Rotate;
9366
9367   // Try to use a zext lowering.
9368   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(
9369           DL, MVT::v16i8, V1, V2, Mask, Subtarget, DAG))
9370     return ZExt;
9371
9372   // See if we can use SSE4A Extraction / Insertion.
9373   if (Subtarget->hasSSE4A())
9374     if (SDValue V = lowerVectorShuffleWithSSE4A(DL, MVT::v16i8, V1, V2, Mask, DAG))
9375       return V;
9376
9377   int NumV2Elements =
9378       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 16; });
9379
9380   // For single-input shuffles, there are some nicer lowering tricks we can use.
9381   if (NumV2Elements == 0) {
9382     // Check for being able to broadcast a single element.
9383     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v16i8, V1,
9384                                                           Mask, Subtarget, DAG))
9385       return Broadcast;
9386
9387     // Check whether we can widen this to an i16 shuffle by duplicating bytes.
9388     // Notably, this handles splat and partial-splat shuffles more efficiently.
9389     // However, it only makes sense if the pre-duplication shuffle simplifies
9390     // things significantly. Currently, this means we need to be able to
9391     // express the pre-duplication shuffle as an i16 shuffle.
9392     //
9393     // FIXME: We should check for other patterns which can be widened into an
9394     // i16 shuffle as well.
9395     auto canWidenViaDuplication = [](ArrayRef<int> Mask) {
9396       for (int i = 0; i < 16; i += 2)
9397         if (Mask[i] != -1 && Mask[i + 1] != -1 && Mask[i] != Mask[i + 1])
9398           return false;
9399
9400       return true;
9401     };
9402     auto tryToWidenViaDuplication = [&]() -> SDValue {
9403       if (!canWidenViaDuplication(Mask))
9404         return SDValue();
9405       SmallVector<int, 4> LoInputs;
9406       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(LoInputs),
9407                    [](int M) { return M >= 0 && M < 8; });
9408       std::sort(LoInputs.begin(), LoInputs.end());
9409       LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()),
9410                      LoInputs.end());
9411       SmallVector<int, 4> HiInputs;
9412       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(HiInputs),
9413                    [](int M) { return M >= 8; });
9414       std::sort(HiInputs.begin(), HiInputs.end());
9415       HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()),
9416                      HiInputs.end());
9417
9418       bool TargetLo = LoInputs.size() >= HiInputs.size();
9419       ArrayRef<int> InPlaceInputs = TargetLo ? LoInputs : HiInputs;
9420       ArrayRef<int> MovingInputs = TargetLo ? HiInputs : LoInputs;
9421
9422       int PreDupI16Shuffle[] = {-1, -1, -1, -1, -1, -1, -1, -1};
9423       SmallDenseMap<int, int, 8> LaneMap;
9424       for (int I : InPlaceInputs) {
9425         PreDupI16Shuffle[I/2] = I/2;
9426         LaneMap[I] = I;
9427       }
9428       int j = TargetLo ? 0 : 4, je = j + 4;
9429       for (int i = 0, ie = MovingInputs.size(); i < ie; ++i) {
9430         // Check if j is already a shuffle of this input. This happens when
9431         // there are two adjacent bytes after we move the low one.
9432         if (PreDupI16Shuffle[j] != MovingInputs[i] / 2) {
9433           // If we haven't yet mapped the input, search for a slot into which
9434           // we can map it.
9435           while (j < je && PreDupI16Shuffle[j] != -1)
9436             ++j;
9437
9438           if (j == je)
9439             // We can't place the inputs into a single half with a simple i16 shuffle, so bail.
9440             return SDValue();
9441
9442           // Map this input with the i16 shuffle.
9443           PreDupI16Shuffle[j] = MovingInputs[i] / 2;
9444         }
9445
9446         // Update the lane map based on the mapping we ended up with.
9447         LaneMap[MovingInputs[i]] = 2 * j + MovingInputs[i] % 2;
9448       }
9449       V1 = DAG.getBitcast(
9450           MVT::v16i8,
9451           DAG.getVectorShuffle(MVT::v8i16, DL, DAG.getBitcast(MVT::v8i16, V1),
9452                                DAG.getUNDEF(MVT::v8i16), PreDupI16Shuffle));
9453
9454       // Unpack the bytes to form the i16s that will be shuffled into place.
9455       V1 = DAG.getNode(TargetLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
9456                        MVT::v16i8, V1, V1);
9457
9458       int PostDupI16Shuffle[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
9459       for (int i = 0; i < 16; ++i)
9460         if (Mask[i] != -1) {
9461           int MappedMask = LaneMap[Mask[i]] - (TargetLo ? 0 : 8);
9462           assert(MappedMask < 8 && "Invalid v8 shuffle mask!");
9463           if (PostDupI16Shuffle[i / 2] == -1)
9464             PostDupI16Shuffle[i / 2] = MappedMask;
9465           else
9466             assert(PostDupI16Shuffle[i / 2] == MappedMask &&
9467                    "Conflicting entrties in the original shuffle!");
9468         }
9469       return DAG.getBitcast(
9470           MVT::v16i8,
9471           DAG.getVectorShuffle(MVT::v8i16, DL, DAG.getBitcast(MVT::v8i16, V1),
9472                                DAG.getUNDEF(MVT::v8i16), PostDupI16Shuffle));
9473     };
9474     if (SDValue V = tryToWidenViaDuplication())
9475       return V;
9476   }
9477
9478   if (SDValue Masked =
9479           lowerVectorShuffleAsBitMask(DL, MVT::v16i8, V1, V2, Mask, DAG))
9480     return Masked;
9481
9482   // Use dedicated unpack instructions for masks that match their pattern.
9483   if (isShuffleEquivalent(V1, V2, Mask, {// Low half.
9484                                          0, 16, 1, 17, 2, 18, 3, 19,
9485                                          // High half.
9486                                          4, 20, 5, 21, 6, 22, 7, 23}))
9487     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V1, V2);
9488   if (isShuffleEquivalent(V1, V2, Mask, {// Low half.
9489                                          8, 24, 9, 25, 10, 26, 11, 27,
9490                                          // High half.
9491                                          12, 28, 13, 29, 14, 30, 15, 31}))
9492     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V1, V2);
9493
9494   // Check for SSSE3 which lets us lower all v16i8 shuffles much more directly
9495   // with PSHUFB. It is important to do this before we attempt to generate any
9496   // blends but after all of the single-input lowerings. If the single input
9497   // lowerings can find an instruction sequence that is faster than a PSHUFB, we
9498   // want to preserve that and we can DAG combine any longer sequences into
9499   // a PSHUFB in the end. But once we start blending from multiple inputs,
9500   // the complexity of DAG combining bad patterns back into PSHUFB is too high,
9501   // and there are *very* few patterns that would actually be faster than the
9502   // PSHUFB approach because of its ability to zero lanes.
9503   //
9504   // FIXME: The only exceptions to the above are blends which are exact
9505   // interleavings with direct instructions supporting them. We currently don't
9506   // handle those well here.
9507   if (Subtarget->hasSSSE3()) {
9508     bool V1InUse = false;
9509     bool V2InUse = false;
9510
9511     SDValue PSHUFB = lowerVectorShuffleAsPSHUFB(DL, MVT::v16i8, V1, V2, Mask,
9512                                                 DAG, V1InUse, V2InUse);
9513
9514     // If both V1 and V2 are in use and we can use a direct blend or an unpack,
9515     // do so. This avoids using them to handle blends-with-zero which is
9516     // important as a single pshufb is significantly faster for that.
9517     if (V1InUse && V2InUse) {
9518       if (Subtarget->hasSSE41())
9519         if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v16i8, V1, V2,
9520                                                       Mask, Subtarget, DAG))
9521           return Blend;
9522
9523       // We can use an unpack to do the blending rather than an or in some
9524       // cases. Even though the or may be (very minorly) more efficient, we
9525       // preference this lowering because there are common cases where part of
9526       // the complexity of the shuffles goes away when we do the final blend as
9527       // an unpack.
9528       // FIXME: It might be worth trying to detect if the unpack-feeding
9529       // shuffles will both be pshufb, in which case we shouldn't bother with
9530       // this.
9531       if (SDValue Unpack = lowerVectorShuffleAsPermuteAndUnpack(
9532               DL, MVT::v16i8, V1, V2, Mask, DAG))
9533         return Unpack;
9534     }
9535
9536     return PSHUFB;
9537   }
9538
9539   // There are special ways we can lower some single-element blends.
9540   if (NumV2Elements == 1)
9541     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v16i8, V1, V2,
9542                                                          Mask, Subtarget, DAG))
9543       return V;
9544
9545   if (SDValue BitBlend =
9546           lowerVectorShuffleAsBitBlend(DL, MVT::v16i8, V1, V2, Mask, DAG))
9547     return BitBlend;
9548
9549   // Check whether a compaction lowering can be done. This handles shuffles
9550   // which take every Nth element for some even N. See the helper function for
9551   // details.
9552   //
9553   // We special case these as they can be particularly efficiently handled with
9554   // the PACKUSB instruction on x86 and they show up in common patterns of
9555   // rearranging bytes to truncate wide elements.
9556   if (int NumEvenDrops = canLowerByDroppingEvenElements(Mask)) {
9557     // NumEvenDrops is the power of two stride of the elements. Another way of
9558     // thinking about it is that we need to drop the even elements this many
9559     // times to get the original input.
9560     bool IsSingleInput = isSingleInputShuffleMask(Mask);
9561
9562     // First we need to zero all the dropped bytes.
9563     assert(NumEvenDrops <= 3 &&
9564            "No support for dropping even elements more than 3 times.");
9565     // We use the mask type to pick which bytes are preserved based on how many
9566     // elements are dropped.
9567     MVT MaskVTs[] = { MVT::v8i16, MVT::v4i32, MVT::v2i64 };
9568     SDValue ByteClearMask = DAG.getBitcast(
9569         MVT::v16i8, DAG.getConstant(0xFF, DL, MaskVTs[NumEvenDrops - 1]));
9570     V1 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V1, ByteClearMask);
9571     if (!IsSingleInput)
9572       V2 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V2, ByteClearMask);
9573
9574     // Now pack things back together.
9575     V1 = DAG.getBitcast(MVT::v8i16, V1);
9576     V2 = IsSingleInput ? V1 : DAG.getBitcast(MVT::v8i16, V2);
9577     SDValue Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, V1, V2);
9578     for (int i = 1; i < NumEvenDrops; ++i) {
9579       Result = DAG.getBitcast(MVT::v8i16, Result);
9580       Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, Result, Result);
9581     }
9582
9583     return Result;
9584   }
9585
9586   // Handle multi-input cases by blending single-input shuffles.
9587   if (NumV2Elements > 0)
9588     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v16i8, V1, V2,
9589                                                       Mask, DAG);
9590
9591   // The fallback path for single-input shuffles widens this into two v8i16
9592   // vectors with unpacks, shuffles those, and then pulls them back together
9593   // with a pack.
9594   SDValue V = V1;
9595
9596   int LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
9597   int HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
9598   for (int i = 0; i < 16; ++i)
9599     if (Mask[i] >= 0)
9600       (i < 8 ? LoBlendMask[i] : HiBlendMask[i % 8]) = Mask[i];
9601
9602   SDValue Zero = getZeroVector(MVT::v8i16, Subtarget, DAG, DL);
9603
9604   SDValue VLoHalf, VHiHalf;
9605   // Check if any of the odd lanes in the v16i8 are used. If not, we can mask
9606   // them out and avoid using UNPCK{L,H} to extract the elements of V as
9607   // i16s.
9608   if (std::none_of(std::begin(LoBlendMask), std::end(LoBlendMask),
9609                    [](int M) { return M >= 0 && M % 2 == 1; }) &&
9610       std::none_of(std::begin(HiBlendMask), std::end(HiBlendMask),
9611                    [](int M) { return M >= 0 && M % 2 == 1; })) {
9612     // Use a mask to drop the high bytes.
9613     VLoHalf = DAG.getBitcast(MVT::v8i16, V);
9614     VLoHalf = DAG.getNode(ISD::AND, DL, MVT::v8i16, VLoHalf,
9615                      DAG.getConstant(0x00FF, DL, MVT::v8i16));
9616
9617     // This will be a single vector shuffle instead of a blend so nuke VHiHalf.
9618     VHiHalf = DAG.getUNDEF(MVT::v8i16);
9619
9620     // Squash the masks to point directly into VLoHalf.
9621     for (int &M : LoBlendMask)
9622       if (M >= 0)
9623         M /= 2;
9624     for (int &M : HiBlendMask)
9625       if (M >= 0)
9626         M /= 2;
9627   } else {
9628     // Otherwise just unpack the low half of V into VLoHalf and the high half into
9629     // VHiHalf so that we can blend them as i16s.
9630     VLoHalf = DAG.getBitcast(
9631         MVT::v8i16, DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V, Zero));
9632     VHiHalf = DAG.getBitcast(
9633         MVT::v8i16, DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V, Zero));
9634   }
9635
9636   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, VLoHalf, VHiHalf, LoBlendMask);
9637   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, VLoHalf, VHiHalf, HiBlendMask);
9638
9639   return DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, LoV, HiV);
9640 }
9641
9642 /// \brief Dispatching routine to lower various 128-bit x86 vector shuffles.
9643 ///
9644 /// This routine breaks down the specific type of 128-bit shuffle and
9645 /// dispatches to the lowering routines accordingly.
9646 static SDValue lower128BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9647                                         MVT VT, const X86Subtarget *Subtarget,
9648                                         SelectionDAG &DAG) {
9649   switch (VT.SimpleTy) {
9650   case MVT::v2i64:
9651     return lowerV2I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
9652   case MVT::v2f64:
9653     return lowerV2F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
9654   case MVT::v4i32:
9655     return lowerV4I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
9656   case MVT::v4f32:
9657     return lowerV4F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
9658   case MVT::v8i16:
9659     return lowerV8I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
9660   case MVT::v16i8:
9661     return lowerV16I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
9662
9663   default:
9664     llvm_unreachable("Unimplemented!");
9665   }
9666 }
9667
9668 /// \brief Helper function to test whether a shuffle mask could be
9669 /// simplified by widening the elements being shuffled.
9670 ///
9671 /// Appends the mask for wider elements in WidenedMask if valid. Otherwise
9672 /// leaves it in an unspecified state.
9673 ///
9674 /// NOTE: This must handle normal vector shuffle masks and *target* vector
9675 /// shuffle masks. The latter have the special property of a '-2' representing
9676 /// a zero-ed lane of a vector.
9677 static bool canWidenShuffleElements(ArrayRef<int> Mask,
9678                                     SmallVectorImpl<int> &WidenedMask) {
9679   for (int i = 0, Size = Mask.size(); i < Size; i += 2) {
9680     // If both elements are undef, its trivial.
9681     if (Mask[i] == SM_SentinelUndef && Mask[i + 1] == SM_SentinelUndef) {
9682       WidenedMask.push_back(SM_SentinelUndef);
9683       continue;
9684     }
9685
9686     // Check for an undef mask and a mask value properly aligned to fit with
9687     // a pair of values. If we find such a case, use the non-undef mask's value.
9688     if (Mask[i] == SM_SentinelUndef && Mask[i + 1] >= 0 && Mask[i + 1] % 2 == 1) {
9689       WidenedMask.push_back(Mask[i + 1] / 2);
9690       continue;
9691     }
9692     if (Mask[i + 1] == SM_SentinelUndef && Mask[i] >= 0 && Mask[i] % 2 == 0) {
9693       WidenedMask.push_back(Mask[i] / 2);
9694       continue;
9695     }
9696
9697     // When zeroing, we need to spread the zeroing across both lanes to widen.
9698     if (Mask[i] == SM_SentinelZero || Mask[i + 1] == SM_SentinelZero) {
9699       if ((Mask[i] == SM_SentinelZero || Mask[i] == SM_SentinelUndef) &&
9700           (Mask[i + 1] == SM_SentinelZero || Mask[i + 1] == SM_SentinelUndef)) {
9701         WidenedMask.push_back(SM_SentinelZero);
9702         continue;
9703       }
9704       return false;
9705     }
9706
9707     // Finally check if the two mask values are adjacent and aligned with
9708     // a pair.
9709     if (Mask[i] != SM_SentinelUndef && Mask[i] % 2 == 0 && Mask[i] + 1 == Mask[i + 1]) {
9710       WidenedMask.push_back(Mask[i] / 2);
9711       continue;
9712     }
9713
9714     // Otherwise we can't safely widen the elements used in this shuffle.
9715     return false;
9716   }
9717   assert(WidenedMask.size() == Mask.size() / 2 &&
9718          "Incorrect size of mask after widening the elements!");
9719
9720   return true;
9721 }
9722
9723 /// \brief Generic routine to split vector shuffle into half-sized shuffles.
9724 ///
9725 /// This routine just extracts two subvectors, shuffles them independently, and
9726 /// then concatenates them back together. This should work effectively with all
9727 /// AVX vector shuffle types.
9728 static SDValue splitAndLowerVectorShuffle(SDLoc DL, MVT VT, SDValue V1,
9729                                           SDValue V2, ArrayRef<int> Mask,
9730                                           SelectionDAG &DAG) {
9731   assert(VT.getSizeInBits() >= 256 &&
9732          "Only for 256-bit or wider vector shuffles!");
9733   assert(V1.getSimpleValueType() == VT && "Bad operand type!");
9734   assert(V2.getSimpleValueType() == VT && "Bad operand type!");
9735
9736   ArrayRef<int> LoMask = Mask.slice(0, Mask.size() / 2);
9737   ArrayRef<int> HiMask = Mask.slice(Mask.size() / 2);
9738
9739   int NumElements = VT.getVectorNumElements();
9740   int SplitNumElements = NumElements / 2;
9741   MVT ScalarVT = VT.getScalarType();
9742   MVT SplitVT = MVT::getVectorVT(ScalarVT, NumElements / 2);
9743
9744   // Rather than splitting build-vectors, just build two narrower build
9745   // vectors. This helps shuffling with splats and zeros.
9746   auto SplitVector = [&](SDValue V) {
9747     while (V.getOpcode() == ISD::BITCAST)
9748       V = V->getOperand(0);
9749
9750     MVT OrigVT = V.getSimpleValueType();
9751     int OrigNumElements = OrigVT.getVectorNumElements();
9752     int OrigSplitNumElements = OrigNumElements / 2;
9753     MVT OrigScalarVT = OrigVT.getScalarType();
9754     MVT OrigSplitVT = MVT::getVectorVT(OrigScalarVT, OrigNumElements / 2);
9755
9756     SDValue LoV, HiV;
9757
9758     auto *BV = dyn_cast<BuildVectorSDNode>(V);
9759     if (!BV) {
9760       LoV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigSplitVT, V,
9761                         DAG.getIntPtrConstant(0, DL));
9762       HiV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigSplitVT, V,
9763                         DAG.getIntPtrConstant(OrigSplitNumElements, DL));
9764     } else {
9765
9766       SmallVector<SDValue, 16> LoOps, HiOps;
9767       for (int i = 0; i < OrigSplitNumElements; ++i) {
9768         LoOps.push_back(BV->getOperand(i));
9769         HiOps.push_back(BV->getOperand(i + OrigSplitNumElements));
9770       }
9771       LoV = DAG.getNode(ISD::BUILD_VECTOR, DL, OrigSplitVT, LoOps);
9772       HiV = DAG.getNode(ISD::BUILD_VECTOR, DL, OrigSplitVT, HiOps);
9773     }
9774     return std::make_pair(DAG.getBitcast(SplitVT, LoV),
9775                           DAG.getBitcast(SplitVT, HiV));
9776   };
9777
9778   SDValue LoV1, HiV1, LoV2, HiV2;
9779   std::tie(LoV1, HiV1) = SplitVector(V1);
9780   std::tie(LoV2, HiV2) = SplitVector(V2);
9781
9782   // Now create two 4-way blends of these half-width vectors.
9783   auto HalfBlend = [&](ArrayRef<int> HalfMask) {
9784     bool UseLoV1 = false, UseHiV1 = false, UseLoV2 = false, UseHiV2 = false;
9785     SmallVector<int, 32> V1BlendMask, V2BlendMask, BlendMask;
9786     for (int i = 0; i < SplitNumElements; ++i) {
9787       int M = HalfMask[i];
9788       if (M >= NumElements) {
9789         if (M >= NumElements + SplitNumElements)
9790           UseHiV2 = true;
9791         else
9792           UseLoV2 = true;
9793         V2BlendMask.push_back(M - NumElements);
9794         V1BlendMask.push_back(-1);
9795         BlendMask.push_back(SplitNumElements + i);
9796       } else if (M >= 0) {
9797         if (M >= SplitNumElements)
9798           UseHiV1 = true;
9799         else
9800           UseLoV1 = true;
9801         V2BlendMask.push_back(-1);
9802         V1BlendMask.push_back(M);
9803         BlendMask.push_back(i);
9804       } else {
9805         V2BlendMask.push_back(-1);
9806         V1BlendMask.push_back(-1);
9807         BlendMask.push_back(-1);
9808       }
9809     }
9810
9811     // Because the lowering happens after all combining takes place, we need to
9812     // manually combine these blend masks as much as possible so that we create
9813     // a minimal number of high-level vector shuffle nodes.
9814
9815     // First try just blending the halves of V1 or V2.
9816     if (!UseLoV1 && !UseHiV1 && !UseLoV2 && !UseHiV2)
9817       return DAG.getUNDEF(SplitVT);
9818     if (!UseLoV2 && !UseHiV2)
9819       return DAG.getVectorShuffle(SplitVT, DL, LoV1, HiV1, V1BlendMask);
9820     if (!UseLoV1 && !UseHiV1)
9821       return DAG.getVectorShuffle(SplitVT, DL, LoV2, HiV2, V2BlendMask);
9822
9823     SDValue V1Blend, V2Blend;
9824     if (UseLoV1 && UseHiV1) {
9825       V1Blend =
9826         DAG.getVectorShuffle(SplitVT, DL, LoV1, HiV1, V1BlendMask);
9827     } else {
9828       // We only use half of V1 so map the usage down into the final blend mask.
9829       V1Blend = UseLoV1 ? LoV1 : HiV1;
9830       for (int i = 0; i < SplitNumElements; ++i)
9831         if (BlendMask[i] >= 0 && BlendMask[i] < SplitNumElements)
9832           BlendMask[i] = V1BlendMask[i] - (UseLoV1 ? 0 : SplitNumElements);
9833     }
9834     if (UseLoV2 && UseHiV2) {
9835       V2Blend =
9836         DAG.getVectorShuffle(SplitVT, DL, LoV2, HiV2, V2BlendMask);
9837     } else {
9838       // We only use half of V2 so map the usage down into the final blend mask.
9839       V2Blend = UseLoV2 ? LoV2 : HiV2;
9840       for (int i = 0; i < SplitNumElements; ++i)
9841         if (BlendMask[i] >= SplitNumElements)
9842           BlendMask[i] = V2BlendMask[i] + (UseLoV2 ? SplitNumElements : 0);
9843     }
9844     return DAG.getVectorShuffle(SplitVT, DL, V1Blend, V2Blend, BlendMask);
9845   };
9846   SDValue Lo = HalfBlend(LoMask);
9847   SDValue Hi = HalfBlend(HiMask);
9848   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi);
9849 }
9850
9851 /// \brief Either split a vector in halves or decompose the shuffles and the
9852 /// blend.
9853 ///
9854 /// This is provided as a good fallback for many lowerings of non-single-input
9855 /// shuffles with more than one 128-bit lane. In those cases, we want to select
9856 /// between splitting the shuffle into 128-bit components and stitching those
9857 /// back together vs. extracting the single-input shuffles and blending those
9858 /// results.
9859 static SDValue lowerVectorShuffleAsSplitOrBlend(SDLoc DL, MVT VT, SDValue V1,
9860                                                 SDValue V2, ArrayRef<int> Mask,
9861                                                 SelectionDAG &DAG) {
9862   assert(!isSingleInputShuffleMask(Mask) && "This routine must not be used to "
9863                                             "lower single-input shuffles as it "
9864                                             "could then recurse on itself.");
9865   int Size = Mask.size();
9866
9867   // If this can be modeled as a broadcast of two elements followed by a blend,
9868   // prefer that lowering. This is especially important because broadcasts can
9869   // often fold with memory operands.
9870   auto DoBothBroadcast = [&] {
9871     int V1BroadcastIdx = -1, V2BroadcastIdx = -1;
9872     for (int M : Mask)
9873       if (M >= Size) {
9874         if (V2BroadcastIdx == -1)
9875           V2BroadcastIdx = M - Size;
9876         else if (M - Size != V2BroadcastIdx)
9877           return false;
9878       } else if (M >= 0) {
9879         if (V1BroadcastIdx == -1)
9880           V1BroadcastIdx = M;
9881         else if (M != V1BroadcastIdx)
9882           return false;
9883       }
9884     return true;
9885   };
9886   if (DoBothBroadcast())
9887     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask,
9888                                                       DAG);
9889
9890   // If the inputs all stem from a single 128-bit lane of each input, then we
9891   // split them rather than blending because the split will decompose to
9892   // unusually few instructions.
9893   int LaneCount = VT.getSizeInBits() / 128;
9894   int LaneSize = Size / LaneCount;
9895   SmallBitVector LaneInputs[2];
9896   LaneInputs[0].resize(LaneCount, false);
9897   LaneInputs[1].resize(LaneCount, false);
9898   for (int i = 0; i < Size; ++i)
9899     if (Mask[i] >= 0)
9900       LaneInputs[Mask[i] / Size][(Mask[i] % Size) / LaneSize] = true;
9901   if (LaneInputs[0].count() <= 1 && LaneInputs[1].count() <= 1)
9902     return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
9903
9904   // Otherwise, just fall back to decomposed shuffles and a blend. This requires
9905   // that the decomposed single-input shuffles don't end up here.
9906   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask, DAG);
9907 }
9908
9909 /// \brief Lower a vector shuffle crossing multiple 128-bit lanes as
9910 /// a permutation and blend of those lanes.
9911 ///
9912 /// This essentially blends the out-of-lane inputs to each lane into the lane
9913 /// from a permuted copy of the vector. This lowering strategy results in four
9914 /// instructions in the worst case for a single-input cross lane shuffle which
9915 /// is lower than any other fully general cross-lane shuffle strategy I'm aware
9916 /// of. Special cases for each particular shuffle pattern should be handled
9917 /// prior to trying this lowering.
9918 static SDValue lowerVectorShuffleAsLanePermuteAndBlend(SDLoc DL, MVT VT,
9919                                                        SDValue V1, SDValue V2,
9920                                                        ArrayRef<int> Mask,
9921                                                        SelectionDAG &DAG) {
9922   // FIXME: This should probably be generalized for 512-bit vectors as well.
9923   assert(VT.getSizeInBits() == 256 && "Only for 256-bit vector shuffles!");
9924   int LaneSize = Mask.size() / 2;
9925
9926   // If there are only inputs from one 128-bit lane, splitting will in fact be
9927   // less expensive. The flags track whether the given lane contains an element
9928   // that crosses to another lane.
9929   bool LaneCrossing[2] = {false, false};
9930   for (int i = 0, Size = Mask.size(); i < Size; ++i)
9931     if (Mask[i] >= 0 && (Mask[i] % Size) / LaneSize != i / LaneSize)
9932       LaneCrossing[(Mask[i] % Size) / LaneSize] = true;
9933   if (!LaneCrossing[0] || !LaneCrossing[1])
9934     return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
9935
9936   if (isSingleInputShuffleMask(Mask)) {
9937     SmallVector<int, 32> FlippedBlendMask;
9938     for (int i = 0, Size = Mask.size(); i < Size; ++i)
9939       FlippedBlendMask.push_back(
9940           Mask[i] < 0 ? -1 : (((Mask[i] % Size) / LaneSize == i / LaneSize)
9941                                   ? Mask[i]
9942                                   : Mask[i] % LaneSize +
9943                                         (i / LaneSize) * LaneSize + Size));
9944
9945     // Flip the vector, and blend the results which should now be in-lane. The
9946     // VPERM2X128 mask uses the low 2 bits for the low source and bits 4 and
9947     // 5 for the high source. The value 3 selects the high half of source 2 and
9948     // the value 2 selects the low half of source 2. We only use source 2 to
9949     // allow folding it into a memory operand.
9950     unsigned PERMMask = 3 | 2 << 4;
9951     SDValue Flipped = DAG.getNode(X86ISD::VPERM2X128, DL, VT, DAG.getUNDEF(VT),
9952                                   V1, DAG.getConstant(PERMMask, DL, MVT::i8));
9953     return DAG.getVectorShuffle(VT, DL, V1, Flipped, FlippedBlendMask);
9954   }
9955
9956   // This now reduces to two single-input shuffles of V1 and V2 which at worst
9957   // will be handled by the above logic and a blend of the results, much like
9958   // other patterns in AVX.
9959   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask, DAG);
9960 }
9961
9962 /// \brief Handle lowering 2-lane 128-bit shuffles.
9963 static SDValue lowerV2X128VectorShuffle(SDLoc DL, MVT VT, SDValue V1,
9964                                         SDValue V2, ArrayRef<int> Mask,
9965                                         const X86Subtarget *Subtarget,
9966                                         SelectionDAG &DAG) {
9967   // TODO: If minimizing size and one of the inputs is a zero vector and the
9968   // the zero vector has only one use, we could use a VPERM2X128 to save the
9969   // instruction bytes needed to explicitly generate the zero vector.
9970
9971   // Blends are faster and handle all the non-lane-crossing cases.
9972   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, VT, V1, V2, Mask,
9973                                                 Subtarget, DAG))
9974     return Blend;
9975
9976   bool IsV1Zero = ISD::isBuildVectorAllZeros(V1.getNode());
9977   bool IsV2Zero = ISD::isBuildVectorAllZeros(V2.getNode());
9978
9979   // If either input operand is a zero vector, use VPERM2X128 because its mask
9980   // allows us to replace the zero input with an implicit zero.
9981   if (!IsV1Zero && !IsV2Zero) {
9982     // Check for patterns which can be matched with a single insert of a 128-bit
9983     // subvector.
9984     bool OnlyUsesV1 = isShuffleEquivalent(V1, V2, Mask, {0, 1, 0, 1});
9985     if (OnlyUsesV1 || isShuffleEquivalent(V1, V2, Mask, {0, 1, 4, 5})) {
9986       MVT SubVT = MVT::getVectorVT(VT.getVectorElementType(),
9987                                    VT.getVectorNumElements() / 2);
9988       SDValue LoV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVT, V1,
9989                                 DAG.getIntPtrConstant(0, DL));
9990       SDValue HiV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVT,
9991                                 OnlyUsesV1 ? V1 : V2,
9992                                 DAG.getIntPtrConstant(0, DL));
9993       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LoV, HiV);
9994     }
9995   }
9996
9997   // Otherwise form a 128-bit permutation. After accounting for undefs,
9998   // convert the 64-bit shuffle mask selection values into 128-bit
9999   // selection bits by dividing the indexes by 2 and shifting into positions
10000   // defined by a vperm2*128 instruction's immediate control byte.
10001
10002   // The immediate permute control byte looks like this:
10003   //    [1:0] - select 128 bits from sources for low half of destination
10004   //    [2]   - ignore
10005   //    [3]   - zero low half of destination
10006   //    [5:4] - select 128 bits from sources for high half of destination
10007   //    [6]   - ignore
10008   //    [7]   - zero high half of destination
10009
10010   int MaskLO = Mask[0];
10011   if (MaskLO == SM_SentinelUndef)
10012     MaskLO = Mask[1] == SM_SentinelUndef ? 0 : Mask[1];
10013
10014   int MaskHI = Mask[2];
10015   if (MaskHI == SM_SentinelUndef)
10016     MaskHI = Mask[3] == SM_SentinelUndef ? 0 : Mask[3];
10017
10018   unsigned PermMask = MaskLO / 2 | (MaskHI / 2) << 4;
10019
10020   // If either input is a zero vector, replace it with an undef input.
10021   // Shuffle mask values <  4 are selecting elements of V1.
10022   // Shuffle mask values >= 4 are selecting elements of V2.
10023   // Adjust each half of the permute mask by clearing the half that was
10024   // selecting the zero vector and setting the zero mask bit.
10025   if (IsV1Zero) {
10026     V1 = DAG.getUNDEF(VT);
10027     if (MaskLO < 4)
10028       PermMask = (PermMask & 0xf0) | 0x08;
10029     if (MaskHI < 4)
10030       PermMask = (PermMask & 0x0f) | 0x80;
10031   }
10032   if (IsV2Zero) {
10033     V2 = DAG.getUNDEF(VT);
10034     if (MaskLO >= 4)
10035       PermMask = (PermMask & 0xf0) | 0x08;
10036     if (MaskHI >= 4)
10037       PermMask = (PermMask & 0x0f) | 0x80;
10038   }
10039
10040   return DAG.getNode(X86ISD::VPERM2X128, DL, VT, V1, V2,
10041                      DAG.getConstant(PermMask, DL, MVT::i8));
10042 }
10043
10044 /// \brief Lower a vector shuffle by first fixing the 128-bit lanes and then
10045 /// shuffling each lane.
10046 ///
10047 /// This will only succeed when the result of fixing the 128-bit lanes results
10048 /// in a single-input non-lane-crossing shuffle with a repeating shuffle mask in
10049 /// each 128-bit lanes. This handles many cases where we can quickly blend away
10050 /// the lane crosses early and then use simpler shuffles within each lane.
10051 ///
10052 /// FIXME: It might be worthwhile at some point to support this without
10053 /// requiring the 128-bit lane-relative shuffles to be repeating, but currently
10054 /// in x86 only floating point has interesting non-repeating shuffles, and even
10055 /// those are still *marginally* more expensive.
10056 static SDValue lowerVectorShuffleByMerging128BitLanes(
10057     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
10058     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
10059   assert(!isSingleInputShuffleMask(Mask) &&
10060          "This is only useful with multiple inputs.");
10061
10062   int Size = Mask.size();
10063   int LaneSize = 128 / VT.getScalarSizeInBits();
10064   int NumLanes = Size / LaneSize;
10065   assert(NumLanes > 1 && "Only handles 256-bit and wider shuffles.");
10066
10067   // See if we can build a hypothetical 128-bit lane-fixing shuffle mask. Also
10068   // check whether the in-128-bit lane shuffles share a repeating pattern.
10069   SmallVector<int, 4> Lanes;
10070   Lanes.resize(NumLanes, -1);
10071   SmallVector<int, 4> InLaneMask;
10072   InLaneMask.resize(LaneSize, -1);
10073   for (int i = 0; i < Size; ++i) {
10074     if (Mask[i] < 0)
10075       continue;
10076
10077     int j = i / LaneSize;
10078
10079     if (Lanes[j] < 0) {
10080       // First entry we've seen for this lane.
10081       Lanes[j] = Mask[i] / LaneSize;
10082     } else if (Lanes[j] != Mask[i] / LaneSize) {
10083       // This doesn't match the lane selected previously!
10084       return SDValue();
10085     }
10086
10087     // Check that within each lane we have a consistent shuffle mask.
10088     int k = i % LaneSize;
10089     if (InLaneMask[k] < 0) {
10090       InLaneMask[k] = Mask[i] % LaneSize;
10091     } else if (InLaneMask[k] != Mask[i] % LaneSize) {
10092       // This doesn't fit a repeating in-lane mask.
10093       return SDValue();
10094     }
10095   }
10096
10097   // First shuffle the lanes into place.
10098   MVT LaneVT = MVT::getVectorVT(VT.isFloatingPoint() ? MVT::f64 : MVT::i64,
10099                                 VT.getSizeInBits() / 64);
10100   SmallVector<int, 8> LaneMask;
10101   LaneMask.resize(NumLanes * 2, -1);
10102   for (int i = 0; i < NumLanes; ++i)
10103     if (Lanes[i] >= 0) {
10104       LaneMask[2 * i + 0] = 2*Lanes[i] + 0;
10105       LaneMask[2 * i + 1] = 2*Lanes[i] + 1;
10106     }
10107
10108   V1 = DAG.getBitcast(LaneVT, V1);
10109   V2 = DAG.getBitcast(LaneVT, V2);
10110   SDValue LaneShuffle = DAG.getVectorShuffle(LaneVT, DL, V1, V2, LaneMask);
10111
10112   // Cast it back to the type we actually want.
10113   LaneShuffle = DAG.getBitcast(VT, LaneShuffle);
10114
10115   // Now do a simple shuffle that isn't lane crossing.
10116   SmallVector<int, 8> NewMask;
10117   NewMask.resize(Size, -1);
10118   for (int i = 0; i < Size; ++i)
10119     if (Mask[i] >= 0)
10120       NewMask[i] = (i / LaneSize) * LaneSize + Mask[i] % LaneSize;
10121   assert(!is128BitLaneCrossingShuffleMask(VT, NewMask) &&
10122          "Must not introduce lane crosses at this point!");
10123
10124   return DAG.getVectorShuffle(VT, DL, LaneShuffle, DAG.getUNDEF(VT), NewMask);
10125 }
10126
10127 /// \brief Test whether the specified input (0 or 1) is in-place blended by the
10128 /// given mask.
10129 ///
10130 /// This returns true if the elements from a particular input are already in the
10131 /// slot required by the given mask and require no permutation.
10132 static bool isShuffleMaskInputInPlace(int Input, ArrayRef<int> Mask) {
10133   assert((Input == 0 || Input == 1) && "Only two inputs to shuffles.");
10134   int Size = Mask.size();
10135   for (int i = 0; i < Size; ++i)
10136     if (Mask[i] >= 0 && Mask[i] / Size == Input && Mask[i] % Size != i)
10137       return false;
10138
10139   return true;
10140 }
10141
10142 static SDValue lowerVectorShuffleWithSHUFPD(SDLoc DL, MVT VT,
10143                                             ArrayRef<int> Mask, SDValue V1,
10144                                             SDValue V2, SelectionDAG &DAG) {
10145
10146   // Mask for V8F64: 0/1,  8/9,  2/3,  10/11, 4/5, ..
10147   // Mask for V4F64; 0/1,  4/5,  2/3,  6/7..
10148   assert(VT.getScalarSizeInBits() == 64 && "Unexpected data type for VSHUFPD");
10149   int NumElts = VT.getVectorNumElements();
10150   bool ShufpdMask = true;
10151   bool CommutableMask = true;
10152   unsigned Immediate = 0;
10153   for (int i = 0; i < NumElts; ++i) {
10154     if (Mask[i] < 0)
10155       continue;
10156     int Val = (i & 6) + NumElts * (i & 1);
10157     int CommutVal = (i & 0xe) + NumElts * ((i & 1)^1);
10158     if (Mask[i] < Val ||  Mask[i] > Val + 1)
10159       ShufpdMask = false;
10160     if (Mask[i] < CommutVal ||  Mask[i] > CommutVal + 1)
10161       CommutableMask = false;
10162     Immediate |= (Mask[i] % 2) << i;
10163   }
10164   if (ShufpdMask)
10165     return DAG.getNode(X86ISD::SHUFP, DL, VT, V1, V2,
10166                        DAG.getConstant(Immediate, DL, MVT::i8));
10167   if (CommutableMask)
10168     return DAG.getNode(X86ISD::SHUFP, DL, VT, V2, V1,
10169                        DAG.getConstant(Immediate, DL, MVT::i8));
10170   return SDValue();
10171 }
10172
10173 /// \brief Handle lowering of 4-lane 64-bit floating point shuffles.
10174 ///
10175 /// Also ends up handling lowering of 4-lane 64-bit integer shuffles when AVX2
10176 /// isn't available.
10177 static SDValue lowerV4F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10178                                        const X86Subtarget *Subtarget,
10179                                        SelectionDAG &DAG) {
10180   SDLoc DL(Op);
10181   assert(V1.getSimpleValueType() == MVT::v4f64 && "Bad operand type!");
10182   assert(V2.getSimpleValueType() == MVT::v4f64 && "Bad operand type!");
10183   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10184   ArrayRef<int> Mask = SVOp->getMask();
10185   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
10186
10187   SmallVector<int, 4> WidenedMask;
10188   if (canWidenShuffleElements(Mask, WidenedMask))
10189     return lowerV2X128VectorShuffle(DL, MVT::v4f64, V1, V2, Mask, Subtarget,
10190                                     DAG);
10191
10192   if (isSingleInputShuffleMask(Mask)) {
10193     // Check for being able to broadcast a single element.
10194     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4f64, V1,
10195                                                           Mask, Subtarget, DAG))
10196       return Broadcast;
10197
10198     // Use low duplicate instructions for masks that match their pattern.
10199     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2}))
10200       return DAG.getNode(X86ISD::MOVDDUP, DL, MVT::v4f64, V1);
10201
10202     if (!is128BitLaneCrossingShuffleMask(MVT::v4f64, Mask)) {
10203       // Non-half-crossing single input shuffles can be lowerid with an
10204       // interleaved permutation.
10205       unsigned VPERMILPMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1) |
10206                               ((Mask[2] == 3) << 2) | ((Mask[3] == 3) << 3);
10207       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v4f64, V1,
10208                          DAG.getConstant(VPERMILPMask, DL, MVT::i8));
10209     }
10210
10211     // With AVX2 we have direct support for this permutation.
10212     if (Subtarget->hasAVX2())
10213       return DAG.getNode(X86ISD::VPERMI, DL, MVT::v4f64, V1,
10214                          getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
10215
10216     // Otherwise, fall back.
10217     return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v4f64, V1, V2, Mask,
10218                                                    DAG);
10219   }
10220
10221   // X86 has dedicated unpack instructions that can handle specific blend
10222   // operations: UNPCKH and UNPCKL.
10223   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 2, 6}))
10224     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f64, V1, V2);
10225   if (isShuffleEquivalent(V1, V2, Mask, {1, 5, 3, 7}))
10226     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f64, V1, V2);
10227   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 6, 2}))
10228     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f64, V2, V1);
10229   if (isShuffleEquivalent(V1, V2, Mask, {5, 1, 7, 3}))
10230     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f64, V2, V1);
10231
10232   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4f64, V1, V2, Mask,
10233                                                 Subtarget, DAG))
10234     return Blend;
10235
10236   // Check if the blend happens to exactly fit that of SHUFPD.
10237   if (SDValue Op =
10238       lowerVectorShuffleWithSHUFPD(DL, MVT::v4f64, Mask, V1, V2, DAG))
10239     return Op;
10240
10241   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10242   // shuffle. However, if we have AVX2 and either inputs are already in place,
10243   // we will be able to shuffle even across lanes the other input in a single
10244   // instruction so skip this pattern.
10245   if (!(Subtarget->hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) ||
10246                                  isShuffleMaskInputInPlace(1, Mask))))
10247     if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10248             DL, MVT::v4f64, V1, V2, Mask, Subtarget, DAG))
10249       return Result;
10250
10251   // If we have AVX2 then we always want to lower with a blend because an v4 we
10252   // can fully permute the elements.
10253   if (Subtarget->hasAVX2())
10254     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4f64, V1, V2,
10255                                                       Mask, DAG);
10256
10257   // Otherwise fall back on generic lowering.
10258   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v4f64, V1, V2, Mask, DAG);
10259 }
10260
10261 /// \brief Handle lowering of 4-lane 64-bit integer shuffles.
10262 ///
10263 /// This routine is only called when we have AVX2 and thus a reasonable
10264 /// instruction set for v4i64 shuffling..
10265 static SDValue lowerV4I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10266                                        const X86Subtarget *Subtarget,
10267                                        SelectionDAG &DAG) {
10268   SDLoc DL(Op);
10269   assert(V1.getSimpleValueType() == MVT::v4i64 && "Bad operand type!");
10270   assert(V2.getSimpleValueType() == MVT::v4i64 && "Bad operand type!");
10271   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10272   ArrayRef<int> Mask = SVOp->getMask();
10273   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
10274   assert(Subtarget->hasAVX2() && "We can only lower v4i64 with AVX2!");
10275
10276   SmallVector<int, 4> WidenedMask;
10277   if (canWidenShuffleElements(Mask, WidenedMask))
10278     return lowerV2X128VectorShuffle(DL, MVT::v4i64, V1, V2, Mask, Subtarget,
10279                                     DAG);
10280
10281   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4i64, V1, V2, Mask,
10282                                                 Subtarget, DAG))
10283     return Blend;
10284
10285   // Check for being able to broadcast a single element.
10286   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4i64, V1,
10287                                                         Mask, Subtarget, DAG))
10288     return Broadcast;
10289
10290   // When the shuffle is mirrored between the 128-bit lanes of the unit, we can
10291   // use lower latency instructions that will operate on both 128-bit lanes.
10292   SmallVector<int, 2> RepeatedMask;
10293   if (is128BitLaneRepeatedShuffleMask(MVT::v4i64, Mask, RepeatedMask)) {
10294     if (isSingleInputShuffleMask(Mask)) {
10295       int PSHUFDMask[] = {-1, -1, -1, -1};
10296       for (int i = 0; i < 2; ++i)
10297         if (RepeatedMask[i] >= 0) {
10298           PSHUFDMask[2 * i] = 2 * RepeatedMask[i];
10299           PSHUFDMask[2 * i + 1] = 2 * RepeatedMask[i] + 1;
10300         }
10301       return DAG.getBitcast(
10302           MVT::v4i64,
10303           DAG.getNode(X86ISD::PSHUFD, DL, MVT::v8i32,
10304                       DAG.getBitcast(MVT::v8i32, V1),
10305                       getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
10306     }
10307   }
10308
10309   // AVX2 provides a direct instruction for permuting a single input across
10310   // lanes.
10311   if (isSingleInputShuffleMask(Mask))
10312     return DAG.getNode(X86ISD::VPERMI, DL, MVT::v4i64, V1,
10313                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
10314
10315   // Try to use shift instructions.
10316   if (SDValue Shift =
10317           lowerVectorShuffleAsShift(DL, MVT::v4i64, V1, V2, Mask, DAG))
10318     return Shift;
10319
10320   // Use dedicated unpack instructions for masks that match their pattern.
10321   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 2, 6}))
10322     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i64, V1, V2);
10323   if (isShuffleEquivalent(V1, V2, Mask, {1, 5, 3, 7}))
10324     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i64, V1, V2);
10325   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 6, 2}))
10326     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i64, V2, V1);
10327   if (isShuffleEquivalent(V1, V2, Mask, {5, 1, 7, 3}))
10328     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i64, V2, V1);
10329
10330   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10331   // shuffle. However, if we have AVX2 and either inputs are already in place,
10332   // we will be able to shuffle even across lanes the other input in a single
10333   // instruction so skip this pattern.
10334   if (!(Subtarget->hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) ||
10335                                  isShuffleMaskInputInPlace(1, Mask))))
10336     if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10337             DL, MVT::v4i64, V1, V2, Mask, Subtarget, DAG))
10338       return Result;
10339
10340   // Otherwise fall back on generic blend lowering.
10341   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4i64, V1, V2,
10342                                                     Mask, DAG);
10343 }
10344
10345 /// \brief Handle lowering of 8-lane 32-bit floating point shuffles.
10346 ///
10347 /// Also ends up handling lowering of 8-lane 32-bit integer shuffles when AVX2
10348 /// isn't available.
10349 static SDValue lowerV8F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10350                                        const X86Subtarget *Subtarget,
10351                                        SelectionDAG &DAG) {
10352   SDLoc DL(Op);
10353   assert(V1.getSimpleValueType() == MVT::v8f32 && "Bad operand type!");
10354   assert(V2.getSimpleValueType() == MVT::v8f32 && "Bad operand type!");
10355   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10356   ArrayRef<int> Mask = SVOp->getMask();
10357   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10358
10359   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8f32, V1, V2, Mask,
10360                                                 Subtarget, DAG))
10361     return Blend;
10362
10363   // Check for being able to broadcast a single element.
10364   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8f32, V1,
10365                                                         Mask, Subtarget, DAG))
10366     return Broadcast;
10367
10368   // If the shuffle mask is repeated in each 128-bit lane, we have many more
10369   // options to efficiently lower the shuffle.
10370   SmallVector<int, 4> RepeatedMask;
10371   if (is128BitLaneRepeatedShuffleMask(MVT::v8f32, Mask, RepeatedMask)) {
10372     assert(RepeatedMask.size() == 4 &&
10373            "Repeated masks must be half the mask width!");
10374
10375     // Use even/odd duplicate instructions for masks that match their pattern.
10376     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2, 4, 4, 6, 6}))
10377       return DAG.getNode(X86ISD::MOVSLDUP, DL, MVT::v8f32, V1);
10378     if (isShuffleEquivalent(V1, V2, Mask, {1, 1, 3, 3, 5, 5, 7, 7}))
10379       return DAG.getNode(X86ISD::MOVSHDUP, DL, MVT::v8f32, V1);
10380
10381     if (isSingleInputShuffleMask(Mask))
10382       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v8f32, V1,
10383                          getV4X86ShuffleImm8ForMask(RepeatedMask, DL, DAG));
10384
10385     // Use dedicated unpack instructions for masks that match their pattern.
10386     if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 4, 12, 5, 13}))
10387       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f32, V1, V2);
10388     if (isShuffleEquivalent(V1, V2, Mask, {2, 10, 3, 11, 6, 14, 7, 15}))
10389       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f32, V1, V2);
10390     if (isShuffleEquivalent(V1, V2, Mask, {8, 0, 9, 1, 12, 4, 13, 5}))
10391       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f32, V2, V1);
10392     if (isShuffleEquivalent(V1, V2, Mask, {10, 2, 11, 3, 14, 6, 15, 7}))
10393       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f32, V2, V1);
10394
10395     // Otherwise, fall back to a SHUFPS sequence. Here it is important that we
10396     // have already handled any direct blends. We also need to squash the
10397     // repeated mask into a simulated v4f32 mask.
10398     for (int i = 0; i < 4; ++i)
10399       if (RepeatedMask[i] >= 8)
10400         RepeatedMask[i] -= 4;
10401     return lowerVectorShuffleWithSHUFPS(DL, MVT::v8f32, RepeatedMask, V1, V2, DAG);
10402   }
10403
10404   // If we have a single input shuffle with different shuffle patterns in the
10405   // two 128-bit lanes use the variable mask to VPERMILPS.
10406   if (isSingleInputShuffleMask(Mask)) {
10407     SDValue VPermMask[8];
10408     for (int i = 0; i < 8; ++i)
10409       VPermMask[i] = Mask[i] < 0 ? DAG.getUNDEF(MVT::i32)
10410                                  : DAG.getConstant(Mask[i], DL, MVT::i32);
10411     if (!is128BitLaneCrossingShuffleMask(MVT::v8f32, Mask))
10412       return DAG.getNode(
10413           X86ISD::VPERMILPV, DL, MVT::v8f32, V1,
10414           DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i32, VPermMask));
10415
10416     if (Subtarget->hasAVX2())
10417       return DAG.getNode(
10418           X86ISD::VPERMV, DL, MVT::v8f32,
10419           DAG.getBitcast(MVT::v8f32, DAG.getNode(ISD::BUILD_VECTOR, DL,
10420                                                  MVT::v8i32, VPermMask)),
10421           V1);
10422
10423     // Otherwise, fall back.
10424     return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v8f32, V1, V2, Mask,
10425                                                    DAG);
10426   }
10427
10428   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10429   // shuffle.
10430   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10431           DL, MVT::v8f32, V1, V2, Mask, Subtarget, DAG))
10432     return Result;
10433
10434   // If we have AVX2 then we always want to lower with a blend because at v8 we
10435   // can fully permute the elements.
10436   if (Subtarget->hasAVX2())
10437     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8f32, V1, V2,
10438                                                       Mask, DAG);
10439
10440   // Otherwise fall back on generic lowering.
10441   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v8f32, V1, V2, Mask, DAG);
10442 }
10443
10444 /// \brief Handle lowering of 8-lane 32-bit integer shuffles.
10445 ///
10446 /// This routine is only called when we have AVX2 and thus a reasonable
10447 /// instruction set for v8i32 shuffling..
10448 static SDValue lowerV8I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10449                                        const X86Subtarget *Subtarget,
10450                                        SelectionDAG &DAG) {
10451   SDLoc DL(Op);
10452   assert(V1.getSimpleValueType() == MVT::v8i32 && "Bad operand type!");
10453   assert(V2.getSimpleValueType() == MVT::v8i32 && "Bad operand type!");
10454   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10455   ArrayRef<int> Mask = SVOp->getMask();
10456   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10457   assert(Subtarget->hasAVX2() && "We can only lower v8i32 with AVX2!");
10458
10459   // Whenever we can lower this as a zext, that instruction is strictly faster
10460   // than any alternative. It also allows us to fold memory operands into the
10461   // shuffle in many cases.
10462   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v8i32, V1, V2,
10463                                                          Mask, Subtarget, DAG))
10464     return ZExt;
10465
10466   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8i32, V1, V2, Mask,
10467                                                 Subtarget, DAG))
10468     return Blend;
10469
10470   // Check for being able to broadcast a single element.
10471   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8i32, V1,
10472                                                         Mask, Subtarget, DAG))
10473     return Broadcast;
10474
10475   // If the shuffle mask is repeated in each 128-bit lane we can use more
10476   // efficient instructions that mirror the shuffles across the two 128-bit
10477   // lanes.
10478   SmallVector<int, 4> RepeatedMask;
10479   if (is128BitLaneRepeatedShuffleMask(MVT::v8i32, Mask, RepeatedMask)) {
10480     assert(RepeatedMask.size() == 4 && "Unexpected repeated mask size!");
10481     if (isSingleInputShuffleMask(Mask))
10482       return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v8i32, V1,
10483                          getV4X86ShuffleImm8ForMask(RepeatedMask, DL, DAG));
10484
10485     // Use dedicated unpack instructions for masks that match their pattern.
10486     if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 4, 12, 5, 13}))
10487       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i32, V1, V2);
10488     if (isShuffleEquivalent(V1, V2, Mask, {2, 10, 3, 11, 6, 14, 7, 15}))
10489       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i32, V1, V2);
10490     if (isShuffleEquivalent(V1, V2, Mask, {8, 0, 9, 1, 12, 4, 13, 5}))
10491       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i32, V2, V1);
10492     if (isShuffleEquivalent(V1, V2, Mask, {10, 2, 11, 3, 14, 6, 15, 7}))
10493       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i32, V2, V1);
10494   }
10495
10496   // Try to use shift instructions.
10497   if (SDValue Shift =
10498           lowerVectorShuffleAsShift(DL, MVT::v8i32, V1, V2, Mask, DAG))
10499     return Shift;
10500
10501   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
10502           DL, MVT::v8i32, V1, V2, Mask, Subtarget, DAG))
10503     return Rotate;
10504
10505   // If the shuffle patterns aren't repeated but it is a single input, directly
10506   // generate a cross-lane VPERMD instruction.
10507   if (isSingleInputShuffleMask(Mask)) {
10508     SDValue VPermMask[8];
10509     for (int i = 0; i < 8; ++i)
10510       VPermMask[i] = Mask[i] < 0 ? DAG.getUNDEF(MVT::i32)
10511                                  : DAG.getConstant(Mask[i], DL, MVT::i32);
10512     return DAG.getNode(
10513         X86ISD::VPERMV, DL, MVT::v8i32,
10514         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i32, VPermMask), V1);
10515   }
10516
10517   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10518   // shuffle.
10519   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10520           DL, MVT::v8i32, V1, V2, Mask, Subtarget, DAG))
10521     return Result;
10522
10523   // Otherwise fall back on generic blend lowering.
10524   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8i32, V1, V2,
10525                                                     Mask, DAG);
10526 }
10527
10528 /// \brief Handle lowering of 16-lane 16-bit integer shuffles.
10529 ///
10530 /// This routine is only called when we have AVX2 and thus a reasonable
10531 /// instruction set for v16i16 shuffling..
10532 static SDValue lowerV16I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10533                                         const X86Subtarget *Subtarget,
10534                                         SelectionDAG &DAG) {
10535   SDLoc DL(Op);
10536   assert(V1.getSimpleValueType() == MVT::v16i16 && "Bad operand type!");
10537   assert(V2.getSimpleValueType() == MVT::v16i16 && "Bad operand type!");
10538   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10539   ArrayRef<int> Mask = SVOp->getMask();
10540   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10541   assert(Subtarget->hasAVX2() && "We can only lower v16i16 with AVX2!");
10542
10543   // Whenever we can lower this as a zext, that instruction is strictly faster
10544   // than any alternative. It also allows us to fold memory operands into the
10545   // shuffle in many cases.
10546   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v16i16, V1, V2,
10547                                                          Mask, Subtarget, DAG))
10548     return ZExt;
10549
10550   // Check for being able to broadcast a single element.
10551   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v16i16, V1,
10552                                                         Mask, Subtarget, DAG))
10553     return Broadcast;
10554
10555   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v16i16, V1, V2, Mask,
10556                                                 Subtarget, DAG))
10557     return Blend;
10558
10559   // Use dedicated unpack instructions for masks that match their pattern.
10560   if (isShuffleEquivalent(V1, V2, Mask,
10561                           {// First 128-bit lane:
10562                            0, 16, 1, 17, 2, 18, 3, 19,
10563                            // Second 128-bit lane:
10564                            8, 24, 9, 25, 10, 26, 11, 27}))
10565     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i16, V1, V2);
10566   if (isShuffleEquivalent(V1, V2, Mask,
10567                           {// First 128-bit lane:
10568                            4, 20, 5, 21, 6, 22, 7, 23,
10569                            // Second 128-bit lane:
10570                            12, 28, 13, 29, 14, 30, 15, 31}))
10571     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i16, V1, V2);
10572
10573   // Try to use shift instructions.
10574   if (SDValue Shift =
10575           lowerVectorShuffleAsShift(DL, MVT::v16i16, V1, V2, Mask, DAG))
10576     return Shift;
10577
10578   // Try to use byte rotation instructions.
10579   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
10580           DL, MVT::v16i16, V1, V2, Mask, Subtarget, DAG))
10581     return Rotate;
10582
10583   if (isSingleInputShuffleMask(Mask)) {
10584     // There are no generalized cross-lane shuffle operations available on i16
10585     // element types.
10586     if (is128BitLaneCrossingShuffleMask(MVT::v16i16, Mask))
10587       return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v16i16, V1, V2,
10588                                                      Mask, DAG);
10589
10590     SmallVector<int, 8> RepeatedMask;
10591     if (is128BitLaneRepeatedShuffleMask(MVT::v16i16, Mask, RepeatedMask)) {
10592       // As this is a single-input shuffle, the repeated mask should be
10593       // a strictly valid v8i16 mask that we can pass through to the v8i16
10594       // lowering to handle even the v16 case.
10595       return lowerV8I16GeneralSingleInputVectorShuffle(
10596           DL, MVT::v16i16, V1, RepeatedMask, Subtarget, DAG);
10597     }
10598
10599     SDValue PSHUFBMask[32];
10600     for (int i = 0; i < 16; ++i) {
10601       if (Mask[i] == -1) {
10602         PSHUFBMask[2 * i] = PSHUFBMask[2 * i + 1] = DAG.getUNDEF(MVT::i8);
10603         continue;
10604       }
10605
10606       int M = i < 8 ? Mask[i] : Mask[i] - 8;
10607       assert(M >= 0 && M < 8 && "Invalid single-input mask!");
10608       PSHUFBMask[2 * i] = DAG.getConstant(2 * M, DL, MVT::i8);
10609       PSHUFBMask[2 * i + 1] = DAG.getConstant(2 * M + 1, DL, MVT::i8);
10610     }
10611     return DAG.getBitcast(MVT::v16i16,
10612                           DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8,
10613                                       DAG.getBitcast(MVT::v32i8, V1),
10614                                       DAG.getNode(ISD::BUILD_VECTOR, DL,
10615                                                   MVT::v32i8, PSHUFBMask)));
10616   }
10617
10618   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10619   // shuffle.
10620   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10621           DL, MVT::v16i16, V1, V2, Mask, Subtarget, DAG))
10622     return Result;
10623
10624   // Otherwise fall back on generic lowering.
10625   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v16i16, V1, V2, Mask, DAG);
10626 }
10627
10628 /// \brief Handle lowering of 32-lane 8-bit integer shuffles.
10629 ///
10630 /// This routine is only called when we have AVX2 and thus a reasonable
10631 /// instruction set for v32i8 shuffling..
10632 static SDValue lowerV32I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10633                                        const X86Subtarget *Subtarget,
10634                                        SelectionDAG &DAG) {
10635   SDLoc DL(Op);
10636   assert(V1.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
10637   assert(V2.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
10638   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10639   ArrayRef<int> Mask = SVOp->getMask();
10640   assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
10641   assert(Subtarget->hasAVX2() && "We can only lower v32i8 with AVX2!");
10642
10643   // Whenever we can lower this as a zext, that instruction is strictly faster
10644   // than any alternative. It also allows us to fold memory operands into the
10645   // shuffle in many cases.
10646   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v32i8, V1, V2,
10647                                                          Mask, Subtarget, DAG))
10648     return ZExt;
10649
10650   // Check for being able to broadcast a single element.
10651   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v32i8, V1,
10652                                                         Mask, Subtarget, DAG))
10653     return Broadcast;
10654
10655   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v32i8, V1, V2, Mask,
10656                                                 Subtarget, DAG))
10657     return Blend;
10658
10659   // Use dedicated unpack instructions for masks that match their pattern.
10660   // Note that these are repeated 128-bit lane unpacks, not unpacks across all
10661   // 256-bit lanes.
10662   if (isShuffleEquivalent(
10663           V1, V2, Mask,
10664           {// First 128-bit lane:
10665            0, 32, 1, 33, 2, 34, 3, 35, 4, 36, 5, 37, 6, 38, 7, 39,
10666            // Second 128-bit lane:
10667            16, 48, 17, 49, 18, 50, 19, 51, 20, 52, 21, 53, 22, 54, 23, 55}))
10668     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v32i8, V1, V2);
10669   if (isShuffleEquivalent(
10670           V1, V2, Mask,
10671           {// First 128-bit lane:
10672            8, 40, 9, 41, 10, 42, 11, 43, 12, 44, 13, 45, 14, 46, 15, 47,
10673            // Second 128-bit lane:
10674            24, 56, 25, 57, 26, 58, 27, 59, 28, 60, 29, 61, 30, 62, 31, 63}))
10675     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v32i8, V1, V2);
10676
10677   // Try to use shift instructions.
10678   if (SDValue Shift =
10679           lowerVectorShuffleAsShift(DL, MVT::v32i8, V1, V2, Mask, DAG))
10680     return Shift;
10681
10682   // Try to use byte rotation instructions.
10683   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
10684           DL, MVT::v32i8, V1, V2, Mask, Subtarget, DAG))
10685     return Rotate;
10686
10687   if (isSingleInputShuffleMask(Mask)) {
10688     // There are no generalized cross-lane shuffle operations available on i8
10689     // element types.
10690     if (is128BitLaneCrossingShuffleMask(MVT::v32i8, Mask))
10691       return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v32i8, V1, V2,
10692                                                      Mask, DAG);
10693
10694     SDValue PSHUFBMask[32];
10695     for (int i = 0; i < 32; ++i)
10696       PSHUFBMask[i] =
10697           Mask[i] < 0
10698               ? DAG.getUNDEF(MVT::i8)
10699               : DAG.getConstant(Mask[i] < 16 ? Mask[i] : Mask[i] - 16, DL,
10700                                 MVT::i8);
10701
10702     return DAG.getNode(
10703         X86ISD::PSHUFB, DL, MVT::v32i8, V1,
10704         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, PSHUFBMask));
10705   }
10706
10707   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10708   // shuffle.
10709   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10710           DL, MVT::v32i8, V1, V2, Mask, Subtarget, DAG))
10711     return Result;
10712
10713   // Otherwise fall back on generic lowering.
10714   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v32i8, V1, V2, Mask, DAG);
10715 }
10716
10717 /// \brief High-level routine to lower various 256-bit x86 vector shuffles.
10718 ///
10719 /// This routine either breaks down the specific type of a 256-bit x86 vector
10720 /// shuffle or splits it into two 128-bit shuffles and fuses the results back
10721 /// together based on the available instructions.
10722 static SDValue lower256BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10723                                         MVT VT, const X86Subtarget *Subtarget,
10724                                         SelectionDAG &DAG) {
10725   SDLoc DL(Op);
10726   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10727   ArrayRef<int> Mask = SVOp->getMask();
10728
10729   // If we have a single input to the zero element, insert that into V1 if we
10730   // can do so cheaply.
10731   int NumElts = VT.getVectorNumElements();
10732   int NumV2Elements = std::count_if(Mask.begin(), Mask.end(), [NumElts](int M) {
10733     return M >= NumElts;
10734   });
10735
10736   if (NumV2Elements == 1 && Mask[0] >= NumElts)
10737     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
10738                               DL, VT, V1, V2, Mask, Subtarget, DAG))
10739       return Insertion;
10740
10741   // There is a really nice hard cut-over between AVX1 and AVX2 that means we
10742   // can check for those subtargets here and avoid much of the subtarget
10743   // querying in the per-vector-type lowering routines. With AVX1 we have
10744   // essentially *zero* ability to manipulate a 256-bit vector with integer
10745   // types. Since we'll use floating point types there eventually, just
10746   // immediately cast everything to a float and operate entirely in that domain.
10747   if (VT.isInteger() && !Subtarget->hasAVX2()) {
10748     int ElementBits = VT.getScalarSizeInBits();
10749     if (ElementBits < 32)
10750       // No floating point type available, decompose into 128-bit vectors.
10751       return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
10752
10753     MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits),
10754                                 VT.getVectorNumElements());
10755     V1 = DAG.getBitcast(FpVT, V1);
10756     V2 = DAG.getBitcast(FpVT, V2);
10757     return DAG.getBitcast(VT, DAG.getVectorShuffle(FpVT, DL, V1, V2, Mask));
10758   }
10759
10760   switch (VT.SimpleTy) {
10761   case MVT::v4f64:
10762     return lowerV4F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10763   case MVT::v4i64:
10764     return lowerV4I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10765   case MVT::v8f32:
10766     return lowerV8F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10767   case MVT::v8i32:
10768     return lowerV8I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10769   case MVT::v16i16:
10770     return lowerV16I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
10771   case MVT::v32i8:
10772     return lowerV32I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
10773
10774   default:
10775     llvm_unreachable("Not a valid 256-bit x86 vector type!");
10776   }
10777 }
10778
10779 /// \brief Try to lower a vector shuffle as a 128-bit shuffles.
10780 static SDValue lowerV4X128VectorShuffle(SDLoc DL, MVT VT,
10781                                              ArrayRef<int> Mask,
10782                                              SDValue V1, SDValue V2,
10783                                              SelectionDAG &DAG) {
10784   assert(VT.getScalarSizeInBits() == 64 &&
10785          "Unexpected element type size for 128bit shuffle.");
10786
10787   // To handle 256 bit vector requires VLX and most probably
10788   // function lowerV2X128VectorShuffle() is better solution.
10789   assert(VT.getSizeInBits() == 512 &&
10790          "Unexpected vector size for 128bit shuffle.");
10791
10792   SmallVector<int, 4> WidenedMask;
10793   if (!canWidenShuffleElements(Mask, WidenedMask))
10794     return SDValue();
10795
10796   // Form a 128-bit permutation.
10797   // Convert the 64-bit shuffle mask selection values into 128-bit selection
10798   // bits defined by a vshuf64x2 instruction's immediate control byte.
10799   unsigned PermMask = 0, Imm = 0;
10800   unsigned ControlBitsNum = WidenedMask.size() / 2;
10801
10802   for (int i = 0, Size = WidenedMask.size(); i < Size; ++i) {
10803     if (WidenedMask[i] == SM_SentinelZero)
10804       return SDValue();
10805
10806     // Use first element in place of undef mask.
10807     Imm = (WidenedMask[i] == SM_SentinelUndef) ? 0 : WidenedMask[i];
10808     PermMask |= (Imm % WidenedMask.size()) << (i * ControlBitsNum);
10809   }
10810
10811   return DAG.getNode(X86ISD::SHUF128, DL, VT, V1, V2,
10812                      DAG.getConstant(PermMask, DL, MVT::i8));
10813 }
10814
10815 static SDValue lowerVectorShuffleWithPERMV(SDLoc DL, MVT VT,
10816                                            ArrayRef<int> Mask, SDValue V1,
10817                                            SDValue V2, SelectionDAG &DAG) {
10818
10819   assert(VT.getScalarSizeInBits() >= 16 && "Unexpected data type for PERMV");
10820
10821   MVT MaskEltVT = MVT::getIntegerVT(VT.getScalarSizeInBits());
10822   MVT MaskVecVT = MVT::getVectorVT(MaskEltVT, VT.getVectorNumElements());
10823
10824   SDValue MaskNode = getConstVector(Mask, MaskVecVT, DAG, DL, true);
10825   if (isSingleInputShuffleMask(Mask))
10826     return DAG.getNode(X86ISD::VPERMV, DL, VT, MaskNode, V1);
10827
10828   return DAG.getNode(X86ISD::VPERMV3, DL, VT, V1, MaskNode, V2);
10829 }
10830
10831 /// \brief Handle lowering of 8-lane 64-bit floating point shuffles.
10832 static SDValue lowerV8F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10833                                        const X86Subtarget *Subtarget,
10834                                        SelectionDAG &DAG) {
10835   SDLoc DL(Op);
10836   assert(V1.getSimpleValueType() == MVT::v8f64 && "Bad operand type!");
10837   assert(V2.getSimpleValueType() == MVT::v8f64 && "Bad operand type!");
10838   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10839   ArrayRef<int> Mask = SVOp->getMask();
10840   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10841
10842   if (SDValue Shuf128 =
10843           lowerV4X128VectorShuffle(DL, MVT::v8f64, Mask, V1, V2, DAG))
10844     return Shuf128;
10845
10846   if (SDValue Unpck =
10847           lowerVectorShuffleWithUNPCK(DL, MVT::v8f64, Mask, V1, V2, DAG))
10848     return Unpck;
10849
10850   return lowerVectorShuffleWithPERMV(DL, MVT::v8f64, Mask, V1, V2, DAG);
10851 }
10852
10853 /// \brief Handle lowering of 16-lane 32-bit floating point shuffles.
10854 static SDValue lowerV16F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10855                                        const X86Subtarget *Subtarget,
10856                                        SelectionDAG &DAG) {
10857   SDLoc DL(Op);
10858   assert(V1.getSimpleValueType() == MVT::v16f32 && "Bad operand type!");
10859   assert(V2.getSimpleValueType() == MVT::v16f32 && "Bad operand type!");
10860   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10861   ArrayRef<int> Mask = SVOp->getMask();
10862   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10863
10864   if (SDValue Unpck =
10865           lowerVectorShuffleWithUNPCK(DL, MVT::v16f32, Mask, V1, V2, DAG))
10866     return Unpck;
10867
10868   return lowerVectorShuffleWithPERMV(DL, MVT::v16f32, Mask, V1, V2, DAG);
10869 }
10870
10871 /// \brief Handle lowering of 8-lane 64-bit integer shuffles.
10872 static SDValue lowerV8I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10873                                        const X86Subtarget *Subtarget,
10874                                        SelectionDAG &DAG) {
10875   SDLoc DL(Op);
10876   assert(V1.getSimpleValueType() == MVT::v8i64 && "Bad operand type!");
10877   assert(V2.getSimpleValueType() == MVT::v8i64 && "Bad operand type!");
10878   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10879   ArrayRef<int> Mask = SVOp->getMask();
10880   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10881
10882   if (SDValue Shuf128 =
10883           lowerV4X128VectorShuffle(DL, MVT::v8i64, Mask, V1, V2, DAG))
10884     return Shuf128;
10885
10886   if (SDValue Unpck =
10887           lowerVectorShuffleWithUNPCK(DL, MVT::v8i64, Mask, V1, V2, DAG))
10888     return Unpck;
10889
10890   return lowerVectorShuffleWithPERMV(DL, MVT::v8i64, Mask, V1, V2, DAG);
10891 }
10892
10893 /// \brief Handle lowering of 16-lane 32-bit integer shuffles.
10894 static SDValue lowerV16I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10895                                        const X86Subtarget *Subtarget,
10896                                        SelectionDAG &DAG) {
10897   SDLoc DL(Op);
10898   assert(V1.getSimpleValueType() == MVT::v16i32 && "Bad operand type!");
10899   assert(V2.getSimpleValueType() == MVT::v16i32 && "Bad operand type!");
10900   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10901   ArrayRef<int> Mask = SVOp->getMask();
10902   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10903
10904   if (SDValue Unpck =
10905           lowerVectorShuffleWithUNPCK(DL, MVT::v16i32, Mask, V1, V2, DAG))
10906     return Unpck;
10907
10908   return lowerVectorShuffleWithPERMV(DL, MVT::v16i32, Mask, V1, V2, DAG);
10909 }
10910
10911 /// \brief Handle lowering of 32-lane 16-bit integer shuffles.
10912 static SDValue lowerV32I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10913                                         const X86Subtarget *Subtarget,
10914                                         SelectionDAG &DAG) {
10915   SDLoc DL(Op);
10916   assert(V1.getSimpleValueType() == MVT::v32i16 && "Bad operand type!");
10917   assert(V2.getSimpleValueType() == MVT::v32i16 && "Bad operand type!");
10918   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10919   ArrayRef<int> Mask = SVOp->getMask();
10920   assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
10921   assert(Subtarget->hasBWI() && "We can only lower v32i16 with AVX-512-BWI!");
10922
10923   return lowerVectorShuffleWithPERMV(DL, MVT::v32i16, Mask, V1, V2, DAG);
10924 }
10925
10926 /// \brief Handle lowering of 64-lane 8-bit integer shuffles.
10927 static SDValue lowerV64I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10928                                        const X86Subtarget *Subtarget,
10929                                        SelectionDAG &DAG) {
10930   SDLoc DL(Op);
10931   assert(V1.getSimpleValueType() == MVT::v64i8 && "Bad operand type!");
10932   assert(V2.getSimpleValueType() == MVT::v64i8 && "Bad operand type!");
10933   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10934   ArrayRef<int> Mask = SVOp->getMask();
10935   assert(Mask.size() == 64 && "Unexpected mask size for v64 shuffle!");
10936   assert(Subtarget->hasBWI() && "We can only lower v64i8 with AVX-512-BWI!");
10937
10938   // FIXME: Implement direct support for this type!
10939   return splitAndLowerVectorShuffle(DL, MVT::v64i8, V1, V2, Mask, DAG);
10940 }
10941
10942 /// \brief High-level routine to lower various 512-bit x86 vector shuffles.
10943 ///
10944 /// This routine either breaks down the specific type of a 512-bit x86 vector
10945 /// shuffle or splits it into two 256-bit shuffles and fuses the results back
10946 /// together based on the available instructions.
10947 static SDValue lower512BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10948                                         MVT VT, const X86Subtarget *Subtarget,
10949                                         SelectionDAG &DAG) {
10950   SDLoc DL(Op);
10951   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10952   ArrayRef<int> Mask = SVOp->getMask();
10953   assert(Subtarget->hasAVX512() &&
10954          "Cannot lower 512-bit vectors w/ basic ISA!");
10955
10956   // Check for being able to broadcast a single element.
10957   if (SDValue Broadcast =
10958           lowerVectorShuffleAsBroadcast(DL, VT, V1, Mask, Subtarget, DAG))
10959     return Broadcast;
10960
10961   // Dispatch to each element type for lowering. If we don't have supprot for
10962   // specific element type shuffles at 512 bits, immediately split them and
10963   // lower them. Each lowering routine of a given type is allowed to assume that
10964   // the requisite ISA extensions for that element type are available.
10965   switch (VT.SimpleTy) {
10966   case MVT::v8f64:
10967     return lowerV8F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10968   case MVT::v16f32:
10969     return lowerV16F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10970   case MVT::v8i64:
10971     return lowerV8I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10972   case MVT::v16i32:
10973     return lowerV16I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10974   case MVT::v32i16:
10975     if (Subtarget->hasBWI())
10976       return lowerV32I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
10977     break;
10978   case MVT::v64i8:
10979     if (Subtarget->hasBWI())
10980       return lowerV64I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
10981     break;
10982
10983   default:
10984     llvm_unreachable("Not a valid 512-bit x86 vector type!");
10985   }
10986
10987   // Otherwise fall back on splitting.
10988   return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
10989 }
10990
10991 // Lower vXi1 vector shuffles.
10992 // There is no a dedicated instruction on AVX-512 that shuffles the masks.
10993 // The only way to shuffle bits is to sign-extend the mask vector to SIMD
10994 // vector, shuffle and then truncate it back.
10995 static SDValue lower1BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10996                                       MVT VT, const X86Subtarget *Subtarget,
10997                                       SelectionDAG &DAG) {
10998   SDLoc DL(Op);
10999   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
11000   ArrayRef<int> Mask = SVOp->getMask();
11001   assert(Subtarget->hasAVX512() &&
11002          "Cannot lower 512-bit vectors w/o basic ISA!");
11003   EVT ExtVT;
11004   switch (VT.SimpleTy) {
11005   default:
11006     assert(false && "Expected a vector of i1 elements");
11007     break;
11008   case MVT::v2i1:
11009     ExtVT = MVT::v2i64;
11010     break;
11011   case MVT::v4i1:
11012     ExtVT = MVT::v4i32;
11013     break;
11014   case MVT::v8i1:
11015     ExtVT = MVT::v8i64; // Take 512-bit type, more shuffles on KNL
11016     break;
11017   case MVT::v16i1:
11018     ExtVT = MVT::v16i32;
11019     break;
11020   case MVT::v32i1:
11021     ExtVT = MVT::v32i16;
11022     break;
11023   case MVT::v64i1:
11024     ExtVT = MVT::v64i8;
11025     break;
11026   }
11027
11028   if (ISD::isBuildVectorAllZeros(V1.getNode()))
11029     V1 = getZeroVector(ExtVT, Subtarget, DAG, DL);
11030   else if (ISD::isBuildVectorAllOnes(V1.getNode()))
11031     V1 = getOnesVector(ExtVT, Subtarget, DAG, DL);
11032   else
11033     V1 = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, V1);
11034
11035   if (V2.isUndef())
11036     V2 = DAG.getUNDEF(ExtVT);
11037   else if (ISD::isBuildVectorAllZeros(V2.getNode()))
11038     V2 = getZeroVector(ExtVT, Subtarget, DAG, DL);
11039   else if (ISD::isBuildVectorAllOnes(V2.getNode()))
11040     V2 = getOnesVector(ExtVT, Subtarget, DAG, DL);
11041   else
11042     V2 = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, V2);
11043   return DAG.getNode(ISD::TRUNCATE, DL, VT,
11044                      DAG.getVectorShuffle(ExtVT, DL, V1, V2, Mask));
11045 }
11046 /// \brief Top-level lowering for x86 vector shuffles.
11047 ///
11048 /// This handles decomposition, canonicalization, and lowering of all x86
11049 /// vector shuffles. Most of the specific lowering strategies are encapsulated
11050 /// above in helper routines. The canonicalization attempts to widen shuffles
11051 /// to involve fewer lanes of wider elements, consolidate symmetric patterns
11052 /// s.t. only one of the two inputs needs to be tested, etc.
11053 static SDValue lowerVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
11054                                   SelectionDAG &DAG) {
11055   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
11056   ArrayRef<int> Mask = SVOp->getMask();
11057   SDValue V1 = Op.getOperand(0);
11058   SDValue V2 = Op.getOperand(1);
11059   MVT VT = Op.getSimpleValueType();
11060   int NumElements = VT.getVectorNumElements();
11061   SDLoc dl(Op);
11062   bool Is1BitVector = (VT.getScalarType() == MVT::i1);
11063
11064   assert((VT.getSizeInBits() != 64 || Is1BitVector) &&
11065          "Can't lower MMX shuffles");
11066
11067   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
11068   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
11069   if (V1IsUndef && V2IsUndef)
11070     return DAG.getUNDEF(VT);
11071
11072   // When we create a shuffle node we put the UNDEF node to second operand,
11073   // but in some cases the first operand may be transformed to UNDEF.
11074   // In this case we should just commute the node.
11075   if (V1IsUndef)
11076     return DAG.getCommutedVectorShuffle(*SVOp);
11077
11078   // Check for non-undef masks pointing at an undef vector and make the masks
11079   // undef as well. This makes it easier to match the shuffle based solely on
11080   // the mask.
11081   if (V2IsUndef)
11082     for (int M : Mask)
11083       if (M >= NumElements) {
11084         SmallVector<int, 8> NewMask(Mask.begin(), Mask.end());
11085         for (int &M : NewMask)
11086           if (M >= NumElements)
11087             M = -1;
11088         return DAG.getVectorShuffle(VT, dl, V1, V2, NewMask);
11089       }
11090
11091   // We actually see shuffles that are entirely re-arrangements of a set of
11092   // zero inputs. This mostly happens while decomposing complex shuffles into
11093   // simple ones. Directly lower these as a buildvector of zeros.
11094   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
11095   if (Zeroable.all())
11096     return getZeroVector(VT, Subtarget, DAG, dl);
11097
11098   // Try to collapse shuffles into using a vector type with fewer elements but
11099   // wider element types. We cap this to not form integers or floating point
11100   // elements wider than 64 bits, but it might be interesting to form i128
11101   // integers to handle flipping the low and high halves of AVX 256-bit vectors.
11102   SmallVector<int, 16> WidenedMask;
11103   if (VT.getScalarSizeInBits() < 64 && !Is1BitVector &&
11104       canWidenShuffleElements(Mask, WidenedMask)) {
11105     MVT NewEltVT = VT.isFloatingPoint()
11106                        ? MVT::getFloatingPointVT(VT.getScalarSizeInBits() * 2)
11107                        : MVT::getIntegerVT(VT.getScalarSizeInBits() * 2);
11108     MVT NewVT = MVT::getVectorVT(NewEltVT, VT.getVectorNumElements() / 2);
11109     // Make sure that the new vector type is legal. For example, v2f64 isn't
11110     // legal on SSE1.
11111     if (DAG.getTargetLoweringInfo().isTypeLegal(NewVT)) {
11112       V1 = DAG.getBitcast(NewVT, V1);
11113       V2 = DAG.getBitcast(NewVT, V2);
11114       return DAG.getBitcast(
11115           VT, DAG.getVectorShuffle(NewVT, dl, V1, V2, WidenedMask));
11116     }
11117   }
11118
11119   int NumV1Elements = 0, NumUndefElements = 0, NumV2Elements = 0;
11120   for (int M : SVOp->getMask())
11121     if (M < 0)
11122       ++NumUndefElements;
11123     else if (M < NumElements)
11124       ++NumV1Elements;
11125     else
11126       ++NumV2Elements;
11127
11128   // Commute the shuffle as needed such that more elements come from V1 than
11129   // V2. This allows us to match the shuffle pattern strictly on how many
11130   // elements come from V1 without handling the symmetric cases.
11131   if (NumV2Elements > NumV1Elements)
11132     return DAG.getCommutedVectorShuffle(*SVOp);
11133
11134   // When the number of V1 and V2 elements are the same, try to minimize the
11135   // number of uses of V2 in the low half of the vector. When that is tied,
11136   // ensure that the sum of indices for V1 is equal to or lower than the sum
11137   // indices for V2. When those are equal, try to ensure that the number of odd
11138   // indices for V1 is lower than the number of odd indices for V2.
11139   if (NumV1Elements == NumV2Elements) {
11140     int LowV1Elements = 0, LowV2Elements = 0;
11141     for (int M : SVOp->getMask().slice(0, NumElements / 2))
11142       if (M >= NumElements)
11143         ++LowV2Elements;
11144       else if (M >= 0)
11145         ++LowV1Elements;
11146     if (LowV2Elements > LowV1Elements) {
11147       return DAG.getCommutedVectorShuffle(*SVOp);
11148     } else if (LowV2Elements == LowV1Elements) {
11149       int SumV1Indices = 0, SumV2Indices = 0;
11150       for (int i = 0, Size = SVOp->getMask().size(); i < Size; ++i)
11151         if (SVOp->getMask()[i] >= NumElements)
11152           SumV2Indices += i;
11153         else if (SVOp->getMask()[i] >= 0)
11154           SumV1Indices += i;
11155       if (SumV2Indices < SumV1Indices) {
11156         return DAG.getCommutedVectorShuffle(*SVOp);
11157       } else if (SumV2Indices == SumV1Indices) {
11158         int NumV1OddIndices = 0, NumV2OddIndices = 0;
11159         for (int i = 0, Size = SVOp->getMask().size(); i < Size; ++i)
11160           if (SVOp->getMask()[i] >= NumElements)
11161             NumV2OddIndices += i % 2;
11162           else if (SVOp->getMask()[i] >= 0)
11163             NumV1OddIndices += i % 2;
11164         if (NumV2OddIndices < NumV1OddIndices)
11165           return DAG.getCommutedVectorShuffle(*SVOp);
11166       }
11167     }
11168   }
11169
11170   // For each vector width, delegate to a specialized lowering routine.
11171   if (VT.getSizeInBits() == 128)
11172     return lower128BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
11173
11174   if (VT.getSizeInBits() == 256)
11175     return lower256BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
11176
11177   if (VT.getSizeInBits() == 512)
11178     return lower512BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
11179
11180   if (Is1BitVector)
11181     return lower1BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
11182   llvm_unreachable("Unimplemented!");
11183 }
11184
11185 // This function assumes its argument is a BUILD_VECTOR of constants or
11186 // undef SDNodes. i.e: ISD::isBuildVectorOfConstantSDNodes(BuildVector) is
11187 // true.
11188 static bool BUILD_VECTORtoBlendMask(BuildVectorSDNode *BuildVector,
11189                                     unsigned &MaskValue) {
11190   MaskValue = 0;
11191   unsigned NumElems = BuildVector->getNumOperands();
11192   
11193   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
11194   // We don't handle the >2 lanes case right now.
11195   unsigned NumLanes = (NumElems - 1) / 8 + 1;
11196   if (NumLanes > 2)
11197     return false;
11198
11199   unsigned NumElemsInLane = NumElems / NumLanes;
11200
11201   // Blend for v16i16 should be symmetric for the both lanes.
11202   for (unsigned i = 0; i < NumElemsInLane; ++i) {
11203     SDValue EltCond = BuildVector->getOperand(i);
11204     SDValue SndLaneEltCond =
11205         (NumLanes == 2) ? BuildVector->getOperand(i + NumElemsInLane) : EltCond;
11206
11207     int Lane1Cond = -1, Lane2Cond = -1;
11208     if (isa<ConstantSDNode>(EltCond))
11209       Lane1Cond = !isZero(EltCond);
11210     if (isa<ConstantSDNode>(SndLaneEltCond))
11211       Lane2Cond = !isZero(SndLaneEltCond);
11212
11213     unsigned LaneMask = 0;
11214     if (Lane1Cond == Lane2Cond || Lane2Cond < 0)
11215       // Lane1Cond != 0, means we want the first argument.
11216       // Lane1Cond == 0, means we want the second argument.
11217       // The encoding of this argument is 0 for the first argument, 1
11218       // for the second. Therefore, invert the condition.
11219       LaneMask = !Lane1Cond << i;
11220     else if (Lane1Cond < 0)
11221       LaneMask = !Lane2Cond << i;
11222     else
11223       return false;
11224
11225     MaskValue |= LaneMask;
11226     if (NumLanes == 2)
11227       MaskValue |= LaneMask << NumElemsInLane;
11228   }
11229   return true;
11230 }
11231
11232 /// \brief Try to lower a VSELECT instruction to a vector shuffle.
11233 static SDValue lowerVSELECTtoVectorShuffle(SDValue Op,
11234                                            const X86Subtarget *Subtarget,
11235                                            SelectionDAG &DAG) {
11236   SDValue Cond = Op.getOperand(0);
11237   SDValue LHS = Op.getOperand(1);
11238   SDValue RHS = Op.getOperand(2);
11239   SDLoc dl(Op);
11240   MVT VT = Op.getSimpleValueType();
11241
11242   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
11243     return SDValue();
11244   auto *CondBV = cast<BuildVectorSDNode>(Cond);
11245
11246   // Only non-legal VSELECTs reach this lowering, convert those into generic
11247   // shuffles and re-use the shuffle lowering path for blends.
11248   SmallVector<int, 32> Mask;
11249   for (int i = 0, Size = VT.getVectorNumElements(); i < Size; ++i) {
11250     SDValue CondElt = CondBV->getOperand(i);
11251     Mask.push_back(
11252         isa<ConstantSDNode>(CondElt) ? i + (isZero(CondElt) ? Size : 0) : -1);
11253   }
11254   return DAG.getVectorShuffle(VT, dl, LHS, RHS, Mask);
11255 }
11256
11257 SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
11258   // A vselect where all conditions and data are constants can be optimized into
11259   // a single vector load by SelectionDAGLegalize::ExpandBUILD_VECTOR().
11260   if (ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(0).getNode()) &&
11261       ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(1).getNode()) &&
11262       ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(2).getNode()))
11263     return SDValue();
11264
11265   // Try to lower this to a blend-style vector shuffle. This can handle all
11266   // constant condition cases.
11267   if (SDValue BlendOp = lowerVSELECTtoVectorShuffle(Op, Subtarget, DAG))
11268     return BlendOp;
11269
11270   // Variable blends are only legal from SSE4.1 onward.
11271   if (!Subtarget->hasSSE41())
11272     return SDValue();
11273
11274   // Only some types will be legal on some subtargets. If we can emit a legal
11275   // VSELECT-matching blend, return Op, and but if we need to expand, return
11276   // a null value.
11277   switch (Op.getSimpleValueType().SimpleTy) {
11278   default:
11279     // Most of the vector types have blends past SSE4.1.
11280     return Op;
11281
11282   case MVT::v32i8:
11283     // The byte blends for AVX vectors were introduced only in AVX2.
11284     if (Subtarget->hasAVX2())
11285       return Op;
11286
11287     return SDValue();
11288
11289   case MVT::v8i16:
11290   case MVT::v16i16:
11291     // AVX-512 BWI and VLX features support VSELECT with i16 elements.
11292     if (Subtarget->hasBWI() && Subtarget->hasVLX())
11293       return Op;
11294
11295     // FIXME: We should custom lower this by fixing the condition and using i8
11296     // blends.
11297     return SDValue();
11298   }
11299 }
11300
11301 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
11302   MVT VT = Op.getSimpleValueType();
11303   SDLoc dl(Op);
11304
11305   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
11306     return SDValue();
11307
11308   if (VT.getSizeInBits() == 8) {
11309     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
11310                                   Op.getOperand(0), Op.getOperand(1));
11311     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
11312                                   DAG.getValueType(VT));
11313     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
11314   }
11315
11316   if (VT.getSizeInBits() == 16) {
11317     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11318     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
11319     if (Idx == 0)
11320       return DAG.getNode(
11321           ISD::TRUNCATE, dl, MVT::i16,
11322           DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
11323                       DAG.getBitcast(MVT::v4i32, Op.getOperand(0)),
11324                       Op.getOperand(1)));
11325     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
11326                                   Op.getOperand(0), Op.getOperand(1));
11327     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
11328                                   DAG.getValueType(VT));
11329     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
11330   }
11331
11332   if (VT == MVT::f32) {
11333     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
11334     // the result back to FR32 register. It's only worth matching if the
11335     // result has a single use which is a store or a bitcast to i32.  And in
11336     // the case of a store, it's not worth it if the index is a constant 0,
11337     // because a MOVSSmr can be used instead, which is smaller and faster.
11338     if (!Op.hasOneUse())
11339       return SDValue();
11340     SDNode *User = *Op.getNode()->use_begin();
11341     if ((User->getOpcode() != ISD::STORE ||
11342          (isa<ConstantSDNode>(Op.getOperand(1)) &&
11343           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
11344         (User->getOpcode() != ISD::BITCAST ||
11345          User->getValueType(0) != MVT::i32))
11346       return SDValue();
11347     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
11348                                   DAG.getBitcast(MVT::v4i32, Op.getOperand(0)),
11349                                   Op.getOperand(1));
11350     return DAG.getBitcast(MVT::f32, Extract);
11351   }
11352
11353   if (VT == MVT::i32 || VT == MVT::i64) {
11354     // ExtractPS/pextrq works with constant index.
11355     if (isa<ConstantSDNode>(Op.getOperand(1)))
11356       return Op;
11357   }
11358   return SDValue();
11359 }
11360
11361 /// Extract one bit from mask vector, like v16i1 or v8i1.
11362 /// AVX-512 feature.
11363 SDValue
11364 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
11365   SDValue Vec = Op.getOperand(0);
11366   SDLoc dl(Vec);
11367   MVT VecVT = Vec.getSimpleValueType();
11368   SDValue Idx = Op.getOperand(1);
11369   MVT EltVT = Op.getSimpleValueType();
11370
11371   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
11372   assert((VecVT.getVectorNumElements() <= 16 || Subtarget->hasBWI()) &&
11373          "Unexpected vector type in ExtractBitFromMaskVector");
11374
11375   // variable index can't be handled in mask registers,
11376   // extend vector to VR512
11377   if (!isa<ConstantSDNode>(Idx)) {
11378     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
11379     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
11380     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
11381                               ExtVT.getVectorElementType(), Ext, Idx);
11382     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
11383   }
11384
11385   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11386   const TargetRegisterClass* rc = getRegClassFor(VecVT);
11387   if (!Subtarget->hasDQI() && (VecVT.getVectorNumElements() <= 8))
11388     rc = getRegClassFor(MVT::v16i1);
11389   unsigned MaxSift = rc->getSize()*8 - 1;
11390   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
11391                     DAG.getConstant(MaxSift - IdxVal, dl, MVT::i8));
11392   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
11393                     DAG.getConstant(MaxSift, dl, MVT::i8));
11394   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
11395                        DAG.getIntPtrConstant(0, dl));
11396 }
11397
11398 SDValue
11399 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
11400                                            SelectionDAG &DAG) const {
11401   SDLoc dl(Op);
11402   SDValue Vec = Op.getOperand(0);
11403   MVT VecVT = Vec.getSimpleValueType();
11404   SDValue Idx = Op.getOperand(1);
11405
11406   if (Op.getSimpleValueType() == MVT::i1)
11407     return ExtractBitFromMaskVector(Op, DAG);
11408
11409   if (!isa<ConstantSDNode>(Idx)) {
11410     if (VecVT.is512BitVector() ||
11411         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
11412          VecVT.getVectorElementType().getSizeInBits() == 32)) {
11413
11414       MVT MaskEltVT =
11415         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
11416       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
11417                                     MaskEltVT.getSizeInBits());
11418
11419       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
11420       auto PtrVT = getPointerTy(DAG.getDataLayout());
11421       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
11422                                  getZeroVector(MaskVT, Subtarget, DAG, dl), Idx,
11423                                  DAG.getConstant(0, dl, PtrVT));
11424       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
11425       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Perm,
11426                          DAG.getConstant(0, dl, PtrVT));
11427     }
11428     return SDValue();
11429   }
11430
11431   // If this is a 256-bit vector result, first extract the 128-bit vector and
11432   // then extract the element from the 128-bit vector.
11433   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
11434
11435     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11436     // Get the 128-bit vector.
11437     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
11438     MVT EltVT = VecVT.getVectorElementType();
11439
11440     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
11441
11442     //if (IdxVal >= NumElems/2)
11443     //  IdxVal -= NumElems/2;
11444     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
11445     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
11446                        DAG.getConstant(IdxVal, dl, MVT::i32));
11447   }
11448
11449   assert(VecVT.is128BitVector() && "Unexpected vector length");
11450
11451   if (Subtarget->hasSSE41())
11452     if (SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG))
11453       return Res;
11454
11455   MVT VT = Op.getSimpleValueType();
11456   // TODO: handle v16i8.
11457   if (VT.getSizeInBits() == 16) {
11458     SDValue Vec = Op.getOperand(0);
11459     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11460     if (Idx == 0)
11461       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
11462                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
11463                                      DAG.getBitcast(MVT::v4i32, Vec),
11464                                      Op.getOperand(1)));
11465     // Transform it so it match pextrw which produces a 32-bit result.
11466     MVT EltVT = MVT::i32;
11467     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
11468                                   Op.getOperand(0), Op.getOperand(1));
11469     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
11470                                   DAG.getValueType(VT));
11471     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
11472   }
11473
11474   if (VT.getSizeInBits() == 32) {
11475     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11476     if (Idx == 0)
11477       return Op;
11478
11479     // SHUFPS the element to the lowest double word, then movss.
11480     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
11481     MVT VVT = Op.getOperand(0).getSimpleValueType();
11482     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
11483                                        DAG.getUNDEF(VVT), Mask);
11484     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
11485                        DAG.getIntPtrConstant(0, dl));
11486   }
11487
11488   if (VT.getSizeInBits() == 64) {
11489     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
11490     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
11491     //        to match extract_elt for f64.
11492     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11493     if (Idx == 0)
11494       return Op;
11495
11496     // UNPCKHPD the element to the lowest double word, then movsd.
11497     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
11498     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
11499     int Mask[2] = { 1, -1 };
11500     MVT VVT = Op.getOperand(0).getSimpleValueType();
11501     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
11502                                        DAG.getUNDEF(VVT), Mask);
11503     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
11504                        DAG.getIntPtrConstant(0, dl));
11505   }
11506
11507   return SDValue();
11508 }
11509
11510 /// Insert one bit to mask vector, like v16i1 or v8i1.
11511 /// AVX-512 feature.
11512 SDValue
11513 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
11514   SDLoc dl(Op);
11515   SDValue Vec = Op.getOperand(0);
11516   SDValue Elt = Op.getOperand(1);
11517   SDValue Idx = Op.getOperand(2);
11518   MVT VecVT = Vec.getSimpleValueType();
11519
11520   if (!isa<ConstantSDNode>(Idx)) {
11521     // Non constant index. Extend source and destination,
11522     // insert element and then truncate the result.
11523     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
11524     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
11525     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT,
11526       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
11527       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
11528     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
11529   }
11530
11531   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11532   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
11533   if (IdxVal)
11534     EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
11535                            DAG.getConstant(IdxVal, dl, MVT::i8));
11536   if (Vec.getOpcode() == ISD::UNDEF)
11537     return EltInVec;
11538   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
11539 }
11540
11541 SDValue X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
11542                                                   SelectionDAG &DAG) const {
11543   MVT VT = Op.getSimpleValueType();
11544   MVT EltVT = VT.getVectorElementType();
11545
11546   if (EltVT == MVT::i1)
11547     return InsertBitToMaskVector(Op, DAG);
11548
11549   SDLoc dl(Op);
11550   SDValue N0 = Op.getOperand(0);
11551   SDValue N1 = Op.getOperand(1);
11552   SDValue N2 = Op.getOperand(2);
11553   if (!isa<ConstantSDNode>(N2))
11554     return SDValue();
11555   auto *N2C = cast<ConstantSDNode>(N2);
11556   unsigned IdxVal = N2C->getZExtValue();
11557
11558   // If the vector is wider than 128 bits, extract the 128-bit subvector, insert
11559   // into that, and then insert the subvector back into the result.
11560   if (VT.is256BitVector() || VT.is512BitVector()) {
11561     // With a 256-bit vector, we can insert into the zero element efficiently
11562     // using a blend if we have AVX or AVX2 and the right data type.
11563     if (VT.is256BitVector() && IdxVal == 0) {
11564       // TODO: It is worthwhile to cast integer to floating point and back
11565       // and incur a domain crossing penalty if that's what we'll end up
11566       // doing anyway after extracting to a 128-bit vector.
11567       if ((Subtarget->hasAVX() && (EltVT == MVT::f64 || EltVT == MVT::f32)) ||
11568           (Subtarget->hasAVX2() && EltVT == MVT::i32)) {
11569         SDValue N1Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, N1);
11570         N2 = DAG.getIntPtrConstant(1, dl);
11571         return DAG.getNode(X86ISD::BLENDI, dl, VT, N0, N1Vec, N2);
11572       }
11573     }
11574
11575     // Get the desired 128-bit vector chunk.
11576     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
11577
11578     // Insert the element into the desired chunk.
11579     unsigned NumEltsIn128 = 128 / EltVT.getSizeInBits();
11580     unsigned IdxIn128 = IdxVal - (IdxVal / NumEltsIn128) * NumEltsIn128;
11581
11582     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
11583                     DAG.getConstant(IdxIn128, dl, MVT::i32));
11584
11585     // Insert the changed part back into the bigger vector
11586     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
11587   }
11588   assert(VT.is128BitVector() && "Only 128-bit vector types should be left!");
11589
11590   if (Subtarget->hasSSE41()) {
11591     if (EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) {
11592       unsigned Opc;
11593       if (VT == MVT::v8i16) {
11594         Opc = X86ISD::PINSRW;
11595       } else {
11596         assert(VT == MVT::v16i8);
11597         Opc = X86ISD::PINSRB;
11598       }
11599
11600       // Transform it so it match pinsr{b,w} which expects a GR32 as its second
11601       // argument.
11602       if (N1.getValueType() != MVT::i32)
11603         N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
11604       if (N2.getValueType() != MVT::i32)
11605         N2 = DAG.getIntPtrConstant(IdxVal, dl);
11606       return DAG.getNode(Opc, dl, VT, N0, N1, N2);
11607     }
11608
11609     if (EltVT == MVT::f32) {
11610       // Bits [7:6] of the constant are the source select. This will always be
11611       //   zero here. The DAG Combiner may combine an extract_elt index into
11612       //   these bits. For example (insert (extract, 3), 2) could be matched by
11613       //   putting the '3' into bits [7:6] of X86ISD::INSERTPS.
11614       // Bits [5:4] of the constant are the destination select. This is the
11615       //   value of the incoming immediate.
11616       // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
11617       //   combine either bitwise AND or insert of float 0.0 to set these bits.
11618
11619       bool MinSize = DAG.getMachineFunction().getFunction()->optForMinSize();
11620       if (IdxVal == 0 && (!MinSize || !MayFoldLoad(N1))) {
11621         // If this is an insertion of 32-bits into the low 32-bits of
11622         // a vector, we prefer to generate a blend with immediate rather
11623         // than an insertps. Blends are simpler operations in hardware and so
11624         // will always have equal or better performance than insertps.
11625         // But if optimizing for size and there's a load folding opportunity,
11626         // generate insertps because blendps does not have a 32-bit memory
11627         // operand form.
11628         N2 = DAG.getIntPtrConstant(1, dl);
11629         N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
11630         return DAG.getNode(X86ISD::BLENDI, dl, VT, N0, N1, N2);
11631       }
11632       N2 = DAG.getIntPtrConstant(IdxVal << 4, dl);
11633       // Create this as a scalar to vector..
11634       N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
11635       return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
11636     }
11637
11638     if (EltVT == MVT::i32 || EltVT == MVT::i64) {
11639       // PINSR* works with constant index.
11640       return Op;
11641     }
11642   }
11643
11644   if (EltVT == MVT::i8)
11645     return SDValue();
11646
11647   if (EltVT.getSizeInBits() == 16) {
11648     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
11649     // as its second argument.
11650     if (N1.getValueType() != MVT::i32)
11651       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
11652     if (N2.getValueType() != MVT::i32)
11653       N2 = DAG.getIntPtrConstant(IdxVal, dl);
11654     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
11655   }
11656   return SDValue();
11657 }
11658
11659 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
11660   SDLoc dl(Op);
11661   MVT OpVT = Op.getSimpleValueType();
11662
11663   // If this is a 256-bit vector result, first insert into a 128-bit
11664   // vector and then insert into the 256-bit vector.
11665   if (!OpVT.is128BitVector()) {
11666     // Insert into a 128-bit vector.
11667     unsigned SizeFactor = OpVT.getSizeInBits()/128;
11668     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
11669                                  OpVT.getVectorNumElements() / SizeFactor);
11670
11671     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
11672
11673     // Insert the 128-bit vector.
11674     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
11675   }
11676
11677   if (OpVT == MVT::v1i64 &&
11678       Op.getOperand(0).getValueType() == MVT::i64)
11679     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
11680
11681   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
11682   assert(OpVT.is128BitVector() && "Expected an SSE type!");
11683   return DAG.getBitcast(
11684       OpVT, DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, AnyExt));
11685 }
11686
11687 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
11688 // a simple subregister reference or explicit instructions to grab
11689 // upper bits of a vector.
11690 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
11691                                       SelectionDAG &DAG) {
11692   SDLoc dl(Op);
11693   SDValue In =  Op.getOperand(0);
11694   SDValue Idx = Op.getOperand(1);
11695   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11696   MVT ResVT   = Op.getSimpleValueType();
11697   MVT InVT    = In.getSimpleValueType();
11698
11699   if (Subtarget->hasFp256()) {
11700     if (ResVT.is128BitVector() &&
11701         (InVT.is256BitVector() || InVT.is512BitVector()) &&
11702         isa<ConstantSDNode>(Idx)) {
11703       return Extract128BitVector(In, IdxVal, DAG, dl);
11704     }
11705     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
11706         isa<ConstantSDNode>(Idx)) {
11707       return Extract256BitVector(In, IdxVal, DAG, dl);
11708     }
11709   }
11710   return SDValue();
11711 }
11712
11713 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
11714 // simple superregister reference or explicit instructions to insert
11715 // the upper bits of a vector.
11716 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
11717                                      SelectionDAG &DAG) {
11718   if (!Subtarget->hasAVX())
11719     return SDValue();
11720
11721   SDLoc dl(Op);
11722   SDValue Vec = Op.getOperand(0);
11723   SDValue SubVec = Op.getOperand(1);
11724   SDValue Idx = Op.getOperand(2);
11725
11726   if (!isa<ConstantSDNode>(Idx))
11727     return SDValue();
11728
11729   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11730   MVT OpVT = Op.getSimpleValueType();
11731   MVT SubVecVT = SubVec.getSimpleValueType();
11732
11733   // Fold two 16-byte subvector loads into one 32-byte load:
11734   // (insert_subvector (insert_subvector undef, (load addr), 0),
11735   //                   (load addr + 16), Elts/2)
11736   // --> load32 addr
11737   if ((IdxVal == OpVT.getVectorNumElements() / 2) &&
11738       Vec.getOpcode() == ISD::INSERT_SUBVECTOR &&
11739       OpVT.is256BitVector() && SubVecVT.is128BitVector()) {
11740     auto *Idx2 = dyn_cast<ConstantSDNode>(Vec.getOperand(2));
11741     if (Idx2 && Idx2->getZExtValue() == 0) {
11742       SDValue SubVec2 = Vec.getOperand(1);
11743       // If needed, look through a bitcast to get to the load.
11744       if (SubVec2.getNode() && SubVec2.getOpcode() == ISD::BITCAST)
11745         SubVec2 = SubVec2.getOperand(0);
11746
11747       if (auto *FirstLd = dyn_cast<LoadSDNode>(SubVec2)) {
11748         bool Fast;
11749         unsigned Alignment = FirstLd->getAlignment();
11750         unsigned AS = FirstLd->getAddressSpace();
11751         const X86TargetLowering *TLI = Subtarget->getTargetLowering();
11752         if (TLI->allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(),
11753                                     OpVT, AS, Alignment, &Fast) && Fast) {
11754           SDValue Ops[] = { SubVec2, SubVec };
11755           if (SDValue Ld = EltsFromConsecutiveLoads(OpVT, Ops, dl, DAG, false))
11756             return Ld;
11757         }
11758       }
11759     }
11760   }
11761
11762   if ((OpVT.is256BitVector() || OpVT.is512BitVector()) &&
11763       SubVecVT.is128BitVector())
11764     return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
11765
11766   if (OpVT.is512BitVector() && SubVecVT.is256BitVector())
11767     return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
11768
11769   if (OpVT.getVectorElementType() == MVT::i1) {
11770     if (IdxVal == 0  && Vec.getOpcode() == ISD::UNDEF) // the operation is legal
11771       return Op;
11772     SDValue ZeroIdx = DAG.getIntPtrConstant(0, dl);
11773     SDValue Undef = DAG.getUNDEF(OpVT);
11774     unsigned NumElems = OpVT.getVectorNumElements();
11775     SDValue ShiftBits = DAG.getConstant(NumElems/2, dl, MVT::i8);
11776
11777     if (IdxVal == OpVT.getVectorNumElements() / 2) {
11778       // Zero upper bits of the Vec
11779       Vec = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec, ShiftBits);
11780       Vec = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec, ShiftBits);
11781
11782       SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef,
11783                                  SubVec, ZeroIdx);
11784       Vec2 = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec2, ShiftBits);
11785       return DAG.getNode(ISD::OR, dl, OpVT, Vec, Vec2);
11786     }
11787     if (IdxVal == 0) {
11788       SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef,
11789                                  SubVec, ZeroIdx);
11790       // Zero upper bits of the Vec2
11791       Vec2 = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec2, ShiftBits);
11792       Vec2 = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec2, ShiftBits);
11793       // Zero lower bits of the Vec
11794       Vec = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec, ShiftBits);
11795       Vec = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec, ShiftBits);
11796       // Merge them together
11797       return DAG.getNode(ISD::OR, dl, OpVT, Vec, Vec2);
11798     }
11799   }
11800   return SDValue();
11801 }
11802
11803 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
11804 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
11805 // one of the above mentioned nodes. It has to be wrapped because otherwise
11806 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
11807 // be used to form addressing mode. These wrapped nodes will be selected
11808 // into MOV32ri.
11809 SDValue
11810 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
11811   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
11812
11813   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11814   // global base reg.
11815   unsigned char OpFlag = 0;
11816   unsigned WrapperKind = X86ISD::Wrapper;
11817   CodeModel::Model M = DAG.getTarget().getCodeModel();
11818
11819   if (Subtarget->isPICStyleRIPRel() &&
11820       (M == CodeModel::Small || M == CodeModel::Kernel))
11821     WrapperKind = X86ISD::WrapperRIP;
11822   else if (Subtarget->isPICStyleGOT())
11823     OpFlag = X86II::MO_GOTOFF;
11824   else if (Subtarget->isPICStyleStubPIC())
11825     OpFlag = X86II::MO_PIC_BASE_OFFSET;
11826
11827   auto PtrVT = getPointerTy(DAG.getDataLayout());
11828   SDValue Result = DAG.getTargetConstantPool(
11829       CP->getConstVal(), PtrVT, CP->getAlignment(), CP->getOffset(), OpFlag);
11830   SDLoc DL(CP);
11831   Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11832   // With PIC, the address is actually $g + Offset.
11833   if (OpFlag) {
11834     Result =
11835         DAG.getNode(ISD::ADD, DL, PtrVT,
11836                     DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), Result);
11837   }
11838
11839   return Result;
11840 }
11841
11842 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
11843   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
11844
11845   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11846   // global base reg.
11847   unsigned char OpFlag = 0;
11848   unsigned WrapperKind = X86ISD::Wrapper;
11849   CodeModel::Model M = DAG.getTarget().getCodeModel();
11850
11851   if (Subtarget->isPICStyleRIPRel() &&
11852       (M == CodeModel::Small || M == CodeModel::Kernel))
11853     WrapperKind = X86ISD::WrapperRIP;
11854   else if (Subtarget->isPICStyleGOT())
11855     OpFlag = X86II::MO_GOTOFF;
11856   else if (Subtarget->isPICStyleStubPIC())
11857     OpFlag = X86II::MO_PIC_BASE_OFFSET;
11858
11859   auto PtrVT = getPointerTy(DAG.getDataLayout());
11860   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, OpFlag);
11861   SDLoc DL(JT);
11862   Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11863
11864   // With PIC, the address is actually $g + Offset.
11865   if (OpFlag)
11866     Result =
11867         DAG.getNode(ISD::ADD, DL, PtrVT,
11868                     DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), Result);
11869
11870   return Result;
11871 }
11872
11873 SDValue
11874 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
11875   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
11876
11877   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11878   // global base reg.
11879   unsigned char OpFlag = 0;
11880   unsigned WrapperKind = X86ISD::Wrapper;
11881   CodeModel::Model M = DAG.getTarget().getCodeModel();
11882
11883   if (Subtarget->isPICStyleRIPRel() &&
11884       (M == CodeModel::Small || M == CodeModel::Kernel)) {
11885     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
11886       OpFlag = X86II::MO_GOTPCREL;
11887     WrapperKind = X86ISD::WrapperRIP;
11888   } else if (Subtarget->isPICStyleGOT()) {
11889     OpFlag = X86II::MO_GOT;
11890   } else if (Subtarget->isPICStyleStubPIC()) {
11891     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
11892   } else if (Subtarget->isPICStyleStubNoDynamic()) {
11893     OpFlag = X86II::MO_DARWIN_NONLAZY;
11894   }
11895
11896   auto PtrVT = getPointerTy(DAG.getDataLayout());
11897   SDValue Result = DAG.getTargetExternalSymbol(Sym, PtrVT, OpFlag);
11898
11899   SDLoc DL(Op);
11900   Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11901
11902   // With PIC, the address is actually $g + Offset.
11903   if (DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
11904       !Subtarget->is64Bit()) {
11905     Result =
11906         DAG.getNode(ISD::ADD, DL, PtrVT,
11907                     DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), Result);
11908   }
11909
11910   // For symbols that require a load from a stub to get the address, emit the
11911   // load.
11912   if (isGlobalStubReference(OpFlag))
11913     Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
11914                          MachinePointerInfo::getGOT(DAG.getMachineFunction()),
11915                          false, false, false, 0);
11916
11917   return Result;
11918 }
11919
11920 SDValue
11921 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
11922   // Create the TargetBlockAddressAddress node.
11923   unsigned char OpFlags =
11924     Subtarget->ClassifyBlockAddressReference();
11925   CodeModel::Model M = DAG.getTarget().getCodeModel();
11926   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
11927   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
11928   SDLoc dl(Op);
11929   auto PtrVT = getPointerTy(DAG.getDataLayout());
11930   SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT, Offset, OpFlags);
11931
11932   if (Subtarget->isPICStyleRIPRel() &&
11933       (M == CodeModel::Small || M == CodeModel::Kernel))
11934     Result = DAG.getNode(X86ISD::WrapperRIP, dl, PtrVT, Result);
11935   else
11936     Result = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, Result);
11937
11938   // With PIC, the address is actually $g + Offset.
11939   if (isGlobalRelativeToPICBase(OpFlags)) {
11940     Result = DAG.getNode(ISD::ADD, dl, PtrVT,
11941                          DAG.getNode(X86ISD::GlobalBaseReg, dl, PtrVT), Result);
11942   }
11943
11944   return Result;
11945 }
11946
11947 SDValue
11948 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
11949                                       int64_t Offset, SelectionDAG &DAG) const {
11950   // Create the TargetGlobalAddress node, folding in the constant
11951   // offset if it is legal.
11952   unsigned char OpFlags =
11953       Subtarget->ClassifyGlobalReference(GV, DAG.getTarget());
11954   CodeModel::Model M = DAG.getTarget().getCodeModel();
11955   auto PtrVT = getPointerTy(DAG.getDataLayout());
11956   SDValue Result;
11957   if (OpFlags == X86II::MO_NO_FLAG &&
11958       X86::isOffsetSuitableForCodeModel(Offset, M)) {
11959     // A direct static reference to a global.
11960     Result = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset);
11961     Offset = 0;
11962   } else {
11963     Result = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, OpFlags);
11964   }
11965
11966   if (Subtarget->isPICStyleRIPRel() &&
11967       (M == CodeModel::Small || M == CodeModel::Kernel))
11968     Result = DAG.getNode(X86ISD::WrapperRIP, dl, PtrVT, Result);
11969   else
11970     Result = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, Result);
11971
11972   // With PIC, the address is actually $g + Offset.
11973   if (isGlobalRelativeToPICBase(OpFlags)) {
11974     Result = DAG.getNode(ISD::ADD, dl, PtrVT,
11975                          DAG.getNode(X86ISD::GlobalBaseReg, dl, PtrVT), Result);
11976   }
11977
11978   // For globals that require a load from a stub to get the address, emit the
11979   // load.
11980   if (isGlobalStubReference(OpFlags))
11981     Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
11982                          MachinePointerInfo::getGOT(DAG.getMachineFunction()),
11983                          false, false, false, 0);
11984
11985   // If there was a non-zero offset that we didn't fold, create an explicit
11986   // addition for it.
11987   if (Offset != 0)
11988     Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result,
11989                          DAG.getConstant(Offset, dl, PtrVT));
11990
11991   return Result;
11992 }
11993
11994 SDValue
11995 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
11996   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
11997   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
11998   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
11999 }
12000
12001 static SDValue
12002 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
12003            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
12004            unsigned char OperandFlags, bool LocalDynamic = false) {
12005   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12006   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
12007   SDLoc dl(GA);
12008   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
12009                                            GA->getValueType(0),
12010                                            GA->getOffset(),
12011                                            OperandFlags);
12012
12013   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
12014                                            : X86ISD::TLSADDR;
12015
12016   if (InFlag) {
12017     SDValue Ops[] = { Chain,  TGA, *InFlag };
12018     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
12019   } else {
12020     SDValue Ops[]  = { Chain, TGA };
12021     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
12022   }
12023
12024   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
12025   MFI->setAdjustsStack(true);
12026   MFI->setHasCalls(true);
12027
12028   SDValue Flag = Chain.getValue(1);
12029   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
12030 }
12031
12032 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
12033 static SDValue
12034 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
12035                                 const EVT PtrVT) {
12036   SDValue InFlag;
12037   SDLoc dl(GA);  // ? function entry point might be better
12038   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
12039                                    DAG.getNode(X86ISD::GlobalBaseReg,
12040                                                SDLoc(), PtrVT), InFlag);
12041   InFlag = Chain.getValue(1);
12042
12043   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
12044 }
12045
12046 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
12047 static SDValue
12048 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
12049                                 const EVT PtrVT) {
12050   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
12051                     X86::RAX, X86II::MO_TLSGD);
12052 }
12053
12054 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
12055                                            SelectionDAG &DAG,
12056                                            const EVT PtrVT,
12057                                            bool is64Bit) {
12058   SDLoc dl(GA);
12059
12060   // Get the start address of the TLS block for this module.
12061   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
12062       .getInfo<X86MachineFunctionInfo>();
12063   MFI->incNumLocalDynamicTLSAccesses();
12064
12065   SDValue Base;
12066   if (is64Bit) {
12067     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
12068                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
12069   } else {
12070     SDValue InFlag;
12071     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
12072         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
12073     InFlag = Chain.getValue(1);
12074     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
12075                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
12076   }
12077
12078   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
12079   // of Base.
12080
12081   // Build x@dtpoff.
12082   unsigned char OperandFlags = X86II::MO_DTPOFF;
12083   unsigned WrapperKind = X86ISD::Wrapper;
12084   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
12085                                            GA->getValueType(0),
12086                                            GA->getOffset(), OperandFlags);
12087   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
12088
12089   // Add x@dtpoff with the base.
12090   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
12091 }
12092
12093 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
12094 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
12095                                    const EVT PtrVT, TLSModel::Model model,
12096                                    bool is64Bit, bool isPIC) {
12097   SDLoc dl(GA);
12098
12099   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
12100   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
12101                                                          is64Bit ? 257 : 256));
12102
12103   SDValue ThreadPointer =
12104       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0, dl),
12105                   MachinePointerInfo(Ptr), false, false, false, 0);
12106
12107   unsigned char OperandFlags = 0;
12108   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
12109   // initialexec.
12110   unsigned WrapperKind = X86ISD::Wrapper;
12111   if (model == TLSModel::LocalExec) {
12112     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
12113   } else if (model == TLSModel::InitialExec) {
12114     if (is64Bit) {
12115       OperandFlags = X86II::MO_GOTTPOFF;
12116       WrapperKind = X86ISD::WrapperRIP;
12117     } else {
12118       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
12119     }
12120   } else {
12121     llvm_unreachable("Unexpected model");
12122   }
12123
12124   // emit "addl x@ntpoff,%eax" (local exec)
12125   // or "addl x@indntpoff,%eax" (initial exec)
12126   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
12127   SDValue TGA =
12128       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
12129                                  GA->getOffset(), OperandFlags);
12130   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
12131
12132   if (model == TLSModel::InitialExec) {
12133     if (isPIC && !is64Bit) {
12134       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
12135                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
12136                            Offset);
12137     }
12138
12139     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
12140                          MachinePointerInfo::getGOT(DAG.getMachineFunction()),
12141                          false, false, false, 0);
12142   }
12143
12144   // The address of the thread local variable is the add of the thread
12145   // pointer with the offset of the variable.
12146   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
12147 }
12148
12149 SDValue
12150 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
12151
12152   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
12153   const GlobalValue *GV = GA->getGlobal();
12154   auto PtrVT = getPointerTy(DAG.getDataLayout());
12155
12156   if (Subtarget->isTargetELF()) {
12157     if (DAG.getTarget().Options.EmulatedTLS)
12158       return LowerToTLSEmulatedModel(GA, DAG);
12159     TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
12160     switch (model) {
12161       case TLSModel::GeneralDynamic:
12162         if (Subtarget->is64Bit())
12163           return LowerToTLSGeneralDynamicModel64(GA, DAG, PtrVT);
12164         return LowerToTLSGeneralDynamicModel32(GA, DAG, PtrVT);
12165       case TLSModel::LocalDynamic:
12166         return LowerToTLSLocalDynamicModel(GA, DAG, PtrVT,
12167                                            Subtarget->is64Bit());
12168       case TLSModel::InitialExec:
12169       case TLSModel::LocalExec:
12170         return LowerToTLSExecModel(GA, DAG, PtrVT, model, Subtarget->is64Bit(),
12171                                    DAG.getTarget().getRelocationModel() ==
12172                                        Reloc::PIC_);
12173     }
12174     llvm_unreachable("Unknown TLS model.");
12175   }
12176
12177   if (Subtarget->isTargetDarwin()) {
12178     // Darwin only has one model of TLS.  Lower to that.
12179     unsigned char OpFlag = 0;
12180     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
12181                            X86ISD::WrapperRIP : X86ISD::Wrapper;
12182
12183     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
12184     // global base reg.
12185     bool PIC32 = (DAG.getTarget().getRelocationModel() == Reloc::PIC_) &&
12186                  !Subtarget->is64Bit();
12187     if (PIC32)
12188       OpFlag = X86II::MO_TLVP_PIC_BASE;
12189     else
12190       OpFlag = X86II::MO_TLVP;
12191     SDLoc DL(Op);
12192     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
12193                                                 GA->getValueType(0),
12194                                                 GA->getOffset(), OpFlag);
12195     SDValue Offset = DAG.getNode(WrapperKind, DL, PtrVT, Result);
12196
12197     // With PIC32, the address is actually $g + Offset.
12198     if (PIC32)
12199       Offset = DAG.getNode(ISD::ADD, DL, PtrVT,
12200                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
12201                            Offset);
12202
12203     // Lowering the machine isd will make sure everything is in the right
12204     // location.
12205     SDValue Chain = DAG.getEntryNode();
12206     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
12207     SDValue Args[] = { Chain, Offset };
12208     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
12209
12210     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
12211     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12212     MFI->setAdjustsStack(true);
12213
12214     // And our return value (tls address) is in the standard call return value
12215     // location.
12216     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
12217     return DAG.getCopyFromReg(Chain, DL, Reg, PtrVT, Chain.getValue(1));
12218   }
12219
12220   if (Subtarget->isTargetKnownWindowsMSVC() ||
12221       Subtarget->isTargetWindowsGNU()) {
12222     // Just use the implicit TLS architecture
12223     // Need to generate someting similar to:
12224     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
12225     //                                  ; from TEB
12226     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
12227     //   mov     rcx, qword [rdx+rcx*8]
12228     //   mov     eax, .tls$:tlsvar
12229     //   [rax+rcx] contains the address
12230     // Windows 64bit: gs:0x58
12231     // Windows 32bit: fs:__tls_array
12232
12233     SDLoc dl(GA);
12234     SDValue Chain = DAG.getEntryNode();
12235
12236     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
12237     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
12238     // use its literal value of 0x2C.
12239     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
12240                                         ? Type::getInt8PtrTy(*DAG.getContext(),
12241                                                              256)
12242                                         : Type::getInt32PtrTy(*DAG.getContext(),
12243                                                               257));
12244
12245     SDValue TlsArray = Subtarget->is64Bit()
12246                            ? DAG.getIntPtrConstant(0x58, dl)
12247                            : (Subtarget->isTargetWindowsGNU()
12248                                   ? DAG.getIntPtrConstant(0x2C, dl)
12249                                   : DAG.getExternalSymbol("_tls_array", PtrVT));
12250
12251     SDValue ThreadPointer =
12252         DAG.getLoad(PtrVT, dl, Chain, TlsArray, MachinePointerInfo(Ptr), false,
12253                     false, false, 0);
12254
12255     SDValue res;
12256     if (GV->getThreadLocalMode() == GlobalVariable::LocalExecTLSModel) {
12257       res = ThreadPointer;
12258     } else {
12259       // Load the _tls_index variable
12260       SDValue IDX = DAG.getExternalSymbol("_tls_index", PtrVT);
12261       if (Subtarget->is64Bit())
12262         IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, PtrVT, Chain, IDX,
12263                              MachinePointerInfo(), MVT::i32, false, false,
12264                              false, 0);
12265       else
12266         IDX = DAG.getLoad(PtrVT, dl, Chain, IDX, MachinePointerInfo(), false,
12267                           false, false, 0);
12268
12269       auto &DL = DAG.getDataLayout();
12270       SDValue Scale =
12271           DAG.getConstant(Log2_64_Ceil(DL.getPointerSize()), dl, PtrVT);
12272       IDX = DAG.getNode(ISD::SHL, dl, PtrVT, IDX, Scale);
12273
12274       res = DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, IDX);
12275     }
12276
12277     res = DAG.getLoad(PtrVT, dl, Chain, res, MachinePointerInfo(), false, false,
12278                       false, 0);
12279
12280     // Get the offset of start of .tls section
12281     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
12282                                              GA->getValueType(0),
12283                                              GA->getOffset(), X86II::MO_SECREL);
12284     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
12285
12286     // The address of the thread local variable is the add of the thread
12287     // pointer with the offset of the variable.
12288     return DAG.getNode(ISD::ADD, dl, PtrVT, res, Offset);
12289   }
12290
12291   llvm_unreachable("TLS not implemented for this target.");
12292 }
12293
12294 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
12295 /// and take a 2 x i32 value to shift plus a shift amount.
12296 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
12297   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
12298   MVT VT = Op.getSimpleValueType();
12299   unsigned VTBits = VT.getSizeInBits();
12300   SDLoc dl(Op);
12301   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
12302   SDValue ShOpLo = Op.getOperand(0);
12303   SDValue ShOpHi = Op.getOperand(1);
12304   SDValue ShAmt  = Op.getOperand(2);
12305   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
12306   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
12307   // during isel.
12308   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
12309                                   DAG.getConstant(VTBits - 1, dl, MVT::i8));
12310   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
12311                                      DAG.getConstant(VTBits - 1, dl, MVT::i8))
12312                        : DAG.getConstant(0, dl, VT);
12313
12314   SDValue Tmp2, Tmp3;
12315   if (Op.getOpcode() == ISD::SHL_PARTS) {
12316     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
12317     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
12318   } else {
12319     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
12320     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
12321   }
12322
12323   // If the shift amount is larger or equal than the width of a part we can't
12324   // rely on the results of shld/shrd. Insert a test and select the appropriate
12325   // values for large shift amounts.
12326   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
12327                                 DAG.getConstant(VTBits, dl, MVT::i8));
12328   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
12329                              AndNode, DAG.getConstant(0, dl, MVT::i8));
12330
12331   SDValue Hi, Lo;
12332   SDValue CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
12333   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
12334   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
12335
12336   if (Op.getOpcode() == ISD::SHL_PARTS) {
12337     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
12338     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
12339   } else {
12340     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
12341     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
12342   }
12343
12344   SDValue Ops[2] = { Lo, Hi };
12345   return DAG.getMergeValues(Ops, dl);
12346 }
12347
12348 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
12349                                            SelectionDAG &DAG) const {
12350   SDValue Src = Op.getOperand(0);
12351   MVT SrcVT = Src.getSimpleValueType();
12352   MVT VT = Op.getSimpleValueType();
12353   SDLoc dl(Op);
12354
12355   if (SrcVT.isVector()) {
12356     if (SrcVT == MVT::v2i32 && VT == MVT::v2f64) {
12357       return DAG.getNode(X86ISD::CVTDQ2PD, dl, VT,
12358                          DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4i32, Src,
12359                          DAG.getUNDEF(SrcVT)));
12360     }
12361     if (SrcVT.getVectorElementType() == MVT::i1) {
12362       MVT IntegerVT = MVT::getVectorVT(MVT::i32, SrcVT.getVectorNumElements());
12363       return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
12364                          DAG.getNode(ISD::SIGN_EXTEND, dl, IntegerVT, Src));
12365     }
12366     return SDValue();
12367   }
12368
12369   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
12370          "Unknown SINT_TO_FP to lower!");
12371
12372   // These are really Legal; return the operand so the caller accepts it as
12373   // Legal.
12374   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
12375     return Op;
12376   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
12377       Subtarget->is64Bit()) {
12378     return Op;
12379   }
12380
12381   unsigned Size = SrcVT.getSizeInBits()/8;
12382   MachineFunction &MF = DAG.getMachineFunction();
12383   auto PtrVT = getPointerTy(MF.getDataLayout());
12384   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
12385   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12386   SDValue Chain = DAG.getStore(
12387       DAG.getEntryNode(), dl, Op.getOperand(0), StackSlot,
12388       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI), false,
12389       false, 0);
12390   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
12391 }
12392
12393 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
12394                                      SDValue StackSlot,
12395                                      SelectionDAG &DAG) const {
12396   // Build the FILD
12397   SDLoc DL(Op);
12398   SDVTList Tys;
12399   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
12400   if (useSSE)
12401     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
12402   else
12403     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
12404
12405   unsigned ByteSize = SrcVT.getSizeInBits()/8;
12406
12407   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
12408   MachineMemOperand *MMO;
12409   if (FI) {
12410     int SSFI = FI->getIndex();
12411     MMO = DAG.getMachineFunction().getMachineMemOperand(
12412         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12413         MachineMemOperand::MOLoad, ByteSize, ByteSize);
12414   } else {
12415     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
12416     StackSlot = StackSlot.getOperand(1);
12417   }
12418   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
12419   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
12420                                            X86ISD::FILD, DL,
12421                                            Tys, Ops, SrcVT, MMO);
12422
12423   if (useSSE) {
12424     Chain = Result.getValue(1);
12425     SDValue InFlag = Result.getValue(2);
12426
12427     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
12428     // shouldn't be necessary except that RFP cannot be live across
12429     // multiple blocks. When stackifier is fixed, they can be uncoupled.
12430     MachineFunction &MF = DAG.getMachineFunction();
12431     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
12432     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
12433     auto PtrVT = getPointerTy(MF.getDataLayout());
12434     SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12435     Tys = DAG.getVTList(MVT::Other);
12436     SDValue Ops[] = {
12437       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
12438     };
12439     MachineMemOperand *MMO = DAG.getMachineFunction().getMachineMemOperand(
12440         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12441         MachineMemOperand::MOStore, SSFISize, SSFISize);
12442
12443     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
12444                                     Ops, Op.getValueType(), MMO);
12445     Result = DAG.getLoad(
12446         Op.getValueType(), DL, Chain, StackSlot,
12447         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12448         false, false, false, 0);
12449   }
12450
12451   return Result;
12452 }
12453
12454 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
12455 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
12456                                                SelectionDAG &DAG) const {
12457   // This algorithm is not obvious. Here it is what we're trying to output:
12458   /*
12459      movq       %rax,  %xmm0
12460      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
12461      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
12462      #ifdef __SSE3__
12463        haddpd   %xmm0, %xmm0
12464      #else
12465        pshufd   $0x4e, %xmm0, %xmm1
12466        addpd    %xmm1, %xmm0
12467      #endif
12468   */
12469
12470   SDLoc dl(Op);
12471   LLVMContext *Context = DAG.getContext();
12472
12473   // Build some magic constants.
12474   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
12475   Constant *C0 = ConstantDataVector::get(*Context, CV0);
12476   auto PtrVT = getPointerTy(DAG.getDataLayout());
12477   SDValue CPIdx0 = DAG.getConstantPool(C0, PtrVT, 16);
12478
12479   SmallVector<Constant*,2> CV1;
12480   CV1.push_back(
12481     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
12482                                       APInt(64, 0x4330000000000000ULL))));
12483   CV1.push_back(
12484     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
12485                                       APInt(64, 0x4530000000000000ULL))));
12486   Constant *C1 = ConstantVector::get(CV1);
12487   SDValue CPIdx1 = DAG.getConstantPool(C1, PtrVT, 16);
12488
12489   // Load the 64-bit value into an XMM register.
12490   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
12491                             Op.getOperand(0));
12492   SDValue CLod0 =
12493       DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
12494                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
12495                   false, false, false, 16);
12496   SDValue Unpck1 =
12497       getUnpackl(DAG, dl, MVT::v4i32, DAG.getBitcast(MVT::v4i32, XR1), CLod0);
12498
12499   SDValue CLod1 =
12500       DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
12501                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
12502                   false, false, false, 16);
12503   SDValue XR2F = DAG.getBitcast(MVT::v2f64, Unpck1);
12504   // TODO: Are there any fast-math-flags to propagate here?
12505   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
12506   SDValue Result;
12507
12508   if (Subtarget->hasSSE3()) {
12509     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
12510     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
12511   } else {
12512     SDValue S2F = DAG.getBitcast(MVT::v4i32, Sub);
12513     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
12514                                            S2F, 0x4E, DAG);
12515     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
12516                          DAG.getBitcast(MVT::v2f64, Shuffle), Sub);
12517   }
12518
12519   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
12520                      DAG.getIntPtrConstant(0, dl));
12521 }
12522
12523 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
12524 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
12525                                                SelectionDAG &DAG) const {
12526   SDLoc dl(Op);
12527   // FP constant to bias correct the final result.
12528   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
12529                                    MVT::f64);
12530
12531   // Load the 32-bit value into an XMM register.
12532   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
12533                              Op.getOperand(0));
12534
12535   // Zero out the upper parts of the register.
12536   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
12537
12538   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
12539                      DAG.getBitcast(MVT::v2f64, Load),
12540                      DAG.getIntPtrConstant(0, dl));
12541
12542   // Or the load with the bias.
12543   SDValue Or = DAG.getNode(
12544       ISD::OR, dl, MVT::v2i64,
12545       DAG.getBitcast(MVT::v2i64,
12546                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Load)),
12547       DAG.getBitcast(MVT::v2i64,
12548                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Bias)));
12549   Or =
12550       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
12551                   DAG.getBitcast(MVT::v2f64, Or), DAG.getIntPtrConstant(0, dl));
12552
12553   // Subtract the bias.
12554   // TODO: Are there any fast-math-flags to propagate here?
12555   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
12556
12557   // Handle final rounding.
12558   EVT DestVT = Op.getValueType();
12559
12560   if (DestVT.bitsLT(MVT::f64))
12561     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
12562                        DAG.getIntPtrConstant(0, dl));
12563   if (DestVT.bitsGT(MVT::f64))
12564     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
12565
12566   // Handle final rounding.
12567   return Sub;
12568 }
12569
12570 static SDValue lowerUINT_TO_FP_vXi32(SDValue Op, SelectionDAG &DAG,
12571                                      const X86Subtarget &Subtarget) {
12572   // The algorithm is the following:
12573   // #ifdef __SSE4_1__
12574   //     uint4 lo = _mm_blend_epi16( v, (uint4) 0x4b000000, 0xaa);
12575   //     uint4 hi = _mm_blend_epi16( _mm_srli_epi32(v,16),
12576   //                                 (uint4) 0x53000000, 0xaa);
12577   // #else
12578   //     uint4 lo = (v & (uint4) 0xffff) | (uint4) 0x4b000000;
12579   //     uint4 hi = (v >> 16) | (uint4) 0x53000000;
12580   // #endif
12581   //     float4 fhi = (float4) hi - (0x1.0p39f + 0x1.0p23f);
12582   //     return (float4) lo + fhi;
12583
12584   // We shouldn't use it when unsafe-fp-math is enabled though: we might later
12585   // reassociate the two FADDs, and if we do that, the algorithm fails
12586   // spectacularly (PR24512).
12587   // FIXME: If we ever have some kind of Machine FMF, this should be marked
12588   // as non-fast and always be enabled. Why isn't SDAG FMF enough? Because
12589   // there's also the MachineCombiner reassociations happening on Machine IR.
12590   if (DAG.getTarget().Options.UnsafeFPMath)
12591     return SDValue();
12592
12593   SDLoc DL(Op);
12594   SDValue V = Op->getOperand(0);
12595   EVT VecIntVT = V.getValueType();
12596   bool Is128 = VecIntVT == MVT::v4i32;
12597   EVT VecFloatVT = Is128 ? MVT::v4f32 : MVT::v8f32;
12598   // If we convert to something else than the supported type, e.g., to v4f64,
12599   // abort early.
12600   if (VecFloatVT != Op->getValueType(0))
12601     return SDValue();
12602
12603   unsigned NumElts = VecIntVT.getVectorNumElements();
12604   assert((VecIntVT == MVT::v4i32 || VecIntVT == MVT::v8i32) &&
12605          "Unsupported custom type");
12606   assert(NumElts <= 8 && "The size of the constant array must be fixed");
12607
12608   // In the #idef/#else code, we have in common:
12609   // - The vector of constants:
12610   // -- 0x4b000000
12611   // -- 0x53000000
12612   // - A shift:
12613   // -- v >> 16
12614
12615   // Create the splat vector for 0x4b000000.
12616   SDValue CstLow = DAG.getConstant(0x4b000000, DL, MVT::i32);
12617   SDValue CstLowArray[] = {CstLow, CstLow, CstLow, CstLow,
12618                            CstLow, CstLow, CstLow, CstLow};
12619   SDValue VecCstLow = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
12620                                   makeArrayRef(&CstLowArray[0], NumElts));
12621   // Create the splat vector for 0x53000000.
12622   SDValue CstHigh = DAG.getConstant(0x53000000, DL, MVT::i32);
12623   SDValue CstHighArray[] = {CstHigh, CstHigh, CstHigh, CstHigh,
12624                             CstHigh, CstHigh, CstHigh, CstHigh};
12625   SDValue VecCstHigh = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
12626                                    makeArrayRef(&CstHighArray[0], NumElts));
12627
12628   // Create the right shift.
12629   SDValue CstShift = DAG.getConstant(16, DL, MVT::i32);
12630   SDValue CstShiftArray[] = {CstShift, CstShift, CstShift, CstShift,
12631                              CstShift, CstShift, CstShift, CstShift};
12632   SDValue VecCstShift = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
12633                                     makeArrayRef(&CstShiftArray[0], NumElts));
12634   SDValue HighShift = DAG.getNode(ISD::SRL, DL, VecIntVT, V, VecCstShift);
12635
12636   SDValue Low, High;
12637   if (Subtarget.hasSSE41()) {
12638     EVT VecI16VT = Is128 ? MVT::v8i16 : MVT::v16i16;
12639     //     uint4 lo = _mm_blend_epi16( v, (uint4) 0x4b000000, 0xaa);
12640     SDValue VecCstLowBitcast = DAG.getBitcast(VecI16VT, VecCstLow);
12641     SDValue VecBitcast = DAG.getBitcast(VecI16VT, V);
12642     // Low will be bitcasted right away, so do not bother bitcasting back to its
12643     // original type.
12644     Low = DAG.getNode(X86ISD::BLENDI, DL, VecI16VT, VecBitcast,
12645                       VecCstLowBitcast, DAG.getConstant(0xaa, DL, MVT::i32));
12646     //     uint4 hi = _mm_blend_epi16( _mm_srli_epi32(v,16),
12647     //                                 (uint4) 0x53000000, 0xaa);
12648     SDValue VecCstHighBitcast = DAG.getBitcast(VecI16VT, VecCstHigh);
12649     SDValue VecShiftBitcast = DAG.getBitcast(VecI16VT, HighShift);
12650     // High will be bitcasted right away, so do not bother bitcasting back to
12651     // its original type.
12652     High = DAG.getNode(X86ISD::BLENDI, DL, VecI16VT, VecShiftBitcast,
12653                        VecCstHighBitcast, DAG.getConstant(0xaa, DL, MVT::i32));
12654   } else {
12655     SDValue CstMask = DAG.getConstant(0xffff, DL, MVT::i32);
12656     SDValue VecCstMask = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT, CstMask,
12657                                      CstMask, CstMask, CstMask);
12658     //     uint4 lo = (v & (uint4) 0xffff) | (uint4) 0x4b000000;
12659     SDValue LowAnd = DAG.getNode(ISD::AND, DL, VecIntVT, V, VecCstMask);
12660     Low = DAG.getNode(ISD::OR, DL, VecIntVT, LowAnd, VecCstLow);
12661
12662     //     uint4 hi = (v >> 16) | (uint4) 0x53000000;
12663     High = DAG.getNode(ISD::OR, DL, VecIntVT, HighShift, VecCstHigh);
12664   }
12665
12666   // Create the vector constant for -(0x1.0p39f + 0x1.0p23f).
12667   SDValue CstFAdd = DAG.getConstantFP(
12668       APFloat(APFloat::IEEEsingle, APInt(32, 0xD3000080)), DL, MVT::f32);
12669   SDValue CstFAddArray[] = {CstFAdd, CstFAdd, CstFAdd, CstFAdd,
12670                             CstFAdd, CstFAdd, CstFAdd, CstFAdd};
12671   SDValue VecCstFAdd = DAG.getNode(ISD::BUILD_VECTOR, DL, VecFloatVT,
12672                                    makeArrayRef(&CstFAddArray[0], NumElts));
12673
12674   //     float4 fhi = (float4) hi - (0x1.0p39f + 0x1.0p23f);
12675   SDValue HighBitcast = DAG.getBitcast(VecFloatVT, High);
12676   // TODO: Are there any fast-math-flags to propagate here?
12677   SDValue FHigh =
12678       DAG.getNode(ISD::FADD, DL, VecFloatVT, HighBitcast, VecCstFAdd);
12679   //     return (float4) lo + fhi;
12680   SDValue LowBitcast = DAG.getBitcast(VecFloatVT, Low);
12681   return DAG.getNode(ISD::FADD, DL, VecFloatVT, LowBitcast, FHigh);
12682 }
12683
12684 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
12685                                                SelectionDAG &DAG) const {
12686   SDValue N0 = Op.getOperand(0);
12687   MVT SVT = N0.getSimpleValueType();
12688   SDLoc dl(Op);
12689
12690   switch (SVT.SimpleTy) {
12691   default:
12692     llvm_unreachable("Custom UINT_TO_FP is not supported!");
12693   case MVT::v4i8:
12694   case MVT::v4i16:
12695   case MVT::v8i8:
12696   case MVT::v8i16: {
12697     MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
12698     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
12699                        DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
12700   }
12701   case MVT::v4i32:
12702   case MVT::v8i32:
12703     return lowerUINT_TO_FP_vXi32(Op, DAG, *Subtarget);
12704   case MVT::v16i8:
12705   case MVT::v16i16:
12706     if (Subtarget->hasAVX512())
12707       return DAG.getNode(ISD::UINT_TO_FP, dl, Op.getValueType(),
12708                          DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v16i32, N0));
12709   }
12710   llvm_unreachable(nullptr);
12711 }
12712
12713 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
12714                                            SelectionDAG &DAG) const {
12715   SDValue N0 = Op.getOperand(0);
12716   SDLoc dl(Op);
12717   auto PtrVT = getPointerTy(DAG.getDataLayout());
12718
12719   if (Op.getValueType().isVector())
12720     return lowerUINT_TO_FP_vec(Op, DAG);
12721
12722   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
12723   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
12724   // the optimization here.
12725   if (DAG.SignBitIsZero(N0))
12726     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
12727
12728   MVT SrcVT = N0.getSimpleValueType();
12729   MVT DstVT = Op.getSimpleValueType();
12730
12731   if (Subtarget->hasAVX512() && isScalarFPTypeInSSEReg(DstVT) &&
12732       (SrcVT == MVT::i32 || (SrcVT == MVT::i64 && Subtarget->is64Bit()))) {
12733     // Conversions from unsigned i32 to f32/f64 are legal,
12734     // using VCVTUSI2SS/SD.  Same for i64 in 64-bit mode.
12735     return Op;
12736   }
12737
12738   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
12739     return LowerUINT_TO_FP_i64(Op, DAG);
12740   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
12741     return LowerUINT_TO_FP_i32(Op, DAG);
12742   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
12743     return SDValue();
12744
12745   // Make a 64-bit buffer, and use it to build an FILD.
12746   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
12747   if (SrcVT == MVT::i32) {
12748     SDValue WordOff = DAG.getConstant(4, dl, PtrVT);
12749     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, WordOff);
12750     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
12751                                   StackSlot, MachinePointerInfo(),
12752                                   false, false, 0);
12753     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, dl, MVT::i32),
12754                                   OffsetSlot, MachinePointerInfo(),
12755                                   false, false, 0);
12756     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
12757     return Fild;
12758   }
12759
12760   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
12761   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
12762                                StackSlot, MachinePointerInfo(),
12763                                false, false, 0);
12764   // For i64 source, we need to add the appropriate power of 2 if the input
12765   // was negative.  This is the same as the optimization in
12766   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
12767   // we must be careful to do the computation in x87 extended precision, not
12768   // in SSE. (The generic code can't know it's OK to do this, or how to.)
12769   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
12770   MachineMemOperand *MMO = DAG.getMachineFunction().getMachineMemOperand(
12771       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12772       MachineMemOperand::MOLoad, 8, 8);
12773
12774   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
12775   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
12776   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
12777                                          MVT::i64, MMO);
12778
12779   APInt FF(32, 0x5F800000ULL);
12780
12781   // Check whether the sign bit is set.
12782   SDValue SignSet = DAG.getSetCC(
12783       dl, getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::i64),
12784       Op.getOperand(0), DAG.getConstant(0, dl, MVT::i64), ISD::SETLT);
12785
12786   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
12787   SDValue FudgePtr = DAG.getConstantPool(
12788       ConstantInt::get(*DAG.getContext(), FF.zext(64)), PtrVT);
12789
12790   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
12791   SDValue Zero = DAG.getIntPtrConstant(0, dl);
12792   SDValue Four = DAG.getIntPtrConstant(4, dl);
12793   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
12794                                Zero, Four);
12795   FudgePtr = DAG.getNode(ISD::ADD, dl, PtrVT, FudgePtr, Offset);
12796
12797   // Load the value out, extending it from f32 to f80.
12798   // FIXME: Avoid the extend by constructing the right constant pool?
12799   SDValue Fudge = DAG.getExtLoad(
12800       ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(), FudgePtr,
12801       MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), MVT::f32,
12802       false, false, false, 4);
12803   // Extend everything to 80 bits to force it to be done on x87.
12804   // TODO: Are there any fast-math-flags to propagate here?
12805   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
12806   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add,
12807                      DAG.getIntPtrConstant(0, dl));
12808 }
12809
12810 // If the given FP_TO_SINT (IsSigned) or FP_TO_UINT (!IsSigned) operation
12811 // is legal, or has an fp128 or f16 source (which needs to be promoted to f32),
12812 // just return an <SDValue(), SDValue()> pair.
12813 // Otherwise it is assumed to be a conversion from one of f32, f64 or f80
12814 // to i16, i32 or i64, and we lower it to a legal sequence.
12815 // If lowered to the final integer result we return a <result, SDValue()> pair.
12816 // Otherwise we lower it to a sequence ending with a FIST, return a
12817 // <FIST, StackSlot> pair, and the caller is responsible for loading
12818 // the final integer result from StackSlot.
12819 std::pair<SDValue,SDValue>
12820 X86TargetLowering::FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
12821                                    bool IsSigned, bool IsReplace) const {
12822   SDLoc DL(Op);
12823
12824   EVT DstTy = Op.getValueType();
12825   EVT TheVT = Op.getOperand(0).getValueType();
12826   auto PtrVT = getPointerTy(DAG.getDataLayout());
12827
12828   if (TheVT != MVT::f32 && TheVT != MVT::f64 && TheVT != MVT::f80) {
12829     // f16 must be promoted before using the lowering in this routine.
12830     // fp128 does not use this lowering.
12831     return std::make_pair(SDValue(), SDValue());
12832   }
12833
12834   // If using FIST to compute an unsigned i64, we'll need some fixup
12835   // to handle values above the maximum signed i64.  A FIST is always
12836   // used for the 32-bit subtarget, but also for f80 on a 64-bit target.
12837   bool UnsignedFixup = !IsSigned &&
12838                        DstTy == MVT::i64 &&
12839                        (!Subtarget->is64Bit() ||
12840                         !isScalarFPTypeInSSEReg(TheVT));
12841
12842   if (!IsSigned && DstTy != MVT::i64 && !Subtarget->hasAVX512()) {
12843     // Replace the fp-to-uint32 operation with an fp-to-sint64 FIST.
12844     // The low 32 bits of the fist result will have the correct uint32 result.
12845     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
12846     DstTy = MVT::i64;
12847   }
12848
12849   assert(DstTy.getSimpleVT() <= MVT::i64 &&
12850          DstTy.getSimpleVT() >= MVT::i16 &&
12851          "Unknown FP_TO_INT to lower!");
12852
12853   // These are really Legal.
12854   if (DstTy == MVT::i32 &&
12855       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
12856     return std::make_pair(SDValue(), SDValue());
12857   if (Subtarget->is64Bit() &&
12858       DstTy == MVT::i64 &&
12859       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
12860     return std::make_pair(SDValue(), SDValue());
12861
12862   // We lower FP->int64 into FISTP64 followed by a load from a temporary
12863   // stack slot.
12864   MachineFunction &MF = DAG.getMachineFunction();
12865   unsigned MemSize = DstTy.getSizeInBits()/8;
12866   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
12867   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12868
12869   unsigned Opc;
12870   switch (DstTy.getSimpleVT().SimpleTy) {
12871   default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
12872   case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
12873   case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
12874   case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
12875   }
12876
12877   SDValue Chain = DAG.getEntryNode();
12878   SDValue Value = Op.getOperand(0);
12879   SDValue Adjust; // 0x0 or 0x80000000, for result sign bit adjustment.
12880
12881   if (UnsignedFixup) {
12882     //
12883     // Conversion to unsigned i64 is implemented with a select,
12884     // depending on whether the source value fits in the range
12885     // of a signed i64.  Let Thresh be the FP equivalent of
12886     // 0x8000000000000000ULL.
12887     //
12888     //  Adjust i32 = (Value < Thresh) ? 0 : 0x80000000;
12889     //  FistSrc    = (Value < Thresh) ? Value : (Value - Thresh);
12890     //  Fist-to-mem64 FistSrc
12891     //  Add 0 or 0x800...0ULL to the 64-bit result, which is equivalent
12892     //  to XOR'ing the high 32 bits with Adjust.
12893     //
12894     // Being a power of 2, Thresh is exactly representable in all FP formats.
12895     // For X87 we'd like to use the smallest FP type for this constant, but
12896     // for DAG type consistency we have to match the FP operand type.
12897
12898     APFloat Thresh(APFloat::IEEEsingle, APInt(32, 0x5f000000));
12899     LLVM_ATTRIBUTE_UNUSED APFloat::opStatus Status = APFloat::opOK;
12900     bool LosesInfo = false;
12901     if (TheVT == MVT::f64)
12902       // The rounding mode is irrelevant as the conversion should be exact.
12903       Status = Thresh.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
12904                               &LosesInfo);
12905     else if (TheVT == MVT::f80)
12906       Status = Thresh.convert(APFloat::x87DoubleExtended,
12907                               APFloat::rmNearestTiesToEven, &LosesInfo);
12908
12909     assert(Status == APFloat::opOK && !LosesInfo &&
12910            "FP conversion should have been exact");
12911
12912     SDValue ThreshVal = DAG.getConstantFP(Thresh, DL, TheVT);
12913
12914     SDValue Cmp = DAG.getSetCC(DL,
12915                                getSetCCResultType(DAG.getDataLayout(),
12916                                                   *DAG.getContext(), TheVT),
12917                                Value, ThreshVal, ISD::SETLT);
12918     Adjust = DAG.getSelect(DL, MVT::i32, Cmp,
12919                            DAG.getConstant(0, DL, MVT::i32),
12920                            DAG.getConstant(0x80000000, DL, MVT::i32));
12921     SDValue Sub = DAG.getNode(ISD::FSUB, DL, TheVT, Value, ThreshVal);
12922     Cmp = DAG.getSetCC(DL, getSetCCResultType(DAG.getDataLayout(),
12923                                               *DAG.getContext(), TheVT),
12924                        Value, ThreshVal, ISD::SETLT);
12925     Value = DAG.getSelect(DL, TheVT, Cmp, Value, Sub);
12926   }
12927
12928   // FIXME This causes a redundant load/store if the SSE-class value is already
12929   // in memory, such as if it is on the callstack.
12930   if (isScalarFPTypeInSSEReg(TheVT)) {
12931     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
12932     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
12933                          MachinePointerInfo::getFixedStack(MF, SSFI), false,
12934                          false, 0);
12935     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
12936     SDValue Ops[] = {
12937       Chain, StackSlot, DAG.getValueType(TheVT)
12938     };
12939
12940     MachineMemOperand *MMO =
12941         MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(MF, SSFI),
12942                                 MachineMemOperand::MOLoad, MemSize, MemSize);
12943     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
12944     Chain = Value.getValue(1);
12945     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
12946     StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12947   }
12948
12949   MachineMemOperand *MMO =
12950       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(MF, SSFI),
12951                               MachineMemOperand::MOStore, MemSize, MemSize);
12952
12953   if (UnsignedFixup) {
12954
12955     // Insert the FIST, load its result as two i32's,
12956     // and XOR the high i32 with Adjust.
12957
12958     SDValue FistOps[] = { Chain, Value, StackSlot };
12959     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
12960                                            FistOps, DstTy, MMO);
12961
12962     SDValue Low32 = DAG.getLoad(MVT::i32, DL, FIST, StackSlot,
12963                                 MachinePointerInfo(),
12964                                 false, false, false, 0);
12965     SDValue HighAddr = DAG.getNode(ISD::ADD, DL, PtrVT, StackSlot,
12966                                    DAG.getConstant(4, DL, PtrVT));
12967
12968     SDValue High32 = DAG.getLoad(MVT::i32, DL, FIST, HighAddr,
12969                                  MachinePointerInfo(),
12970                                  false, false, false, 0);
12971     High32 = DAG.getNode(ISD::XOR, DL, MVT::i32, High32, Adjust);
12972
12973     if (Subtarget->is64Bit()) {
12974       // Join High32 and Low32 into a 64-bit result.
12975       // (High32 << 32) | Low32
12976       Low32 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, Low32);
12977       High32 = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, High32);
12978       High32 = DAG.getNode(ISD::SHL, DL, MVT::i64, High32,
12979                            DAG.getConstant(32, DL, MVT::i8));
12980       SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i64, High32, Low32);
12981       return std::make_pair(Result, SDValue());
12982     }
12983
12984     SDValue ResultOps[] = { Low32, High32 };
12985
12986     SDValue pair = IsReplace
12987       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, ResultOps)
12988       : DAG.getMergeValues(ResultOps, DL);
12989     return std::make_pair(pair, SDValue());
12990   } else {
12991     // Build the FP_TO_INT*_IN_MEM
12992     SDValue Ops[] = { Chain, Value, StackSlot };
12993     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
12994                                            Ops, DstTy, MMO);
12995     return std::make_pair(FIST, StackSlot);
12996   }
12997 }
12998
12999 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
13000                               const X86Subtarget *Subtarget) {
13001   MVT VT = Op->getSimpleValueType(0);
13002   SDValue In = Op->getOperand(0);
13003   MVT InVT = In.getSimpleValueType();
13004   SDLoc dl(Op);
13005
13006   if (VT.is512BitVector() || InVT.getScalarType() == MVT::i1)
13007     return DAG.getNode(ISD::ZERO_EXTEND, dl, VT, In);
13008
13009   // Optimize vectors in AVX mode:
13010   //
13011   //   v8i16 -> v8i32
13012   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
13013   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
13014   //   Concat upper and lower parts.
13015   //
13016   //   v4i32 -> v4i64
13017   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
13018   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
13019   //   Concat upper and lower parts.
13020   //
13021
13022   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
13023       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
13024       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
13025     return SDValue();
13026
13027   if (Subtarget->hasInt256())
13028     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
13029
13030   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
13031   SDValue Undef = DAG.getUNDEF(InVT);
13032   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
13033   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
13034   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
13035
13036   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
13037                              VT.getVectorNumElements()/2);
13038
13039   OpLo = DAG.getBitcast(HVT, OpLo);
13040   OpHi = DAG.getBitcast(HVT, OpHi);
13041
13042   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
13043 }
13044
13045 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
13046                   const X86Subtarget *Subtarget, SelectionDAG &DAG) {
13047   MVT VT = Op->getSimpleValueType(0);
13048   SDValue In = Op->getOperand(0);
13049   MVT InVT = In.getSimpleValueType();
13050   SDLoc DL(Op);
13051   unsigned int NumElts = VT.getVectorNumElements();
13052   if (NumElts != 8 && NumElts != 16 && !Subtarget->hasBWI())
13053     return SDValue();
13054
13055   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
13056     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
13057
13058   assert(InVT.getVectorElementType() == MVT::i1);
13059   MVT ExtVT = NumElts == 8 ? MVT::v8i64 : MVT::v16i32;
13060   SDValue One =
13061    DAG.getConstant(APInt(ExtVT.getScalarSizeInBits(), 1), DL, ExtVT);
13062   SDValue Zero =
13063    DAG.getConstant(APInt::getNullValue(ExtVT.getScalarSizeInBits()), DL, ExtVT);
13064
13065   SDValue V = DAG.getNode(ISD::VSELECT, DL, ExtVT, In, One, Zero);
13066   if (VT.is512BitVector())
13067     return V;
13068   return DAG.getNode(X86ISD::VTRUNC, DL, VT, V);
13069 }
13070
13071 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
13072                                SelectionDAG &DAG) {
13073   if (Subtarget->hasFp256())
13074     if (SDValue Res = LowerAVXExtend(Op, DAG, Subtarget))
13075       return Res;
13076
13077   return SDValue();
13078 }
13079
13080 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
13081                                 SelectionDAG &DAG) {
13082   SDLoc DL(Op);
13083   MVT VT = Op.getSimpleValueType();
13084   SDValue In = Op.getOperand(0);
13085   MVT SVT = In.getSimpleValueType();
13086
13087   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
13088     return LowerZERO_EXTEND_AVX512(Op, Subtarget, DAG);
13089
13090   if (Subtarget->hasFp256())
13091     if (SDValue Res = LowerAVXExtend(Op, DAG, Subtarget))
13092       return Res;
13093
13094   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
13095          VT.getVectorNumElements() != SVT.getVectorNumElements());
13096   return SDValue();
13097 }
13098
13099 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
13100   SDLoc DL(Op);
13101   MVT VT = Op.getSimpleValueType();
13102   SDValue In = Op.getOperand(0);
13103   MVT InVT = In.getSimpleValueType();
13104
13105   if (VT == MVT::i1) {
13106     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
13107            "Invalid scalar TRUNCATE operation");
13108     if (InVT.getSizeInBits() >= 32)
13109       return SDValue();
13110     In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
13111     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
13112   }
13113   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
13114          "Invalid TRUNCATE operation");
13115
13116   // move vector to mask - truncate solution for SKX
13117   if (VT.getVectorElementType() == MVT::i1) {
13118     if (InVT.is512BitVector() && InVT.getScalarSizeInBits() <= 16 &&
13119         Subtarget->hasBWI())
13120       return Op; // legal, will go to VPMOVB2M, VPMOVW2M
13121     if ((InVT.is256BitVector() || InVT.is128BitVector())
13122         && InVT.getScalarSizeInBits() <= 16 &&
13123         Subtarget->hasBWI() && Subtarget->hasVLX())
13124       return Op; // legal, will go to VPMOVB2M, VPMOVW2M
13125     if (InVT.is512BitVector() && InVT.getScalarSizeInBits() >= 32 &&
13126         Subtarget->hasDQI())
13127       return Op; // legal, will go to VPMOVD2M, VPMOVQ2M
13128     if ((InVT.is256BitVector() || InVT.is128BitVector())
13129         && InVT.getScalarSizeInBits() >= 32 &&
13130         Subtarget->hasDQI() && Subtarget->hasVLX())
13131       return Op; // legal, will go to VPMOVB2M, VPMOVQ2M
13132   }
13133
13134   if (VT.getVectorElementType() == MVT::i1) {
13135     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
13136     unsigned NumElts = InVT.getVectorNumElements();
13137     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
13138     if (InVT.getSizeInBits() < 512) {
13139       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
13140       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
13141       InVT = ExtVT;
13142     }
13143
13144     SDValue OneV =
13145      DAG.getConstant(APInt::getSignBit(InVT.getScalarSizeInBits()), DL, InVT);
13146     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
13147     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
13148   }
13149
13150   // vpmovqb/w/d, vpmovdb/w, vpmovwb
13151   if (((!InVT.is512BitVector() && Subtarget->hasVLX()) || InVT.is512BitVector()) &&
13152       (InVT.getVectorElementType() != MVT::i16 || Subtarget->hasBWI()))
13153     return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
13154
13155   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
13156     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
13157     if (Subtarget->hasInt256()) {
13158       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
13159       In = DAG.getBitcast(MVT::v8i32, In);
13160       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
13161                                 ShufMask);
13162       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
13163                          DAG.getIntPtrConstant(0, DL));
13164     }
13165
13166     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
13167                                DAG.getIntPtrConstant(0, DL));
13168     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
13169                                DAG.getIntPtrConstant(2, DL));
13170     OpLo = DAG.getBitcast(MVT::v4i32, OpLo);
13171     OpHi = DAG.getBitcast(MVT::v4i32, OpHi);
13172     static const int ShufMask[] = {0, 2, 4, 6};
13173     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
13174   }
13175
13176   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
13177     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
13178     if (Subtarget->hasInt256()) {
13179       In = DAG.getBitcast(MVT::v32i8, In);
13180
13181       SmallVector<SDValue,32> pshufbMask;
13182       for (unsigned i = 0; i < 2; ++i) {
13183         pshufbMask.push_back(DAG.getConstant(0x0, DL, MVT::i8));
13184         pshufbMask.push_back(DAG.getConstant(0x1, DL, MVT::i8));
13185         pshufbMask.push_back(DAG.getConstant(0x4, DL, MVT::i8));
13186         pshufbMask.push_back(DAG.getConstant(0x5, DL, MVT::i8));
13187         pshufbMask.push_back(DAG.getConstant(0x8, DL, MVT::i8));
13188         pshufbMask.push_back(DAG.getConstant(0x9, DL, MVT::i8));
13189         pshufbMask.push_back(DAG.getConstant(0xc, DL, MVT::i8));
13190         pshufbMask.push_back(DAG.getConstant(0xd, DL, MVT::i8));
13191         for (unsigned j = 0; j < 8; ++j)
13192           pshufbMask.push_back(DAG.getConstant(0x80, DL, MVT::i8));
13193       }
13194       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
13195       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
13196       In = DAG.getBitcast(MVT::v4i64, In);
13197
13198       static const int ShufMask[] = {0,  2,  -1,  -1};
13199       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
13200                                 &ShufMask[0]);
13201       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
13202                        DAG.getIntPtrConstant(0, DL));
13203       return DAG.getBitcast(VT, In);
13204     }
13205
13206     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
13207                                DAG.getIntPtrConstant(0, DL));
13208
13209     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
13210                                DAG.getIntPtrConstant(4, DL));
13211
13212     OpLo = DAG.getBitcast(MVT::v16i8, OpLo);
13213     OpHi = DAG.getBitcast(MVT::v16i8, OpHi);
13214
13215     // The PSHUFB mask:
13216     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
13217                                    -1, -1, -1, -1, -1, -1, -1, -1};
13218
13219     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
13220     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
13221     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
13222
13223     OpLo = DAG.getBitcast(MVT::v4i32, OpLo);
13224     OpHi = DAG.getBitcast(MVT::v4i32, OpHi);
13225
13226     // The MOVLHPS Mask:
13227     static const int ShufMask2[] = {0, 1, 4, 5};
13228     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
13229     return DAG.getBitcast(MVT::v8i16, res);
13230   }
13231
13232   // Handle truncation of V256 to V128 using shuffles.
13233   if (!VT.is128BitVector() || !InVT.is256BitVector())
13234     return SDValue();
13235
13236   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
13237
13238   unsigned NumElems = VT.getVectorNumElements();
13239   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
13240
13241   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
13242   // Prepare truncation shuffle mask
13243   for (unsigned i = 0; i != NumElems; ++i)
13244     MaskVec[i] = i * 2;
13245   SDValue V = DAG.getVectorShuffle(NVT, DL, DAG.getBitcast(NVT, In),
13246                                    DAG.getUNDEF(NVT), &MaskVec[0]);
13247   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
13248                      DAG.getIntPtrConstant(0, DL));
13249 }
13250
13251 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
13252                                            SelectionDAG &DAG) const {
13253   assert(!Op.getSimpleValueType().isVector());
13254
13255   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
13256     /*IsSigned=*/ true, /*IsReplace=*/ false);
13257   SDValue FIST = Vals.first, StackSlot = Vals.second;
13258   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
13259   if (!FIST.getNode())
13260     return Op;
13261
13262   if (StackSlot.getNode())
13263     // Load the result.
13264     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
13265                        FIST, StackSlot, MachinePointerInfo(),
13266                        false, false, false, 0);
13267
13268   // The node is the result.
13269   return FIST;
13270 }
13271
13272 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
13273                                            SelectionDAG &DAG) const {
13274   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
13275     /*IsSigned=*/ false, /*IsReplace=*/ false);
13276   SDValue FIST = Vals.first, StackSlot = Vals.second;
13277   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
13278   if (!FIST.getNode())
13279     return Op;
13280
13281   if (StackSlot.getNode())
13282     // Load the result.
13283     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
13284                        FIST, StackSlot, MachinePointerInfo(),
13285                        false, false, false, 0);
13286
13287   // The node is the result.
13288   return FIST;
13289 }
13290
13291 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
13292   SDLoc DL(Op);
13293   MVT VT = Op.getSimpleValueType();
13294   SDValue In = Op.getOperand(0);
13295   MVT SVT = In.getSimpleValueType();
13296
13297   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
13298
13299   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
13300                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
13301                                  In, DAG.getUNDEF(SVT)));
13302 }
13303
13304 /// The only differences between FABS and FNEG are the mask and the logic op.
13305 /// FNEG also has a folding opportunity for FNEG(FABS(x)).
13306 static SDValue LowerFABSorFNEG(SDValue Op, SelectionDAG &DAG) {
13307   assert((Op.getOpcode() == ISD::FABS || Op.getOpcode() == ISD::FNEG) &&
13308          "Wrong opcode for lowering FABS or FNEG.");
13309
13310   bool IsFABS = (Op.getOpcode() == ISD::FABS);
13311
13312   // If this is a FABS and it has an FNEG user, bail out to fold the combination
13313   // into an FNABS. We'll lower the FABS after that if it is still in use.
13314   if (IsFABS)
13315     for (SDNode *User : Op->uses())
13316       if (User->getOpcode() == ISD::FNEG)
13317         return Op;
13318
13319   SDLoc dl(Op);
13320   MVT VT = Op.getSimpleValueType();
13321
13322   // FIXME: Use function attribute "OptimizeForSize" and/or CodeGenOpt::Level to
13323   // decide if we should generate a 16-byte constant mask when we only need 4 or
13324   // 8 bytes for the scalar case.
13325
13326   MVT LogicVT;
13327   MVT EltVT;
13328   unsigned NumElts;
13329
13330   if (VT.isVector()) {
13331     LogicVT = VT;
13332     EltVT = VT.getVectorElementType();
13333     NumElts = VT.getVectorNumElements();
13334   } else {
13335     // There are no scalar bitwise logical SSE/AVX instructions, so we
13336     // generate a 16-byte vector constant and logic op even for the scalar case.
13337     // Using a 16-byte mask allows folding the load of the mask with
13338     // the logic op, so it can save (~4 bytes) on code size.
13339     LogicVT = (VT == MVT::f64) ? MVT::v2f64 : MVT::v4f32;
13340     EltVT = VT;
13341     NumElts = (VT == MVT::f64) ? 2 : 4;
13342   }
13343
13344   unsigned EltBits = EltVT.getSizeInBits();
13345   LLVMContext *Context = DAG.getContext();
13346   // For FABS, mask is 0x7f...; for FNEG, mask is 0x80...
13347   APInt MaskElt =
13348     IsFABS ? APInt::getSignedMaxValue(EltBits) : APInt::getSignBit(EltBits);
13349   Constant *C = ConstantInt::get(*Context, MaskElt);
13350   C = ConstantVector::getSplat(NumElts, C);
13351   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13352   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(DAG.getDataLayout()));
13353   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
13354   SDValue Mask =
13355       DAG.getLoad(LogicVT, dl, DAG.getEntryNode(), CPIdx,
13356                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
13357                   false, false, false, Alignment);
13358
13359   SDValue Op0 = Op.getOperand(0);
13360   bool IsFNABS = !IsFABS && (Op0.getOpcode() == ISD::FABS);
13361   unsigned LogicOp =
13362     IsFABS ? X86ISD::FAND : IsFNABS ? X86ISD::FOR : X86ISD::FXOR;
13363   SDValue Operand = IsFNABS ? Op0.getOperand(0) : Op0;
13364
13365   if (VT.isVector())
13366     return DAG.getNode(LogicOp, dl, LogicVT, Operand, Mask);
13367
13368   // For the scalar case extend to a 128-bit vector, perform the logic op,
13369   // and extract the scalar result back out.
13370   Operand = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LogicVT, Operand);
13371   SDValue LogicNode = DAG.getNode(LogicOp, dl, LogicVT, Operand, Mask);
13372   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, LogicNode,
13373                      DAG.getIntPtrConstant(0, dl));
13374 }
13375
13376 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
13377   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13378   LLVMContext *Context = DAG.getContext();
13379   SDValue Op0 = Op.getOperand(0);
13380   SDValue Op1 = Op.getOperand(1);
13381   SDLoc dl(Op);
13382   MVT VT = Op.getSimpleValueType();
13383   MVT SrcVT = Op1.getSimpleValueType();
13384
13385   // If second operand is smaller, extend it first.
13386   if (SrcVT.bitsLT(VT)) {
13387     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
13388     SrcVT = VT;
13389   }
13390   // And if it is bigger, shrink it first.
13391   if (SrcVT.bitsGT(VT)) {
13392     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1, dl));
13393     SrcVT = VT;
13394   }
13395
13396   // At this point the operands and the result should have the same
13397   // type, and that won't be f80 since that is not custom lowered.
13398
13399   const fltSemantics &Sem =
13400       VT == MVT::f64 ? APFloat::IEEEdouble : APFloat::IEEEsingle;
13401   const unsigned SizeInBits = VT.getSizeInBits();
13402
13403   SmallVector<Constant *, 4> CV(
13404       VT == MVT::f64 ? 2 : 4,
13405       ConstantFP::get(*Context, APFloat(Sem, APInt(SizeInBits, 0))));
13406
13407   // First, clear all bits but the sign bit from the second operand (sign).
13408   CV[0] = ConstantFP::get(*Context,
13409                           APFloat(Sem, APInt::getHighBitsSet(SizeInBits, 1)));
13410   Constant *C = ConstantVector::get(CV);
13411   auto PtrVT = TLI.getPointerTy(DAG.getDataLayout());
13412   SDValue CPIdx = DAG.getConstantPool(C, PtrVT, 16);
13413
13414   // Perform all logic operations as 16-byte vectors because there are no
13415   // scalar FP logic instructions in SSE. This allows load folding of the
13416   // constants into the logic instructions.
13417   MVT LogicVT = (VT == MVT::f64) ? MVT::v2f64 : MVT::v4f32;
13418   SDValue Mask1 =
13419       DAG.getLoad(LogicVT, dl, DAG.getEntryNode(), CPIdx,
13420                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
13421                   false, false, false, 16);
13422   Op1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LogicVT, Op1);
13423   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, LogicVT, Op1, Mask1);
13424
13425   // Next, clear the sign bit from the first operand (magnitude).
13426   // If it's a constant, we can clear it here.
13427   if (ConstantFPSDNode *Op0CN = dyn_cast<ConstantFPSDNode>(Op0)) {
13428     APFloat APF = Op0CN->getValueAPF();
13429     // If the magnitude is a positive zero, the sign bit alone is enough.
13430     if (APF.isPosZero())
13431       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SrcVT, SignBit,
13432                          DAG.getIntPtrConstant(0, dl));
13433     APF.clearSign();
13434     CV[0] = ConstantFP::get(*Context, APF);
13435   } else {
13436     CV[0] = ConstantFP::get(
13437         *Context,
13438         APFloat(Sem, APInt::getLowBitsSet(SizeInBits, SizeInBits - 1)));
13439   }
13440   C = ConstantVector::get(CV);
13441   CPIdx = DAG.getConstantPool(C, PtrVT, 16);
13442   SDValue Val =
13443       DAG.getLoad(LogicVT, dl, DAG.getEntryNode(), CPIdx,
13444                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
13445                   false, false, false, 16);
13446   // If the magnitude operand wasn't a constant, we need to AND out the sign.
13447   if (!isa<ConstantFPSDNode>(Op0)) {
13448     Op0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LogicVT, Op0);
13449     Val = DAG.getNode(X86ISD::FAND, dl, LogicVT, Op0, Val);
13450   }
13451   // OR the magnitude value with the sign bit.
13452   Val = DAG.getNode(X86ISD::FOR, dl, LogicVT, Val, SignBit);
13453   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SrcVT, Val,
13454                      DAG.getIntPtrConstant(0, dl));
13455 }
13456
13457 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
13458   SDValue N0 = Op.getOperand(0);
13459   SDLoc dl(Op);
13460   MVT VT = Op.getSimpleValueType();
13461
13462   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
13463   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
13464                                   DAG.getConstant(1, dl, VT));
13465   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, dl, VT));
13466 }
13467
13468 // Check whether an OR'd tree is PTEST-able.
13469 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
13470                                       SelectionDAG &DAG) {
13471   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
13472
13473   if (!Subtarget->hasSSE41())
13474     return SDValue();
13475
13476   if (!Op->hasOneUse())
13477     return SDValue();
13478
13479   SDNode *N = Op.getNode();
13480   SDLoc DL(N);
13481
13482   SmallVector<SDValue, 8> Opnds;
13483   DenseMap<SDValue, unsigned> VecInMap;
13484   SmallVector<SDValue, 8> VecIns;
13485   EVT VT = MVT::Other;
13486
13487   // Recognize a special case where a vector is casted into wide integer to
13488   // test all 0s.
13489   Opnds.push_back(N->getOperand(0));
13490   Opnds.push_back(N->getOperand(1));
13491
13492   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
13493     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
13494     // BFS traverse all OR'd operands.
13495     if (I->getOpcode() == ISD::OR) {
13496       Opnds.push_back(I->getOperand(0));
13497       Opnds.push_back(I->getOperand(1));
13498       // Re-evaluate the number of nodes to be traversed.
13499       e += 2; // 2 more nodes (LHS and RHS) are pushed.
13500       continue;
13501     }
13502
13503     // Quit if a non-EXTRACT_VECTOR_ELT
13504     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
13505       return SDValue();
13506
13507     // Quit if without a constant index.
13508     SDValue Idx = I->getOperand(1);
13509     if (!isa<ConstantSDNode>(Idx))
13510       return SDValue();
13511
13512     SDValue ExtractedFromVec = I->getOperand(0);
13513     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
13514     if (M == VecInMap.end()) {
13515       VT = ExtractedFromVec.getValueType();
13516       // Quit if not 128/256-bit vector.
13517       if (!VT.is128BitVector() && !VT.is256BitVector())
13518         return SDValue();
13519       // Quit if not the same type.
13520       if (VecInMap.begin() != VecInMap.end() &&
13521           VT != VecInMap.begin()->first.getValueType())
13522         return SDValue();
13523       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
13524       VecIns.push_back(ExtractedFromVec);
13525     }
13526     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
13527   }
13528
13529   assert((VT.is128BitVector() || VT.is256BitVector()) &&
13530          "Not extracted from 128-/256-bit vector.");
13531
13532   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
13533
13534   for (DenseMap<SDValue, unsigned>::const_iterator
13535         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
13536     // Quit if not all elements are used.
13537     if (I->second != FullMask)
13538       return SDValue();
13539   }
13540
13541   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
13542
13543   // Cast all vectors into TestVT for PTEST.
13544   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
13545     VecIns[i] = DAG.getBitcast(TestVT, VecIns[i]);
13546
13547   // If more than one full vectors are evaluated, OR them first before PTEST.
13548   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
13549     // Each iteration will OR 2 nodes and append the result until there is only
13550     // 1 node left, i.e. the final OR'd value of all vectors.
13551     SDValue LHS = VecIns[Slot];
13552     SDValue RHS = VecIns[Slot + 1];
13553     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
13554   }
13555
13556   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
13557                      VecIns.back(), VecIns.back());
13558 }
13559
13560 /// \brief return true if \c Op has a use that doesn't just read flags.
13561 static bool hasNonFlagsUse(SDValue Op) {
13562   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
13563        ++UI) {
13564     SDNode *User = *UI;
13565     unsigned UOpNo = UI.getOperandNo();
13566     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
13567       // Look pass truncate.
13568       UOpNo = User->use_begin().getOperandNo();
13569       User = *User->use_begin();
13570     }
13571
13572     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
13573         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
13574       return true;
13575   }
13576   return false;
13577 }
13578
13579 /// Emit nodes that will be selected as "test Op0,Op0", or something
13580 /// equivalent.
13581 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
13582                                     SelectionDAG &DAG) const {
13583   if (Op.getValueType() == MVT::i1) {
13584     SDValue ExtOp = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i8, Op);
13585     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, ExtOp,
13586                        DAG.getConstant(0, dl, MVT::i8));
13587   }
13588   // CF and OF aren't always set the way we want. Determine which
13589   // of these we need.
13590   bool NeedCF = false;
13591   bool NeedOF = false;
13592   switch (X86CC) {
13593   default: break;
13594   case X86::COND_A: case X86::COND_AE:
13595   case X86::COND_B: case X86::COND_BE:
13596     NeedCF = true;
13597     break;
13598   case X86::COND_G: case X86::COND_GE:
13599   case X86::COND_L: case X86::COND_LE:
13600   case X86::COND_O: case X86::COND_NO: {
13601     // Check if we really need to set the
13602     // Overflow flag. If NoSignedWrap is present
13603     // that is not actually needed.
13604     switch (Op->getOpcode()) {
13605     case ISD::ADD:
13606     case ISD::SUB:
13607     case ISD::MUL:
13608     case ISD::SHL: {
13609       const auto *BinNode = cast<BinaryWithFlagsSDNode>(Op.getNode());
13610       if (BinNode->Flags.hasNoSignedWrap())
13611         break;
13612     }
13613     default:
13614       NeedOF = true;
13615       break;
13616     }
13617     break;
13618   }
13619   }
13620   // See if we can use the EFLAGS value from the operand instead of
13621   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
13622   // we prove that the arithmetic won't overflow, we can't use OF or CF.
13623   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
13624     // Emit a CMP with 0, which is the TEST pattern.
13625     //if (Op.getValueType() == MVT::i1)
13626     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
13627     //                     DAG.getConstant(0, MVT::i1));
13628     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
13629                        DAG.getConstant(0, dl, Op.getValueType()));
13630   }
13631   unsigned Opcode = 0;
13632   unsigned NumOperands = 0;
13633
13634   // Truncate operations may prevent the merge of the SETCC instruction
13635   // and the arithmetic instruction before it. Attempt to truncate the operands
13636   // of the arithmetic instruction and use a reduced bit-width instruction.
13637   bool NeedTruncation = false;
13638   SDValue ArithOp = Op;
13639   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
13640     SDValue Arith = Op->getOperand(0);
13641     // Both the trunc and the arithmetic op need to have one user each.
13642     if (Arith->hasOneUse())
13643       switch (Arith.getOpcode()) {
13644         default: break;
13645         case ISD::ADD:
13646         case ISD::SUB:
13647         case ISD::AND:
13648         case ISD::OR:
13649         case ISD::XOR: {
13650           NeedTruncation = true;
13651           ArithOp = Arith;
13652         }
13653       }
13654   }
13655
13656   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
13657   // which may be the result of a CAST.  We use the variable 'Op', which is the
13658   // non-casted variable when we check for possible users.
13659   switch (ArithOp.getOpcode()) {
13660   case ISD::ADD:
13661     // Due to an isel shortcoming, be conservative if this add is likely to be
13662     // selected as part of a load-modify-store instruction. When the root node
13663     // in a match is a store, isel doesn't know how to remap non-chain non-flag
13664     // uses of other nodes in the match, such as the ADD in this case. This
13665     // leads to the ADD being left around and reselected, with the result being
13666     // two adds in the output.  Alas, even if none our users are stores, that
13667     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
13668     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
13669     // climbing the DAG back to the root, and it doesn't seem to be worth the
13670     // effort.
13671     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13672          UE = Op.getNode()->use_end(); UI != UE; ++UI)
13673       if (UI->getOpcode() != ISD::CopyToReg &&
13674           UI->getOpcode() != ISD::SETCC &&
13675           UI->getOpcode() != ISD::STORE)
13676         goto default_case;
13677
13678     if (ConstantSDNode *C =
13679         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
13680       // An add of one will be selected as an INC.
13681       if (C->getAPIntValue() == 1 && !Subtarget->slowIncDec()) {
13682         Opcode = X86ISD::INC;
13683         NumOperands = 1;
13684         break;
13685       }
13686
13687       // An add of negative one (subtract of one) will be selected as a DEC.
13688       if (C->getAPIntValue().isAllOnesValue() && !Subtarget->slowIncDec()) {
13689         Opcode = X86ISD::DEC;
13690         NumOperands = 1;
13691         break;
13692       }
13693     }
13694
13695     // Otherwise use a regular EFLAGS-setting add.
13696     Opcode = X86ISD::ADD;
13697     NumOperands = 2;
13698     break;
13699   case ISD::SHL:
13700   case ISD::SRL:
13701     // If we have a constant logical shift that's only used in a comparison
13702     // against zero turn it into an equivalent AND. This allows turning it into
13703     // a TEST instruction later.
13704     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) && Op->hasOneUse() &&
13705         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
13706       EVT VT = Op.getValueType();
13707       unsigned BitWidth = VT.getSizeInBits();
13708       unsigned ShAmt = Op->getConstantOperandVal(1);
13709       if (ShAmt >= BitWidth) // Avoid undefined shifts.
13710         break;
13711       APInt Mask = ArithOp.getOpcode() == ISD::SRL
13712                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
13713                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
13714       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
13715         break;
13716       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
13717                                 DAG.getConstant(Mask, dl, VT));
13718       DAG.ReplaceAllUsesWith(Op, New);
13719       Op = New;
13720     }
13721     break;
13722
13723   case ISD::AND:
13724     // If the primary and result isn't used, don't bother using X86ISD::AND,
13725     // because a TEST instruction will be better.
13726     if (!hasNonFlagsUse(Op))
13727       break;
13728     // FALL THROUGH
13729   case ISD::SUB:
13730   case ISD::OR:
13731   case ISD::XOR:
13732     // Due to the ISEL shortcoming noted above, be conservative if this op is
13733     // likely to be selected as part of a load-modify-store instruction.
13734     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13735            UE = Op.getNode()->use_end(); UI != UE; ++UI)
13736       if (UI->getOpcode() == ISD::STORE)
13737         goto default_case;
13738
13739     // Otherwise use a regular EFLAGS-setting instruction.
13740     switch (ArithOp.getOpcode()) {
13741     default: llvm_unreachable("unexpected operator!");
13742     case ISD::SUB: Opcode = X86ISD::SUB; break;
13743     case ISD::XOR: Opcode = X86ISD::XOR; break;
13744     case ISD::AND: Opcode = X86ISD::AND; break;
13745     case ISD::OR: {
13746       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
13747         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
13748         if (EFLAGS.getNode())
13749           return EFLAGS;
13750       }
13751       Opcode = X86ISD::OR;
13752       break;
13753     }
13754     }
13755
13756     NumOperands = 2;
13757     break;
13758   case X86ISD::ADD:
13759   case X86ISD::SUB:
13760   case X86ISD::INC:
13761   case X86ISD::DEC:
13762   case X86ISD::OR:
13763   case X86ISD::XOR:
13764   case X86ISD::AND:
13765     return SDValue(Op.getNode(), 1);
13766   default:
13767   default_case:
13768     break;
13769   }
13770
13771   // If we found that truncation is beneficial, perform the truncation and
13772   // update 'Op'.
13773   if (NeedTruncation) {
13774     EVT VT = Op.getValueType();
13775     SDValue WideVal = Op->getOperand(0);
13776     EVT WideVT = WideVal.getValueType();
13777     unsigned ConvertedOp = 0;
13778     // Use a target machine opcode to prevent further DAGCombine
13779     // optimizations that may separate the arithmetic operations
13780     // from the setcc node.
13781     switch (WideVal.getOpcode()) {
13782       default: break;
13783       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
13784       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
13785       case ISD::AND: ConvertedOp = X86ISD::AND; break;
13786       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
13787       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
13788     }
13789
13790     if (ConvertedOp) {
13791       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13792       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
13793         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
13794         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
13795         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
13796       }
13797     }
13798   }
13799
13800   if (Opcode == 0)
13801     // Emit a CMP with 0, which is the TEST pattern.
13802     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
13803                        DAG.getConstant(0, dl, Op.getValueType()));
13804
13805   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
13806   SmallVector<SDValue, 4> Ops(Op->op_begin(), Op->op_begin() + NumOperands);
13807
13808   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
13809   DAG.ReplaceAllUsesWith(Op, New);
13810   return SDValue(New.getNode(), 1);
13811 }
13812
13813 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
13814 /// equivalent.
13815 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
13816                                    SDLoc dl, SelectionDAG &DAG) const {
13817   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
13818     if (C->getAPIntValue() == 0)
13819       return EmitTest(Op0, X86CC, dl, DAG);
13820
13821      if (Op0.getValueType() == MVT::i1)
13822        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
13823   }
13824
13825   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
13826        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
13827     // Do the comparison at i32 if it's smaller, besides the Atom case.
13828     // This avoids subregister aliasing issues. Keep the smaller reference
13829     // if we're optimizing for size, however, as that'll allow better folding
13830     // of memory operations.
13831     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
13832         !DAG.getMachineFunction().getFunction()->optForMinSize() &&
13833         !Subtarget->isAtom()) {
13834       unsigned ExtendOp =
13835           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
13836       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
13837       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
13838     }
13839     // Use SUB instead of CMP to enable CSE between SUB and CMP.
13840     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
13841     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
13842                               Op0, Op1);
13843     return SDValue(Sub.getNode(), 1);
13844   }
13845   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
13846 }
13847
13848 /// Convert a comparison if required by the subtarget.
13849 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
13850                                                  SelectionDAG &DAG) const {
13851   // If the subtarget does not support the FUCOMI instruction, floating-point
13852   // comparisons have to be converted.
13853   if (Subtarget->hasCMov() ||
13854       Cmp.getOpcode() != X86ISD::CMP ||
13855       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
13856       !Cmp.getOperand(1).getValueType().isFloatingPoint())
13857     return Cmp;
13858
13859   // The instruction selector will select an FUCOM instruction instead of
13860   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
13861   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
13862   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
13863   SDLoc dl(Cmp);
13864   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
13865   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
13866   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
13867                             DAG.getConstant(8, dl, MVT::i8));
13868   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
13869   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
13870 }
13871
13872 /// The minimum architected relative accuracy is 2^-12. We need one
13873 /// Newton-Raphson step to have a good float result (24 bits of precision).
13874 SDValue X86TargetLowering::getRsqrtEstimate(SDValue Op,
13875                                             DAGCombinerInfo &DCI,
13876                                             unsigned &RefinementSteps,
13877                                             bool &UseOneConstNR) const {
13878   EVT VT = Op.getValueType();
13879   const char *RecipOp;
13880
13881   // SSE1 has rsqrtss and rsqrtps. AVX adds a 256-bit variant for rsqrtps.
13882   // TODO: Add support for AVX512 (v16f32).
13883   // It is likely not profitable to do this for f64 because a double-precision
13884   // rsqrt estimate with refinement on x86 prior to FMA requires at least 16
13885   // instructions: convert to single, rsqrtss, convert back to double, refine
13886   // (3 steps = at least 13 insts). If an 'rsqrtsd' variant was added to the ISA
13887   // along with FMA, this could be a throughput win.
13888   if (VT == MVT::f32 && Subtarget->hasSSE1())
13889     RecipOp = "sqrtf";
13890   else if ((VT == MVT::v4f32 && Subtarget->hasSSE1()) ||
13891            (VT == MVT::v8f32 && Subtarget->hasAVX()))
13892     RecipOp = "vec-sqrtf";
13893   else
13894     return SDValue();
13895
13896   TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
13897   if (!Recips.isEnabled(RecipOp))
13898     return SDValue();
13899
13900   RefinementSteps = Recips.getRefinementSteps(RecipOp);
13901   UseOneConstNR = false;
13902   return DCI.DAG.getNode(X86ISD::FRSQRT, SDLoc(Op), VT, Op);
13903 }
13904
13905 /// The minimum architected relative accuracy is 2^-12. We need one
13906 /// Newton-Raphson step to have a good float result (24 bits of precision).
13907 SDValue X86TargetLowering::getRecipEstimate(SDValue Op,
13908                                             DAGCombinerInfo &DCI,
13909                                             unsigned &RefinementSteps) const {
13910   EVT VT = Op.getValueType();
13911   const char *RecipOp;
13912
13913   // SSE1 has rcpss and rcpps. AVX adds a 256-bit variant for rcpps.
13914   // TODO: Add support for AVX512 (v16f32).
13915   // It is likely not profitable to do this for f64 because a double-precision
13916   // reciprocal estimate with refinement on x86 prior to FMA requires
13917   // 15 instructions: convert to single, rcpss, convert back to double, refine
13918   // (3 steps = 12 insts). If an 'rcpsd' variant was added to the ISA
13919   // along with FMA, this could be a throughput win.
13920   if (VT == MVT::f32 && Subtarget->hasSSE1())
13921     RecipOp = "divf";
13922   else if ((VT == MVT::v4f32 && Subtarget->hasSSE1()) ||
13923            (VT == MVT::v8f32 && Subtarget->hasAVX()))
13924     RecipOp = "vec-divf";
13925   else
13926     return SDValue();
13927
13928   TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
13929   if (!Recips.isEnabled(RecipOp))
13930     return SDValue();
13931
13932   RefinementSteps = Recips.getRefinementSteps(RecipOp);
13933   return DCI.DAG.getNode(X86ISD::FRCP, SDLoc(Op), VT, Op);
13934 }
13935
13936 /// If we have at least two divisions that use the same divisor, convert to
13937 /// multplication by a reciprocal. This may need to be adjusted for a given
13938 /// CPU if a division's cost is not at least twice the cost of a multiplication.
13939 /// This is because we still need one division to calculate the reciprocal and
13940 /// then we need two multiplies by that reciprocal as replacements for the
13941 /// original divisions.
13942 unsigned X86TargetLowering::combineRepeatedFPDivisors() const {
13943   return 2;
13944 }
13945
13946 static bool isAllOnes(SDValue V) {
13947   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
13948   return C && C->isAllOnesValue();
13949 }
13950
13951 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
13952 /// if it's possible.
13953 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
13954                                      SDLoc dl, SelectionDAG &DAG) const {
13955   SDValue Op0 = And.getOperand(0);
13956   SDValue Op1 = And.getOperand(1);
13957   if (Op0.getOpcode() == ISD::TRUNCATE)
13958     Op0 = Op0.getOperand(0);
13959   if (Op1.getOpcode() == ISD::TRUNCATE)
13960     Op1 = Op1.getOperand(0);
13961
13962   SDValue LHS, RHS;
13963   if (Op1.getOpcode() == ISD::SHL)
13964     std::swap(Op0, Op1);
13965   if (Op0.getOpcode() == ISD::SHL) {
13966     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
13967       if (And00C->getZExtValue() == 1) {
13968         // If we looked past a truncate, check that it's only truncating away
13969         // known zeros.
13970         unsigned BitWidth = Op0.getValueSizeInBits();
13971         unsigned AndBitWidth = And.getValueSizeInBits();
13972         if (BitWidth > AndBitWidth) {
13973           APInt Zeros, Ones;
13974           DAG.computeKnownBits(Op0, Zeros, Ones);
13975           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
13976             return SDValue();
13977         }
13978         LHS = Op1;
13979         RHS = Op0.getOperand(1);
13980       }
13981   } else if (Op1.getOpcode() == ISD::Constant) {
13982     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
13983     uint64_t AndRHSVal = AndRHS->getZExtValue();
13984     SDValue AndLHS = Op0;
13985
13986     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
13987       LHS = AndLHS.getOperand(0);
13988       RHS = AndLHS.getOperand(1);
13989     }
13990
13991     // Use BT if the immediate can't be encoded in a TEST instruction.
13992     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
13993       LHS = AndLHS;
13994       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), dl, LHS.getValueType());
13995     }
13996   }
13997
13998   if (LHS.getNode()) {
13999     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
14000     // instruction.  Since the shift amount is in-range-or-undefined, we know
14001     // that doing a bittest on the i32 value is ok.  We extend to i32 because
14002     // the encoding for the i16 version is larger than the i32 version.
14003     // Also promote i16 to i32 for performance / code size reason.
14004     if (LHS.getValueType() == MVT::i8 ||
14005         LHS.getValueType() == MVT::i16)
14006       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
14007
14008     // If the operand types disagree, extend the shift amount to match.  Since
14009     // BT ignores high bits (like shifts) we can use anyextend.
14010     if (LHS.getValueType() != RHS.getValueType())
14011       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
14012
14013     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
14014     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
14015     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14016                        DAG.getConstant(Cond, dl, MVT::i8), BT);
14017   }
14018
14019   return SDValue();
14020 }
14021
14022 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
14023 /// mask CMPs.
14024 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
14025                               SDValue &Op1) {
14026   unsigned SSECC;
14027   bool Swap = false;
14028
14029   // SSE Condition code mapping:
14030   //  0 - EQ
14031   //  1 - LT
14032   //  2 - LE
14033   //  3 - UNORD
14034   //  4 - NEQ
14035   //  5 - NLT
14036   //  6 - NLE
14037   //  7 - ORD
14038   switch (SetCCOpcode) {
14039   default: llvm_unreachable("Unexpected SETCC condition");
14040   case ISD::SETOEQ:
14041   case ISD::SETEQ:  SSECC = 0; break;
14042   case ISD::SETOGT:
14043   case ISD::SETGT:  Swap = true; // Fallthrough
14044   case ISD::SETLT:
14045   case ISD::SETOLT: SSECC = 1; break;
14046   case ISD::SETOGE:
14047   case ISD::SETGE:  Swap = true; // Fallthrough
14048   case ISD::SETLE:
14049   case ISD::SETOLE: SSECC = 2; break;
14050   case ISD::SETUO:  SSECC = 3; break;
14051   case ISD::SETUNE:
14052   case ISD::SETNE:  SSECC = 4; break;
14053   case ISD::SETULE: Swap = true; // Fallthrough
14054   case ISD::SETUGE: SSECC = 5; break;
14055   case ISD::SETULT: Swap = true; // Fallthrough
14056   case ISD::SETUGT: SSECC = 6; break;
14057   case ISD::SETO:   SSECC = 7; break;
14058   case ISD::SETUEQ:
14059   case ISD::SETONE: SSECC = 8; break;
14060   }
14061   if (Swap)
14062     std::swap(Op0, Op1);
14063
14064   return SSECC;
14065 }
14066
14067 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
14068 // ones, and then concatenate the result back.
14069 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
14070   MVT VT = Op.getSimpleValueType();
14071
14072   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
14073          "Unsupported value type for operation");
14074
14075   unsigned NumElems = VT.getVectorNumElements();
14076   SDLoc dl(Op);
14077   SDValue CC = Op.getOperand(2);
14078
14079   // Extract the LHS vectors
14080   SDValue LHS = Op.getOperand(0);
14081   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
14082   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
14083
14084   // Extract the RHS vectors
14085   SDValue RHS = Op.getOperand(1);
14086   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
14087   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
14088
14089   // Issue the operation on the smaller types and concatenate the result back
14090   MVT EltVT = VT.getVectorElementType();
14091   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
14092   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
14093                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
14094                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
14095 }
14096
14097 static SDValue LowerBoolVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
14098   SDValue Op0 = Op.getOperand(0);
14099   SDValue Op1 = Op.getOperand(1);
14100   SDValue CC = Op.getOperand(2);
14101   MVT VT = Op.getSimpleValueType();
14102   SDLoc dl(Op);
14103
14104   assert(Op0.getValueType().getVectorElementType() == MVT::i1 &&
14105          "Unexpected type for boolean compare operation");
14106   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
14107   SDValue NotOp0 = DAG.getNode(ISD::XOR, dl, VT, Op0,
14108                                DAG.getConstant(-1, dl, VT));
14109   SDValue NotOp1 = DAG.getNode(ISD::XOR, dl, VT, Op1,
14110                                DAG.getConstant(-1, dl, VT));
14111   switch (SetCCOpcode) {
14112   default: llvm_unreachable("Unexpected SETCC condition");
14113   case ISD::SETEQ:
14114     // (x == y) -> ~(x ^ y)
14115     return DAG.getNode(ISD::XOR, dl, VT,
14116                        DAG.getNode(ISD::XOR, dl, VT, Op0, Op1),
14117                        DAG.getConstant(-1, dl, VT));
14118   case ISD::SETNE:
14119     // (x != y) -> (x ^ y)
14120     return DAG.getNode(ISD::XOR, dl, VT, Op0, Op1);
14121   case ISD::SETUGT:
14122   case ISD::SETGT:
14123     // (x > y) -> (x & ~y)
14124     return DAG.getNode(ISD::AND, dl, VT, Op0, NotOp1);
14125   case ISD::SETULT:
14126   case ISD::SETLT:
14127     // (x < y) -> (~x & y)
14128     return DAG.getNode(ISD::AND, dl, VT, NotOp0, Op1);
14129   case ISD::SETULE:
14130   case ISD::SETLE:
14131     // (x <= y) -> (~x | y)
14132     return DAG.getNode(ISD::OR, dl, VT, NotOp0, Op1);
14133   case ISD::SETUGE:
14134   case ISD::SETGE:
14135     // (x >=y) -> (x | ~y)
14136     return DAG.getNode(ISD::OR, dl, VT, Op0, NotOp1);
14137   }
14138 }
14139
14140 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
14141                                      const X86Subtarget *Subtarget) {
14142   SDValue Op0 = Op.getOperand(0);
14143   SDValue Op1 = Op.getOperand(1);
14144   SDValue CC = Op.getOperand(2);
14145   MVT VT = Op.getSimpleValueType();
14146   SDLoc dl(Op);
14147
14148   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 8 &&
14149          Op.getValueType().getScalarType() == MVT::i1 &&
14150          "Cannot set masked compare for this operation");
14151
14152   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
14153   unsigned  Opc = 0;
14154   bool Unsigned = false;
14155   bool Swap = false;
14156   unsigned SSECC;
14157   switch (SetCCOpcode) {
14158   default: llvm_unreachable("Unexpected SETCC condition");
14159   case ISD::SETNE:  SSECC = 4; break;
14160   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
14161   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
14162   case ISD::SETLT:  Swap = true; //fall-through
14163   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
14164   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
14165   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
14166   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
14167   case ISD::SETULE: Unsigned = true; //fall-through
14168   case ISD::SETLE:  SSECC = 2; break;
14169   }
14170
14171   if (Swap)
14172     std::swap(Op0, Op1);
14173   if (Opc)
14174     return DAG.getNode(Opc, dl, VT, Op0, Op1);
14175   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
14176   return DAG.getNode(Opc, dl, VT, Op0, Op1,
14177                      DAG.getConstant(SSECC, dl, MVT::i8));
14178 }
14179
14180 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
14181 /// operand \p Op1.  If non-trivial (for example because it's not constant)
14182 /// return an empty value.
14183 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
14184 {
14185   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
14186   if (!BV)
14187     return SDValue();
14188
14189   MVT VT = Op1.getSimpleValueType();
14190   MVT EVT = VT.getVectorElementType();
14191   unsigned n = VT.getVectorNumElements();
14192   SmallVector<SDValue, 8> ULTOp1;
14193
14194   for (unsigned i = 0; i < n; ++i) {
14195     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
14196     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
14197       return SDValue();
14198
14199     // Avoid underflow.
14200     APInt Val = Elt->getAPIntValue();
14201     if (Val == 0)
14202       return SDValue();
14203
14204     ULTOp1.push_back(DAG.getConstant(Val - 1, dl, EVT));
14205   }
14206
14207   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
14208 }
14209
14210 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
14211                            SelectionDAG &DAG) {
14212   SDValue Op0 = Op.getOperand(0);
14213   SDValue Op1 = Op.getOperand(1);
14214   SDValue CC = Op.getOperand(2);
14215   MVT VT = Op.getSimpleValueType();
14216   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
14217   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
14218   SDLoc dl(Op);
14219
14220   if (isFP) {
14221 #ifndef NDEBUG
14222     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
14223     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
14224 #endif
14225
14226     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
14227     unsigned Opc = X86ISD::CMPP;
14228     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
14229       assert(VT.getVectorNumElements() <= 16);
14230       Opc = X86ISD::CMPM;
14231     }
14232     // In the two special cases we can't handle, emit two comparisons.
14233     if (SSECC == 8) {
14234       unsigned CC0, CC1;
14235       unsigned CombineOpc;
14236       if (SetCCOpcode == ISD::SETUEQ) {
14237         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
14238       } else {
14239         assert(SetCCOpcode == ISD::SETONE);
14240         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
14241       }
14242
14243       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
14244                                  DAG.getConstant(CC0, dl, MVT::i8));
14245       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
14246                                  DAG.getConstant(CC1, dl, MVT::i8));
14247       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
14248     }
14249     // Handle all other FP comparisons here.
14250     return DAG.getNode(Opc, dl, VT, Op0, Op1,
14251                        DAG.getConstant(SSECC, dl, MVT::i8));
14252   }
14253
14254   MVT VTOp0 = Op0.getSimpleValueType();
14255   assert(VTOp0 == Op1.getSimpleValueType() &&
14256          "Expected operands with same type!");
14257   assert(VT.getVectorNumElements() == VTOp0.getVectorNumElements() &&
14258          "Invalid number of packed elements for source and destination!");
14259
14260   if (VT.is128BitVector() && VTOp0.is256BitVector()) {
14261     // On non-AVX512 targets, a vector of MVT::i1 is promoted by the type
14262     // legalizer to a wider vector type.  In the case of 'vsetcc' nodes, the
14263     // legalizer firstly checks if the first operand in input to the setcc has
14264     // a legal type. If so, then it promotes the return type to that same type.
14265     // Otherwise, the return type is promoted to the 'next legal type' which,
14266     // for a vector of MVT::i1 is always a 128-bit integer vector type.
14267     //
14268     // We reach this code only if the following two conditions are met:
14269     // 1. Both return type and operand type have been promoted to wider types
14270     //    by the type legalizer.
14271     // 2. The original operand type has been promoted to a 256-bit vector.
14272     //
14273     // Note that condition 2. only applies for AVX targets.
14274     SDValue NewOp = DAG.getSetCC(dl, VTOp0, Op0, Op1, SetCCOpcode);
14275     return DAG.getZExtOrTrunc(NewOp, dl, VT);
14276   }
14277
14278   // The non-AVX512 code below works under the assumption that source and
14279   // destination types are the same.
14280   assert((Subtarget->hasAVX512() || (VT == VTOp0)) &&
14281          "Value types for source and destination must be the same!");
14282
14283   // Break 256-bit integer vector compare into smaller ones.
14284   if (VT.is256BitVector() && !Subtarget->hasInt256())
14285     return Lower256IntVSETCC(Op, DAG);
14286
14287   EVT OpVT = Op1.getValueType();
14288   if (OpVT.getVectorElementType() == MVT::i1)
14289     return LowerBoolVSETCC_AVX512(Op, DAG);
14290
14291   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
14292   if (Subtarget->hasAVX512()) {
14293     if (Op1.getValueType().is512BitVector() ||
14294         (Subtarget->hasBWI() && Subtarget->hasVLX()) ||
14295         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
14296       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
14297
14298     // In AVX-512 architecture setcc returns mask with i1 elements,
14299     // But there is no compare instruction for i8 and i16 elements in KNL.
14300     // We are not talking about 512-bit operands in this case, these
14301     // types are illegal.
14302     if (MaskResult &&
14303         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
14304          OpVT.getVectorElementType().getSizeInBits() >= 8))
14305       return DAG.getNode(ISD::TRUNCATE, dl, VT,
14306                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
14307   }
14308
14309   // Lower using XOP integer comparisons.
14310   if ((VT == MVT::v16i8 || VT == MVT::v8i16 ||
14311        VT == MVT::v4i32 || VT == MVT::v2i64) && Subtarget->hasXOP()) {
14312     // Translate compare code to XOP PCOM compare mode.
14313     unsigned CmpMode = 0;
14314     switch (SetCCOpcode) {
14315     default: llvm_unreachable("Unexpected SETCC condition");
14316     case ISD::SETULT:
14317     case ISD::SETLT: CmpMode = 0x00; break;
14318     case ISD::SETULE:
14319     case ISD::SETLE: CmpMode = 0x01; break;
14320     case ISD::SETUGT:
14321     case ISD::SETGT: CmpMode = 0x02; break;
14322     case ISD::SETUGE:
14323     case ISD::SETGE: CmpMode = 0x03; break;
14324     case ISD::SETEQ: CmpMode = 0x04; break;
14325     case ISD::SETNE: CmpMode = 0x05; break;
14326     }
14327
14328     // Are we comparing unsigned or signed integers?
14329     unsigned Opc = ISD::isUnsignedIntSetCC(SetCCOpcode)
14330       ? X86ISD::VPCOMU : X86ISD::VPCOM;
14331
14332     return DAG.getNode(Opc, dl, VT, Op0, Op1,
14333                        DAG.getConstant(CmpMode, dl, MVT::i8));
14334   }
14335
14336   // We are handling one of the integer comparisons here.  Since SSE only has
14337   // GT and EQ comparisons for integer, swapping operands and multiple
14338   // operations may be required for some comparisons.
14339   unsigned Opc;
14340   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
14341   bool Subus = false;
14342
14343   switch (SetCCOpcode) {
14344   default: llvm_unreachable("Unexpected SETCC condition");
14345   case ISD::SETNE:  Invert = true;
14346   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
14347   case ISD::SETLT:  Swap = true;
14348   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
14349   case ISD::SETGE:  Swap = true;
14350   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
14351                     Invert = true; break;
14352   case ISD::SETULT: Swap = true;
14353   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
14354                     FlipSigns = true; break;
14355   case ISD::SETUGE: Swap = true;
14356   case ISD::SETULE: Opc = X86ISD::PCMPGT;
14357                     FlipSigns = true; Invert = true; break;
14358   }
14359
14360   // Special case: Use min/max operations for SETULE/SETUGE
14361   MVT VET = VT.getVectorElementType();
14362   bool hasMinMax =
14363        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
14364     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
14365
14366   if (hasMinMax) {
14367     switch (SetCCOpcode) {
14368     default: break;
14369     case ISD::SETULE: Opc = ISD::UMIN; MinMax = true; break;
14370     case ISD::SETUGE: Opc = ISD::UMAX; MinMax = true; break;
14371     }
14372
14373     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
14374   }
14375
14376   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
14377   if (!MinMax && hasSubus) {
14378     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
14379     // Op0 u<= Op1:
14380     //   t = psubus Op0, Op1
14381     //   pcmpeq t, <0..0>
14382     switch (SetCCOpcode) {
14383     default: break;
14384     case ISD::SETULT: {
14385       // If the comparison is against a constant we can turn this into a
14386       // setule.  With psubus, setule does not require a swap.  This is
14387       // beneficial because the constant in the register is no longer
14388       // destructed as the destination so it can be hoisted out of a loop.
14389       // Only do this pre-AVX since vpcmp* is no longer destructive.
14390       if (Subtarget->hasAVX())
14391         break;
14392       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
14393       if (ULEOp1.getNode()) {
14394         Op1 = ULEOp1;
14395         Subus = true; Invert = false; Swap = false;
14396       }
14397       break;
14398     }
14399     // Psubus is better than flip-sign because it requires no inversion.
14400     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
14401     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
14402     }
14403
14404     if (Subus) {
14405       Opc = X86ISD::SUBUS;
14406       FlipSigns = false;
14407     }
14408   }
14409
14410   if (Swap)
14411     std::swap(Op0, Op1);
14412
14413   // Check that the operation in question is available (most are plain SSE2,
14414   // but PCMPGTQ and PCMPEQQ have different requirements).
14415   if (VT == MVT::v2i64) {
14416     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
14417       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
14418
14419       // First cast everything to the right type.
14420       Op0 = DAG.getBitcast(MVT::v4i32, Op0);
14421       Op1 = DAG.getBitcast(MVT::v4i32, Op1);
14422
14423       // Since SSE has no unsigned integer comparisons, we need to flip the sign
14424       // bits of the inputs before performing those operations. The lower
14425       // compare is always unsigned.
14426       SDValue SB;
14427       if (FlipSigns) {
14428         SB = DAG.getConstant(0x80000000U, dl, MVT::v4i32);
14429       } else {
14430         SDValue Sign = DAG.getConstant(0x80000000U, dl, MVT::i32);
14431         SDValue Zero = DAG.getConstant(0x00000000U, dl, MVT::i32);
14432         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
14433                          Sign, Zero, Sign, Zero);
14434       }
14435       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
14436       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
14437
14438       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
14439       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
14440       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
14441
14442       // Create masks for only the low parts/high parts of the 64 bit integers.
14443       static const int MaskHi[] = { 1, 1, 3, 3 };
14444       static const int MaskLo[] = { 0, 0, 2, 2 };
14445       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
14446       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
14447       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
14448
14449       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
14450       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
14451
14452       if (Invert)
14453         Result = DAG.getNOT(dl, Result, MVT::v4i32);
14454
14455       return DAG.getBitcast(VT, Result);
14456     }
14457
14458     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
14459       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
14460       // pcmpeqd + pshufd + pand.
14461       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
14462
14463       // First cast everything to the right type.
14464       Op0 = DAG.getBitcast(MVT::v4i32, Op0);
14465       Op1 = DAG.getBitcast(MVT::v4i32, Op1);
14466
14467       // Do the compare.
14468       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
14469
14470       // Make sure the lower and upper halves are both all-ones.
14471       static const int Mask[] = { 1, 0, 3, 2 };
14472       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
14473       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
14474
14475       if (Invert)
14476         Result = DAG.getNOT(dl, Result, MVT::v4i32);
14477
14478       return DAG.getBitcast(VT, Result);
14479     }
14480   }
14481
14482   // Since SSE has no unsigned integer comparisons, we need to flip the sign
14483   // bits of the inputs before performing those operations.
14484   if (FlipSigns) {
14485     EVT EltVT = VT.getVectorElementType();
14486     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), dl,
14487                                  VT);
14488     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
14489     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
14490   }
14491
14492   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
14493
14494   // If the logical-not of the result is required, perform that now.
14495   if (Invert)
14496     Result = DAG.getNOT(dl, Result, VT);
14497
14498   if (MinMax)
14499     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
14500
14501   if (Subus)
14502     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
14503                          getZeroVector(VT, Subtarget, DAG, dl));
14504
14505   return Result;
14506 }
14507
14508 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
14509
14510   MVT VT = Op.getSimpleValueType();
14511
14512   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
14513
14514   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
14515          && "SetCC type must be 8-bit or 1-bit integer");
14516   SDValue Op0 = Op.getOperand(0);
14517   SDValue Op1 = Op.getOperand(1);
14518   SDLoc dl(Op);
14519   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
14520
14521   // Optimize to BT if possible.
14522   // Lower (X & (1 << N)) == 0 to BT(X, N).
14523   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
14524   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
14525   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
14526       Op1.getOpcode() == ISD::Constant &&
14527       cast<ConstantSDNode>(Op1)->isNullValue() &&
14528       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
14529     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
14530     if (NewSetCC.getNode()) {
14531       if (VT == MVT::i1)
14532         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewSetCC);
14533       return NewSetCC;
14534     }
14535   }
14536
14537   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
14538   // these.
14539   if (Op1.getOpcode() == ISD::Constant &&
14540       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
14541        cast<ConstantSDNode>(Op1)->isNullValue()) &&
14542       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
14543
14544     // If the input is a setcc, then reuse the input setcc or use a new one with
14545     // the inverted condition.
14546     if (Op0.getOpcode() == X86ISD::SETCC) {
14547       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
14548       bool Invert = (CC == ISD::SETNE) ^
14549         cast<ConstantSDNode>(Op1)->isNullValue();
14550       if (!Invert)
14551         return Op0;
14552
14553       CCode = X86::GetOppositeBranchCondition(CCode);
14554       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14555                                   DAG.getConstant(CCode, dl, MVT::i8),
14556                                   Op0.getOperand(1));
14557       if (VT == MVT::i1)
14558         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
14559       return SetCC;
14560     }
14561   }
14562   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
14563       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
14564       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
14565
14566     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
14567     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, dl, MVT::i1), NewCC);
14568   }
14569
14570   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
14571   unsigned X86CC = TranslateX86CC(CC, dl, isFP, Op0, Op1, DAG);
14572   if (X86CC == X86::COND_INVALID)
14573     return SDValue();
14574
14575   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
14576   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
14577   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14578                               DAG.getConstant(X86CC, dl, MVT::i8), EFLAGS);
14579   if (VT == MVT::i1)
14580     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
14581   return SetCC;
14582 }
14583
14584 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
14585 static bool isX86LogicalCmp(SDValue Op) {
14586   unsigned Opc = Op.getNode()->getOpcode();
14587   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
14588       Opc == X86ISD::SAHF)
14589     return true;
14590   if (Op.getResNo() == 1 &&
14591       (Opc == X86ISD::ADD ||
14592        Opc == X86ISD::SUB ||
14593        Opc == X86ISD::ADC ||
14594        Opc == X86ISD::SBB ||
14595        Opc == X86ISD::SMUL ||
14596        Opc == X86ISD::UMUL ||
14597        Opc == X86ISD::INC ||
14598        Opc == X86ISD::DEC ||
14599        Opc == X86ISD::OR ||
14600        Opc == X86ISD::XOR ||
14601        Opc == X86ISD::AND))
14602     return true;
14603
14604   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
14605     return true;
14606
14607   return false;
14608 }
14609
14610 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
14611   if (V.getOpcode() != ISD::TRUNCATE)
14612     return false;
14613
14614   SDValue VOp0 = V.getOperand(0);
14615   unsigned InBits = VOp0.getValueSizeInBits();
14616   unsigned Bits = V.getValueSizeInBits();
14617   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
14618 }
14619
14620 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
14621   bool addTest = true;
14622   SDValue Cond  = Op.getOperand(0);
14623   SDValue Op1 = Op.getOperand(1);
14624   SDValue Op2 = Op.getOperand(2);
14625   SDLoc DL(Op);
14626   EVT VT = Op1.getValueType();
14627   SDValue CC;
14628
14629   // Lower FP selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
14630   // are available or VBLENDV if AVX is available.
14631   // Otherwise FP cmovs get lowered into a less efficient branch sequence later.
14632   if (Cond.getOpcode() == ISD::SETCC &&
14633       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
14634        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
14635       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
14636     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
14637     int SSECC = translateX86FSETCC(
14638         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
14639
14640     if (SSECC != 8) {
14641       if (Subtarget->hasAVX512()) {
14642         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
14643                                   DAG.getConstant(SSECC, DL, MVT::i8));
14644         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
14645       }
14646
14647       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
14648                                 DAG.getConstant(SSECC, DL, MVT::i8));
14649
14650       // If we have AVX, we can use a variable vector select (VBLENDV) instead
14651       // of 3 logic instructions for size savings and potentially speed.
14652       // Unfortunately, there is no scalar form of VBLENDV.
14653
14654       // If either operand is a constant, don't try this. We can expect to
14655       // optimize away at least one of the logic instructions later in that
14656       // case, so that sequence would be faster than a variable blend.
14657
14658       // BLENDV was introduced with SSE 4.1, but the 2 register form implicitly
14659       // uses XMM0 as the selection register. That may need just as many
14660       // instructions as the AND/ANDN/OR sequence due to register moves, so
14661       // don't bother.
14662
14663       if (Subtarget->hasAVX() &&
14664           !isa<ConstantFPSDNode>(Op1) && !isa<ConstantFPSDNode>(Op2)) {
14665
14666         // Convert to vectors, do a VSELECT, and convert back to scalar.
14667         // All of the conversions should be optimized away.
14668
14669         EVT VecVT = VT == MVT::f32 ? MVT::v4f32 : MVT::v2f64;
14670         SDValue VOp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Op1);
14671         SDValue VOp2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Op2);
14672         SDValue VCmp = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Cmp);
14673
14674         EVT VCmpVT = VT == MVT::f32 ? MVT::v4i32 : MVT::v2i64;
14675         VCmp = DAG.getBitcast(VCmpVT, VCmp);
14676
14677         SDValue VSel = DAG.getNode(ISD::VSELECT, DL, VecVT, VCmp, VOp1, VOp2);
14678
14679         return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
14680                            VSel, DAG.getIntPtrConstant(0, DL));
14681       }
14682       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
14683       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
14684       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
14685     }
14686   }
14687
14688   if (VT.isVector() && VT.getScalarType() == MVT::i1) {
14689     SDValue Op1Scalar;
14690     if (ISD::isBuildVectorOfConstantSDNodes(Op1.getNode()))
14691       Op1Scalar = ConvertI1VectorToInteger(Op1, DAG);
14692     else if (Op1.getOpcode() == ISD::BITCAST && Op1.getOperand(0))
14693       Op1Scalar = Op1.getOperand(0);
14694     SDValue Op2Scalar;
14695     if (ISD::isBuildVectorOfConstantSDNodes(Op2.getNode()))
14696       Op2Scalar = ConvertI1VectorToInteger(Op2, DAG);
14697     else if (Op2.getOpcode() == ISD::BITCAST && Op2.getOperand(0))
14698       Op2Scalar = Op2.getOperand(0);
14699     if (Op1Scalar.getNode() && Op2Scalar.getNode()) {
14700       SDValue newSelect = DAG.getNode(ISD::SELECT, DL,
14701                                       Op1Scalar.getValueType(),
14702                                       Cond, Op1Scalar, Op2Scalar);
14703       if (newSelect.getValueSizeInBits() == VT.getSizeInBits())
14704         return DAG.getBitcast(VT, newSelect);
14705       SDValue ExtVec = DAG.getBitcast(MVT::v8i1, newSelect);
14706       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, ExtVec,
14707                          DAG.getIntPtrConstant(0, DL));
14708     }
14709   }
14710
14711   if (VT == MVT::v4i1 || VT == MVT::v2i1) {
14712     SDValue zeroConst = DAG.getIntPtrConstant(0, DL);
14713     Op1 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, MVT::v8i1,
14714                       DAG.getUNDEF(MVT::v8i1), Op1, zeroConst);
14715     Op2 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, MVT::v8i1,
14716                       DAG.getUNDEF(MVT::v8i1), Op2, zeroConst);
14717     SDValue newSelect = DAG.getNode(ISD::SELECT, DL, MVT::v8i1,
14718                                     Cond, Op1, Op2);
14719     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, newSelect, zeroConst);
14720   }
14721
14722   if (Cond.getOpcode() == ISD::SETCC) {
14723     SDValue NewCond = LowerSETCC(Cond, DAG);
14724     if (NewCond.getNode())
14725       Cond = NewCond;
14726   }
14727
14728   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
14729   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
14730   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
14731   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
14732   if (Cond.getOpcode() == X86ISD::SETCC &&
14733       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
14734       isZero(Cond.getOperand(1).getOperand(1))) {
14735     SDValue Cmp = Cond.getOperand(1);
14736
14737     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
14738
14739     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
14740         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
14741       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
14742
14743       SDValue CmpOp0 = Cmp.getOperand(0);
14744       // Apply further optimizations for special cases
14745       // (select (x != 0), -1, 0) -> neg & sbb
14746       // (select (x == 0), 0, -1) -> neg & sbb
14747       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
14748         if (YC->isNullValue() &&
14749             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
14750           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
14751           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
14752                                     DAG.getConstant(0, DL,
14753                                                     CmpOp0.getValueType()),
14754                                     CmpOp0);
14755           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
14756                                     DAG.getConstant(X86::COND_B, DL, MVT::i8),
14757                                     SDValue(Neg.getNode(), 1));
14758           return Res;
14759         }
14760
14761       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
14762                         CmpOp0, DAG.getConstant(1, DL, CmpOp0.getValueType()));
14763       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
14764
14765       SDValue Res =   // Res = 0 or -1.
14766         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
14767                     DAG.getConstant(X86::COND_B, DL, MVT::i8), Cmp);
14768
14769       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
14770         Res = DAG.getNOT(DL, Res, Res.getValueType());
14771
14772       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
14773       if (!N2C || !N2C->isNullValue())
14774         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
14775       return Res;
14776     }
14777   }
14778
14779   // Look past (and (setcc_carry (cmp ...)), 1).
14780   if (Cond.getOpcode() == ISD::AND &&
14781       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
14782     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
14783     if (C && C->getAPIntValue() == 1)
14784       Cond = Cond.getOperand(0);
14785   }
14786
14787   // If condition flag is set by a X86ISD::CMP, then use it as the condition
14788   // setting operand in place of the X86ISD::SETCC.
14789   unsigned CondOpcode = Cond.getOpcode();
14790   if (CondOpcode == X86ISD::SETCC ||
14791       CondOpcode == X86ISD::SETCC_CARRY) {
14792     CC = Cond.getOperand(0);
14793
14794     SDValue Cmp = Cond.getOperand(1);
14795     unsigned Opc = Cmp.getOpcode();
14796     MVT VT = Op.getSimpleValueType();
14797
14798     bool IllegalFPCMov = false;
14799     if (VT.isFloatingPoint() && !VT.isVector() &&
14800         !isScalarFPTypeInSSEReg(VT))  // FPStack?
14801       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
14802
14803     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
14804         Opc == X86ISD::BT) { // FIXME
14805       Cond = Cmp;
14806       addTest = false;
14807     }
14808   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
14809              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
14810              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
14811               Cond.getOperand(0).getValueType() != MVT::i8)) {
14812     SDValue LHS = Cond.getOperand(0);
14813     SDValue RHS = Cond.getOperand(1);
14814     unsigned X86Opcode;
14815     unsigned X86Cond;
14816     SDVTList VTs;
14817     switch (CondOpcode) {
14818     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
14819     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
14820     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
14821     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
14822     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
14823     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
14824     default: llvm_unreachable("unexpected overflowing operator");
14825     }
14826     if (CondOpcode == ISD::UMULO)
14827       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
14828                           MVT::i32);
14829     else
14830       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
14831
14832     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
14833
14834     if (CondOpcode == ISD::UMULO)
14835       Cond = X86Op.getValue(2);
14836     else
14837       Cond = X86Op.getValue(1);
14838
14839     CC = DAG.getConstant(X86Cond, DL, MVT::i8);
14840     addTest = false;
14841   }
14842
14843   if (addTest) {
14844     // Look past the truncate if the high bits are known zero.
14845     if (isTruncWithZeroHighBitsInput(Cond, DAG))
14846       Cond = Cond.getOperand(0);
14847
14848     // We know the result of AND is compared against zero. Try to match
14849     // it to BT.
14850     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
14851       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
14852       if (NewSetCC.getNode()) {
14853         CC = NewSetCC.getOperand(0);
14854         Cond = NewSetCC.getOperand(1);
14855         addTest = false;
14856       }
14857     }
14858   }
14859
14860   if (addTest) {
14861     CC = DAG.getConstant(X86::COND_NE, DL, MVT::i8);
14862     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
14863   }
14864
14865   // a <  b ? -1 :  0 -> RES = ~setcc_carry
14866   // a <  b ?  0 : -1 -> RES = setcc_carry
14867   // a >= b ? -1 :  0 -> RES = setcc_carry
14868   // a >= b ?  0 : -1 -> RES = ~setcc_carry
14869   if (Cond.getOpcode() == X86ISD::SUB) {
14870     Cond = ConvertCmpIfNecessary(Cond, DAG);
14871     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
14872
14873     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
14874         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
14875       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
14876                                 DAG.getConstant(X86::COND_B, DL, MVT::i8),
14877                                 Cond);
14878       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
14879         return DAG.getNOT(DL, Res, Res.getValueType());
14880       return Res;
14881     }
14882   }
14883
14884   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
14885   // widen the cmov and push the truncate through. This avoids introducing a new
14886   // branch during isel and doesn't add any extensions.
14887   if (Op.getValueType() == MVT::i8 &&
14888       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
14889     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
14890     if (T1.getValueType() == T2.getValueType() &&
14891         // Blacklist CopyFromReg to avoid partial register stalls.
14892         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
14893       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
14894       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
14895       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
14896     }
14897   }
14898
14899   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
14900   // condition is true.
14901   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
14902   SDValue Ops[] = { Op2, Op1, CC, Cond };
14903   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
14904 }
14905
14906 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op,
14907                                        const X86Subtarget *Subtarget,
14908                                        SelectionDAG &DAG) {
14909   MVT VT = Op->getSimpleValueType(0);
14910   SDValue In = Op->getOperand(0);
14911   MVT InVT = In.getSimpleValueType();
14912   MVT VTElt = VT.getVectorElementType();
14913   MVT InVTElt = InVT.getVectorElementType();
14914   SDLoc dl(Op);
14915
14916   // SKX processor
14917   if ((InVTElt == MVT::i1) &&
14918       (((Subtarget->hasBWI() && Subtarget->hasVLX() &&
14919         VT.getSizeInBits() <= 256 && VTElt.getSizeInBits() <= 16)) ||
14920
14921        ((Subtarget->hasBWI() && VT.is512BitVector() &&
14922         VTElt.getSizeInBits() <= 16)) ||
14923
14924        ((Subtarget->hasDQI() && Subtarget->hasVLX() &&
14925         VT.getSizeInBits() <= 256 && VTElt.getSizeInBits() >= 32)) ||
14926
14927        ((Subtarget->hasDQI() && VT.is512BitVector() &&
14928         VTElt.getSizeInBits() >= 32))))
14929     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14930
14931   unsigned int NumElts = VT.getVectorNumElements();
14932
14933   if (NumElts != 8 && NumElts != 16 && !Subtarget->hasBWI())
14934     return SDValue();
14935
14936   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1) {
14937     if (In.getOpcode() == X86ISD::VSEXT || In.getOpcode() == X86ISD::VZEXT)
14938       return DAG.getNode(In.getOpcode(), dl, VT, In.getOperand(0));
14939     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14940   }
14941
14942   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
14943   MVT ExtVT = NumElts == 8 ? MVT::v8i64 : MVT::v16i32;
14944   SDValue NegOne =
14945    DAG.getConstant(APInt::getAllOnesValue(ExtVT.getScalarSizeInBits()), dl,
14946                    ExtVT);
14947   SDValue Zero =
14948    DAG.getConstant(APInt::getNullValue(ExtVT.getScalarSizeInBits()), dl, ExtVT);
14949
14950   SDValue V = DAG.getNode(ISD::VSELECT, dl, ExtVT, In, NegOne, Zero);
14951   if (VT.is512BitVector())
14952     return V;
14953   return DAG.getNode(X86ISD::VTRUNC, dl, VT, V);
14954 }
14955
14956 static SDValue LowerSIGN_EXTEND_VECTOR_INREG(SDValue Op,
14957                                              const X86Subtarget *Subtarget,
14958                                              SelectionDAG &DAG) {
14959   SDValue In = Op->getOperand(0);
14960   MVT VT = Op->getSimpleValueType(0);
14961   MVT InVT = In.getSimpleValueType();
14962   assert(VT.getSizeInBits() == InVT.getSizeInBits());
14963
14964   MVT InSVT = InVT.getScalarType();
14965   assert(VT.getScalarType().getScalarSizeInBits() > InSVT.getScalarSizeInBits());
14966
14967   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
14968     return SDValue();
14969   if (InSVT != MVT::i32 && InSVT != MVT::i16 && InSVT != MVT::i8)
14970     return SDValue();
14971
14972   SDLoc dl(Op);
14973
14974   // SSE41 targets can use the pmovsx* instructions directly.
14975   if (Subtarget->hasSSE41())
14976     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14977
14978   // pre-SSE41 targets unpack lower lanes and then sign-extend using SRAI.
14979   SDValue Curr = In;
14980   MVT CurrVT = InVT;
14981
14982   // As SRAI is only available on i16/i32 types, we expand only up to i32
14983   // and handle i64 separately.
14984   while (CurrVT != VT && CurrVT.getScalarType() != MVT::i32) {
14985     Curr = DAG.getNode(X86ISD::UNPCKL, dl, CurrVT, DAG.getUNDEF(CurrVT), Curr);
14986     MVT CurrSVT = MVT::getIntegerVT(CurrVT.getScalarSizeInBits() * 2);
14987     CurrVT = MVT::getVectorVT(CurrSVT, CurrVT.getVectorNumElements() / 2);
14988     Curr = DAG.getBitcast(CurrVT, Curr);
14989   }
14990
14991   SDValue SignExt = Curr;
14992   if (CurrVT != InVT) {
14993     unsigned SignExtShift =
14994         CurrVT.getScalarSizeInBits() - InSVT.getScalarSizeInBits();
14995     SignExt = DAG.getNode(X86ISD::VSRAI, dl, CurrVT, Curr,
14996                           DAG.getConstant(SignExtShift, dl, MVT::i8));
14997   }
14998
14999   if (CurrVT == VT)
15000     return SignExt;
15001
15002   if (VT == MVT::v2i64 && CurrVT == MVT::v4i32) {
15003     SDValue Sign = DAG.getNode(X86ISD::VSRAI, dl, CurrVT, Curr,
15004                                DAG.getConstant(31, dl, MVT::i8));
15005     SDValue Ext = DAG.getVectorShuffle(CurrVT, dl, SignExt, Sign, {0, 4, 1, 5});
15006     return DAG.getBitcast(VT, Ext);
15007   }
15008
15009   return SDValue();
15010 }
15011
15012 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
15013                                 SelectionDAG &DAG) {
15014   MVT VT = Op->getSimpleValueType(0);
15015   SDValue In = Op->getOperand(0);
15016   MVT InVT = In.getSimpleValueType();
15017   SDLoc dl(Op);
15018
15019   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
15020     return LowerSIGN_EXTEND_AVX512(Op, Subtarget, DAG);
15021
15022   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
15023       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
15024       (VT != MVT::v16i16 || InVT != MVT::v16i8))
15025     return SDValue();
15026
15027   if (Subtarget->hasInt256())
15028     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
15029
15030   // Optimize vectors in AVX mode
15031   // Sign extend  v8i16 to v8i32 and
15032   //              v4i32 to v4i64
15033   //
15034   // Divide input vector into two parts
15035   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
15036   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
15037   // concat the vectors to original VT
15038
15039   unsigned NumElems = InVT.getVectorNumElements();
15040   SDValue Undef = DAG.getUNDEF(InVT);
15041
15042   SmallVector<int,8> ShufMask1(NumElems, -1);
15043   for (unsigned i = 0; i != NumElems/2; ++i)
15044     ShufMask1[i] = i;
15045
15046   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
15047
15048   SmallVector<int,8> ShufMask2(NumElems, -1);
15049   for (unsigned i = 0; i != NumElems/2; ++i)
15050     ShufMask2[i] = i + NumElems/2;
15051
15052   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
15053
15054   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
15055                                 VT.getVectorNumElements()/2);
15056
15057   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
15058   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
15059
15060   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
15061 }
15062
15063 // Lower vector extended loads using a shuffle. If SSSE3 is not available we
15064 // may emit an illegal shuffle but the expansion is still better than scalar
15065 // code. We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise
15066 // we'll emit a shuffle and a arithmetic shift.
15067 // FIXME: Is the expansion actually better than scalar code? It doesn't seem so.
15068 // TODO: It is possible to support ZExt by zeroing the undef values during
15069 // the shuffle phase or after the shuffle.
15070 static SDValue LowerExtendedLoad(SDValue Op, const X86Subtarget *Subtarget,
15071                                  SelectionDAG &DAG) {
15072   MVT RegVT = Op.getSimpleValueType();
15073   assert(RegVT.isVector() && "We only custom lower vector sext loads.");
15074   assert(RegVT.isInteger() &&
15075          "We only custom lower integer vector sext loads.");
15076
15077   // Nothing useful we can do without SSE2 shuffles.
15078   assert(Subtarget->hasSSE2() && "We only custom lower sext loads with SSE2.");
15079
15080   LoadSDNode *Ld = cast<LoadSDNode>(Op.getNode());
15081   SDLoc dl(Ld);
15082   EVT MemVT = Ld->getMemoryVT();
15083   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15084   unsigned RegSz = RegVT.getSizeInBits();
15085
15086   ISD::LoadExtType Ext = Ld->getExtensionType();
15087
15088   assert((Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)
15089          && "Only anyext and sext are currently implemented.");
15090   assert(MemVT != RegVT && "Cannot extend to the same type");
15091   assert(MemVT.isVector() && "Must load a vector from memory");
15092
15093   unsigned NumElems = RegVT.getVectorNumElements();
15094   unsigned MemSz = MemVT.getSizeInBits();
15095   assert(RegSz > MemSz && "Register size must be greater than the mem size");
15096
15097   if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256()) {
15098     // The only way in which we have a legal 256-bit vector result but not the
15099     // integer 256-bit operations needed to directly lower a sextload is if we
15100     // have AVX1 but not AVX2. In that case, we can always emit a sextload to
15101     // a 128-bit vector and a normal sign_extend to 256-bits that should get
15102     // correctly legalized. We do this late to allow the canonical form of
15103     // sextload to persist throughout the rest of the DAG combiner -- it wants
15104     // to fold together any extensions it can, and so will fuse a sign_extend
15105     // of an sextload into a sextload targeting a wider value.
15106     SDValue Load;
15107     if (MemSz == 128) {
15108       // Just switch this to a normal load.
15109       assert(TLI.isTypeLegal(MemVT) && "If the memory type is a 128-bit type, "
15110                                        "it must be a legal 128-bit vector "
15111                                        "type!");
15112       Load = DAG.getLoad(MemVT, dl, Ld->getChain(), Ld->getBasePtr(),
15113                   Ld->getPointerInfo(), Ld->isVolatile(), Ld->isNonTemporal(),
15114                   Ld->isInvariant(), Ld->getAlignment());
15115     } else {
15116       assert(MemSz < 128 &&
15117              "Can't extend a type wider than 128 bits to a 256 bit vector!");
15118       // Do an sext load to a 128-bit vector type. We want to use the same
15119       // number of elements, but elements half as wide. This will end up being
15120       // recursively lowered by this routine, but will succeed as we definitely
15121       // have all the necessary features if we're using AVX1.
15122       EVT HalfEltVT =
15123           EVT::getIntegerVT(*DAG.getContext(), RegVT.getScalarSizeInBits() / 2);
15124       EVT HalfVecVT = EVT::getVectorVT(*DAG.getContext(), HalfEltVT, NumElems);
15125       Load =
15126           DAG.getExtLoad(Ext, dl, HalfVecVT, Ld->getChain(), Ld->getBasePtr(),
15127                          Ld->getPointerInfo(), MemVT, Ld->isVolatile(),
15128                          Ld->isNonTemporal(), Ld->isInvariant(),
15129                          Ld->getAlignment());
15130     }
15131
15132     // Replace chain users with the new chain.
15133     assert(Load->getNumValues() == 2 && "Loads must carry a chain!");
15134     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Load.getValue(1));
15135
15136     // Finally, do a normal sign-extend to the desired register.
15137     return DAG.getSExtOrTrunc(Load, dl, RegVT);
15138   }
15139
15140   // All sizes must be a power of two.
15141   assert(isPowerOf2_32(RegSz * MemSz * NumElems) &&
15142          "Non-power-of-two elements are not custom lowered!");
15143
15144   // Attempt to load the original value using scalar loads.
15145   // Find the largest scalar type that divides the total loaded size.
15146   MVT SclrLoadTy = MVT::i8;
15147   for (MVT Tp : MVT::integer_valuetypes()) {
15148     if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
15149       SclrLoadTy = Tp;
15150     }
15151   }
15152
15153   // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
15154   if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
15155       (64 <= MemSz))
15156     SclrLoadTy = MVT::f64;
15157
15158   // Calculate the number of scalar loads that we need to perform
15159   // in order to load our vector from memory.
15160   unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
15161
15162   assert((Ext != ISD::SEXTLOAD || NumLoads == 1) &&
15163          "Can only lower sext loads with a single scalar load!");
15164
15165   unsigned loadRegZize = RegSz;
15166   if (Ext == ISD::SEXTLOAD && RegSz >= 256)
15167     loadRegZize = 128;
15168
15169   // Represent our vector as a sequence of elements which are the
15170   // largest scalar that we can load.
15171   EVT LoadUnitVecVT = EVT::getVectorVT(
15172       *DAG.getContext(), SclrLoadTy, loadRegZize / SclrLoadTy.getSizeInBits());
15173
15174   // Represent the data using the same element type that is stored in
15175   // memory. In practice, we ''widen'' MemVT.
15176   EVT WideVecVT =
15177       EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
15178                        loadRegZize / MemVT.getScalarType().getSizeInBits());
15179
15180   assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
15181          "Invalid vector type");
15182
15183   // We can't shuffle using an illegal type.
15184   assert(TLI.isTypeLegal(WideVecVT) &&
15185          "We only lower types that form legal widened vector types");
15186
15187   SmallVector<SDValue, 8> Chains;
15188   SDValue Ptr = Ld->getBasePtr();
15189   SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits() / 8, dl,
15190                                       TLI.getPointerTy(DAG.getDataLayout()));
15191   SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
15192
15193   for (unsigned i = 0; i < NumLoads; ++i) {
15194     // Perform a single load.
15195     SDValue ScalarLoad =
15196         DAG.getLoad(SclrLoadTy, dl, Ld->getChain(), Ptr, Ld->getPointerInfo(),
15197                     Ld->isVolatile(), Ld->isNonTemporal(), Ld->isInvariant(),
15198                     Ld->getAlignment());
15199     Chains.push_back(ScalarLoad.getValue(1));
15200     // Create the first element type using SCALAR_TO_VECTOR in order to avoid
15201     // another round of DAGCombining.
15202     if (i == 0)
15203       Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
15204     else
15205       Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
15206                         ScalarLoad, DAG.getIntPtrConstant(i, dl));
15207
15208     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
15209   }
15210
15211   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
15212
15213   // Bitcast the loaded value to a vector of the original element type, in
15214   // the size of the target vector type.
15215   SDValue SlicedVec = DAG.getBitcast(WideVecVT, Res);
15216   unsigned SizeRatio = RegSz / MemSz;
15217
15218   if (Ext == ISD::SEXTLOAD) {
15219     // If we have SSE4.1, we can directly emit a VSEXT node.
15220     if (Subtarget->hasSSE41()) {
15221       SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
15222       DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
15223       return Sext;
15224     }
15225
15226     // Otherwise we'll use SIGN_EXTEND_VECTOR_INREG to sign extend the lowest
15227     // lanes.
15228     assert(TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND_VECTOR_INREG, RegVT) &&
15229            "We can't implement a sext load without SIGN_EXTEND_VECTOR_INREG!");
15230
15231     SDValue Shuff = DAG.getSignExtendVectorInReg(SlicedVec, dl, RegVT);
15232     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
15233     return Shuff;
15234   }
15235
15236   // Redistribute the loaded elements into the different locations.
15237   SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
15238   for (unsigned i = 0; i != NumElems; ++i)
15239     ShuffleVec[i * SizeRatio] = i;
15240
15241   SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
15242                                        DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
15243
15244   // Bitcast to the requested type.
15245   Shuff = DAG.getBitcast(RegVT, Shuff);
15246   DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
15247   return Shuff;
15248 }
15249
15250 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
15251 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
15252 // from the AND / OR.
15253 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
15254   Opc = Op.getOpcode();
15255   if (Opc != ISD::OR && Opc != ISD::AND)
15256     return false;
15257   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
15258           Op.getOperand(0).hasOneUse() &&
15259           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
15260           Op.getOperand(1).hasOneUse());
15261 }
15262
15263 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
15264 // 1 and that the SETCC node has a single use.
15265 static bool isXor1OfSetCC(SDValue Op) {
15266   if (Op.getOpcode() != ISD::XOR)
15267     return false;
15268   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
15269   if (N1C && N1C->getAPIntValue() == 1) {
15270     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
15271       Op.getOperand(0).hasOneUse();
15272   }
15273   return false;
15274 }
15275
15276 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
15277   bool addTest = true;
15278   SDValue Chain = Op.getOperand(0);
15279   SDValue Cond  = Op.getOperand(1);
15280   SDValue Dest  = Op.getOperand(2);
15281   SDLoc dl(Op);
15282   SDValue CC;
15283   bool Inverted = false;
15284
15285   if (Cond.getOpcode() == ISD::SETCC) {
15286     // Check for setcc([su]{add,sub,mul}o == 0).
15287     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
15288         isa<ConstantSDNode>(Cond.getOperand(1)) &&
15289         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
15290         Cond.getOperand(0).getResNo() == 1 &&
15291         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
15292          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
15293          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
15294          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
15295          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
15296          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
15297       Inverted = true;
15298       Cond = Cond.getOperand(0);
15299     } else {
15300       SDValue NewCond = LowerSETCC(Cond, DAG);
15301       if (NewCond.getNode())
15302         Cond = NewCond;
15303     }
15304   }
15305 #if 0
15306   // FIXME: LowerXALUO doesn't handle these!!
15307   else if (Cond.getOpcode() == X86ISD::ADD  ||
15308            Cond.getOpcode() == X86ISD::SUB  ||
15309            Cond.getOpcode() == X86ISD::SMUL ||
15310            Cond.getOpcode() == X86ISD::UMUL)
15311     Cond = LowerXALUO(Cond, DAG);
15312 #endif
15313
15314   // Look pass (and (setcc_carry (cmp ...)), 1).
15315   if (Cond.getOpcode() == ISD::AND &&
15316       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
15317     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
15318     if (C && C->getAPIntValue() == 1)
15319       Cond = Cond.getOperand(0);
15320   }
15321
15322   // If condition flag is set by a X86ISD::CMP, then use it as the condition
15323   // setting operand in place of the X86ISD::SETCC.
15324   unsigned CondOpcode = Cond.getOpcode();
15325   if (CondOpcode == X86ISD::SETCC ||
15326       CondOpcode == X86ISD::SETCC_CARRY) {
15327     CC = Cond.getOperand(0);
15328
15329     SDValue Cmp = Cond.getOperand(1);
15330     unsigned Opc = Cmp.getOpcode();
15331     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
15332     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
15333       Cond = Cmp;
15334       addTest = false;
15335     } else {
15336       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
15337       default: break;
15338       case X86::COND_O:
15339       case X86::COND_B:
15340         // These can only come from an arithmetic instruction with overflow,
15341         // e.g. SADDO, UADDO.
15342         Cond = Cond.getNode()->getOperand(1);
15343         addTest = false;
15344         break;
15345       }
15346     }
15347   }
15348   CondOpcode = Cond.getOpcode();
15349   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
15350       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
15351       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
15352        Cond.getOperand(0).getValueType() != MVT::i8)) {
15353     SDValue LHS = Cond.getOperand(0);
15354     SDValue RHS = Cond.getOperand(1);
15355     unsigned X86Opcode;
15356     unsigned X86Cond;
15357     SDVTList VTs;
15358     // Keep this in sync with LowerXALUO, otherwise we might create redundant
15359     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
15360     // X86ISD::INC).
15361     switch (CondOpcode) {
15362     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
15363     case ISD::SADDO:
15364       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
15365         if (C->isOne()) {
15366           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
15367           break;
15368         }
15369       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
15370     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
15371     case ISD::SSUBO:
15372       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
15373         if (C->isOne()) {
15374           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
15375           break;
15376         }
15377       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
15378     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
15379     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
15380     default: llvm_unreachable("unexpected overflowing operator");
15381     }
15382     if (Inverted)
15383       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
15384     if (CondOpcode == ISD::UMULO)
15385       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
15386                           MVT::i32);
15387     else
15388       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
15389
15390     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
15391
15392     if (CondOpcode == ISD::UMULO)
15393       Cond = X86Op.getValue(2);
15394     else
15395       Cond = X86Op.getValue(1);
15396
15397     CC = DAG.getConstant(X86Cond, dl, MVT::i8);
15398     addTest = false;
15399   } else {
15400     unsigned CondOpc;
15401     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
15402       SDValue Cmp = Cond.getOperand(0).getOperand(1);
15403       if (CondOpc == ISD::OR) {
15404         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
15405         // two branches instead of an explicit OR instruction with a
15406         // separate test.
15407         if (Cmp == Cond.getOperand(1).getOperand(1) &&
15408             isX86LogicalCmp(Cmp)) {
15409           CC = Cond.getOperand(0).getOperand(0);
15410           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15411                               Chain, Dest, CC, Cmp);
15412           CC = Cond.getOperand(1).getOperand(0);
15413           Cond = Cmp;
15414           addTest = false;
15415         }
15416       } else { // ISD::AND
15417         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
15418         // two branches instead of an explicit AND instruction with a
15419         // separate test. However, we only do this if this block doesn't
15420         // have a fall-through edge, because this requires an explicit
15421         // jmp when the condition is false.
15422         if (Cmp == Cond.getOperand(1).getOperand(1) &&
15423             isX86LogicalCmp(Cmp) &&
15424             Op.getNode()->hasOneUse()) {
15425           X86::CondCode CCode =
15426             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
15427           CCode = X86::GetOppositeBranchCondition(CCode);
15428           CC = DAG.getConstant(CCode, dl, MVT::i8);
15429           SDNode *User = *Op.getNode()->use_begin();
15430           // Look for an unconditional branch following this conditional branch.
15431           // We need this because we need to reverse the successors in order
15432           // to implement FCMP_OEQ.
15433           if (User->getOpcode() == ISD::BR) {
15434             SDValue FalseBB = User->getOperand(1);
15435             SDNode *NewBR =
15436               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
15437             assert(NewBR == User);
15438             (void)NewBR;
15439             Dest = FalseBB;
15440
15441             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15442                                 Chain, Dest, CC, Cmp);
15443             X86::CondCode CCode =
15444               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
15445             CCode = X86::GetOppositeBranchCondition(CCode);
15446             CC = DAG.getConstant(CCode, dl, MVT::i8);
15447             Cond = Cmp;
15448             addTest = false;
15449           }
15450         }
15451       }
15452     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
15453       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
15454       // It should be transformed during dag combiner except when the condition
15455       // is set by a arithmetics with overflow node.
15456       X86::CondCode CCode =
15457         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
15458       CCode = X86::GetOppositeBranchCondition(CCode);
15459       CC = DAG.getConstant(CCode, dl, MVT::i8);
15460       Cond = Cond.getOperand(0).getOperand(1);
15461       addTest = false;
15462     } else if (Cond.getOpcode() == ISD::SETCC &&
15463                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
15464       // For FCMP_OEQ, we can emit
15465       // two branches instead of an explicit AND instruction with a
15466       // separate test. However, we only do this if this block doesn't
15467       // have a fall-through edge, because this requires an explicit
15468       // jmp when the condition is false.
15469       if (Op.getNode()->hasOneUse()) {
15470         SDNode *User = *Op.getNode()->use_begin();
15471         // Look for an unconditional branch following this conditional branch.
15472         // We need this because we need to reverse the successors in order
15473         // to implement FCMP_OEQ.
15474         if (User->getOpcode() == ISD::BR) {
15475           SDValue FalseBB = User->getOperand(1);
15476           SDNode *NewBR =
15477             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
15478           assert(NewBR == User);
15479           (void)NewBR;
15480           Dest = FalseBB;
15481
15482           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
15483                                     Cond.getOperand(0), Cond.getOperand(1));
15484           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
15485           CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
15486           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15487                               Chain, Dest, CC, Cmp);
15488           CC = DAG.getConstant(X86::COND_P, dl, MVT::i8);
15489           Cond = Cmp;
15490           addTest = false;
15491         }
15492       }
15493     } else if (Cond.getOpcode() == ISD::SETCC &&
15494                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
15495       // For FCMP_UNE, we can emit
15496       // two branches instead of an explicit AND instruction with a
15497       // separate test. However, we only do this if this block doesn't
15498       // have a fall-through edge, because this requires an explicit
15499       // jmp when the condition is false.
15500       if (Op.getNode()->hasOneUse()) {
15501         SDNode *User = *Op.getNode()->use_begin();
15502         // Look for an unconditional branch following this conditional branch.
15503         // We need this because we need to reverse the successors in order
15504         // to implement FCMP_UNE.
15505         if (User->getOpcode() == ISD::BR) {
15506           SDValue FalseBB = User->getOperand(1);
15507           SDNode *NewBR =
15508             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
15509           assert(NewBR == User);
15510           (void)NewBR;
15511
15512           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
15513                                     Cond.getOperand(0), Cond.getOperand(1));
15514           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
15515           CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
15516           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15517                               Chain, Dest, CC, Cmp);
15518           CC = DAG.getConstant(X86::COND_NP, dl, MVT::i8);
15519           Cond = Cmp;
15520           addTest = false;
15521           Dest = FalseBB;
15522         }
15523       }
15524     }
15525   }
15526
15527   if (addTest) {
15528     // Look pass the truncate if the high bits are known zero.
15529     if (isTruncWithZeroHighBitsInput(Cond, DAG))
15530         Cond = Cond.getOperand(0);
15531
15532     // We know the result of AND is compared against zero. Try to match
15533     // it to BT.
15534     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
15535       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
15536       if (NewSetCC.getNode()) {
15537         CC = NewSetCC.getOperand(0);
15538         Cond = NewSetCC.getOperand(1);
15539         addTest = false;
15540       }
15541     }
15542   }
15543
15544   if (addTest) {
15545     X86::CondCode X86Cond = Inverted ? X86::COND_E : X86::COND_NE;
15546     CC = DAG.getConstant(X86Cond, dl, MVT::i8);
15547     Cond = EmitTest(Cond, X86Cond, dl, DAG);
15548   }
15549   Cond = ConvertCmpIfNecessary(Cond, DAG);
15550   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15551                      Chain, Dest, CC, Cond);
15552 }
15553
15554 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
15555 // Calls to _alloca are needed to probe the stack when allocating more than 4k
15556 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
15557 // that the guard pages used by the OS virtual memory manager are allocated in
15558 // correct sequence.
15559 SDValue
15560 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
15561                                            SelectionDAG &DAG) const {
15562   MachineFunction &MF = DAG.getMachineFunction();
15563   bool SplitStack = MF.shouldSplitStack();
15564   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMachO()) ||
15565                SplitStack;
15566   SDLoc dl(Op);
15567
15568   if (!Lower) {
15569     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15570     SDNode* Node = Op.getNode();
15571
15572     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
15573     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
15574         " not tell us which reg is the stack pointer!");
15575     EVT VT = Node->getValueType(0);
15576     SDValue Tmp1 = SDValue(Node, 0);
15577     SDValue Tmp2 = SDValue(Node, 1);
15578     SDValue Tmp3 = Node->getOperand(2);
15579     SDValue Chain = Tmp1.getOperand(0);
15580
15581     // Chain the dynamic stack allocation so that it doesn't modify the stack
15582     // pointer when other instructions are using the stack.
15583     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true),
15584         SDLoc(Node));
15585
15586     SDValue Size = Tmp2.getOperand(1);
15587     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
15588     Chain = SP.getValue(1);
15589     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
15590     const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
15591     unsigned StackAlign = TFI.getStackAlignment();
15592     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
15593     if (Align > StackAlign)
15594       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
15595           DAG.getConstant(-(uint64_t)Align, dl, VT));
15596     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
15597
15598     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true),
15599         DAG.getIntPtrConstant(0, dl, true), SDValue(),
15600         SDLoc(Node));
15601
15602     SDValue Ops[2] = { Tmp1, Tmp2 };
15603     return DAG.getMergeValues(Ops, dl);
15604   }
15605
15606   // Get the inputs.
15607   SDValue Chain = Op.getOperand(0);
15608   SDValue Size  = Op.getOperand(1);
15609   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
15610   EVT VT = Op.getNode()->getValueType(0);
15611
15612   bool Is64Bit = Subtarget->is64Bit();
15613   MVT SPTy = getPointerTy(DAG.getDataLayout());
15614
15615   if (SplitStack) {
15616     MachineRegisterInfo &MRI = MF.getRegInfo();
15617
15618     if (Is64Bit) {
15619       // The 64 bit implementation of segmented stacks needs to clobber both r10
15620       // r11. This makes it impossible to use it along with nested parameters.
15621       const Function *F = MF.getFunction();
15622
15623       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
15624            I != E; ++I)
15625         if (I->hasNestAttr())
15626           report_fatal_error("Cannot use segmented stacks with functions that "
15627                              "have nested arguments.");
15628     }
15629
15630     const TargetRegisterClass *AddrRegClass = getRegClassFor(SPTy);
15631     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
15632     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
15633     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
15634                                 DAG.getRegister(Vreg, SPTy));
15635     SDValue Ops1[2] = { Value, Chain };
15636     return DAG.getMergeValues(Ops1, dl);
15637   } else {
15638     SDValue Flag;
15639     const unsigned Reg = (Subtarget->isTarget64BitLP64() ? X86::RAX : X86::EAX);
15640
15641     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
15642     Flag = Chain.getValue(1);
15643     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
15644
15645     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
15646
15647     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15648     unsigned SPReg = RegInfo->getStackRegister();
15649     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
15650     Chain = SP.getValue(1);
15651
15652     if (Align) {
15653       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
15654                        DAG.getConstant(-(uint64_t)Align, dl, VT));
15655       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
15656     }
15657
15658     SDValue Ops1[2] = { SP, Chain };
15659     return DAG.getMergeValues(Ops1, dl);
15660   }
15661 }
15662
15663 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
15664   MachineFunction &MF = DAG.getMachineFunction();
15665   auto PtrVT = getPointerTy(MF.getDataLayout());
15666   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
15667
15668   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
15669   SDLoc DL(Op);
15670
15671   if (!Subtarget->is64Bit() ||
15672       Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv())) {
15673     // vastart just stores the address of the VarArgsFrameIndex slot into the
15674     // memory location argument.
15675     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
15676     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
15677                         MachinePointerInfo(SV), false, false, 0);
15678   }
15679
15680   // __va_list_tag:
15681   //   gp_offset         (0 - 6 * 8)
15682   //   fp_offset         (48 - 48 + 8 * 16)
15683   //   overflow_arg_area (point to parameters coming in memory).
15684   //   reg_save_area
15685   SmallVector<SDValue, 8> MemOps;
15686   SDValue FIN = Op.getOperand(1);
15687   // Store gp_offset
15688   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
15689                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
15690                                                DL, MVT::i32),
15691                                FIN, MachinePointerInfo(SV), false, false, 0);
15692   MemOps.push_back(Store);
15693
15694   // Store fp_offset
15695   FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(4, DL));
15696   Store = DAG.getStore(Op.getOperand(0), DL,
15697                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(), DL,
15698                                        MVT::i32),
15699                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
15700   MemOps.push_back(Store);
15701
15702   // Store ptr to overflow_arg_area
15703   FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(4, DL));
15704   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
15705   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
15706                        MachinePointerInfo(SV, 8),
15707                        false, false, 0);
15708   MemOps.push_back(Store);
15709
15710   // Store ptr to reg_save_area.
15711   FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(
15712       Subtarget->isTarget64BitLP64() ? 8 : 4, DL));
15713   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), PtrVT);
15714   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN, MachinePointerInfo(
15715       SV, Subtarget->isTarget64BitLP64() ? 16 : 12), false, false, 0);
15716   MemOps.push_back(Store);
15717   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
15718 }
15719
15720 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
15721   assert(Subtarget->is64Bit() &&
15722          "LowerVAARG only handles 64-bit va_arg!");
15723   assert(Op.getNode()->getNumOperands() == 4);
15724
15725   MachineFunction &MF = DAG.getMachineFunction();
15726   if (Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv()))
15727     // The Win64 ABI uses char* instead of a structure.
15728     return DAG.expandVAArg(Op.getNode());
15729
15730   SDValue Chain = Op.getOperand(0);
15731   SDValue SrcPtr = Op.getOperand(1);
15732   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
15733   unsigned Align = Op.getConstantOperandVal(3);
15734   SDLoc dl(Op);
15735
15736   EVT ArgVT = Op.getNode()->getValueType(0);
15737   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
15738   uint32_t ArgSize = DAG.getDataLayout().getTypeAllocSize(ArgTy);
15739   uint8_t ArgMode;
15740
15741   // Decide which area this value should be read from.
15742   // TODO: Implement the AMD64 ABI in its entirety. This simple
15743   // selection mechanism works only for the basic types.
15744   if (ArgVT == MVT::f80) {
15745     llvm_unreachable("va_arg for f80 not yet implemented");
15746   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
15747     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
15748   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
15749     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
15750   } else {
15751     llvm_unreachable("Unhandled argument type in LowerVAARG");
15752   }
15753
15754   if (ArgMode == 2) {
15755     // Sanity Check: Make sure using fp_offset makes sense.
15756     assert(!Subtarget->useSoftFloat() &&
15757            !(MF.getFunction()->hasFnAttribute(Attribute::NoImplicitFloat)) &&
15758            Subtarget->hasSSE1());
15759   }
15760
15761   // Insert VAARG_64 node into the DAG
15762   // VAARG_64 returns two values: Variable Argument Address, Chain
15763   SDValue InstOps[] = {Chain, SrcPtr, DAG.getConstant(ArgSize, dl, MVT::i32),
15764                        DAG.getConstant(ArgMode, dl, MVT::i8),
15765                        DAG.getConstant(Align, dl, MVT::i32)};
15766   SDVTList VTs = DAG.getVTList(getPointerTy(DAG.getDataLayout()), MVT::Other);
15767   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
15768                                           VTs, InstOps, MVT::i64,
15769                                           MachinePointerInfo(SV),
15770                                           /*Align=*/0,
15771                                           /*Volatile=*/false,
15772                                           /*ReadMem=*/true,
15773                                           /*WriteMem=*/true);
15774   Chain = VAARG.getValue(1);
15775
15776   // Load the next argument and return it
15777   return DAG.getLoad(ArgVT, dl,
15778                      Chain,
15779                      VAARG,
15780                      MachinePointerInfo(),
15781                      false, false, false, 0);
15782 }
15783
15784 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
15785                            SelectionDAG &DAG) {
15786   // X86-64 va_list is a struct { i32, i32, i8*, i8* }, except on Windows,
15787   // where a va_list is still an i8*.
15788   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
15789   if (Subtarget->isCallingConvWin64(
15790         DAG.getMachineFunction().getFunction()->getCallingConv()))
15791     // Probably a Win64 va_copy.
15792     return DAG.expandVACopy(Op.getNode());
15793
15794   SDValue Chain = Op.getOperand(0);
15795   SDValue DstPtr = Op.getOperand(1);
15796   SDValue SrcPtr = Op.getOperand(2);
15797   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
15798   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
15799   SDLoc DL(Op);
15800
15801   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
15802                        DAG.getIntPtrConstant(24, DL), 8, /*isVolatile*/false,
15803                        false, false,
15804                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
15805 }
15806
15807 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
15808 // amount is a constant. Takes immediate version of shift as input.
15809 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
15810                                           SDValue SrcOp, uint64_t ShiftAmt,
15811                                           SelectionDAG &DAG) {
15812   MVT ElementType = VT.getVectorElementType();
15813
15814   // Fold this packed shift into its first operand if ShiftAmt is 0.
15815   if (ShiftAmt == 0)
15816     return SrcOp;
15817
15818   // Check for ShiftAmt >= element width
15819   if (ShiftAmt >= ElementType.getSizeInBits()) {
15820     if (Opc == X86ISD::VSRAI)
15821       ShiftAmt = ElementType.getSizeInBits() - 1;
15822     else
15823       return DAG.getConstant(0, dl, VT);
15824   }
15825
15826   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
15827          && "Unknown target vector shift-by-constant node");
15828
15829   // Fold this packed vector shift into a build vector if SrcOp is a
15830   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
15831   if (VT == SrcOp.getSimpleValueType() &&
15832       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
15833     SmallVector<SDValue, 8> Elts;
15834     unsigned NumElts = SrcOp->getNumOperands();
15835     ConstantSDNode *ND;
15836
15837     switch(Opc) {
15838     default: llvm_unreachable(nullptr);
15839     case X86ISD::VSHLI:
15840       for (unsigned i=0; i!=NumElts; ++i) {
15841         SDValue CurrentOp = SrcOp->getOperand(i);
15842         if (CurrentOp->getOpcode() == ISD::UNDEF) {
15843           Elts.push_back(CurrentOp);
15844           continue;
15845         }
15846         ND = cast<ConstantSDNode>(CurrentOp);
15847         const APInt &C = ND->getAPIntValue();
15848         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), dl, ElementType));
15849       }
15850       break;
15851     case X86ISD::VSRLI:
15852       for (unsigned i=0; i!=NumElts; ++i) {
15853         SDValue CurrentOp = SrcOp->getOperand(i);
15854         if (CurrentOp->getOpcode() == ISD::UNDEF) {
15855           Elts.push_back(CurrentOp);
15856           continue;
15857         }
15858         ND = cast<ConstantSDNode>(CurrentOp);
15859         const APInt &C = ND->getAPIntValue();
15860         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), dl, ElementType));
15861       }
15862       break;
15863     case X86ISD::VSRAI:
15864       for (unsigned i=0; i!=NumElts; ++i) {
15865         SDValue CurrentOp = SrcOp->getOperand(i);
15866         if (CurrentOp->getOpcode() == ISD::UNDEF) {
15867           Elts.push_back(CurrentOp);
15868           continue;
15869         }
15870         ND = cast<ConstantSDNode>(CurrentOp);
15871         const APInt &C = ND->getAPIntValue();
15872         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), dl, ElementType));
15873       }
15874       break;
15875     }
15876
15877     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
15878   }
15879
15880   return DAG.getNode(Opc, dl, VT, SrcOp,
15881                      DAG.getConstant(ShiftAmt, dl, MVT::i8));
15882 }
15883
15884 // getTargetVShiftNode - Handle vector element shifts where the shift amount
15885 // may or may not be a constant. Takes immediate version of shift as input.
15886 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
15887                                    SDValue SrcOp, SDValue ShAmt,
15888                                    SelectionDAG &DAG) {
15889   MVT SVT = ShAmt.getSimpleValueType();
15890   assert((SVT == MVT::i32 || SVT == MVT::i64) && "Unexpected value type!");
15891
15892   // Catch shift-by-constant.
15893   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
15894     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
15895                                       CShAmt->getZExtValue(), DAG);
15896
15897   // Change opcode to non-immediate version
15898   switch (Opc) {
15899     default: llvm_unreachable("Unknown target vector shift node");
15900     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
15901     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
15902     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
15903   }
15904
15905   const X86Subtarget &Subtarget =
15906       static_cast<const X86Subtarget &>(DAG.getSubtarget());
15907   if (Subtarget.hasSSE41() && ShAmt.getOpcode() == ISD::ZERO_EXTEND &&
15908       ShAmt.getOperand(0).getSimpleValueType() == MVT::i16) {
15909     // Let the shuffle legalizer expand this shift amount node.
15910     SDValue Op0 = ShAmt.getOperand(0);
15911     Op0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(Op0), MVT::v8i16, Op0);
15912     ShAmt = getShuffleVectorZeroOrUndef(Op0, 0, true, &Subtarget, DAG);
15913   } else {
15914     // Need to build a vector containing shift amount.
15915     // SSE/AVX packed shifts only use the lower 64-bit of the shift count.
15916     SmallVector<SDValue, 4> ShOps;
15917     ShOps.push_back(ShAmt);
15918     if (SVT == MVT::i32) {
15919       ShOps.push_back(DAG.getConstant(0, dl, SVT));
15920       ShOps.push_back(DAG.getUNDEF(SVT));
15921     }
15922     ShOps.push_back(DAG.getUNDEF(SVT));
15923
15924     MVT BVT = SVT == MVT::i32 ? MVT::v4i32 : MVT::v2i64;
15925     ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, BVT, ShOps);
15926   }
15927
15928   // The return type has to be a 128-bit type with the same element
15929   // type as the input type.
15930   MVT EltVT = VT.getVectorElementType();
15931   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
15932
15933   ShAmt = DAG.getBitcast(ShVT, ShAmt);
15934   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
15935 }
15936
15937 /// \brief Return (and \p Op, \p Mask) for compare instructions or
15938 /// (vselect \p Mask, \p Op, \p PreservedSrc) for others along with the
15939 /// necessary casting or extending for \p Mask when lowering masking intrinsics
15940 static SDValue getVectorMaskingNode(SDValue Op, SDValue Mask,
15941                                     SDValue PreservedSrc,
15942                                     const X86Subtarget *Subtarget,
15943                                     SelectionDAG &DAG) {
15944     EVT VT = Op.getValueType();
15945     EVT MaskVT = EVT::getVectorVT(*DAG.getContext(),
15946                                   MVT::i1, VT.getVectorNumElements());
15947     SDValue VMask = SDValue();
15948     unsigned OpcodeSelect = ISD::VSELECT;
15949     SDLoc dl(Op);
15950
15951     assert(MaskVT.isSimple() && "invalid mask type");
15952
15953     if (isAllOnes(Mask))
15954       return Op;
15955
15956     if (MaskVT.bitsGT(Mask.getValueType())) {
15957       EVT newMaskVT =  EVT::getIntegerVT(*DAG.getContext(),
15958                                          MaskVT.getSizeInBits());
15959       VMask = DAG.getBitcast(MaskVT,
15960                              DAG.getNode(ISD::ANY_EXTEND, dl, newMaskVT, Mask));
15961     } else {
15962       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15963                                        Mask.getValueType().getSizeInBits());
15964       // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
15965       // are extracted by EXTRACT_SUBVECTOR.
15966       VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
15967                           DAG.getBitcast(BitcastVT, Mask),
15968                           DAG.getIntPtrConstant(0, dl));
15969     }
15970
15971     switch (Op.getOpcode()) {
15972       default: break;
15973       case X86ISD::PCMPEQM:
15974       case X86ISD::PCMPGTM:
15975       case X86ISD::CMPM:
15976       case X86ISD::CMPMU:
15977         return DAG.getNode(ISD::AND, dl, VT, Op, VMask);
15978       case X86ISD::VFPCLASS:
15979         return DAG.getNode(ISD::OR, dl, VT, Op, VMask);
15980       case X86ISD::VTRUNC:
15981       case X86ISD::VTRUNCS:
15982       case X86ISD::VTRUNCUS:
15983         // We can't use ISD::VSELECT here because it is not always "Legal"
15984         // for the destination type. For example vpmovqb require only AVX512
15985         // and vselect that can operate on byte element type require BWI
15986         OpcodeSelect = X86ISD::SELECT;
15987         break;
15988     }
15989     if (PreservedSrc.getOpcode() == ISD::UNDEF)
15990       PreservedSrc = getZeroVector(VT, Subtarget, DAG, dl);
15991     return DAG.getNode(OpcodeSelect, dl, VT, VMask, Op, PreservedSrc);
15992 }
15993
15994 /// \brief Creates an SDNode for a predicated scalar operation.
15995 /// \returns (X86vselect \p Mask, \p Op, \p PreservedSrc).
15996 /// The mask is coming as MVT::i8 and it should be truncated
15997 /// to MVT::i1 while lowering masking intrinsics.
15998 /// The main difference between ScalarMaskingNode and VectorMaskingNode is using
15999 /// "X86select" instead of "vselect". We just can't create the "vselect" node
16000 /// for a scalar instruction.
16001 static SDValue getScalarMaskingNode(SDValue Op, SDValue Mask,
16002                                     SDValue PreservedSrc,
16003                                     const X86Subtarget *Subtarget,
16004                                     SelectionDAG &DAG) {
16005   if (isAllOnes(Mask))
16006     return Op;
16007
16008   EVT VT = Op.getValueType();
16009   SDLoc dl(Op);
16010   // The mask should be of type MVT::i1
16011   SDValue IMask = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Mask);
16012
16013   if (Op.getOpcode() == X86ISD::FSETCC)
16014     return DAG.getNode(ISD::AND, dl, VT, Op, IMask);
16015
16016   if (PreservedSrc.getOpcode() == ISD::UNDEF)
16017     PreservedSrc = getZeroVector(VT, Subtarget, DAG, dl);
16018   return DAG.getNode(X86ISD::SELECT, dl, VT, IMask, Op, PreservedSrc);
16019 }
16020
16021 static int getSEHRegistrationNodeSize(const Function *Fn) {
16022   if (!Fn->hasPersonalityFn())
16023     report_fatal_error(
16024         "querying registration node size for function without personality");
16025   // The RegNodeSize is 6 32-bit words for SEH and 4 for C++ EH. See
16026   // WinEHStatePass for the full struct definition.
16027   switch (classifyEHPersonality(Fn->getPersonalityFn())) {
16028   case EHPersonality::MSVC_X86SEH: return 24;
16029   case EHPersonality::MSVC_CXX: return 16;
16030   default: break;
16031   }
16032   report_fatal_error("can only recover FP for MSVC EH personality functions");
16033 }
16034
16035 /// When the 32-bit MSVC runtime transfers control to us, either to an outlined
16036 /// function or when returning to a parent frame after catching an exception, we
16037 /// recover the parent frame pointer by doing arithmetic on the incoming EBP.
16038 /// Here's the math:
16039 ///   RegNodeBase = EntryEBP - RegNodeSize
16040 ///   ParentFP = RegNodeBase - RegNodeFrameOffset
16041 /// Subtracting RegNodeSize takes us to the offset of the registration node, and
16042 /// subtracting the offset (negative on x86) takes us back to the parent FP.
16043 static SDValue recoverFramePointer(SelectionDAG &DAG, const Function *Fn,
16044                                    SDValue EntryEBP) {
16045   MachineFunction &MF = DAG.getMachineFunction();
16046   SDLoc dl;
16047
16048   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16049   MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
16050
16051   // It's possible that the parent function no longer has a personality function
16052   // if the exceptional code was optimized away, in which case we just return
16053   // the incoming EBP.
16054   if (!Fn->hasPersonalityFn())
16055     return EntryEBP;
16056
16057   int RegNodeSize = getSEHRegistrationNodeSize(Fn);
16058
16059   // Get an MCSymbol that will ultimately resolve to the frame offset of the EH
16060   // registration.
16061   MCSymbol *OffsetSym =
16062       MF.getMMI().getContext().getOrCreateParentFrameOffsetSymbol(
16063           GlobalValue::getRealLinkageName(Fn->getName()));
16064   SDValue OffsetSymVal = DAG.getMCSymbol(OffsetSym, PtrVT);
16065   SDValue RegNodeFrameOffset =
16066       DAG.getNode(ISD::LOCAL_RECOVER, dl, PtrVT, OffsetSymVal);
16067
16068   // RegNodeBase = EntryEBP - RegNodeSize
16069   // ParentFP = RegNodeBase - RegNodeFrameOffset
16070   SDValue RegNodeBase = DAG.getNode(ISD::SUB, dl, PtrVT, EntryEBP,
16071                                     DAG.getConstant(RegNodeSize, dl, PtrVT));
16072   return DAG.getNode(ISD::SUB, dl, PtrVT, RegNodeBase, RegNodeFrameOffset);
16073 }
16074
16075 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
16076                                        SelectionDAG &DAG) {
16077   SDLoc dl(Op);
16078   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16079   EVT VT = Op.getValueType();
16080   const IntrinsicData* IntrData = getIntrinsicWithoutChain(IntNo);
16081   if (IntrData) {
16082     switch(IntrData->Type) {
16083     case INTR_TYPE_1OP:
16084       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1));
16085     case INTR_TYPE_2OP:
16086       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
16087         Op.getOperand(2));
16088     case INTR_TYPE_2OP_IMM8:
16089       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
16090                          DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op.getOperand(2)));
16091     case INTR_TYPE_3OP:
16092       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
16093         Op.getOperand(2), Op.getOperand(3));
16094     case INTR_TYPE_4OP:
16095       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
16096         Op.getOperand(2), Op.getOperand(3), Op.getOperand(4));
16097     case INTR_TYPE_1OP_MASK_RM: {
16098       SDValue Src = Op.getOperand(1);
16099       SDValue PassThru = Op.getOperand(2);
16100       SDValue Mask = Op.getOperand(3);
16101       SDValue RoundingMode;
16102       // We allways add rounding mode to the Node.
16103       // If the rounding mode is not specified, we add the
16104       // "current direction" mode.
16105       if (Op.getNumOperands() == 4)
16106         RoundingMode =
16107           DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
16108       else
16109         RoundingMode = Op.getOperand(4);
16110       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
16111       if (IntrWithRoundingModeOpcode != 0)
16112         if (cast<ConstantSDNode>(RoundingMode)->getZExtValue() !=
16113             X86::STATIC_ROUNDING::CUR_DIRECTION)
16114           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
16115                                       dl, Op.getValueType(), Src, RoundingMode),
16116                                       Mask, PassThru, Subtarget, DAG);
16117       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src,
16118                                               RoundingMode),
16119                                   Mask, PassThru, Subtarget, DAG);
16120     }
16121     case INTR_TYPE_1OP_MASK: {
16122       SDValue Src = Op.getOperand(1);
16123       SDValue PassThru = Op.getOperand(2);
16124       SDValue Mask = Op.getOperand(3);
16125       // We add rounding mode to the Node when
16126       //   - RM Opcode is specified and
16127       //   - RM is not "current direction".
16128       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
16129       if (IntrWithRoundingModeOpcode != 0) {
16130         SDValue Rnd = Op.getOperand(4);
16131         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
16132         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
16133           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
16134                                       dl, Op.getValueType(),
16135                                       Src, Rnd),
16136                                       Mask, PassThru, Subtarget, DAG);
16137         }
16138       }
16139       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src),
16140                                   Mask, PassThru, Subtarget, DAG);
16141     }
16142     case INTR_TYPE_SCALAR_MASK: {
16143       SDValue Src1 = Op.getOperand(1);
16144       SDValue Src2 = Op.getOperand(2);
16145       SDValue passThru = Op.getOperand(3);
16146       SDValue Mask = Op.getOperand(4);
16147       return getScalarMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src1, Src2),
16148                                   Mask, passThru, Subtarget, DAG);
16149     }
16150     case INTR_TYPE_SCALAR_MASK_RM: {
16151       SDValue Src1 = Op.getOperand(1);
16152       SDValue Src2 = Op.getOperand(2);
16153       SDValue Src0 = Op.getOperand(3);
16154       SDValue Mask = Op.getOperand(4);
16155       // There are 2 kinds of intrinsics in this group:
16156       // (1) With suppress-all-exceptions (sae) or rounding mode- 6 operands
16157       // (2) With rounding mode and sae - 7 operands.
16158       if (Op.getNumOperands() == 6) {
16159         SDValue Sae  = Op.getOperand(5);
16160         unsigned Opc = IntrData->Opc1 ? IntrData->Opc1 : IntrData->Opc0;
16161         return getScalarMaskingNode(DAG.getNode(Opc, dl, VT, Src1, Src2,
16162                                                 Sae),
16163                                     Mask, Src0, Subtarget, DAG);
16164       }
16165       assert(Op.getNumOperands() == 7 && "Unexpected intrinsic form");
16166       SDValue RoundingMode  = Op.getOperand(5);
16167       SDValue Sae  = Op.getOperand(6);
16168       return getScalarMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src1, Src2,
16169                                               RoundingMode, Sae),
16170                                   Mask, Src0, Subtarget, DAG);
16171     }
16172     case INTR_TYPE_2OP_MASK:
16173     case INTR_TYPE_2OP_IMM8_MASK: {
16174       SDValue Src1 = Op.getOperand(1);
16175       SDValue Src2 = Op.getOperand(2);
16176       SDValue PassThru = Op.getOperand(3);
16177       SDValue Mask = Op.getOperand(4);
16178
16179       if (IntrData->Type == INTR_TYPE_2OP_IMM8_MASK)
16180         Src2 = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Src2);
16181
16182       // We specify 2 possible opcodes for intrinsics with rounding modes.
16183       // First, we check if the intrinsic may have non-default rounding mode,
16184       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
16185       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
16186       if (IntrWithRoundingModeOpcode != 0) {
16187         SDValue Rnd = Op.getOperand(5);
16188         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
16189         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
16190           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
16191                                       dl, Op.getValueType(),
16192                                       Src1, Src2, Rnd),
16193                                       Mask, PassThru, Subtarget, DAG);
16194         }
16195       }
16196       // TODO: Intrinsics should have fast-math-flags to propagate.
16197       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,Src1,Src2),
16198                                   Mask, PassThru, Subtarget, DAG);
16199     }
16200     case INTR_TYPE_2OP_MASK_RM: {
16201       SDValue Src1 = Op.getOperand(1);
16202       SDValue Src2 = Op.getOperand(2);
16203       SDValue PassThru = Op.getOperand(3);
16204       SDValue Mask = Op.getOperand(4);
16205       // We specify 2 possible modes for intrinsics, with/without rounding
16206       // modes.
16207       // First, we check if the intrinsic have rounding mode (6 operands),
16208       // if not, we set rounding mode to "current".
16209       SDValue Rnd;
16210       if (Op.getNumOperands() == 6)
16211         Rnd = Op.getOperand(5);
16212       else
16213         Rnd = DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
16214       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
16215                                               Src1, Src2, Rnd),
16216                                   Mask, PassThru, Subtarget, DAG);
16217     }
16218     case INTR_TYPE_3OP_SCALAR_MASK_RM: {
16219       SDValue Src1 = Op.getOperand(1);
16220       SDValue Src2 = Op.getOperand(2);
16221       SDValue Src3 = Op.getOperand(3);
16222       SDValue PassThru = Op.getOperand(4);
16223       SDValue Mask = Op.getOperand(5);
16224       SDValue Sae  = Op.getOperand(6);
16225
16226       return getScalarMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src1,
16227                                               Src2, Src3, Sae),
16228                                   Mask, PassThru, Subtarget, DAG);
16229     }
16230     case INTR_TYPE_3OP_MASK_RM: {
16231       SDValue Src1 = Op.getOperand(1);
16232       SDValue Src2 = Op.getOperand(2);
16233       SDValue Imm = Op.getOperand(3);
16234       SDValue PassThru = Op.getOperand(4);
16235       SDValue Mask = Op.getOperand(5);
16236       // We specify 2 possible modes for intrinsics, with/without rounding
16237       // modes.
16238       // First, we check if the intrinsic have rounding mode (7 operands),
16239       // if not, we set rounding mode to "current".
16240       SDValue Rnd;
16241       if (Op.getNumOperands() == 7)
16242         Rnd = Op.getOperand(6);
16243       else
16244         Rnd = DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
16245       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
16246         Src1, Src2, Imm, Rnd),
16247         Mask, PassThru, Subtarget, DAG);
16248     }
16249     case INTR_TYPE_3OP_IMM8_MASK:
16250     case INTR_TYPE_3OP_MASK:
16251     case INSERT_SUBVEC: {
16252       SDValue Src1 = Op.getOperand(1);
16253       SDValue Src2 = Op.getOperand(2);
16254       SDValue Src3 = Op.getOperand(3);
16255       SDValue PassThru = Op.getOperand(4);
16256       SDValue Mask = Op.getOperand(5);
16257
16258       if (IntrData->Type == INTR_TYPE_3OP_IMM8_MASK)
16259         Src3 = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Src3);
16260       else if (IntrData->Type == INSERT_SUBVEC) {
16261         // imm should be adapted to ISD::INSERT_SUBVECTOR behavior
16262         assert(isa<ConstantSDNode>(Src3) && "Expected a ConstantSDNode here!");
16263         unsigned Imm = cast<ConstantSDNode>(Src3)->getZExtValue();
16264         Imm *= Src2.getValueType().getVectorNumElements();
16265         Src3 = DAG.getTargetConstant(Imm, dl, MVT::i32);
16266       }
16267
16268       // We specify 2 possible opcodes for intrinsics with rounding modes.
16269       // First, we check if the intrinsic may have non-default rounding mode,
16270       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
16271       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
16272       if (IntrWithRoundingModeOpcode != 0) {
16273         SDValue Rnd = Op.getOperand(6);
16274         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
16275         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
16276           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
16277                                       dl, Op.getValueType(),
16278                                       Src1, Src2, Src3, Rnd),
16279                                       Mask, PassThru, Subtarget, DAG);
16280         }
16281       }
16282       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
16283                                               Src1, Src2, Src3),
16284                                   Mask, PassThru, Subtarget, DAG);
16285     }
16286     case VPERM_3OP_MASKZ:
16287     case VPERM_3OP_MASK:
16288     case FMA_OP_MASK3:
16289     case FMA_OP_MASKZ:
16290     case FMA_OP_MASK: {
16291       SDValue Src1 = Op.getOperand(1);
16292       SDValue Src2 = Op.getOperand(2);
16293       SDValue Src3 = Op.getOperand(3);
16294       SDValue Mask = Op.getOperand(4);
16295       EVT VT = Op.getValueType();
16296       SDValue PassThru = SDValue();
16297
16298       // set PassThru element
16299       if (IntrData->Type == VPERM_3OP_MASKZ || IntrData->Type == FMA_OP_MASKZ)
16300         PassThru = getZeroVector(VT, Subtarget, DAG, dl);
16301       else if (IntrData->Type == FMA_OP_MASK3)
16302         PassThru = Src3;
16303       else
16304         PassThru = Src1;
16305
16306       // We specify 2 possible opcodes for intrinsics with rounding modes.
16307       // First, we check if the intrinsic may have non-default rounding mode,
16308       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
16309       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
16310       if (IntrWithRoundingModeOpcode != 0) {
16311         SDValue Rnd = Op.getOperand(5);
16312         if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
16313             X86::STATIC_ROUNDING::CUR_DIRECTION)
16314           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
16315                                                   dl, Op.getValueType(),
16316                                                   Src1, Src2, Src3, Rnd),
16317                                       Mask, PassThru, Subtarget, DAG);
16318       }
16319       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0,
16320                                               dl, Op.getValueType(),
16321                                               Src1, Src2, Src3),
16322                                   Mask, PassThru, Subtarget, DAG);
16323     }
16324     case TERLOG_OP_MASK:
16325     case TERLOG_OP_MASKZ: {
16326       SDValue Src1 = Op.getOperand(1);
16327       SDValue Src2 = Op.getOperand(2);
16328       SDValue Src3 = Op.getOperand(3);
16329       SDValue Src4 = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op.getOperand(4));
16330       SDValue Mask = Op.getOperand(5);
16331       EVT VT = Op.getValueType();
16332       SDValue PassThru = Src1;
16333       // Set PassThru element.
16334       if (IntrData->Type == TERLOG_OP_MASKZ)
16335         PassThru = getZeroVector(VT, Subtarget, DAG, dl);
16336
16337       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
16338                                               Src1, Src2, Src3, Src4),
16339                                   Mask, PassThru, Subtarget, DAG);
16340     }
16341     case FPCLASS: {
16342       // FPclass intrinsics with mask
16343        SDValue Src1 = Op.getOperand(1);
16344        EVT VT = Src1.getValueType();
16345        EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16346                                       VT.getVectorNumElements());
16347        SDValue Imm = Op.getOperand(2);
16348        SDValue Mask = Op.getOperand(3);
16349        EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16350                                         Mask.getValueType().getSizeInBits());
16351        SDValue FPclass = DAG.getNode(IntrData->Opc0, dl, MaskVT, Src1, Imm);
16352        SDValue FPclassMask = getVectorMaskingNode(FPclass, Mask,
16353                                                  DAG.getTargetConstant(0, dl, MaskVT),
16354                                                  Subtarget, DAG);
16355        SDValue Res = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, BitcastVT,
16356                                  DAG.getUNDEF(BitcastVT), FPclassMask,
16357                                  DAG.getIntPtrConstant(0, dl));
16358        return DAG.getBitcast(Op.getValueType(), Res);
16359     }
16360     case CMP_MASK:
16361     case CMP_MASK_CC: {
16362       // Comparison intrinsics with masks.
16363       // Example of transformation:
16364       // (i8 (int_x86_avx512_mask_pcmpeq_q_128
16365       //             (v2i64 %a), (v2i64 %b), (i8 %mask))) ->
16366       // (i8 (bitcast
16367       //   (v8i1 (insert_subvector undef,
16368       //           (v2i1 (and (PCMPEQM %a, %b),
16369       //                      (extract_subvector
16370       //                         (v8i1 (bitcast %mask)), 0))), 0))))
16371       EVT VT = Op.getOperand(1).getValueType();
16372       EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16373                                     VT.getVectorNumElements());
16374       SDValue Mask = Op.getOperand((IntrData->Type == CMP_MASK_CC) ? 4 : 3);
16375       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16376                                        Mask.getValueType().getSizeInBits());
16377       SDValue Cmp;
16378       if (IntrData->Type == CMP_MASK_CC) {
16379         SDValue CC = Op.getOperand(3);
16380         CC = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CC);
16381         // We specify 2 possible opcodes for intrinsics with rounding modes.
16382         // First, we check if the intrinsic may have non-default rounding mode,
16383         // (IntrData->Opc1 != 0), then we check the rounding mode operand.
16384         if (IntrData->Opc1 != 0) {
16385           SDValue Rnd = Op.getOperand(5);
16386           if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
16387               X86::STATIC_ROUNDING::CUR_DIRECTION)
16388             Cmp = DAG.getNode(IntrData->Opc1, dl, MaskVT, Op.getOperand(1),
16389                               Op.getOperand(2), CC, Rnd);
16390         }
16391         //default rounding mode
16392         if(!Cmp.getNode())
16393             Cmp = DAG.getNode(IntrData->Opc0, dl, MaskVT, Op.getOperand(1),
16394                               Op.getOperand(2), CC);
16395
16396       } else {
16397         assert(IntrData->Type == CMP_MASK && "Unexpected intrinsic type!");
16398         Cmp = DAG.getNode(IntrData->Opc0, dl, MaskVT, Op.getOperand(1),
16399                           Op.getOperand(2));
16400       }
16401       SDValue CmpMask = getVectorMaskingNode(Cmp, Mask,
16402                                              DAG.getTargetConstant(0, dl,
16403                                                                    MaskVT),
16404                                              Subtarget, DAG);
16405       SDValue Res = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, BitcastVT,
16406                                 DAG.getUNDEF(BitcastVT), CmpMask,
16407                                 DAG.getIntPtrConstant(0, dl));
16408       return DAG.getBitcast(Op.getValueType(), Res);
16409     }
16410     case CMP_MASK_SCALAR_CC: {
16411       SDValue Src1 = Op.getOperand(1);
16412       SDValue Src2 = Op.getOperand(2);
16413       SDValue CC = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op.getOperand(3));
16414       SDValue Mask = Op.getOperand(4);
16415
16416       SDValue Cmp;
16417       if (IntrData->Opc1 != 0) {
16418         SDValue Rnd = Op.getOperand(5);
16419         if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
16420             X86::STATIC_ROUNDING::CUR_DIRECTION)
16421           Cmp = DAG.getNode(IntrData->Opc1, dl, MVT::i1, Src1, Src2, CC, Rnd);
16422       }
16423       //default rounding mode
16424       if(!Cmp.getNode())
16425         Cmp = DAG.getNode(IntrData->Opc0, dl, MVT::i1, Src1, Src2, CC);
16426
16427       SDValue CmpMask = getScalarMaskingNode(Cmp, Mask,
16428                                              DAG.getTargetConstant(0, dl,
16429                                                                    MVT::i1),
16430                                              Subtarget, DAG);
16431
16432       return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::i8,
16433                          DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i8, CmpMask),
16434                          DAG.getValueType(MVT::i1));
16435     }
16436     case COMI: { // Comparison intrinsics
16437       ISD::CondCode CC = (ISD::CondCode)IntrData->Opc1;
16438       SDValue LHS = Op.getOperand(1);
16439       SDValue RHS = Op.getOperand(2);
16440       unsigned X86CC = TranslateX86CC(CC, dl, true, LHS, RHS, DAG);
16441       assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
16442       SDValue Cond = DAG.getNode(IntrData->Opc0, dl, MVT::i32, LHS, RHS);
16443       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16444                                   DAG.getConstant(X86CC, dl, MVT::i8), Cond);
16445       return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16446     }
16447     case VSHIFT:
16448       return getTargetVShiftNode(IntrData->Opc0, dl, Op.getSimpleValueType(),
16449                                  Op.getOperand(1), Op.getOperand(2), DAG);
16450     case VSHIFT_MASK:
16451       return getVectorMaskingNode(getTargetVShiftNode(IntrData->Opc0, dl,
16452                                                       Op.getSimpleValueType(),
16453                                                       Op.getOperand(1),
16454                                                       Op.getOperand(2), DAG),
16455                                   Op.getOperand(4), Op.getOperand(3), Subtarget,
16456                                   DAG);
16457     case COMPRESS_EXPAND_IN_REG: {
16458       SDValue Mask = Op.getOperand(3);
16459       SDValue DataToCompress = Op.getOperand(1);
16460       SDValue PassThru = Op.getOperand(2);
16461       if (isAllOnes(Mask)) // return data as is
16462         return Op.getOperand(1);
16463
16464       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
16465                                               DataToCompress),
16466                                   Mask, PassThru, Subtarget, DAG);
16467     }
16468     case BLEND: {
16469       SDValue Mask = Op.getOperand(3);
16470       EVT VT = Op.getValueType();
16471       EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16472                                     VT.getVectorNumElements());
16473       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16474                                        Mask.getValueType().getSizeInBits());
16475       SDLoc dl(Op);
16476       SDValue VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16477                                   DAG.getBitcast(BitcastVT, Mask),
16478                                   DAG.getIntPtrConstant(0, dl));
16479       return DAG.getNode(IntrData->Opc0, dl, VT, VMask, Op.getOperand(1),
16480                          Op.getOperand(2));
16481     }
16482     default:
16483       break;
16484     }
16485   }
16486
16487   switch (IntNo) {
16488   default: return SDValue();    // Don't custom lower most intrinsics.
16489
16490   case Intrinsic::x86_avx2_permd:
16491   case Intrinsic::x86_avx2_permps:
16492     // Operands intentionally swapped. Mask is last operand to intrinsic,
16493     // but second operand for node/instruction.
16494     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
16495                        Op.getOperand(2), Op.getOperand(1));
16496
16497   // ptest and testp intrinsics. The intrinsic these come from are designed to
16498   // return an integer value, not just an instruction so lower it to the ptest
16499   // or testp pattern and a setcc for the result.
16500   case Intrinsic::x86_sse41_ptestz:
16501   case Intrinsic::x86_sse41_ptestc:
16502   case Intrinsic::x86_sse41_ptestnzc:
16503   case Intrinsic::x86_avx_ptestz_256:
16504   case Intrinsic::x86_avx_ptestc_256:
16505   case Intrinsic::x86_avx_ptestnzc_256:
16506   case Intrinsic::x86_avx_vtestz_ps:
16507   case Intrinsic::x86_avx_vtestc_ps:
16508   case Intrinsic::x86_avx_vtestnzc_ps:
16509   case Intrinsic::x86_avx_vtestz_pd:
16510   case Intrinsic::x86_avx_vtestc_pd:
16511   case Intrinsic::x86_avx_vtestnzc_pd:
16512   case Intrinsic::x86_avx_vtestz_ps_256:
16513   case Intrinsic::x86_avx_vtestc_ps_256:
16514   case Intrinsic::x86_avx_vtestnzc_ps_256:
16515   case Intrinsic::x86_avx_vtestz_pd_256:
16516   case Intrinsic::x86_avx_vtestc_pd_256:
16517   case Intrinsic::x86_avx_vtestnzc_pd_256: {
16518     bool IsTestPacked = false;
16519     unsigned X86CC;
16520     switch (IntNo) {
16521     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
16522     case Intrinsic::x86_avx_vtestz_ps:
16523     case Intrinsic::x86_avx_vtestz_pd:
16524     case Intrinsic::x86_avx_vtestz_ps_256:
16525     case Intrinsic::x86_avx_vtestz_pd_256:
16526       IsTestPacked = true; // Fallthrough
16527     case Intrinsic::x86_sse41_ptestz:
16528     case Intrinsic::x86_avx_ptestz_256:
16529       // ZF = 1
16530       X86CC = X86::COND_E;
16531       break;
16532     case Intrinsic::x86_avx_vtestc_ps:
16533     case Intrinsic::x86_avx_vtestc_pd:
16534     case Intrinsic::x86_avx_vtestc_ps_256:
16535     case Intrinsic::x86_avx_vtestc_pd_256:
16536       IsTestPacked = true; // Fallthrough
16537     case Intrinsic::x86_sse41_ptestc:
16538     case Intrinsic::x86_avx_ptestc_256:
16539       // CF = 1
16540       X86CC = X86::COND_B;
16541       break;
16542     case Intrinsic::x86_avx_vtestnzc_ps:
16543     case Intrinsic::x86_avx_vtestnzc_pd:
16544     case Intrinsic::x86_avx_vtestnzc_ps_256:
16545     case Intrinsic::x86_avx_vtestnzc_pd_256:
16546       IsTestPacked = true; // Fallthrough
16547     case Intrinsic::x86_sse41_ptestnzc:
16548     case Intrinsic::x86_avx_ptestnzc_256:
16549       // ZF and CF = 0
16550       X86CC = X86::COND_A;
16551       break;
16552     }
16553
16554     SDValue LHS = Op.getOperand(1);
16555     SDValue RHS = Op.getOperand(2);
16556     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
16557     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
16558     SDValue CC = DAG.getConstant(X86CC, dl, MVT::i8);
16559     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
16560     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16561   }
16562   case Intrinsic::x86_avx512_kortestz_w:
16563   case Intrinsic::x86_avx512_kortestc_w: {
16564     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
16565     SDValue LHS = DAG.getBitcast(MVT::v16i1, Op.getOperand(1));
16566     SDValue RHS = DAG.getBitcast(MVT::v16i1, Op.getOperand(2));
16567     SDValue CC = DAG.getConstant(X86CC, dl, MVT::i8);
16568     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
16569     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
16570     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16571   }
16572
16573   case Intrinsic::x86_sse42_pcmpistria128:
16574   case Intrinsic::x86_sse42_pcmpestria128:
16575   case Intrinsic::x86_sse42_pcmpistric128:
16576   case Intrinsic::x86_sse42_pcmpestric128:
16577   case Intrinsic::x86_sse42_pcmpistrio128:
16578   case Intrinsic::x86_sse42_pcmpestrio128:
16579   case Intrinsic::x86_sse42_pcmpistris128:
16580   case Intrinsic::x86_sse42_pcmpestris128:
16581   case Intrinsic::x86_sse42_pcmpistriz128:
16582   case Intrinsic::x86_sse42_pcmpestriz128: {
16583     unsigned Opcode;
16584     unsigned X86CC;
16585     switch (IntNo) {
16586     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16587     case Intrinsic::x86_sse42_pcmpistria128:
16588       Opcode = X86ISD::PCMPISTRI;
16589       X86CC = X86::COND_A;
16590       break;
16591     case Intrinsic::x86_sse42_pcmpestria128:
16592       Opcode = X86ISD::PCMPESTRI;
16593       X86CC = X86::COND_A;
16594       break;
16595     case Intrinsic::x86_sse42_pcmpistric128:
16596       Opcode = X86ISD::PCMPISTRI;
16597       X86CC = X86::COND_B;
16598       break;
16599     case Intrinsic::x86_sse42_pcmpestric128:
16600       Opcode = X86ISD::PCMPESTRI;
16601       X86CC = X86::COND_B;
16602       break;
16603     case Intrinsic::x86_sse42_pcmpistrio128:
16604       Opcode = X86ISD::PCMPISTRI;
16605       X86CC = X86::COND_O;
16606       break;
16607     case Intrinsic::x86_sse42_pcmpestrio128:
16608       Opcode = X86ISD::PCMPESTRI;
16609       X86CC = X86::COND_O;
16610       break;
16611     case Intrinsic::x86_sse42_pcmpistris128:
16612       Opcode = X86ISD::PCMPISTRI;
16613       X86CC = X86::COND_S;
16614       break;
16615     case Intrinsic::x86_sse42_pcmpestris128:
16616       Opcode = X86ISD::PCMPESTRI;
16617       X86CC = X86::COND_S;
16618       break;
16619     case Intrinsic::x86_sse42_pcmpistriz128:
16620       Opcode = X86ISD::PCMPISTRI;
16621       X86CC = X86::COND_E;
16622       break;
16623     case Intrinsic::x86_sse42_pcmpestriz128:
16624       Opcode = X86ISD::PCMPESTRI;
16625       X86CC = X86::COND_E;
16626       break;
16627     }
16628     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
16629     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
16630     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
16631     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16632                                 DAG.getConstant(X86CC, dl, MVT::i8),
16633                                 SDValue(PCMP.getNode(), 1));
16634     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16635   }
16636
16637   case Intrinsic::x86_sse42_pcmpistri128:
16638   case Intrinsic::x86_sse42_pcmpestri128: {
16639     unsigned Opcode;
16640     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
16641       Opcode = X86ISD::PCMPISTRI;
16642     else
16643       Opcode = X86ISD::PCMPESTRI;
16644
16645     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
16646     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
16647     return DAG.getNode(Opcode, dl, VTs, NewOps);
16648   }
16649
16650   case Intrinsic::x86_seh_lsda: {
16651     // Compute the symbol for the LSDA. We know it'll get emitted later.
16652     MachineFunction &MF = DAG.getMachineFunction();
16653     SDValue Op1 = Op.getOperand(1);
16654     auto *Fn = cast<Function>(cast<GlobalAddressSDNode>(Op1)->getGlobal());
16655     MCSymbol *LSDASym = MF.getMMI().getContext().getOrCreateLSDASymbol(
16656         GlobalValue::getRealLinkageName(Fn->getName()));
16657
16658     // Generate a simple absolute symbol reference. This intrinsic is only
16659     // supported on 32-bit Windows, which isn't PIC.
16660     SDValue Result = DAG.getMCSymbol(LSDASym, VT);
16661     return DAG.getNode(X86ISD::Wrapper, dl, VT, Result);
16662   }
16663
16664   case Intrinsic::x86_seh_recoverfp: {
16665     SDValue FnOp = Op.getOperand(1);
16666     SDValue IncomingFPOp = Op.getOperand(2);
16667     GlobalAddressSDNode *GSD = dyn_cast<GlobalAddressSDNode>(FnOp);
16668     auto *Fn = dyn_cast_or_null<Function>(GSD ? GSD->getGlobal() : nullptr);
16669     if (!Fn)
16670       report_fatal_error(
16671           "llvm.x86.seh.recoverfp must take a function as the first argument");
16672     return recoverFramePointer(DAG, Fn, IncomingFPOp);
16673   }
16674
16675   case Intrinsic::localaddress: {
16676     // Returns one of the stack, base, or frame pointer registers, depending on
16677     // which is used to reference local variables.
16678     MachineFunction &MF = DAG.getMachineFunction();
16679     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16680     unsigned Reg;
16681     if (RegInfo->hasBasePointer(MF))
16682       Reg = RegInfo->getBaseRegister();
16683     else // This function handles the SP or FP case.
16684       Reg = RegInfo->getPtrSizedFrameRegister(MF);
16685     return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
16686   }
16687   }
16688 }
16689
16690 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
16691                               SDValue Src, SDValue Mask, SDValue Base,
16692                               SDValue Index, SDValue ScaleOp, SDValue Chain,
16693                               const X86Subtarget * Subtarget) {
16694   SDLoc dl(Op);
16695   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
16696   if (!C)
16697     llvm_unreachable("Invalid scale type");
16698   unsigned ScaleVal = C->getZExtValue();
16699   if (ScaleVal > 2 && ScaleVal != 4 && ScaleVal != 8)
16700     llvm_unreachable("Valid scale values are 1, 2, 4, 8");
16701
16702   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
16703   EVT MaskVT = MVT::getVectorVT(MVT::i1,
16704                              Index.getSimpleValueType().getVectorNumElements());
16705   SDValue MaskInReg;
16706   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
16707   if (MaskC)
16708     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
16709   else {
16710     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16711                                      Mask.getValueType().getSizeInBits());
16712
16713     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
16714     // are extracted by EXTRACT_SUBVECTOR.
16715     MaskInReg = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16716                             DAG.getBitcast(BitcastVT, Mask),
16717                             DAG.getIntPtrConstant(0, dl));
16718   }
16719   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
16720   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
16721   SDValue Segment = DAG.getRegister(0, MVT::i32);
16722   if (Src.getOpcode() == ISD::UNDEF)
16723     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
16724   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
16725   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
16726   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
16727   return DAG.getMergeValues(RetOps, dl);
16728 }
16729
16730 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
16731                                SDValue Src, SDValue Mask, SDValue Base,
16732                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
16733   SDLoc dl(Op);
16734   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
16735   if (!C)
16736     llvm_unreachable("Invalid scale type");
16737   unsigned ScaleVal = C->getZExtValue();
16738   if (ScaleVal > 2 && ScaleVal != 4 && ScaleVal != 8)
16739     llvm_unreachable("Valid scale values are 1, 2, 4, 8");
16740
16741   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
16742   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
16743   SDValue Segment = DAG.getRegister(0, MVT::i32);
16744   EVT MaskVT = MVT::getVectorVT(MVT::i1,
16745                              Index.getSimpleValueType().getVectorNumElements());
16746   SDValue MaskInReg;
16747   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
16748   if (MaskC)
16749     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
16750   else {
16751     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16752                                      Mask.getValueType().getSizeInBits());
16753
16754     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
16755     // are extracted by EXTRACT_SUBVECTOR.
16756     MaskInReg = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16757                             DAG.getBitcast(BitcastVT, Mask),
16758                             DAG.getIntPtrConstant(0, dl));
16759   }
16760   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
16761   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
16762   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
16763   return SDValue(Res, 1);
16764 }
16765
16766 static SDValue getPrefetchNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
16767                                SDValue Mask, SDValue Base, SDValue Index,
16768                                SDValue ScaleOp, SDValue Chain) {
16769   SDLoc dl(Op);
16770   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
16771   assert(C && "Invalid scale type");
16772   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
16773   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
16774   SDValue Segment = DAG.getRegister(0, MVT::i32);
16775   EVT MaskVT =
16776     MVT::getVectorVT(MVT::i1, Index.getSimpleValueType().getVectorNumElements());
16777   SDValue MaskInReg;
16778   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
16779   if (MaskC)
16780     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
16781   else
16782     MaskInReg = DAG.getBitcast(MaskVT, Mask);
16783   //SDVTList VTs = DAG.getVTList(MVT::Other);
16784   SDValue Ops[] = {MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
16785   SDNode *Res = DAG.getMachineNode(Opc, dl, MVT::Other, Ops);
16786   return SDValue(Res, 0);
16787 }
16788
16789 // getReadPerformanceCounter - Handles the lowering of builtin intrinsics that
16790 // read performance monitor counters (x86_rdpmc).
16791 static void getReadPerformanceCounter(SDNode *N, SDLoc DL,
16792                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
16793                               SmallVectorImpl<SDValue> &Results) {
16794   assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
16795   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16796   SDValue LO, HI;
16797
16798   // The ECX register is used to select the index of the performance counter
16799   // to read.
16800   SDValue Chain = DAG.getCopyToReg(N->getOperand(0), DL, X86::ECX,
16801                                    N->getOperand(2));
16802   SDValue rd = DAG.getNode(X86ISD::RDPMC_DAG, DL, Tys, Chain);
16803
16804   // Reads the content of a 64-bit performance counter and returns it in the
16805   // registers EDX:EAX.
16806   if (Subtarget->is64Bit()) {
16807     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
16808     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
16809                             LO.getValue(2));
16810   } else {
16811     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
16812     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
16813                             LO.getValue(2));
16814   }
16815   Chain = HI.getValue(1);
16816
16817   if (Subtarget->is64Bit()) {
16818     // The EAX register is loaded with the low-order 32 bits. The EDX register
16819     // is loaded with the supported high-order bits of the counter.
16820     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
16821                               DAG.getConstant(32, DL, MVT::i8));
16822     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
16823     Results.push_back(Chain);
16824     return;
16825   }
16826
16827   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
16828   SDValue Ops[] = { LO, HI };
16829   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
16830   Results.push_back(Pair);
16831   Results.push_back(Chain);
16832 }
16833
16834 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
16835 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
16836 // also used to custom lower READCYCLECOUNTER nodes.
16837 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
16838                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
16839                               SmallVectorImpl<SDValue> &Results) {
16840   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16841   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
16842   SDValue LO, HI;
16843
16844   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
16845   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
16846   // and the EAX register is loaded with the low-order 32 bits.
16847   if (Subtarget->is64Bit()) {
16848     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
16849     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
16850                             LO.getValue(2));
16851   } else {
16852     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
16853     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
16854                             LO.getValue(2));
16855   }
16856   SDValue Chain = HI.getValue(1);
16857
16858   if (Opcode == X86ISD::RDTSCP_DAG) {
16859     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
16860
16861     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
16862     // the ECX register. Add 'ecx' explicitly to the chain.
16863     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
16864                                      HI.getValue(2));
16865     // Explicitly store the content of ECX at the location passed in input
16866     // to the 'rdtscp' intrinsic.
16867     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
16868                          MachinePointerInfo(), false, false, 0);
16869   }
16870
16871   if (Subtarget->is64Bit()) {
16872     // The EDX register is loaded with the high-order 32 bits of the MSR, and
16873     // the EAX register is loaded with the low-order 32 bits.
16874     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
16875                               DAG.getConstant(32, DL, MVT::i8));
16876     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
16877     Results.push_back(Chain);
16878     return;
16879   }
16880
16881   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
16882   SDValue Ops[] = { LO, HI };
16883   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
16884   Results.push_back(Pair);
16885   Results.push_back(Chain);
16886 }
16887
16888 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
16889                                      SelectionDAG &DAG) {
16890   SmallVector<SDValue, 2> Results;
16891   SDLoc DL(Op);
16892   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
16893                           Results);
16894   return DAG.getMergeValues(Results, DL);
16895 }
16896
16897 static SDValue LowerSEHRESTOREFRAME(SDValue Op, const X86Subtarget *Subtarget,
16898                                     SelectionDAG &DAG) {
16899   MachineFunction &MF = DAG.getMachineFunction();
16900   const Function *Fn = MF.getFunction();
16901   SDLoc dl(Op);
16902   SDValue Chain = Op.getOperand(0);
16903
16904   assert(Subtarget->getFrameLowering()->hasFP(MF) &&
16905          "using llvm.x86.seh.restoreframe requires a frame pointer");
16906
16907   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16908   MVT VT = TLI.getPointerTy(DAG.getDataLayout());
16909
16910   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16911   unsigned FrameReg =
16912       RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
16913   unsigned SPReg = RegInfo->getStackRegister();
16914   unsigned SlotSize = RegInfo->getSlotSize();
16915
16916   // Get incoming EBP.
16917   SDValue IncomingEBP =
16918       DAG.getCopyFromReg(Chain, dl, FrameReg, VT);
16919
16920   // SP is saved in the first field of every registration node, so load
16921   // [EBP-RegNodeSize] into SP.
16922   int RegNodeSize = getSEHRegistrationNodeSize(Fn);
16923   SDValue SPAddr = DAG.getNode(ISD::ADD, dl, VT, IncomingEBP,
16924                                DAG.getConstant(-RegNodeSize, dl, VT));
16925   SDValue NewSP =
16926       DAG.getLoad(VT, dl, Chain, SPAddr, MachinePointerInfo(), false, false,
16927                   false, VT.getScalarSizeInBits() / 8);
16928   Chain = DAG.getCopyToReg(Chain, dl, SPReg, NewSP);
16929
16930   if (!RegInfo->needsStackRealignment(MF)) {
16931     // Adjust EBP to point back to the original frame position.
16932     SDValue NewFP = recoverFramePointer(DAG, Fn, IncomingEBP);
16933     Chain = DAG.getCopyToReg(Chain, dl, FrameReg, NewFP);
16934   } else {
16935     assert(RegInfo->hasBasePointer(MF) &&
16936            "functions with Win32 EH must use frame or base pointer register");
16937
16938     // Reload the base pointer (ESI) with the adjusted incoming EBP.
16939     SDValue NewBP = recoverFramePointer(DAG, Fn, IncomingEBP);
16940     Chain = DAG.getCopyToReg(Chain, dl, RegInfo->getBaseRegister(), NewBP);
16941
16942     // Reload the spilled EBP value, now that the stack and base pointers are
16943     // set up.
16944     X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
16945     X86FI->setHasSEHFramePtrSave(true);
16946     int FI = MF.getFrameInfo()->CreateSpillStackObject(SlotSize, SlotSize);
16947     X86FI->setSEHFramePtrSaveIndex(FI);
16948     SDValue NewFP = DAG.getLoad(VT, dl, Chain, DAG.getFrameIndex(FI, VT),
16949                                 MachinePointerInfo(), false, false, false,
16950                                 VT.getScalarSizeInBits() / 8);
16951     Chain = DAG.getCopyToReg(NewFP, dl, FrameReg, NewFP);
16952   }
16953
16954   return Chain;
16955 }
16956
16957 /// \brief Lower intrinsics for TRUNCATE_TO_MEM case
16958 /// return truncate Store/MaskedStore Node
16959 static SDValue LowerINTRINSIC_TRUNCATE_TO_MEM(const SDValue & Op,
16960                                                SelectionDAG &DAG,
16961                                                MVT ElementType) {
16962   SDLoc dl(Op);
16963   SDValue Mask = Op.getOperand(4);
16964   SDValue DataToTruncate = Op.getOperand(3);
16965   SDValue Addr = Op.getOperand(2);
16966   SDValue Chain = Op.getOperand(0);
16967
16968   EVT VT  = DataToTruncate.getValueType();
16969   EVT SVT = EVT::getVectorVT(*DAG.getContext(),
16970                              ElementType, VT.getVectorNumElements());
16971
16972   if (isAllOnes(Mask)) // return just a truncate store
16973     return DAG.getTruncStore(Chain, dl, DataToTruncate, Addr,
16974                              MachinePointerInfo(), SVT, false, false,
16975                              SVT.getScalarSizeInBits()/8);
16976
16977   EVT MaskVT = EVT::getVectorVT(*DAG.getContext(),
16978                                 MVT::i1, VT.getVectorNumElements());
16979   EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16980                                    Mask.getValueType().getSizeInBits());
16981   // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
16982   // are extracted by EXTRACT_SUBVECTOR.
16983   SDValue VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16984                               DAG.getBitcast(BitcastVT, Mask),
16985                               DAG.getIntPtrConstant(0, dl));
16986
16987   MachineMemOperand *MMO = DAG.getMachineFunction().
16988     getMachineMemOperand(MachinePointerInfo(),
16989                          MachineMemOperand::MOStore, SVT.getStoreSize(),
16990                          SVT.getScalarSizeInBits()/8);
16991
16992   return DAG.getMaskedStore(Chain, dl, DataToTruncate, Addr,
16993                             VMask, SVT, MMO, true);
16994 }
16995
16996 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
16997                                       SelectionDAG &DAG) {
16998   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
16999
17000   const IntrinsicData* IntrData = getIntrinsicWithChain(IntNo);
17001   if (!IntrData) {
17002     if (IntNo == llvm::Intrinsic::x86_seh_restoreframe)
17003       return LowerSEHRESTOREFRAME(Op, Subtarget, DAG);
17004     return SDValue();
17005   }
17006
17007   SDLoc dl(Op);
17008   switch(IntrData->Type) {
17009   default:
17010     llvm_unreachable("Unknown Intrinsic Type");
17011     break;
17012   case RDSEED:
17013   case RDRAND: {
17014     // Emit the node with the right value type.
17015     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
17016     SDValue Result = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(0));
17017
17018     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
17019     // Otherwise return the value from Rand, which is always 0, casted to i32.
17020     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
17021                       DAG.getConstant(1, dl, Op->getValueType(1)),
17022                       DAG.getConstant(X86::COND_B, dl, MVT::i32),
17023                       SDValue(Result.getNode(), 1) };
17024     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
17025                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
17026                                   Ops);
17027
17028     // Return { result, isValid, chain }.
17029     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
17030                        SDValue(Result.getNode(), 2));
17031   }
17032   case GATHER: {
17033   //gather(v1, mask, index, base, scale);
17034     SDValue Chain = Op.getOperand(0);
17035     SDValue Src   = Op.getOperand(2);
17036     SDValue Base  = Op.getOperand(3);
17037     SDValue Index = Op.getOperand(4);
17038     SDValue Mask  = Op.getOperand(5);
17039     SDValue Scale = Op.getOperand(6);
17040     return getGatherNode(IntrData->Opc0, Op, DAG, Src, Mask, Base, Index, Scale,
17041                          Chain, Subtarget);
17042   }
17043   case SCATTER: {
17044   //scatter(base, mask, index, v1, scale);
17045     SDValue Chain = Op.getOperand(0);
17046     SDValue Base  = Op.getOperand(2);
17047     SDValue Mask  = Op.getOperand(3);
17048     SDValue Index = Op.getOperand(4);
17049     SDValue Src   = Op.getOperand(5);
17050     SDValue Scale = Op.getOperand(6);
17051     return getScatterNode(IntrData->Opc0, Op, DAG, Src, Mask, Base, Index,
17052                           Scale, Chain);
17053   }
17054   case PREFETCH: {
17055     SDValue Hint = Op.getOperand(6);
17056     unsigned HintVal = cast<ConstantSDNode>(Hint)->getZExtValue();
17057     assert(HintVal < 2 && "Wrong prefetch hint in intrinsic: should be 0 or 1");
17058     unsigned Opcode = (HintVal ? IntrData->Opc1 : IntrData->Opc0);
17059     SDValue Chain = Op.getOperand(0);
17060     SDValue Mask  = Op.getOperand(2);
17061     SDValue Index = Op.getOperand(3);
17062     SDValue Base  = Op.getOperand(4);
17063     SDValue Scale = Op.getOperand(5);
17064     return getPrefetchNode(Opcode, Op, DAG, Mask, Base, Index, Scale, Chain);
17065   }
17066   // Read Time Stamp Counter (RDTSC) and Processor ID (RDTSCP).
17067   case RDTSC: {
17068     SmallVector<SDValue, 2> Results;
17069     getReadTimeStampCounter(Op.getNode(), dl, IntrData->Opc0, DAG, Subtarget,
17070                             Results);
17071     return DAG.getMergeValues(Results, dl);
17072   }
17073   // Read Performance Monitoring Counters.
17074   case RDPMC: {
17075     SmallVector<SDValue, 2> Results;
17076     getReadPerformanceCounter(Op.getNode(), dl, DAG, Subtarget, Results);
17077     return DAG.getMergeValues(Results, dl);
17078   }
17079   // XTEST intrinsics.
17080   case XTEST: {
17081     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
17082     SDValue InTrans = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(0));
17083     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
17084                                 DAG.getConstant(X86::COND_NE, dl, MVT::i8),
17085                                 InTrans);
17086     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
17087     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
17088                        Ret, SDValue(InTrans.getNode(), 1));
17089   }
17090   // ADC/ADCX/SBB
17091   case ADX: {
17092     SmallVector<SDValue, 2> Results;
17093     SDVTList CFVTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
17094     SDVTList VTs = DAG.getVTList(Op.getOperand(3)->getValueType(0), MVT::Other);
17095     SDValue GenCF = DAG.getNode(X86ISD::ADD, dl, CFVTs, Op.getOperand(2),
17096                                 DAG.getConstant(-1, dl, MVT::i8));
17097     SDValue Res = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(3),
17098                               Op.getOperand(4), GenCF.getValue(1));
17099     SDValue Store = DAG.getStore(Op.getOperand(0), dl, Res.getValue(0),
17100                                  Op.getOperand(5), MachinePointerInfo(),
17101                                  false, false, 0);
17102     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
17103                                 DAG.getConstant(X86::COND_B, dl, MVT::i8),
17104                                 Res.getValue(1));
17105     Results.push_back(SetCC);
17106     Results.push_back(Store);
17107     return DAG.getMergeValues(Results, dl);
17108   }
17109   case COMPRESS_TO_MEM: {
17110     SDLoc dl(Op);
17111     SDValue Mask = Op.getOperand(4);
17112     SDValue DataToCompress = Op.getOperand(3);
17113     SDValue Addr = Op.getOperand(2);
17114     SDValue Chain = Op.getOperand(0);
17115
17116     EVT VT = DataToCompress.getValueType();
17117     if (isAllOnes(Mask)) // return just a store
17118       return DAG.getStore(Chain, dl, DataToCompress, Addr,
17119                           MachinePointerInfo(), false, false,
17120                           VT.getScalarSizeInBits()/8);
17121
17122     SDValue Compressed =
17123       getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, DataToCompress),
17124                            Mask, DAG.getUNDEF(VT), Subtarget, DAG);
17125     return DAG.getStore(Chain, dl, Compressed, Addr,
17126                         MachinePointerInfo(), false, false,
17127                         VT.getScalarSizeInBits()/8);
17128   }
17129   case TRUNCATE_TO_MEM_VI8:
17130     return LowerINTRINSIC_TRUNCATE_TO_MEM(Op, DAG, MVT::i8);
17131   case TRUNCATE_TO_MEM_VI16:
17132     return LowerINTRINSIC_TRUNCATE_TO_MEM(Op, DAG, MVT::i16);
17133   case TRUNCATE_TO_MEM_VI32:
17134     return LowerINTRINSIC_TRUNCATE_TO_MEM(Op, DAG, MVT::i32);
17135   case EXPAND_FROM_MEM: {
17136     SDLoc dl(Op);
17137     SDValue Mask = Op.getOperand(4);
17138     SDValue PassThru = Op.getOperand(3);
17139     SDValue Addr = Op.getOperand(2);
17140     SDValue Chain = Op.getOperand(0);
17141     EVT VT = Op.getValueType();
17142
17143     if (isAllOnes(Mask)) // return just a load
17144       return DAG.getLoad(VT, dl, Chain, Addr, MachinePointerInfo(), false, false,
17145                          false, VT.getScalarSizeInBits()/8);
17146
17147     SDValue DataToExpand = DAG.getLoad(VT, dl, Chain, Addr, MachinePointerInfo(),
17148                                        false, false, false,
17149                                        VT.getScalarSizeInBits()/8);
17150
17151     SDValue Results[] = {
17152       getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, DataToExpand),
17153                            Mask, PassThru, Subtarget, DAG), Chain};
17154     return DAG.getMergeValues(Results, dl);
17155   }
17156   }
17157 }
17158
17159 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
17160                                            SelectionDAG &DAG) const {
17161   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
17162   MFI->setReturnAddressIsTaken(true);
17163
17164   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
17165     return SDValue();
17166
17167   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
17168   SDLoc dl(Op);
17169   EVT PtrVT = getPointerTy(DAG.getDataLayout());
17170
17171   if (Depth > 0) {
17172     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
17173     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
17174     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), dl, PtrVT);
17175     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
17176                        DAG.getNode(ISD::ADD, dl, PtrVT,
17177                                    FrameAddr, Offset),
17178                        MachinePointerInfo(), false, false, false, 0);
17179   }
17180
17181   // Just load the return address.
17182   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
17183   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
17184                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
17185 }
17186
17187 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
17188   MachineFunction &MF = DAG.getMachineFunction();
17189   MachineFrameInfo *MFI = MF.getFrameInfo();
17190   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
17191   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
17192   EVT VT = Op.getValueType();
17193
17194   MFI->setFrameAddressIsTaken(true);
17195
17196   if (MF.getTarget().getMCAsmInfo()->usesWindowsCFI()) {
17197     // Depth > 0 makes no sense on targets which use Windows unwind codes.  It
17198     // is not possible to crawl up the stack without looking at the unwind codes
17199     // simultaneously.
17200     int FrameAddrIndex = FuncInfo->getFAIndex();
17201     if (!FrameAddrIndex) {
17202       // Set up a frame object for the return address.
17203       unsigned SlotSize = RegInfo->getSlotSize();
17204       FrameAddrIndex = MF.getFrameInfo()->CreateFixedObject(
17205           SlotSize, /*Offset=*/0, /*IsImmutable=*/false);
17206       FuncInfo->setFAIndex(FrameAddrIndex);
17207     }
17208     return DAG.getFrameIndex(FrameAddrIndex, VT);
17209   }
17210
17211   unsigned FrameReg =
17212       RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
17213   SDLoc dl(Op);  // FIXME probably not meaningful
17214   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
17215   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
17216           (FrameReg == X86::EBP && VT == MVT::i32)) &&
17217          "Invalid Frame Register!");
17218   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
17219   while (Depth--)
17220     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
17221                             MachinePointerInfo(),
17222                             false, false, false, 0);
17223   return FrameAddr;
17224 }
17225
17226 // FIXME? Maybe this could be a TableGen attribute on some registers and
17227 // this table could be generated automatically from RegInfo.
17228 unsigned X86TargetLowering::getRegisterByName(const char* RegName, EVT VT,
17229                                               SelectionDAG &DAG) const {
17230   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
17231   const MachineFunction &MF = DAG.getMachineFunction();
17232
17233   unsigned Reg = StringSwitch<unsigned>(RegName)
17234                        .Case("esp", X86::ESP)
17235                        .Case("rsp", X86::RSP)
17236                        .Case("ebp", X86::EBP)
17237                        .Case("rbp", X86::RBP)
17238                        .Default(0);
17239
17240   if (Reg == X86::EBP || Reg == X86::RBP) {
17241     if (!TFI.hasFP(MF))
17242       report_fatal_error("register " + StringRef(RegName) +
17243                          " is allocatable: function has no frame pointer");
17244 #ifndef NDEBUG
17245     else {
17246       const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
17247       unsigned FrameReg =
17248           RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
17249       assert((FrameReg == X86::EBP || FrameReg == X86::RBP) &&
17250              "Invalid Frame Register!");
17251     }
17252 #endif
17253   }
17254
17255   if (Reg)
17256     return Reg;
17257
17258   report_fatal_error("Invalid register name global variable");
17259 }
17260
17261 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
17262                                                      SelectionDAG &DAG) const {
17263   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
17264   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize(), SDLoc(Op));
17265 }
17266
17267 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
17268   SDValue Chain     = Op.getOperand(0);
17269   SDValue Offset    = Op.getOperand(1);
17270   SDValue Handler   = Op.getOperand(2);
17271   SDLoc dl      (Op);
17272
17273   EVT PtrVT = getPointerTy(DAG.getDataLayout());
17274   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
17275   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
17276   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
17277           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
17278          "Invalid Frame Register!");
17279   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
17280   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
17281
17282   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
17283                                  DAG.getIntPtrConstant(RegInfo->getSlotSize(),
17284                                                        dl));
17285   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
17286   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
17287                        false, false, 0);
17288   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
17289
17290   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
17291                      DAG.getRegister(StoreAddrReg, PtrVT));
17292 }
17293
17294 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
17295                                                SelectionDAG &DAG) const {
17296   SDLoc DL(Op);
17297   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
17298                      DAG.getVTList(MVT::i32, MVT::Other),
17299                      Op.getOperand(0), Op.getOperand(1));
17300 }
17301
17302 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
17303                                                 SelectionDAG &DAG) const {
17304   SDLoc DL(Op);
17305   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
17306                      Op.getOperand(0), Op.getOperand(1));
17307 }
17308
17309 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
17310   return Op.getOperand(0);
17311 }
17312
17313 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
17314                                                 SelectionDAG &DAG) const {
17315   SDValue Root = Op.getOperand(0);
17316   SDValue Trmp = Op.getOperand(1); // trampoline
17317   SDValue FPtr = Op.getOperand(2); // nested function
17318   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
17319   SDLoc dl (Op);
17320
17321   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
17322   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
17323
17324   if (Subtarget->is64Bit()) {
17325     SDValue OutChains[6];
17326
17327     // Large code-model.
17328     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
17329     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
17330
17331     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
17332     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
17333
17334     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
17335
17336     // Load the pointer to the nested function into R11.
17337     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
17338     SDValue Addr = Trmp;
17339     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
17340                                 Addr, MachinePointerInfo(TrmpAddr),
17341                                 false, false, 0);
17342
17343     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
17344                        DAG.getConstant(2, dl, MVT::i64));
17345     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
17346                                 MachinePointerInfo(TrmpAddr, 2),
17347                                 false, false, 2);
17348
17349     // Load the 'nest' parameter value into R10.
17350     // R10 is specified in X86CallingConv.td
17351     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
17352     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
17353                        DAG.getConstant(10, dl, MVT::i64));
17354     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
17355                                 Addr, MachinePointerInfo(TrmpAddr, 10),
17356                                 false, false, 0);
17357
17358     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
17359                        DAG.getConstant(12, dl, MVT::i64));
17360     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
17361                                 MachinePointerInfo(TrmpAddr, 12),
17362                                 false, false, 2);
17363
17364     // Jump to the nested function.
17365     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
17366     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
17367                        DAG.getConstant(20, dl, MVT::i64));
17368     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
17369                                 Addr, MachinePointerInfo(TrmpAddr, 20),
17370                                 false, false, 0);
17371
17372     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
17373     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
17374                        DAG.getConstant(22, dl, MVT::i64));
17375     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, dl, MVT::i8),
17376                                 Addr, MachinePointerInfo(TrmpAddr, 22),
17377                                 false, false, 0);
17378
17379     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
17380   } else {
17381     const Function *Func =
17382       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
17383     CallingConv::ID CC = Func->getCallingConv();
17384     unsigned NestReg;
17385
17386     switch (CC) {
17387     default:
17388       llvm_unreachable("Unsupported calling convention");
17389     case CallingConv::C:
17390     case CallingConv::X86_StdCall: {
17391       // Pass 'nest' parameter in ECX.
17392       // Must be kept in sync with X86CallingConv.td
17393       NestReg = X86::ECX;
17394
17395       // Check that ECX wasn't needed by an 'inreg' parameter.
17396       FunctionType *FTy = Func->getFunctionType();
17397       const AttributeSet &Attrs = Func->getAttributes();
17398
17399       if (!Attrs.isEmpty() && !Func->isVarArg()) {
17400         unsigned InRegCount = 0;
17401         unsigned Idx = 1;
17402
17403         for (FunctionType::param_iterator I = FTy->param_begin(),
17404              E = FTy->param_end(); I != E; ++I, ++Idx)
17405           if (Attrs.hasAttribute(Idx, Attribute::InReg)) {
17406             auto &DL = DAG.getDataLayout();
17407             // FIXME: should only count parameters that are lowered to integers.
17408             InRegCount += (DL.getTypeSizeInBits(*I) + 31) / 32;
17409           }
17410
17411         if (InRegCount > 2) {
17412           report_fatal_error("Nest register in use - reduce number of inreg"
17413                              " parameters!");
17414         }
17415       }
17416       break;
17417     }
17418     case CallingConv::X86_FastCall:
17419     case CallingConv::X86_ThisCall:
17420     case CallingConv::Fast:
17421       // Pass 'nest' parameter in EAX.
17422       // Must be kept in sync with X86CallingConv.td
17423       NestReg = X86::EAX;
17424       break;
17425     }
17426
17427     SDValue OutChains[4];
17428     SDValue Addr, Disp;
17429
17430     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17431                        DAG.getConstant(10, dl, MVT::i32));
17432     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
17433
17434     // This is storing the opcode for MOV32ri.
17435     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
17436     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
17437     OutChains[0] = DAG.getStore(Root, dl,
17438                                 DAG.getConstant(MOV32ri|N86Reg, dl, MVT::i8),
17439                                 Trmp, MachinePointerInfo(TrmpAddr),
17440                                 false, false, 0);
17441
17442     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17443                        DAG.getConstant(1, dl, MVT::i32));
17444     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
17445                                 MachinePointerInfo(TrmpAddr, 1),
17446                                 false, false, 1);
17447
17448     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
17449     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17450                        DAG.getConstant(5, dl, MVT::i32));
17451     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, dl, MVT::i8),
17452                                 Addr, MachinePointerInfo(TrmpAddr, 5),
17453                                 false, false, 1);
17454
17455     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17456                        DAG.getConstant(6, dl, MVT::i32));
17457     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
17458                                 MachinePointerInfo(TrmpAddr, 6),
17459                                 false, false, 1);
17460
17461     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
17462   }
17463 }
17464
17465 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
17466                                             SelectionDAG &DAG) const {
17467   /*
17468    The rounding mode is in bits 11:10 of FPSR, and has the following
17469    settings:
17470      00 Round to nearest
17471      01 Round to -inf
17472      10 Round to +inf
17473      11 Round to 0
17474
17475   FLT_ROUNDS, on the other hand, expects the following:
17476     -1 Undefined
17477      0 Round to 0
17478      1 Round to nearest
17479      2 Round to +inf
17480      3 Round to -inf
17481
17482   To perform the conversion, we do:
17483     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
17484   */
17485
17486   MachineFunction &MF = DAG.getMachineFunction();
17487   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
17488   unsigned StackAlignment = TFI.getStackAlignment();
17489   MVT VT = Op.getSimpleValueType();
17490   SDLoc DL(Op);
17491
17492   // Save FP Control Word to stack slot
17493   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
17494   SDValue StackSlot =
17495       DAG.getFrameIndex(SSFI, getPointerTy(DAG.getDataLayout()));
17496
17497   MachineMemOperand *MMO =
17498       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(MF, SSFI),
17499                               MachineMemOperand::MOStore, 2, 2);
17500
17501   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
17502   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
17503                                           DAG.getVTList(MVT::Other),
17504                                           Ops, MVT::i16, MMO);
17505
17506   // Load FP Control Word from stack slot
17507   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
17508                             MachinePointerInfo(), false, false, false, 0);
17509
17510   // Transform as necessary
17511   SDValue CWD1 =
17512     DAG.getNode(ISD::SRL, DL, MVT::i16,
17513                 DAG.getNode(ISD::AND, DL, MVT::i16,
17514                             CWD, DAG.getConstant(0x800, DL, MVT::i16)),
17515                 DAG.getConstant(11, DL, MVT::i8));
17516   SDValue CWD2 =
17517     DAG.getNode(ISD::SRL, DL, MVT::i16,
17518                 DAG.getNode(ISD::AND, DL, MVT::i16,
17519                             CWD, DAG.getConstant(0x400, DL, MVT::i16)),
17520                 DAG.getConstant(9, DL, MVT::i8));
17521
17522   SDValue RetVal =
17523     DAG.getNode(ISD::AND, DL, MVT::i16,
17524                 DAG.getNode(ISD::ADD, DL, MVT::i16,
17525                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
17526                             DAG.getConstant(1, DL, MVT::i16)),
17527                 DAG.getConstant(3, DL, MVT::i16));
17528
17529   return DAG.getNode((VT.getSizeInBits() < 16 ?
17530                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
17531 }
17532
17533 /// \brief Lower a vector CTLZ using native supported vector CTLZ instruction.
17534 //
17535 // 1. i32/i64 128/256-bit vector (native support require VLX) are expended
17536 //    to 512-bit vector.
17537 // 2. i8/i16 vector implemented using dword LZCNT vector instruction
17538 //    ( sub(trunc(lzcnt(zext32(x)))) ). In case zext32(x) is illegal,
17539 //    split the vector, perform operation on it's Lo a Hi part and
17540 //    concatenate the results.
17541 static SDValue LowerVectorCTLZ_AVX512(SDValue Op, SelectionDAG &DAG) {
17542   SDLoc dl(Op);
17543   MVT VT = Op.getSimpleValueType();
17544   MVT EltVT = VT.getVectorElementType();
17545   unsigned NumElems = VT.getVectorNumElements();
17546
17547   if (EltVT == MVT::i64 || EltVT == MVT::i32) {
17548     // Extend to 512 bit vector.
17549     assert((VT.is256BitVector() || VT.is128BitVector()) &&
17550               "Unsupported value type for operation");
17551
17552     MVT NewVT = MVT::getVectorVT(EltVT, 512 / VT.getScalarSizeInBits());
17553     SDValue Vec512 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, NewVT,
17554                                  DAG.getUNDEF(NewVT),
17555                                  Op.getOperand(0),
17556                                  DAG.getIntPtrConstant(0, dl));
17557     SDValue CtlzNode = DAG.getNode(ISD::CTLZ, dl, NewVT, Vec512);
17558
17559     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, CtlzNode,
17560                        DAG.getIntPtrConstant(0, dl));
17561   }
17562
17563   assert((EltVT == MVT::i8 || EltVT == MVT::i16) &&
17564           "Unsupported element type");
17565
17566   if (16 < NumElems) {
17567     // Split vector, it's Lo and Hi parts will be handled in next iteration.
17568     SDValue Lo, Hi;
17569     std::tie(Lo, Hi) = DAG.SplitVector(Op.getOperand(0), dl);
17570     MVT OutVT = MVT::getVectorVT(EltVT, NumElems/2);
17571
17572     Lo = DAG.getNode(Op.getOpcode(), dl, OutVT, Lo);
17573     Hi = DAG.getNode(Op.getOpcode(), dl, OutVT, Hi);
17574
17575     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Lo, Hi);
17576   }
17577
17578   MVT NewVT = MVT::getVectorVT(MVT::i32, NumElems);
17579
17580   assert((NewVT.is256BitVector() || NewVT.is512BitVector()) &&
17581           "Unsupported value type for operation");
17582
17583   // Use native supported vector instruction vplzcntd.
17584   Op = DAG.getNode(ISD::ZERO_EXTEND, dl, NewVT, Op.getOperand(0));
17585   SDValue CtlzNode = DAG.getNode(ISD::CTLZ, dl, NewVT, Op);
17586   SDValue TruncNode = DAG.getNode(ISD::TRUNCATE, dl, VT, CtlzNode);
17587   SDValue Delta = DAG.getConstant(32 - EltVT.getSizeInBits(), dl, VT);
17588
17589   return DAG.getNode(ISD::SUB, dl, VT, TruncNode, Delta);
17590 }
17591
17592 static SDValue LowerCTLZ(SDValue Op, const X86Subtarget *Subtarget,
17593                          SelectionDAG &DAG) {
17594   MVT VT = Op.getSimpleValueType();
17595   EVT OpVT = VT;
17596   unsigned NumBits = VT.getSizeInBits();
17597   SDLoc dl(Op);
17598
17599   if (VT.isVector() && Subtarget->hasAVX512())
17600     return LowerVectorCTLZ_AVX512(Op, DAG);
17601
17602   Op = Op.getOperand(0);
17603   if (VT == MVT::i8) {
17604     // Zero extend to i32 since there is not an i8 bsr.
17605     OpVT = MVT::i32;
17606     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
17607   }
17608
17609   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
17610   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
17611   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
17612
17613   // If src is zero (i.e. bsr sets ZF), returns NumBits.
17614   SDValue Ops[] = {
17615     Op,
17616     DAG.getConstant(NumBits + NumBits - 1, dl, OpVT),
17617     DAG.getConstant(X86::COND_E, dl, MVT::i8),
17618     Op.getValue(1)
17619   };
17620   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
17621
17622   // Finally xor with NumBits-1.
17623   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op,
17624                    DAG.getConstant(NumBits - 1, dl, OpVT));
17625
17626   if (VT == MVT::i8)
17627     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
17628   return Op;
17629 }
17630
17631 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, const X86Subtarget *Subtarget,
17632                                     SelectionDAG &DAG) {
17633   MVT VT = Op.getSimpleValueType();
17634   EVT OpVT = VT;
17635   unsigned NumBits = VT.getSizeInBits();
17636   SDLoc dl(Op);
17637
17638   if (VT.isVector() && Subtarget->hasAVX512())
17639     return LowerVectorCTLZ_AVX512(Op, DAG);
17640
17641   Op = Op.getOperand(0);
17642   if (VT == MVT::i8) {
17643     // Zero extend to i32 since there is not an i8 bsr.
17644     OpVT = MVT::i32;
17645     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
17646   }
17647
17648   // Issue a bsr (scan bits in reverse).
17649   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
17650   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
17651
17652   // And xor with NumBits-1.
17653   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op,
17654                    DAG.getConstant(NumBits - 1, dl, OpVT));
17655
17656   if (VT == MVT::i8)
17657     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
17658   return Op;
17659 }
17660
17661 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
17662   MVT VT = Op.getSimpleValueType();
17663   unsigned NumBits = VT.getScalarSizeInBits();
17664   SDLoc dl(Op);
17665
17666   if (VT.isVector()) {
17667     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17668
17669     SDValue N0 = Op.getOperand(0);
17670     SDValue Zero = DAG.getConstant(0, dl, VT);
17671
17672     // lsb(x) = (x & -x)
17673     SDValue LSB = DAG.getNode(ISD::AND, dl, VT, N0,
17674                               DAG.getNode(ISD::SUB, dl, VT, Zero, N0));
17675
17676     // cttz_undef(x) = (width - 1) - ctlz(lsb)
17677     if (Op.getOpcode() == ISD::CTTZ_ZERO_UNDEF &&
17678         TLI.isOperationLegal(ISD::CTLZ, VT)) {
17679       SDValue WidthMinusOne = DAG.getConstant(NumBits - 1, dl, VT);
17680       return DAG.getNode(ISD::SUB, dl, VT, WidthMinusOne,
17681                          DAG.getNode(ISD::CTLZ, dl, VT, LSB));
17682     }
17683
17684     // cttz(x) = ctpop(lsb - 1)
17685     SDValue One = DAG.getConstant(1, dl, VT);
17686     return DAG.getNode(ISD::CTPOP, dl, VT,
17687                        DAG.getNode(ISD::SUB, dl, VT, LSB, One));
17688   }
17689
17690   assert(Op.getOpcode() == ISD::CTTZ &&
17691          "Only scalar CTTZ requires custom lowering");
17692
17693   // Issue a bsf (scan bits forward) which also sets EFLAGS.
17694   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
17695   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op.getOperand(0));
17696
17697   // If src is zero (i.e. bsf sets ZF), returns NumBits.
17698   SDValue Ops[] = {
17699     Op,
17700     DAG.getConstant(NumBits, dl, VT),
17701     DAG.getConstant(X86::COND_E, dl, MVT::i8),
17702     Op.getValue(1)
17703   };
17704   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
17705 }
17706
17707 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
17708 // ones, and then concatenate the result back.
17709 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
17710   MVT VT = Op.getSimpleValueType();
17711
17712   assert(VT.is256BitVector() && VT.isInteger() &&
17713          "Unsupported value type for operation");
17714
17715   unsigned NumElems = VT.getVectorNumElements();
17716   SDLoc dl(Op);
17717
17718   // Extract the LHS vectors
17719   SDValue LHS = Op.getOperand(0);
17720   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
17721   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
17722
17723   // Extract the RHS vectors
17724   SDValue RHS = Op.getOperand(1);
17725   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
17726   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
17727
17728   MVT EltVT = VT.getVectorElementType();
17729   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
17730
17731   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
17732                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
17733                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
17734 }
17735
17736 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
17737   if (Op.getValueType() == MVT::i1)
17738     return DAG.getNode(ISD::XOR, SDLoc(Op), Op.getValueType(),
17739                        Op.getOperand(0), Op.getOperand(1));
17740   assert(Op.getSimpleValueType().is256BitVector() &&
17741          Op.getSimpleValueType().isInteger() &&
17742          "Only handle AVX 256-bit vector integer operation");
17743   return Lower256IntArith(Op, DAG);
17744 }
17745
17746 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
17747   if (Op.getValueType() == MVT::i1)
17748     return DAG.getNode(ISD::XOR, SDLoc(Op), Op.getValueType(),
17749                        Op.getOperand(0), Op.getOperand(1));
17750   assert(Op.getSimpleValueType().is256BitVector() &&
17751          Op.getSimpleValueType().isInteger() &&
17752          "Only handle AVX 256-bit vector integer operation");
17753   return Lower256IntArith(Op, DAG);
17754 }
17755
17756 static SDValue LowerMINMAX(SDValue Op, SelectionDAG &DAG) {
17757   assert(Op.getSimpleValueType().is256BitVector() &&
17758          Op.getSimpleValueType().isInteger() &&
17759          "Only handle AVX 256-bit vector integer operation");
17760   return Lower256IntArith(Op, DAG);
17761 }
17762
17763 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
17764                         SelectionDAG &DAG) {
17765   SDLoc dl(Op);
17766   MVT VT = Op.getSimpleValueType();
17767
17768   if (VT == MVT::i1)
17769     return DAG.getNode(ISD::AND, dl, VT, Op.getOperand(0), Op.getOperand(1));
17770
17771   // Decompose 256-bit ops into smaller 128-bit ops.
17772   if (VT.is256BitVector() && !Subtarget->hasInt256())
17773     return Lower256IntArith(Op, DAG);
17774
17775   SDValue A = Op.getOperand(0);
17776   SDValue B = Op.getOperand(1);
17777
17778   // Lower v16i8/v32i8 mul as promotion to v8i16/v16i16 vector
17779   // pairs, multiply and truncate.
17780   if (VT == MVT::v16i8 || VT == MVT::v32i8) {
17781     if (Subtarget->hasInt256()) {
17782       if (VT == MVT::v32i8) {
17783         MVT SubVT = MVT::getVectorVT(MVT::i8, VT.getVectorNumElements() / 2);
17784         SDValue Lo = DAG.getIntPtrConstant(0, dl);
17785         SDValue Hi = DAG.getIntPtrConstant(VT.getVectorNumElements() / 2, dl);
17786         SDValue ALo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, A, Lo);
17787         SDValue BLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, B, Lo);
17788         SDValue AHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, A, Hi);
17789         SDValue BHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, B, Hi);
17790         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
17791                            DAG.getNode(ISD::MUL, dl, SubVT, ALo, BLo),
17792                            DAG.getNode(ISD::MUL, dl, SubVT, AHi, BHi));
17793       }
17794
17795       MVT ExVT = MVT::getVectorVT(MVT::i16, VT.getVectorNumElements());
17796       return DAG.getNode(
17797           ISD::TRUNCATE, dl, VT,
17798           DAG.getNode(ISD::MUL, dl, ExVT,
17799                       DAG.getNode(ISD::SIGN_EXTEND, dl, ExVT, A),
17800                       DAG.getNode(ISD::SIGN_EXTEND, dl, ExVT, B)));
17801     }
17802
17803     assert(VT == MVT::v16i8 &&
17804            "Pre-AVX2 support only supports v16i8 multiplication");
17805     MVT ExVT = MVT::v8i16;
17806
17807     // Extract the lo parts and sign extend to i16
17808     SDValue ALo, BLo;
17809     if (Subtarget->hasSSE41()) {
17810       ALo = DAG.getNode(X86ISD::VSEXT, dl, ExVT, A);
17811       BLo = DAG.getNode(X86ISD::VSEXT, dl, ExVT, B);
17812     } else {
17813       const int ShufMask[] = {-1, 0, -1, 1, -1, 2, -1, 3,
17814                               -1, 4, -1, 5, -1, 6, -1, 7};
17815       ALo = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
17816       BLo = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
17817       ALo = DAG.getBitcast(ExVT, ALo);
17818       BLo = DAG.getBitcast(ExVT, BLo);
17819       ALo = DAG.getNode(ISD::SRA, dl, ExVT, ALo, DAG.getConstant(8, dl, ExVT));
17820       BLo = DAG.getNode(ISD::SRA, dl, ExVT, BLo, DAG.getConstant(8, dl, ExVT));
17821     }
17822
17823     // Extract the hi parts and sign extend to i16
17824     SDValue AHi, BHi;
17825     if (Subtarget->hasSSE41()) {
17826       const int ShufMask[] = {8,  9,  10, 11, 12, 13, 14, 15,
17827                               -1, -1, -1, -1, -1, -1, -1, -1};
17828       AHi = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
17829       BHi = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
17830       AHi = DAG.getNode(X86ISD::VSEXT, dl, ExVT, AHi);
17831       BHi = DAG.getNode(X86ISD::VSEXT, dl, ExVT, BHi);
17832     } else {
17833       const int ShufMask[] = {-1, 8,  -1, 9,  -1, 10, -1, 11,
17834                               -1, 12, -1, 13, -1, 14, -1, 15};
17835       AHi = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
17836       BHi = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
17837       AHi = DAG.getBitcast(ExVT, AHi);
17838       BHi = DAG.getBitcast(ExVT, BHi);
17839       AHi = DAG.getNode(ISD::SRA, dl, ExVT, AHi, DAG.getConstant(8, dl, ExVT));
17840       BHi = DAG.getNode(ISD::SRA, dl, ExVT, BHi, DAG.getConstant(8, dl, ExVT));
17841     }
17842
17843     // Multiply, mask the lower 8bits of the lo/hi results and pack
17844     SDValue RLo = DAG.getNode(ISD::MUL, dl, ExVT, ALo, BLo);
17845     SDValue RHi = DAG.getNode(ISD::MUL, dl, ExVT, AHi, BHi);
17846     RLo = DAG.getNode(ISD::AND, dl, ExVT, RLo, DAG.getConstant(255, dl, ExVT));
17847     RHi = DAG.getNode(ISD::AND, dl, ExVT, RHi, DAG.getConstant(255, dl, ExVT));
17848     return DAG.getNode(X86ISD::PACKUS, dl, VT, RLo, RHi);
17849   }
17850
17851   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
17852   if (VT == MVT::v4i32) {
17853     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
17854            "Should not custom lower when pmuldq is available!");
17855
17856     // Extract the odd parts.
17857     static const int UnpackMask[] = { 1, -1, 3, -1 };
17858     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
17859     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
17860
17861     // Multiply the even parts.
17862     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
17863     // Now multiply odd parts.
17864     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
17865
17866     Evens = DAG.getBitcast(VT, Evens);
17867     Odds = DAG.getBitcast(VT, Odds);
17868
17869     // Merge the two vectors back together with a shuffle. This expands into 2
17870     // shuffles.
17871     static const int ShufMask[] = { 0, 4, 2, 6 };
17872     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
17873   }
17874
17875   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
17876          "Only know how to lower V2I64/V4I64/V8I64 multiply");
17877
17878   //  Ahi = psrlqi(a, 32);
17879   //  Bhi = psrlqi(b, 32);
17880   //
17881   //  AloBlo = pmuludq(a, b);
17882   //  AloBhi = pmuludq(a, Bhi);
17883   //  AhiBlo = pmuludq(Ahi, b);
17884
17885   //  AloBhi = psllqi(AloBhi, 32);
17886   //  AhiBlo = psllqi(AhiBlo, 32);
17887   //  return AloBlo + AloBhi + AhiBlo;
17888
17889   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
17890   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
17891
17892   SDValue AhiBlo = Ahi;
17893   SDValue AloBhi = Bhi;
17894   // Bit cast to 32-bit vectors for MULUDQ
17895   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
17896                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
17897   A = DAG.getBitcast(MulVT, A);
17898   B = DAG.getBitcast(MulVT, B);
17899   Ahi = DAG.getBitcast(MulVT, Ahi);
17900   Bhi = DAG.getBitcast(MulVT, Bhi);
17901
17902   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
17903   // After shifting right const values the result may be all-zero.
17904   if (!ISD::isBuildVectorAllZeros(Ahi.getNode())) {
17905     AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
17906     AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
17907   }
17908   if (!ISD::isBuildVectorAllZeros(Bhi.getNode())) {
17909     AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
17910     AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
17911   }
17912
17913   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
17914   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
17915 }
17916
17917 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
17918   assert(Subtarget->isTargetWin64() && "Unexpected target");
17919   EVT VT = Op.getValueType();
17920   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
17921          "Unexpected return type for lowering");
17922
17923   RTLIB::Libcall LC;
17924   bool isSigned;
17925   switch (Op->getOpcode()) {
17926   default: llvm_unreachable("Unexpected request for libcall!");
17927   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
17928   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
17929   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
17930   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
17931   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
17932   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
17933   }
17934
17935   SDLoc dl(Op);
17936   SDValue InChain = DAG.getEntryNode();
17937
17938   TargetLowering::ArgListTy Args;
17939   TargetLowering::ArgListEntry Entry;
17940   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
17941     EVT ArgVT = Op->getOperand(i).getValueType();
17942     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
17943            "Unexpected argument type for lowering");
17944     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
17945     Entry.Node = StackPtr;
17946     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
17947                            false, false, 16);
17948     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
17949     Entry.Ty = PointerType::get(ArgTy,0);
17950     Entry.isSExt = false;
17951     Entry.isZExt = false;
17952     Args.push_back(Entry);
17953   }
17954
17955   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
17956                                          getPointerTy(DAG.getDataLayout()));
17957
17958   TargetLowering::CallLoweringInfo CLI(DAG);
17959   CLI.setDebugLoc(dl).setChain(InChain)
17960     .setCallee(getLibcallCallingConv(LC),
17961                static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
17962                Callee, std::move(Args), 0)
17963     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
17964
17965   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
17966   return DAG.getBitcast(VT, CallInfo.first);
17967 }
17968
17969 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
17970                              SelectionDAG &DAG) {
17971   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
17972   EVT VT = Op0.getValueType();
17973   SDLoc dl(Op);
17974
17975   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
17976          (VT == MVT::v8i32 && Subtarget->hasInt256()));
17977
17978   // PMULxD operations multiply each even value (starting at 0) of LHS with
17979   // the related value of RHS and produce a widen result.
17980   // E.g., PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
17981   // => <2 x i64> <ae|cg>
17982   //
17983   // In other word, to have all the results, we need to perform two PMULxD:
17984   // 1. one with the even values.
17985   // 2. one with the odd values.
17986   // To achieve #2, with need to place the odd values at an even position.
17987   //
17988   // Place the odd value at an even position (basically, shift all values 1
17989   // step to the left):
17990   const int Mask[] = {1, -1, 3, -1, 5, -1, 7, -1};
17991   // <a|b|c|d> => <b|undef|d|undef>
17992   SDValue Odd0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
17993   // <e|f|g|h> => <f|undef|h|undef>
17994   SDValue Odd1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
17995
17996   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
17997   // ints.
17998   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
17999   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
18000   unsigned Opcode =
18001       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
18002   // PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
18003   // => <2 x i64> <ae|cg>
18004   SDValue Mul1 = DAG.getBitcast(VT, DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
18005   // PMULUDQ <4 x i32> <b|undef|d|undef>, <4 x i32> <f|undef|h|undef>
18006   // => <2 x i64> <bf|dh>
18007   SDValue Mul2 = DAG.getBitcast(VT, DAG.getNode(Opcode, dl, MulVT, Odd0, Odd1));
18008
18009   // Shuffle it back into the right order.
18010   SDValue Highs, Lows;
18011   if (VT == MVT::v8i32) {
18012     const int HighMask[] = {1, 9, 3, 11, 5, 13, 7, 15};
18013     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
18014     const int LowMask[] = {0, 8, 2, 10, 4, 12, 6, 14};
18015     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
18016   } else {
18017     const int HighMask[] = {1, 5, 3, 7};
18018     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
18019     const int LowMask[] = {0, 4, 2, 6};
18020     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
18021   }
18022
18023   // If we have a signed multiply but no PMULDQ fix up the high parts of a
18024   // unsigned multiply.
18025   if (IsSigned && !Subtarget->hasSSE41()) {
18026     SDValue ShAmt = DAG.getConstant(
18027         31, dl,
18028         DAG.getTargetLoweringInfo().getShiftAmountTy(VT, DAG.getDataLayout()));
18029     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
18030                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
18031     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
18032                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
18033
18034     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
18035     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
18036   }
18037
18038   // The first result of MUL_LOHI is actually the low value, followed by the
18039   // high value.
18040   SDValue Ops[] = {Lows, Highs};
18041   return DAG.getMergeValues(Ops, dl);
18042 }
18043
18044 // Return true if the required (according to Opcode) shift-imm form is natively
18045 // supported by the Subtarget
18046 static bool SupportedVectorShiftWithImm(MVT VT, const X86Subtarget *Subtarget,
18047                                         unsigned Opcode) {
18048   if (VT.getScalarSizeInBits() < 16)
18049     return false;
18050
18051   if (VT.is512BitVector() &&
18052       (VT.getScalarSizeInBits() > 16 || Subtarget->hasBWI()))
18053     return true;
18054
18055   bool LShift = VT.is128BitVector() ||
18056     (VT.is256BitVector() && Subtarget->hasInt256());
18057
18058   bool AShift = LShift && (Subtarget->hasVLX() ||
18059     (VT != MVT::v2i64 && VT != MVT::v4i64));
18060   return (Opcode == ISD::SRA) ? AShift : LShift;
18061 }
18062
18063 // The shift amount is a variable, but it is the same for all vector lanes.
18064 // These instructions are defined together with shift-immediate.
18065 static
18066 bool SupportedVectorShiftWithBaseAmnt(MVT VT, const X86Subtarget *Subtarget,
18067                                       unsigned Opcode) {
18068   return SupportedVectorShiftWithImm(VT, Subtarget, Opcode);
18069 }
18070
18071 // Return true if the required (according to Opcode) variable-shift form is
18072 // natively supported by the Subtarget
18073 static bool SupportedVectorVarShift(MVT VT, const X86Subtarget *Subtarget,
18074                                     unsigned Opcode) {
18075
18076   if (!Subtarget->hasInt256() || VT.getScalarSizeInBits() < 16)
18077     return false;
18078
18079   // vXi16 supported only on AVX-512, BWI
18080   if (VT.getScalarSizeInBits() == 16 && !Subtarget->hasBWI())
18081     return false;
18082
18083   if (VT.is512BitVector() || Subtarget->hasVLX())
18084     return true;
18085
18086   bool LShift = VT.is128BitVector() || VT.is256BitVector();
18087   bool AShift = LShift &&  VT != MVT::v2i64 && VT != MVT::v4i64;
18088   return (Opcode == ISD::SRA) ? AShift : LShift;
18089 }
18090
18091 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
18092                                          const X86Subtarget *Subtarget) {
18093   MVT VT = Op.getSimpleValueType();
18094   SDLoc dl(Op);
18095   SDValue R = Op.getOperand(0);
18096   SDValue Amt = Op.getOperand(1);
18097
18098   unsigned X86Opc = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHLI :
18099     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRLI : X86ISD::VSRAI;
18100
18101   auto ArithmeticShiftRight64 = [&](uint64_t ShiftAmt) {
18102     assert((VT == MVT::v2i64 || VT == MVT::v4i64) && "Unexpected SRA type");
18103     MVT ExVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() * 2);
18104     SDValue Ex = DAG.getBitcast(ExVT, R);
18105
18106     if (ShiftAmt >= 32) {
18107       // Splat sign to upper i32 dst, and SRA upper i32 src to lower i32.
18108       SDValue Upper =
18109           getTargetVShiftByConstNode(X86ISD::VSRAI, dl, ExVT, Ex, 31, DAG);
18110       SDValue Lower = getTargetVShiftByConstNode(X86ISD::VSRAI, dl, ExVT, Ex,
18111                                                  ShiftAmt - 32, DAG);
18112       if (VT == MVT::v2i64)
18113         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower, {5, 1, 7, 3});
18114       if (VT == MVT::v4i64)
18115         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower,
18116                                   {9, 1, 11, 3, 13, 5, 15, 7});
18117     } else {
18118       // SRA upper i32, SHL whole i64 and select lower i32.
18119       SDValue Upper = getTargetVShiftByConstNode(X86ISD::VSRAI, dl, ExVT, Ex,
18120                                                  ShiftAmt, DAG);
18121       SDValue Lower =
18122           getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt, DAG);
18123       Lower = DAG.getBitcast(ExVT, Lower);
18124       if (VT == MVT::v2i64)
18125         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower, {4, 1, 6, 3});
18126       if (VT == MVT::v4i64)
18127         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower,
18128                                   {8, 1, 10, 3, 12, 5, 14, 7});
18129     }
18130     return DAG.getBitcast(VT, Ex);
18131   };
18132
18133   // Optimize shl/srl/sra with constant shift amount.
18134   if (auto *BVAmt = dyn_cast<BuildVectorSDNode>(Amt)) {
18135     if (auto *ShiftConst = BVAmt->getConstantSplatNode()) {
18136       uint64_t ShiftAmt = ShiftConst->getZExtValue();
18137
18138       if (SupportedVectorShiftWithImm(VT, Subtarget, Op.getOpcode()))
18139         return getTargetVShiftByConstNode(X86Opc, dl, VT, R, ShiftAmt, DAG);
18140
18141       // i64 SRA needs to be performed as partial shifts.
18142       if ((VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
18143           Op.getOpcode() == ISD::SRA && !Subtarget->hasXOP())
18144         return ArithmeticShiftRight64(ShiftAmt);
18145
18146       if (VT == MVT::v16i8 || (Subtarget->hasInt256() && VT == MVT::v32i8)) {
18147         unsigned NumElts = VT.getVectorNumElements();
18148         MVT ShiftVT = MVT::getVectorVT(MVT::i16, NumElts / 2);
18149
18150         // Simple i8 add case
18151         if (Op.getOpcode() == ISD::SHL && ShiftAmt == 1)
18152           return DAG.getNode(ISD::ADD, dl, VT, R, R);
18153
18154         // ashr(R, 7)  === cmp_slt(R, 0)
18155         if (Op.getOpcode() == ISD::SRA && ShiftAmt == 7) {
18156           SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
18157           return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
18158         }
18159
18160         // XOP can shift v16i8 directly instead of as shift v8i16 + mask.
18161         if (VT == MVT::v16i8 && Subtarget->hasXOP())
18162           return SDValue();
18163
18164         if (Op.getOpcode() == ISD::SHL) {
18165           // Make a large shift.
18166           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, ShiftVT,
18167                                                    R, ShiftAmt, DAG);
18168           SHL = DAG.getBitcast(VT, SHL);
18169           // Zero out the rightmost bits.
18170           SmallVector<SDValue, 32> V(
18171               NumElts, DAG.getConstant(uint8_t(-1U << ShiftAmt), dl, MVT::i8));
18172           return DAG.getNode(ISD::AND, dl, VT, SHL,
18173                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
18174         }
18175         if (Op.getOpcode() == ISD::SRL) {
18176           // Make a large shift.
18177           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, ShiftVT,
18178                                                    R, ShiftAmt, DAG);
18179           SRL = DAG.getBitcast(VT, SRL);
18180           // Zero out the leftmost bits.
18181           SmallVector<SDValue, 32> V(
18182               NumElts, DAG.getConstant(uint8_t(-1U) >> ShiftAmt, dl, MVT::i8));
18183           return DAG.getNode(ISD::AND, dl, VT, SRL,
18184                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
18185         }
18186         if (Op.getOpcode() == ISD::SRA) {
18187           // ashr(R, Amt) === sub(xor(lshr(R, Amt), Mask), Mask)
18188           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
18189           SmallVector<SDValue, 32> V(NumElts,
18190                                      DAG.getConstant(128 >> ShiftAmt, dl,
18191                                                      MVT::i8));
18192           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
18193           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
18194           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
18195           return Res;
18196         }
18197         llvm_unreachable("Unknown shift opcode.");
18198       }
18199     }
18200   }
18201
18202   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
18203   if (!Subtarget->is64Bit() && !Subtarget->hasXOP() &&
18204       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64))) {
18205
18206     // Peek through any splat that was introduced for i64 shift vectorization.
18207     int SplatIndex = -1;
18208     if (ShuffleVectorSDNode *SVN = dyn_cast<ShuffleVectorSDNode>(Amt.getNode()))
18209       if (SVN->isSplat()) {
18210         SplatIndex = SVN->getSplatIndex();
18211         Amt = Amt.getOperand(0);
18212         assert(SplatIndex < (int)VT.getVectorNumElements() &&
18213                "Splat shuffle referencing second operand");
18214       }
18215
18216     if (Amt.getOpcode() != ISD::BITCAST ||
18217         Amt.getOperand(0).getOpcode() != ISD::BUILD_VECTOR)
18218       return SDValue();
18219
18220     Amt = Amt.getOperand(0);
18221     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
18222                      VT.getVectorNumElements();
18223     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
18224     uint64_t ShiftAmt = 0;
18225     unsigned BaseOp = (SplatIndex < 0 ? 0 : SplatIndex * Ratio);
18226     for (unsigned i = 0; i != Ratio; ++i) {
18227       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i + BaseOp));
18228       if (!C)
18229         return SDValue();
18230       // 6 == Log2(64)
18231       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
18232     }
18233
18234     // Check remaining shift amounts (if not a splat).
18235     if (SplatIndex < 0) {
18236       for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
18237         uint64_t ShAmt = 0;
18238         for (unsigned j = 0; j != Ratio; ++j) {
18239           ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
18240           if (!C)
18241             return SDValue();
18242           // 6 == Log2(64)
18243           ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
18244         }
18245         if (ShAmt != ShiftAmt)
18246           return SDValue();
18247       }
18248     }
18249
18250     if (SupportedVectorShiftWithImm(VT, Subtarget, Op.getOpcode()))
18251       return getTargetVShiftByConstNode(X86Opc, dl, VT, R, ShiftAmt, DAG);
18252
18253     if (Op.getOpcode() == ISD::SRA)
18254       return ArithmeticShiftRight64(ShiftAmt);
18255   }
18256
18257   return SDValue();
18258 }
18259
18260 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
18261                                         const X86Subtarget* Subtarget) {
18262   MVT VT = Op.getSimpleValueType();
18263   SDLoc dl(Op);
18264   SDValue R = Op.getOperand(0);
18265   SDValue Amt = Op.getOperand(1);
18266
18267   unsigned X86OpcI = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHLI :
18268     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRLI : X86ISD::VSRAI;
18269
18270   unsigned X86OpcV = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHL :
18271     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRL : X86ISD::VSRA;
18272
18273   if (SupportedVectorShiftWithBaseAmnt(VT, Subtarget, Op.getOpcode())) {
18274     SDValue BaseShAmt;
18275     EVT EltVT = VT.getVectorElementType();
18276
18277     if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Amt)) {
18278       // Check if this build_vector node is doing a splat.
18279       // If so, then set BaseShAmt equal to the splat value.
18280       BaseShAmt = BV->getSplatValue();
18281       if (BaseShAmt && BaseShAmt.getOpcode() == ISD::UNDEF)
18282         BaseShAmt = SDValue();
18283     } else {
18284       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
18285         Amt = Amt.getOperand(0);
18286
18287       ShuffleVectorSDNode *SVN = dyn_cast<ShuffleVectorSDNode>(Amt);
18288       if (SVN && SVN->isSplat()) {
18289         unsigned SplatIdx = (unsigned)SVN->getSplatIndex();
18290         SDValue InVec = Amt.getOperand(0);
18291         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
18292           assert((SplatIdx < InVec.getValueType().getVectorNumElements()) &&
18293                  "Unexpected shuffle index found!");
18294           BaseShAmt = InVec.getOperand(SplatIdx);
18295         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
18296            if (ConstantSDNode *C =
18297                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
18298              if (C->getZExtValue() == SplatIdx)
18299                BaseShAmt = InVec.getOperand(1);
18300            }
18301         }
18302
18303         if (!BaseShAmt)
18304           // Avoid introducing an extract element from a shuffle.
18305           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InVec,
18306                                   DAG.getIntPtrConstant(SplatIdx, dl));
18307       }
18308     }
18309
18310     if (BaseShAmt.getNode()) {
18311       assert(EltVT.bitsLE(MVT::i64) && "Unexpected element type!");
18312       if (EltVT != MVT::i64 && EltVT.bitsGT(MVT::i32))
18313         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, BaseShAmt);
18314       else if (EltVT.bitsLT(MVT::i32))
18315         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
18316
18317       return getTargetVShiftNode(X86OpcI, dl, VT, R, BaseShAmt, DAG);
18318     }
18319   }
18320
18321   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
18322   if (!Subtarget->is64Bit() && VT == MVT::v2i64  &&
18323       Amt.getOpcode() == ISD::BITCAST &&
18324       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
18325     Amt = Amt.getOperand(0);
18326     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
18327                      VT.getVectorNumElements();
18328     std::vector<SDValue> Vals(Ratio);
18329     for (unsigned i = 0; i != Ratio; ++i)
18330       Vals[i] = Amt.getOperand(i);
18331     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
18332       for (unsigned j = 0; j != Ratio; ++j)
18333         if (Vals[j] != Amt.getOperand(i + j))
18334           return SDValue();
18335     }
18336
18337     if (SupportedVectorShiftWithBaseAmnt(VT, Subtarget, Op.getOpcode()))
18338       return DAG.getNode(X86OpcV, dl, VT, R, Op.getOperand(1));
18339   }
18340   return SDValue();
18341 }
18342
18343 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
18344                           SelectionDAG &DAG) {
18345   MVT VT = Op.getSimpleValueType();
18346   SDLoc dl(Op);
18347   SDValue R = Op.getOperand(0);
18348   SDValue Amt = Op.getOperand(1);
18349
18350   assert(VT.isVector() && "Custom lowering only for vector shifts!");
18351   assert(Subtarget->hasSSE2() && "Only custom lower when we have SSE2!");
18352
18353   if (SDValue V = LowerScalarImmediateShift(Op, DAG, Subtarget))
18354     return V;
18355
18356   if (SDValue V = LowerScalarVariableShift(Op, DAG, Subtarget))
18357     return V;
18358
18359   if (SupportedVectorVarShift(VT, Subtarget, Op.getOpcode()))
18360     return Op;
18361
18362   // XOP has 128-bit variable logical/arithmetic shifts.
18363   // +ve/-ve Amt = shift left/right.
18364   if (Subtarget->hasXOP() &&
18365       (VT == MVT::v2i64 || VT == MVT::v4i32 ||
18366        VT == MVT::v8i16 || VT == MVT::v16i8)) {
18367     if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SRA) {
18368       SDValue Zero = getZeroVector(VT, Subtarget, DAG, dl);
18369       Amt = DAG.getNode(ISD::SUB, dl, VT, Zero, Amt);
18370     }
18371     if (Op.getOpcode() == ISD::SHL || Op.getOpcode() == ISD::SRL)
18372       return DAG.getNode(X86ISD::VPSHL, dl, VT, R, Amt);
18373     if (Op.getOpcode() == ISD::SRA)
18374       return DAG.getNode(X86ISD::VPSHA, dl, VT, R, Amt);
18375   }
18376
18377   // 2i64 vector logical shifts can efficiently avoid scalarization - do the
18378   // shifts per-lane and then shuffle the partial results back together.
18379   if (VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) {
18380     // Splat the shift amounts so the scalar shifts above will catch it.
18381     SDValue Amt0 = DAG.getVectorShuffle(VT, dl, Amt, Amt, {0, 0});
18382     SDValue Amt1 = DAG.getVectorShuffle(VT, dl, Amt, Amt, {1, 1});
18383     SDValue R0 = DAG.getNode(Op->getOpcode(), dl, VT, R, Amt0);
18384     SDValue R1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Amt1);
18385     return DAG.getVectorShuffle(VT, dl, R0, R1, {0, 3});
18386   }
18387
18388   // i64 vector arithmetic shift can be emulated with the transform:
18389   // M = lshr(SIGN_BIT, Amt)
18390   // ashr(R, Amt) === sub(xor(lshr(R, Amt), M), M)
18391   if ((VT == MVT::v2i64 || (VT == MVT::v4i64 && Subtarget->hasInt256())) &&
18392       Op.getOpcode() == ISD::SRA) {
18393     SDValue S = DAG.getConstant(APInt::getSignBit(64), dl, VT);
18394     SDValue M = DAG.getNode(ISD::SRL, dl, VT, S, Amt);
18395     R = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
18396     R = DAG.getNode(ISD::XOR, dl, VT, R, M);
18397     R = DAG.getNode(ISD::SUB, dl, VT, R, M);
18398     return R;
18399   }
18400
18401   // If possible, lower this packed shift into a vector multiply instead of
18402   // expanding it into a sequence of scalar shifts.
18403   // Do this only if the vector shift count is a constant build_vector.
18404   if (Op.getOpcode() == ISD::SHL &&
18405       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
18406        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
18407       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
18408     SmallVector<SDValue, 8> Elts;
18409     EVT SVT = VT.getScalarType();
18410     unsigned SVTBits = SVT.getSizeInBits();
18411     const APInt &One = APInt(SVTBits, 1);
18412     unsigned NumElems = VT.getVectorNumElements();
18413
18414     for (unsigned i=0; i !=NumElems; ++i) {
18415       SDValue Op = Amt->getOperand(i);
18416       if (Op->getOpcode() == ISD::UNDEF) {
18417         Elts.push_back(Op);
18418         continue;
18419       }
18420
18421       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
18422       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
18423       uint64_t ShAmt = C.getZExtValue();
18424       if (ShAmt >= SVTBits) {
18425         Elts.push_back(DAG.getUNDEF(SVT));
18426         continue;
18427       }
18428       Elts.push_back(DAG.getConstant(One.shl(ShAmt), dl, SVT));
18429     }
18430     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
18431     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
18432   }
18433
18434   // Lower SHL with variable shift amount.
18435   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
18436     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, dl, VT));
18437
18438     Op = DAG.getNode(ISD::ADD, dl, VT, Op,
18439                      DAG.getConstant(0x3f800000U, dl, VT));
18440     Op = DAG.getBitcast(MVT::v4f32, Op);
18441     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
18442     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
18443   }
18444
18445   // If possible, lower this shift as a sequence of two shifts by
18446   // constant plus a MOVSS/MOVSD instead of scalarizing it.
18447   // Example:
18448   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
18449   //
18450   // Could be rewritten as:
18451   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
18452   //
18453   // The advantage is that the two shifts from the example would be
18454   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
18455   // the vector shift into four scalar shifts plus four pairs of vector
18456   // insert/extract.
18457   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
18458       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
18459     unsigned TargetOpcode = X86ISD::MOVSS;
18460     bool CanBeSimplified;
18461     // The splat value for the first packed shift (the 'X' from the example).
18462     SDValue Amt1 = Amt->getOperand(0);
18463     // The splat value for the second packed shift (the 'Y' from the example).
18464     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
18465                                         Amt->getOperand(2);
18466
18467     // See if it is possible to replace this node with a sequence of
18468     // two shifts followed by a MOVSS/MOVSD
18469     if (VT == MVT::v4i32) {
18470       // Check if it is legal to use a MOVSS.
18471       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
18472                         Amt2 == Amt->getOperand(3);
18473       if (!CanBeSimplified) {
18474         // Otherwise, check if we can still simplify this node using a MOVSD.
18475         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
18476                           Amt->getOperand(2) == Amt->getOperand(3);
18477         TargetOpcode = X86ISD::MOVSD;
18478         Amt2 = Amt->getOperand(2);
18479       }
18480     } else {
18481       // Do similar checks for the case where the machine value type
18482       // is MVT::v8i16.
18483       CanBeSimplified = Amt1 == Amt->getOperand(1);
18484       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
18485         CanBeSimplified = Amt2 == Amt->getOperand(i);
18486
18487       if (!CanBeSimplified) {
18488         TargetOpcode = X86ISD::MOVSD;
18489         CanBeSimplified = true;
18490         Amt2 = Amt->getOperand(4);
18491         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
18492           CanBeSimplified = Amt1 == Amt->getOperand(i);
18493         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
18494           CanBeSimplified = Amt2 == Amt->getOperand(j);
18495       }
18496     }
18497
18498     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
18499         isa<ConstantSDNode>(Amt2)) {
18500       // Replace this node with two shifts followed by a MOVSS/MOVSD.
18501       EVT CastVT = MVT::v4i32;
18502       SDValue Splat1 =
18503         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), dl, VT);
18504       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
18505       SDValue Splat2 =
18506         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), dl, VT);
18507       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
18508       if (TargetOpcode == X86ISD::MOVSD)
18509         CastVT = MVT::v2i64;
18510       SDValue BitCast1 = DAG.getBitcast(CastVT, Shift1);
18511       SDValue BitCast2 = DAG.getBitcast(CastVT, Shift2);
18512       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
18513                                             BitCast1, DAG);
18514       return DAG.getBitcast(VT, Result);
18515     }
18516   }
18517
18518   // v4i32 Non Uniform Shifts.
18519   // If the shift amount is constant we can shift each lane using the SSE2
18520   // immediate shifts, else we need to zero-extend each lane to the lower i64
18521   // and shift using the SSE2 variable shifts.
18522   // The separate results can then be blended together.
18523   if (VT == MVT::v4i32) {
18524     unsigned Opc = Op.getOpcode();
18525     SDValue Amt0, Amt1, Amt2, Amt3;
18526     if (ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
18527       Amt0 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {0, 0, 0, 0});
18528       Amt1 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {1, 1, 1, 1});
18529       Amt2 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {2, 2, 2, 2});
18530       Amt3 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {3, 3, 3, 3});
18531     } else {
18532       // ISD::SHL is handled above but we include it here for completeness.
18533       switch (Opc) {
18534       default:
18535         llvm_unreachable("Unknown target vector shift node");
18536       case ISD::SHL:
18537         Opc = X86ISD::VSHL;
18538         break;
18539       case ISD::SRL:
18540         Opc = X86ISD::VSRL;
18541         break;
18542       case ISD::SRA:
18543         Opc = X86ISD::VSRA;
18544         break;
18545       }
18546       // The SSE2 shifts use the lower i64 as the same shift amount for
18547       // all lanes and the upper i64 is ignored. These shuffle masks
18548       // optimally zero-extend each lanes on SSE2/SSE41/AVX targets.
18549       SDValue Z = getZeroVector(VT, Subtarget, DAG, dl);
18550       Amt0 = DAG.getVectorShuffle(VT, dl, Amt, Z, {0, 4, -1, -1});
18551       Amt1 = DAG.getVectorShuffle(VT, dl, Amt, Z, {1, 5, -1, -1});
18552       Amt2 = DAG.getVectorShuffle(VT, dl, Amt, Z, {2, 6, -1, -1});
18553       Amt3 = DAG.getVectorShuffle(VT, dl, Amt, Z, {3, 7, -1, -1});
18554     }
18555
18556     SDValue R0 = DAG.getNode(Opc, dl, VT, R, Amt0);
18557     SDValue R1 = DAG.getNode(Opc, dl, VT, R, Amt1);
18558     SDValue R2 = DAG.getNode(Opc, dl, VT, R, Amt2);
18559     SDValue R3 = DAG.getNode(Opc, dl, VT, R, Amt3);
18560     SDValue R02 = DAG.getVectorShuffle(VT, dl, R0, R2, {0, -1, 6, -1});
18561     SDValue R13 = DAG.getVectorShuffle(VT, dl, R1, R3, {-1, 1, -1, 7});
18562     return DAG.getVectorShuffle(VT, dl, R02, R13, {0, 5, 2, 7});
18563   }
18564
18565   if (VT == MVT::v16i8 ||
18566       (VT == MVT::v32i8 && Subtarget->hasInt256() && !Subtarget->hasXOP())) {
18567     MVT ExtVT = MVT::getVectorVT(MVT::i16, VT.getVectorNumElements() / 2);
18568     unsigned ShiftOpcode = Op->getOpcode();
18569
18570     auto SignBitSelect = [&](MVT SelVT, SDValue Sel, SDValue V0, SDValue V1) {
18571       // On SSE41 targets we make use of the fact that VSELECT lowers
18572       // to PBLENDVB which selects bytes based just on the sign bit.
18573       if (Subtarget->hasSSE41()) {
18574         V0 = DAG.getBitcast(VT, V0);
18575         V1 = DAG.getBitcast(VT, V1);
18576         Sel = DAG.getBitcast(VT, Sel);
18577         return DAG.getBitcast(SelVT,
18578                               DAG.getNode(ISD::VSELECT, dl, VT, Sel, V0, V1));
18579       }
18580       // On pre-SSE41 targets we test for the sign bit by comparing to
18581       // zero - a negative value will set all bits of the lanes to true
18582       // and VSELECT uses that in its OR(AND(V0,C),AND(V1,~C)) lowering.
18583       SDValue Z = getZeroVector(SelVT, Subtarget, DAG, dl);
18584       SDValue C = DAG.getNode(X86ISD::PCMPGT, dl, SelVT, Z, Sel);
18585       return DAG.getNode(ISD::VSELECT, dl, SelVT, C, V0, V1);
18586     };
18587
18588     // Turn 'a' into a mask suitable for VSELECT: a = a << 5;
18589     // We can safely do this using i16 shifts as we're only interested in
18590     // the 3 lower bits of each byte.
18591     Amt = DAG.getBitcast(ExtVT, Amt);
18592     Amt = DAG.getNode(ISD::SHL, dl, ExtVT, Amt, DAG.getConstant(5, dl, ExtVT));
18593     Amt = DAG.getBitcast(VT, Amt);
18594
18595     if (Op->getOpcode() == ISD::SHL || Op->getOpcode() == ISD::SRL) {
18596       // r = VSELECT(r, shift(r, 4), a);
18597       SDValue M =
18598           DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(4, dl, VT));
18599       R = SignBitSelect(VT, Amt, M, R);
18600
18601       // a += a
18602       Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18603
18604       // r = VSELECT(r, shift(r, 2), a);
18605       M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(2, dl, VT));
18606       R = SignBitSelect(VT, Amt, M, R);
18607
18608       // a += a
18609       Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18610
18611       // return VSELECT(r, shift(r, 1), a);
18612       M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(1, dl, VT));
18613       R = SignBitSelect(VT, Amt, M, R);
18614       return R;
18615     }
18616
18617     if (Op->getOpcode() == ISD::SRA) {
18618       // For SRA we need to unpack each byte to the higher byte of a i16 vector
18619       // so we can correctly sign extend. We don't care what happens to the
18620       // lower byte.
18621       SDValue ALo = DAG.getNode(X86ISD::UNPCKL, dl, VT, DAG.getUNDEF(VT), Amt);
18622       SDValue AHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, DAG.getUNDEF(VT), Amt);
18623       SDValue RLo = DAG.getNode(X86ISD::UNPCKL, dl, VT, DAG.getUNDEF(VT), R);
18624       SDValue RHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, DAG.getUNDEF(VT), R);
18625       ALo = DAG.getBitcast(ExtVT, ALo);
18626       AHi = DAG.getBitcast(ExtVT, AHi);
18627       RLo = DAG.getBitcast(ExtVT, RLo);
18628       RHi = DAG.getBitcast(ExtVT, RHi);
18629
18630       // r = VSELECT(r, shift(r, 4), a);
18631       SDValue MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
18632                                 DAG.getConstant(4, dl, ExtVT));
18633       SDValue MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
18634                                 DAG.getConstant(4, dl, ExtVT));
18635       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
18636       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
18637
18638       // a += a
18639       ALo = DAG.getNode(ISD::ADD, dl, ExtVT, ALo, ALo);
18640       AHi = DAG.getNode(ISD::ADD, dl, ExtVT, AHi, AHi);
18641
18642       // r = VSELECT(r, shift(r, 2), a);
18643       MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
18644                         DAG.getConstant(2, dl, ExtVT));
18645       MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
18646                         DAG.getConstant(2, dl, ExtVT));
18647       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
18648       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
18649
18650       // a += a
18651       ALo = DAG.getNode(ISD::ADD, dl, ExtVT, ALo, ALo);
18652       AHi = DAG.getNode(ISD::ADD, dl, ExtVT, AHi, AHi);
18653
18654       // r = VSELECT(r, shift(r, 1), a);
18655       MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
18656                         DAG.getConstant(1, dl, ExtVT));
18657       MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
18658                         DAG.getConstant(1, dl, ExtVT));
18659       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
18660       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
18661
18662       // Logical shift the result back to the lower byte, leaving a zero upper
18663       // byte
18664       // meaning that we can safely pack with PACKUSWB.
18665       RLo =
18666           DAG.getNode(ISD::SRL, dl, ExtVT, RLo, DAG.getConstant(8, dl, ExtVT));
18667       RHi =
18668           DAG.getNode(ISD::SRL, dl, ExtVT, RHi, DAG.getConstant(8, dl, ExtVT));
18669       return DAG.getNode(X86ISD::PACKUS, dl, VT, RLo, RHi);
18670     }
18671   }
18672
18673   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
18674   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
18675   // solution better.
18676   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
18677     MVT ExtVT = MVT::v8i32;
18678     unsigned ExtOpc =
18679         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
18680     R = DAG.getNode(ExtOpc, dl, ExtVT, R);
18681     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, ExtVT, Amt);
18682     return DAG.getNode(ISD::TRUNCATE, dl, VT,
18683                        DAG.getNode(Op.getOpcode(), dl, ExtVT, R, Amt));
18684   }
18685
18686   if (Subtarget->hasInt256() && !Subtarget->hasXOP() && VT == MVT::v16i16) {
18687     MVT ExtVT = MVT::v8i32;
18688     SDValue Z = getZeroVector(VT, Subtarget, DAG, dl);
18689     SDValue ALo = DAG.getNode(X86ISD::UNPCKL, dl, VT, Amt, Z);
18690     SDValue AHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, Amt, Z);
18691     SDValue RLo = DAG.getNode(X86ISD::UNPCKL, dl, VT, R, R);
18692     SDValue RHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, R, R);
18693     ALo = DAG.getBitcast(ExtVT, ALo);
18694     AHi = DAG.getBitcast(ExtVT, AHi);
18695     RLo = DAG.getBitcast(ExtVT, RLo);
18696     RHi = DAG.getBitcast(ExtVT, RHi);
18697     SDValue Lo = DAG.getNode(Op.getOpcode(), dl, ExtVT, RLo, ALo);
18698     SDValue Hi = DAG.getNode(Op.getOpcode(), dl, ExtVT, RHi, AHi);
18699     Lo = DAG.getNode(ISD::SRL, dl, ExtVT, Lo, DAG.getConstant(16, dl, ExtVT));
18700     Hi = DAG.getNode(ISD::SRL, dl, ExtVT, Hi, DAG.getConstant(16, dl, ExtVT));
18701     return DAG.getNode(X86ISD::PACKUS, dl, VT, Lo, Hi);
18702   }
18703
18704   if (VT == MVT::v8i16) {
18705     unsigned ShiftOpcode = Op->getOpcode();
18706
18707     auto SignBitSelect = [&](SDValue Sel, SDValue V0, SDValue V1) {
18708       // On SSE41 targets we make use of the fact that VSELECT lowers
18709       // to PBLENDVB which selects bytes based just on the sign bit.
18710       if (Subtarget->hasSSE41()) {
18711         MVT ExtVT = MVT::getVectorVT(MVT::i8, VT.getVectorNumElements() * 2);
18712         V0 = DAG.getBitcast(ExtVT, V0);
18713         V1 = DAG.getBitcast(ExtVT, V1);
18714         Sel = DAG.getBitcast(ExtVT, Sel);
18715         return DAG.getBitcast(
18716             VT, DAG.getNode(ISD::VSELECT, dl, ExtVT, Sel, V0, V1));
18717       }
18718       // On pre-SSE41 targets we splat the sign bit - a negative value will
18719       // set all bits of the lanes to true and VSELECT uses that in
18720       // its OR(AND(V0,C),AND(V1,~C)) lowering.
18721       SDValue C =
18722           DAG.getNode(ISD::SRA, dl, VT, Sel, DAG.getConstant(15, dl, VT));
18723       return DAG.getNode(ISD::VSELECT, dl, VT, C, V0, V1);
18724     };
18725
18726     // Turn 'a' into a mask suitable for VSELECT: a = a << 12;
18727     if (Subtarget->hasSSE41()) {
18728       // On SSE41 targets we need to replicate the shift mask in both
18729       // bytes for PBLENDVB.
18730       Amt = DAG.getNode(
18731           ISD::OR, dl, VT,
18732           DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(4, dl, VT)),
18733           DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(12, dl, VT)));
18734     } else {
18735       Amt = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(12, dl, VT));
18736     }
18737
18738     // r = VSELECT(r, shift(r, 8), a);
18739     SDValue M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(8, dl, VT));
18740     R = SignBitSelect(Amt, M, R);
18741
18742     // a += a
18743     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18744
18745     // r = VSELECT(r, shift(r, 4), a);
18746     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(4, dl, VT));
18747     R = SignBitSelect(Amt, M, R);
18748
18749     // a += a
18750     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18751
18752     // r = VSELECT(r, shift(r, 2), a);
18753     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(2, dl, VT));
18754     R = SignBitSelect(Amt, M, R);
18755
18756     // a += a
18757     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18758
18759     // return VSELECT(r, shift(r, 1), a);
18760     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(1, dl, VT));
18761     R = SignBitSelect(Amt, M, R);
18762     return R;
18763   }
18764
18765   // Decompose 256-bit shifts into smaller 128-bit shifts.
18766   if (VT.is256BitVector()) {
18767     unsigned NumElems = VT.getVectorNumElements();
18768     MVT EltVT = VT.getVectorElementType();
18769     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
18770
18771     // Extract the two vectors
18772     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
18773     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
18774
18775     // Recreate the shift amount vectors
18776     SDValue Amt1, Amt2;
18777     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
18778       // Constant shift amount
18779       SmallVector<SDValue, 8> Ops(Amt->op_begin(), Amt->op_begin() + NumElems);
18780       ArrayRef<SDValue> Amt1Csts = makeArrayRef(Ops).slice(0, NumElems / 2);
18781       ArrayRef<SDValue> Amt2Csts = makeArrayRef(Ops).slice(NumElems / 2);
18782
18783       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
18784       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
18785     } else {
18786       // Variable shift amount
18787       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
18788       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
18789     }
18790
18791     // Issue new vector shifts for the smaller types
18792     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
18793     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
18794
18795     // Concatenate the result back
18796     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
18797   }
18798
18799   return SDValue();
18800 }
18801
18802 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
18803   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
18804   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
18805   // looks for this combo and may remove the "setcc" instruction if the "setcc"
18806   // has only one use.
18807   SDNode *N = Op.getNode();
18808   SDValue LHS = N->getOperand(0);
18809   SDValue RHS = N->getOperand(1);
18810   unsigned BaseOp = 0;
18811   unsigned Cond = 0;
18812   SDLoc DL(Op);
18813   switch (Op.getOpcode()) {
18814   default: llvm_unreachable("Unknown ovf instruction!");
18815   case ISD::SADDO:
18816     // A subtract of one will be selected as a INC. Note that INC doesn't
18817     // set CF, so we can't do this for UADDO.
18818     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
18819       if (C->isOne()) {
18820         BaseOp = X86ISD::INC;
18821         Cond = X86::COND_O;
18822         break;
18823       }
18824     BaseOp = X86ISD::ADD;
18825     Cond = X86::COND_O;
18826     break;
18827   case ISD::UADDO:
18828     BaseOp = X86ISD::ADD;
18829     Cond = X86::COND_B;
18830     break;
18831   case ISD::SSUBO:
18832     // A subtract of one will be selected as a DEC. Note that DEC doesn't
18833     // set CF, so we can't do this for USUBO.
18834     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
18835       if (C->isOne()) {
18836         BaseOp = X86ISD::DEC;
18837         Cond = X86::COND_O;
18838         break;
18839       }
18840     BaseOp = X86ISD::SUB;
18841     Cond = X86::COND_O;
18842     break;
18843   case ISD::USUBO:
18844     BaseOp = X86ISD::SUB;
18845     Cond = X86::COND_B;
18846     break;
18847   case ISD::SMULO:
18848     BaseOp = N->getValueType(0) == MVT::i8 ? X86ISD::SMUL8 : X86ISD::SMUL;
18849     Cond = X86::COND_O;
18850     break;
18851   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
18852     if (N->getValueType(0) == MVT::i8) {
18853       BaseOp = X86ISD::UMUL8;
18854       Cond = X86::COND_O;
18855       break;
18856     }
18857     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
18858                                  MVT::i32);
18859     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
18860
18861     SDValue SetCC =
18862       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18863                   DAG.getConstant(X86::COND_O, DL, MVT::i32),
18864                   SDValue(Sum.getNode(), 2));
18865
18866     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
18867   }
18868   }
18869
18870   // Also sets EFLAGS.
18871   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
18872   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
18873
18874   SDValue SetCC =
18875     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
18876                 DAG.getConstant(Cond, DL, MVT::i32),
18877                 SDValue(Sum.getNode(), 1));
18878
18879   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
18880 }
18881
18882 /// Returns true if the operand type is exactly twice the native width, and
18883 /// the corresponding cmpxchg8b or cmpxchg16b instruction is available.
18884 /// Used to know whether to use cmpxchg8/16b when expanding atomic operations
18885 /// (otherwise we leave them alone to become __sync_fetch_and_... calls).
18886 bool X86TargetLowering::needsCmpXchgNb(Type *MemType) const {
18887   unsigned OpWidth = MemType->getPrimitiveSizeInBits();
18888
18889   if (OpWidth == 64)
18890     return !Subtarget->is64Bit(); // FIXME this should be Subtarget.hasCmpxchg8b
18891   else if (OpWidth == 128)
18892     return Subtarget->hasCmpxchg16b();
18893   else
18894     return false;
18895 }
18896
18897 bool X86TargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
18898   return needsCmpXchgNb(SI->getValueOperand()->getType());
18899 }
18900
18901 // Note: this turns large loads into lock cmpxchg8b/16b.
18902 // FIXME: On 32 bits x86, fild/movq might be faster than lock cmpxchg8b.
18903 TargetLowering::AtomicExpansionKind
18904 X86TargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
18905   auto PTy = cast<PointerType>(LI->getPointerOperand()->getType());
18906   return needsCmpXchgNb(PTy->getElementType()) ? AtomicExpansionKind::CmpXChg
18907                                                : AtomicExpansionKind::None;
18908 }
18909
18910 TargetLowering::AtomicExpansionKind
18911 X86TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
18912   unsigned NativeWidth = Subtarget->is64Bit() ? 64 : 32;
18913   Type *MemType = AI->getType();
18914
18915   // If the operand is too big, we must see if cmpxchg8/16b is available
18916   // and default to library calls otherwise.
18917   if (MemType->getPrimitiveSizeInBits() > NativeWidth) {
18918     return needsCmpXchgNb(MemType) ? AtomicExpansionKind::CmpXChg
18919                                    : AtomicExpansionKind::None;
18920   }
18921
18922   AtomicRMWInst::BinOp Op = AI->getOperation();
18923   switch (Op) {
18924   default:
18925     llvm_unreachable("Unknown atomic operation");
18926   case AtomicRMWInst::Xchg:
18927   case AtomicRMWInst::Add:
18928   case AtomicRMWInst::Sub:
18929     // It's better to use xadd, xsub or xchg for these in all cases.
18930     return AtomicExpansionKind::None;
18931   case AtomicRMWInst::Or:
18932   case AtomicRMWInst::And:
18933   case AtomicRMWInst::Xor:
18934     // If the atomicrmw's result isn't actually used, we can just add a "lock"
18935     // prefix to a normal instruction for these operations.
18936     return !AI->use_empty() ? AtomicExpansionKind::CmpXChg
18937                             : AtomicExpansionKind::None;
18938   case AtomicRMWInst::Nand:
18939   case AtomicRMWInst::Max:
18940   case AtomicRMWInst::Min:
18941   case AtomicRMWInst::UMax:
18942   case AtomicRMWInst::UMin:
18943     // These always require a non-trivial set of data operations on x86. We must
18944     // use a cmpxchg loop.
18945     return AtomicExpansionKind::CmpXChg;
18946   }
18947 }
18948
18949 static bool hasMFENCE(const X86Subtarget& Subtarget) {
18950   // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
18951   // no-sse2). There isn't any reason to disable it if the target processor
18952   // supports it.
18953   return Subtarget.hasSSE2() || Subtarget.is64Bit();
18954 }
18955
18956 LoadInst *
18957 X86TargetLowering::lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const {
18958   unsigned NativeWidth = Subtarget->is64Bit() ? 64 : 32;
18959   Type *MemType = AI->getType();
18960   // Accesses larger than the native width are turned into cmpxchg/libcalls, so
18961   // there is no benefit in turning such RMWs into loads, and it is actually
18962   // harmful as it introduces a mfence.
18963   if (MemType->getPrimitiveSizeInBits() > NativeWidth)
18964     return nullptr;
18965
18966   auto Builder = IRBuilder<>(AI);
18967   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
18968   auto SynchScope = AI->getSynchScope();
18969   // We must restrict the ordering to avoid generating loads with Release or
18970   // ReleaseAcquire orderings.
18971   auto Order = AtomicCmpXchgInst::getStrongestFailureOrdering(AI->getOrdering());
18972   auto Ptr = AI->getPointerOperand();
18973
18974   // Before the load we need a fence. Here is an example lifted from
18975   // http://www.hpl.hp.com/techreports/2012/HPL-2012-68.pdf showing why a fence
18976   // is required:
18977   // Thread 0:
18978   //   x.store(1, relaxed);
18979   //   r1 = y.fetch_add(0, release);
18980   // Thread 1:
18981   //   y.fetch_add(42, acquire);
18982   //   r2 = x.load(relaxed);
18983   // r1 = r2 = 0 is impossible, but becomes possible if the idempotent rmw is
18984   // lowered to just a load without a fence. A mfence flushes the store buffer,
18985   // making the optimization clearly correct.
18986   // FIXME: it is required if isAtLeastRelease(Order) but it is not clear
18987   // otherwise, we might be able to be more aggressive on relaxed idempotent
18988   // rmw. In practice, they do not look useful, so we don't try to be
18989   // especially clever.
18990   if (SynchScope == SingleThread)
18991     // FIXME: we could just insert an X86ISD::MEMBARRIER here, except we are at
18992     // the IR level, so we must wrap it in an intrinsic.
18993     return nullptr;
18994
18995   if (!hasMFENCE(*Subtarget))
18996     // FIXME: it might make sense to use a locked operation here but on a
18997     // different cache-line to prevent cache-line bouncing. In practice it
18998     // is probably a small win, and x86 processors without mfence are rare
18999     // enough that we do not bother.
19000     return nullptr;
19001
19002   Function *MFence =
19003       llvm::Intrinsic::getDeclaration(M, Intrinsic::x86_sse2_mfence);
19004   Builder.CreateCall(MFence, {});
19005
19006   // Finally we can emit the atomic load.
19007   LoadInst *Loaded = Builder.CreateAlignedLoad(Ptr,
19008           AI->getType()->getPrimitiveSizeInBits());
19009   Loaded->setAtomic(Order, SynchScope);
19010   AI->replaceAllUsesWith(Loaded);
19011   AI->eraseFromParent();
19012   return Loaded;
19013 }
19014
19015 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
19016                                  SelectionDAG &DAG) {
19017   SDLoc dl(Op);
19018   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
19019     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
19020   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
19021     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
19022
19023   // The only fence that needs an instruction is a sequentially-consistent
19024   // cross-thread fence.
19025   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
19026     if (hasMFENCE(*Subtarget))
19027       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
19028
19029     SDValue Chain = Op.getOperand(0);
19030     SDValue Zero = DAG.getConstant(0, dl, MVT::i32);
19031     SDValue Ops[] = {
19032       DAG.getRegister(X86::ESP, MVT::i32),     // Base
19033       DAG.getTargetConstant(1, dl, MVT::i8),   // Scale
19034       DAG.getRegister(0, MVT::i32),            // Index
19035       DAG.getTargetConstant(0, dl, MVT::i32),  // Disp
19036       DAG.getRegister(0, MVT::i32),            // Segment.
19037       Zero,
19038       Chain
19039     };
19040     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
19041     return SDValue(Res, 0);
19042   }
19043
19044   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
19045   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
19046 }
19047
19048 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
19049                              SelectionDAG &DAG) {
19050   MVT T = Op.getSimpleValueType();
19051   SDLoc DL(Op);
19052   unsigned Reg = 0;
19053   unsigned size = 0;
19054   switch(T.SimpleTy) {
19055   default: llvm_unreachable("Invalid value type!");
19056   case MVT::i8:  Reg = X86::AL;  size = 1; break;
19057   case MVT::i16: Reg = X86::AX;  size = 2; break;
19058   case MVT::i32: Reg = X86::EAX; size = 4; break;
19059   case MVT::i64:
19060     assert(Subtarget->is64Bit() && "Node not type legal!");
19061     Reg = X86::RAX; size = 8;
19062     break;
19063   }
19064   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
19065                                   Op.getOperand(2), SDValue());
19066   SDValue Ops[] = { cpIn.getValue(0),
19067                     Op.getOperand(1),
19068                     Op.getOperand(3),
19069                     DAG.getTargetConstant(size, DL, MVT::i8),
19070                     cpIn.getValue(1) };
19071   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
19072   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
19073   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
19074                                            Ops, T, MMO);
19075
19076   SDValue cpOut =
19077     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
19078   SDValue EFLAGS = DAG.getCopyFromReg(cpOut.getValue(1), DL, X86::EFLAGS,
19079                                       MVT::i32, cpOut.getValue(2));
19080   SDValue Success = DAG.getNode(X86ISD::SETCC, DL, Op->getValueType(1),
19081                                 DAG.getConstant(X86::COND_E, DL, MVT::i8),
19082                                 EFLAGS);
19083
19084   DAG.ReplaceAllUsesOfValueWith(Op.getValue(0), cpOut);
19085   DAG.ReplaceAllUsesOfValueWith(Op.getValue(1), Success);
19086   DAG.ReplaceAllUsesOfValueWith(Op.getValue(2), EFLAGS.getValue(1));
19087   return SDValue();
19088 }
19089
19090 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
19091                             SelectionDAG &DAG) {
19092   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
19093   MVT DstVT = Op.getSimpleValueType();
19094
19095   if (SrcVT == MVT::v2i32 || SrcVT == MVT::v4i16 || SrcVT == MVT::v8i8) {
19096     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
19097     if (DstVT != MVT::f64)
19098       // This conversion needs to be expanded.
19099       return SDValue();
19100
19101     SDValue InVec = Op->getOperand(0);
19102     SDLoc dl(Op);
19103     unsigned NumElts = SrcVT.getVectorNumElements();
19104     EVT SVT = SrcVT.getVectorElementType();
19105
19106     // Widen the vector in input in the case of MVT::v2i32.
19107     // Example: from MVT::v2i32 to MVT::v4i32.
19108     SmallVector<SDValue, 16> Elts;
19109     for (unsigned i = 0, e = NumElts; i != e; ++i)
19110       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT, InVec,
19111                                  DAG.getIntPtrConstant(i, dl)));
19112
19113     // Explicitly mark the extra elements as Undef.
19114     Elts.append(NumElts, DAG.getUNDEF(SVT));
19115
19116     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
19117     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Elts);
19118     SDValue ToV2F64 = DAG.getBitcast(MVT::v2f64, BV);
19119     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
19120                        DAG.getIntPtrConstant(0, dl));
19121   }
19122
19123   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
19124          Subtarget->hasMMX() && "Unexpected custom BITCAST");
19125   assert((DstVT == MVT::i64 ||
19126           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
19127          "Unexpected custom BITCAST");
19128   // i64 <=> MMX conversions are Legal.
19129   if (SrcVT==MVT::i64 && DstVT.isVector())
19130     return Op;
19131   if (DstVT==MVT::i64 && SrcVT.isVector())
19132     return Op;
19133   // MMX <=> MMX conversions are Legal.
19134   if (SrcVT.isVector() && DstVT.isVector())
19135     return Op;
19136   // All other conversions need to be expanded.
19137   return SDValue();
19138 }
19139
19140 /// Compute the horizontal sum of bytes in V for the elements of VT.
19141 ///
19142 /// Requires V to be a byte vector and VT to be an integer vector type with
19143 /// wider elements than V's type. The width of the elements of VT determines
19144 /// how many bytes of V are summed horizontally to produce each element of the
19145 /// result.
19146 static SDValue LowerHorizontalByteSum(SDValue V, MVT VT,
19147                                       const X86Subtarget *Subtarget,
19148                                       SelectionDAG &DAG) {
19149   SDLoc DL(V);
19150   MVT ByteVecVT = V.getSimpleValueType();
19151   MVT EltVT = VT.getVectorElementType();
19152   int NumElts = VT.getVectorNumElements();
19153   assert(ByteVecVT.getVectorElementType() == MVT::i8 &&
19154          "Expected value to have byte element type.");
19155   assert(EltVT != MVT::i8 &&
19156          "Horizontal byte sum only makes sense for wider elements!");
19157   unsigned VecSize = VT.getSizeInBits();
19158   assert(ByteVecVT.getSizeInBits() == VecSize && "Cannot change vector size!");
19159
19160   // PSADBW instruction horizontally add all bytes and leave the result in i64
19161   // chunks, thus directly computes the pop count for v2i64 and v4i64.
19162   if (EltVT == MVT::i64) {
19163     SDValue Zeros = getZeroVector(ByteVecVT, Subtarget, DAG, DL);
19164     V = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT, V, Zeros);
19165     return DAG.getBitcast(VT, V);
19166   }
19167
19168   if (EltVT == MVT::i32) {
19169     // We unpack the low half and high half into i32s interleaved with zeros so
19170     // that we can use PSADBW to horizontally sum them. The most useful part of
19171     // this is that it lines up the results of two PSADBW instructions to be
19172     // two v2i64 vectors which concatenated are the 4 population counts. We can
19173     // then use PACKUSWB to shrink and concatenate them into a v4i32 again.
19174     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, DL);
19175     SDValue Low = DAG.getNode(X86ISD::UNPCKL, DL, VT, V, Zeros);
19176     SDValue High = DAG.getNode(X86ISD::UNPCKH, DL, VT, V, Zeros);
19177
19178     // Do the horizontal sums into two v2i64s.
19179     Zeros = getZeroVector(ByteVecVT, Subtarget, DAG, DL);
19180     Low = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT,
19181                       DAG.getBitcast(ByteVecVT, Low), Zeros);
19182     High = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT,
19183                        DAG.getBitcast(ByteVecVT, High), Zeros);
19184
19185     // Merge them together.
19186     MVT ShortVecVT = MVT::getVectorVT(MVT::i16, VecSize / 16);
19187     V = DAG.getNode(X86ISD::PACKUS, DL, ByteVecVT,
19188                     DAG.getBitcast(ShortVecVT, Low),
19189                     DAG.getBitcast(ShortVecVT, High));
19190
19191     return DAG.getBitcast(VT, V);
19192   }
19193
19194   // The only element type left is i16.
19195   assert(EltVT == MVT::i16 && "Unknown how to handle type");
19196
19197   // To obtain pop count for each i16 element starting from the pop count for
19198   // i8 elements, shift the i16s left by 8, sum as i8s, and then shift as i16s
19199   // right by 8. It is important to shift as i16s as i8 vector shift isn't
19200   // directly supported.
19201   SmallVector<SDValue, 16> Shifters(NumElts, DAG.getConstant(8, DL, EltVT));
19202   SDValue Shifter = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Shifters);
19203   SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, DAG.getBitcast(VT, V), Shifter);
19204   V = DAG.getNode(ISD::ADD, DL, ByteVecVT, DAG.getBitcast(ByteVecVT, Shl),
19205                   DAG.getBitcast(ByteVecVT, V));
19206   return DAG.getNode(ISD::SRL, DL, VT, DAG.getBitcast(VT, V), Shifter);
19207 }
19208
19209 static SDValue LowerVectorCTPOPInRegLUT(SDValue Op, SDLoc DL,
19210                                         const X86Subtarget *Subtarget,
19211                                         SelectionDAG &DAG) {
19212   MVT VT = Op.getSimpleValueType();
19213   MVT EltVT = VT.getVectorElementType();
19214   unsigned VecSize = VT.getSizeInBits();
19215
19216   // Implement a lookup table in register by using an algorithm based on:
19217   // http://wm.ite.pl/articles/sse-popcount.html
19218   //
19219   // The general idea is that every lower byte nibble in the input vector is an
19220   // index into a in-register pre-computed pop count table. We then split up the
19221   // input vector in two new ones: (1) a vector with only the shifted-right
19222   // higher nibbles for each byte and (2) a vector with the lower nibbles (and
19223   // masked out higher ones) for each byte. PSHUB is used separately with both
19224   // to index the in-register table. Next, both are added and the result is a
19225   // i8 vector where each element contains the pop count for input byte.
19226   //
19227   // To obtain the pop count for elements != i8, we follow up with the same
19228   // approach and use additional tricks as described below.
19229   //
19230   const int LUT[16] = {/* 0 */ 0, /* 1 */ 1, /* 2 */ 1, /* 3 */ 2,
19231                        /* 4 */ 1, /* 5 */ 2, /* 6 */ 2, /* 7 */ 3,
19232                        /* 8 */ 1, /* 9 */ 2, /* a */ 2, /* b */ 3,
19233                        /* c */ 2, /* d */ 3, /* e */ 3, /* f */ 4};
19234
19235   int NumByteElts = VecSize / 8;
19236   MVT ByteVecVT = MVT::getVectorVT(MVT::i8, NumByteElts);
19237   SDValue In = DAG.getBitcast(ByteVecVT, Op);
19238   SmallVector<SDValue, 16> LUTVec;
19239   for (int i = 0; i < NumByteElts; ++i)
19240     LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8));
19241   SDValue InRegLUT = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, LUTVec);
19242   SmallVector<SDValue, 16> Mask0F(NumByteElts,
19243                                   DAG.getConstant(0x0F, DL, MVT::i8));
19244   SDValue M0F = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, Mask0F);
19245
19246   // High nibbles
19247   SmallVector<SDValue, 16> Four(NumByteElts, DAG.getConstant(4, DL, MVT::i8));
19248   SDValue FourV = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, Four);
19249   SDValue HighNibbles = DAG.getNode(ISD::SRL, DL, ByteVecVT, In, FourV);
19250
19251   // Low nibbles
19252   SDValue LowNibbles = DAG.getNode(ISD::AND, DL, ByteVecVT, In, M0F);
19253
19254   // The input vector is used as the shuffle mask that index elements into the
19255   // LUT. After counting low and high nibbles, add the vector to obtain the
19256   // final pop count per i8 element.
19257   SDValue HighPopCnt =
19258       DAG.getNode(X86ISD::PSHUFB, DL, ByteVecVT, InRegLUT, HighNibbles);
19259   SDValue LowPopCnt =
19260       DAG.getNode(X86ISD::PSHUFB, DL, ByteVecVT, InRegLUT, LowNibbles);
19261   SDValue PopCnt = DAG.getNode(ISD::ADD, DL, ByteVecVT, HighPopCnt, LowPopCnt);
19262
19263   if (EltVT == MVT::i8)
19264     return PopCnt;
19265
19266   return LowerHorizontalByteSum(PopCnt, VT, Subtarget, DAG);
19267 }
19268
19269 static SDValue LowerVectorCTPOPBitmath(SDValue Op, SDLoc DL,
19270                                        const X86Subtarget *Subtarget,
19271                                        SelectionDAG &DAG) {
19272   MVT VT = Op.getSimpleValueType();
19273   assert(VT.is128BitVector() &&
19274          "Only 128-bit vector bitmath lowering supported.");
19275
19276   int VecSize = VT.getSizeInBits();
19277   MVT EltVT = VT.getVectorElementType();
19278   int Len = EltVT.getSizeInBits();
19279
19280   // This is the vectorized version of the "best" algorithm from
19281   // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
19282   // with a minor tweak to use a series of adds + shifts instead of vector
19283   // multiplications. Implemented for all integer vector types. We only use
19284   // this when we don't have SSSE3 which allows a LUT-based lowering that is
19285   // much faster, even faster than using native popcnt instructions.
19286
19287   auto GetShift = [&](unsigned OpCode, SDValue V, int Shifter) {
19288     MVT VT = V.getSimpleValueType();
19289     SmallVector<SDValue, 32> Shifters(
19290         VT.getVectorNumElements(),
19291         DAG.getConstant(Shifter, DL, VT.getVectorElementType()));
19292     return DAG.getNode(OpCode, DL, VT, V,
19293                        DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Shifters));
19294   };
19295   auto GetMask = [&](SDValue V, APInt Mask) {
19296     MVT VT = V.getSimpleValueType();
19297     SmallVector<SDValue, 32> Masks(
19298         VT.getVectorNumElements(),
19299         DAG.getConstant(Mask, DL, VT.getVectorElementType()));
19300     return DAG.getNode(ISD::AND, DL, VT, V,
19301                        DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Masks));
19302   };
19303
19304   // We don't want to incur the implicit masks required to SRL vNi8 vectors on
19305   // x86, so set the SRL type to have elements at least i16 wide. This is
19306   // correct because all of our SRLs are followed immediately by a mask anyways
19307   // that handles any bits that sneak into the high bits of the byte elements.
19308   MVT SrlVT = Len > 8 ? VT : MVT::getVectorVT(MVT::i16, VecSize / 16);
19309
19310   SDValue V = Op;
19311
19312   // v = v - ((v >> 1) & 0x55555555...)
19313   SDValue Srl =
19314       DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 1));
19315   SDValue And = GetMask(Srl, APInt::getSplat(Len, APInt(8, 0x55)));
19316   V = DAG.getNode(ISD::SUB, DL, VT, V, And);
19317
19318   // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
19319   SDValue AndLHS = GetMask(V, APInt::getSplat(Len, APInt(8, 0x33)));
19320   Srl = DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 2));
19321   SDValue AndRHS = GetMask(Srl, APInt::getSplat(Len, APInt(8, 0x33)));
19322   V = DAG.getNode(ISD::ADD, DL, VT, AndLHS, AndRHS);
19323
19324   // v = (v + (v >> 4)) & 0x0F0F0F0F...
19325   Srl = DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 4));
19326   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, V, Srl);
19327   V = GetMask(Add, APInt::getSplat(Len, APInt(8, 0x0F)));
19328
19329   // At this point, V contains the byte-wise population count, and we are
19330   // merely doing a horizontal sum if necessary to get the wider element
19331   // counts.
19332   if (EltVT == MVT::i8)
19333     return V;
19334
19335   return LowerHorizontalByteSum(
19336       DAG.getBitcast(MVT::getVectorVT(MVT::i8, VecSize / 8), V), VT, Subtarget,
19337       DAG);
19338 }
19339
19340 static SDValue LowerVectorCTPOP(SDValue Op, const X86Subtarget *Subtarget,
19341                                 SelectionDAG &DAG) {
19342   MVT VT = Op.getSimpleValueType();
19343   // FIXME: Need to add AVX-512 support here!
19344   assert((VT.is256BitVector() || VT.is128BitVector()) &&
19345          "Unknown CTPOP type to handle");
19346   SDLoc DL(Op.getNode());
19347   SDValue Op0 = Op.getOperand(0);
19348
19349   if (!Subtarget->hasSSSE3()) {
19350     // We can't use the fast LUT approach, so fall back on vectorized bitmath.
19351     assert(VT.is128BitVector() && "Only 128-bit vectors supported in SSE!");
19352     return LowerVectorCTPOPBitmath(Op0, DL, Subtarget, DAG);
19353   }
19354
19355   if (VT.is256BitVector() && !Subtarget->hasInt256()) {
19356     unsigned NumElems = VT.getVectorNumElements();
19357
19358     // Extract each 128-bit vector, compute pop count and concat the result.
19359     SDValue LHS = Extract128BitVector(Op0, 0, DAG, DL);
19360     SDValue RHS = Extract128BitVector(Op0, NumElems/2, DAG, DL);
19361
19362     return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT,
19363                        LowerVectorCTPOPInRegLUT(LHS, DL, Subtarget, DAG),
19364                        LowerVectorCTPOPInRegLUT(RHS, DL, Subtarget, DAG));
19365   }
19366
19367   return LowerVectorCTPOPInRegLUT(Op0, DL, Subtarget, DAG);
19368 }
19369
19370 static SDValue LowerCTPOP(SDValue Op, const X86Subtarget *Subtarget,
19371                           SelectionDAG &DAG) {
19372   assert(Op.getValueType().isVector() &&
19373          "We only do custom lowering for vector population count.");
19374   return LowerVectorCTPOP(Op, Subtarget, DAG);
19375 }
19376
19377 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
19378   SDNode *Node = Op.getNode();
19379   SDLoc dl(Node);
19380   EVT T = Node->getValueType(0);
19381   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
19382                               DAG.getConstant(0, dl, T), Node->getOperand(2));
19383   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
19384                        cast<AtomicSDNode>(Node)->getMemoryVT(),
19385                        Node->getOperand(0),
19386                        Node->getOperand(1), negOp,
19387                        cast<AtomicSDNode>(Node)->getMemOperand(),
19388                        cast<AtomicSDNode>(Node)->getOrdering(),
19389                        cast<AtomicSDNode>(Node)->getSynchScope());
19390 }
19391
19392 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
19393   SDNode *Node = Op.getNode();
19394   SDLoc dl(Node);
19395   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
19396
19397   // Convert seq_cst store -> xchg
19398   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
19399   // FIXME: On 32-bit, store -> fist or movq would be more efficient
19400   //        (The only way to get a 16-byte store is cmpxchg16b)
19401   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
19402   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
19403       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
19404     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
19405                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
19406                                  Node->getOperand(0),
19407                                  Node->getOperand(1), Node->getOperand(2),
19408                                  cast<AtomicSDNode>(Node)->getMemOperand(),
19409                                  cast<AtomicSDNode>(Node)->getOrdering(),
19410                                  cast<AtomicSDNode>(Node)->getSynchScope());
19411     return Swap.getValue(1);
19412   }
19413   // Other atomic stores have a simple pattern.
19414   return Op;
19415 }
19416
19417 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
19418   EVT VT = Op.getNode()->getSimpleValueType(0);
19419
19420   // Let legalize expand this if it isn't a legal type yet.
19421   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
19422     return SDValue();
19423
19424   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
19425
19426   unsigned Opc;
19427   bool ExtraOp = false;
19428   switch (Op.getOpcode()) {
19429   default: llvm_unreachable("Invalid code");
19430   case ISD::ADDC: Opc = X86ISD::ADD; break;
19431   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
19432   case ISD::SUBC: Opc = X86ISD::SUB; break;
19433   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
19434   }
19435
19436   if (!ExtraOp)
19437     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
19438                        Op.getOperand(1));
19439   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
19440                      Op.getOperand(1), Op.getOperand(2));
19441 }
19442
19443 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
19444                             SelectionDAG &DAG) {
19445   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
19446
19447   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
19448   // which returns the values as { float, float } (in XMM0) or
19449   // { double, double } (which is returned in XMM0, XMM1).
19450   SDLoc dl(Op);
19451   SDValue Arg = Op.getOperand(0);
19452   EVT ArgVT = Arg.getValueType();
19453   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
19454
19455   TargetLowering::ArgListTy Args;
19456   TargetLowering::ArgListEntry Entry;
19457
19458   Entry.Node = Arg;
19459   Entry.Ty = ArgTy;
19460   Entry.isSExt = false;
19461   Entry.isZExt = false;
19462   Args.push_back(Entry);
19463
19464   bool isF64 = ArgVT == MVT::f64;
19465   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
19466   // the small struct {f32, f32} is returned in (eax, edx). For f64,
19467   // the results are returned via SRet in memory.
19468   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
19469   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19470   SDValue Callee =
19471       DAG.getExternalSymbol(LibcallName, TLI.getPointerTy(DAG.getDataLayout()));
19472
19473   Type *RetTy = isF64
19474     ? (Type*)StructType::get(ArgTy, ArgTy, nullptr)
19475     : (Type*)VectorType::get(ArgTy, 4);
19476
19477   TargetLowering::CallLoweringInfo CLI(DAG);
19478   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
19479     .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
19480
19481   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
19482
19483   if (isF64)
19484     // Returned in xmm0 and xmm1.
19485     return CallResult.first;
19486
19487   // Returned in bits 0:31 and 32:64 xmm0.
19488   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
19489                                CallResult.first, DAG.getIntPtrConstant(0, dl));
19490   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
19491                                CallResult.first, DAG.getIntPtrConstant(1, dl));
19492   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
19493   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
19494 }
19495
19496 static SDValue LowerMSCATTER(SDValue Op, const X86Subtarget *Subtarget,
19497                              SelectionDAG &DAG) {
19498   assert(Subtarget->hasAVX512() &&
19499          "MGATHER/MSCATTER are supported on AVX-512 arch only");
19500
19501   MaskedScatterSDNode *N = cast<MaskedScatterSDNode>(Op.getNode());
19502   EVT VT = N->getValue().getValueType();
19503   assert(VT.getScalarSizeInBits() >= 32 && "Unsupported scatter op");
19504   SDLoc dl(Op);
19505
19506   // X86 scatter kills mask register, so its type should be added to
19507   // the list of return values
19508   if (N->getNumValues() == 1) {
19509     SDValue Index = N->getIndex();
19510     if (!Subtarget->hasVLX() && !VT.is512BitVector() &&
19511         !Index.getValueType().is512BitVector())
19512       Index = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i64, Index);
19513
19514     SDVTList VTs = DAG.getVTList(N->getMask().getValueType(), MVT::Other);
19515     SDValue Ops[] = { N->getOperand(0), N->getOperand(1),  N->getOperand(2),
19516                       N->getOperand(3), Index };
19517
19518     SDValue NewScatter = DAG.getMaskedScatter(VTs, VT, dl, Ops, N->getMemOperand());
19519     DAG.ReplaceAllUsesWith(Op, SDValue(NewScatter.getNode(), 1));
19520     return SDValue(NewScatter.getNode(), 0);
19521   }
19522   return Op;
19523 }
19524
19525 static SDValue LowerMGATHER(SDValue Op, const X86Subtarget *Subtarget,
19526                             SelectionDAG &DAG) {
19527   assert(Subtarget->hasAVX512() &&
19528          "MGATHER/MSCATTER are supported on AVX-512 arch only");
19529
19530   MaskedGatherSDNode *N = cast<MaskedGatherSDNode>(Op.getNode());
19531   EVT VT = Op.getValueType();
19532   assert(VT.getScalarSizeInBits() >= 32 && "Unsupported gather op");
19533   SDLoc dl(Op);
19534
19535   SDValue Index = N->getIndex();
19536   if (!Subtarget->hasVLX() && !VT.is512BitVector() &&
19537       !Index.getValueType().is512BitVector()) {
19538     Index = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i64, Index);
19539     SDValue Ops[] = { N->getOperand(0), N->getOperand(1),  N->getOperand(2),
19540                       N->getOperand(3), Index };
19541     DAG.UpdateNodeOperands(N, Ops);
19542   }
19543   return Op;
19544 }
19545
19546 SDValue X86TargetLowering::LowerGC_TRANSITION_START(SDValue Op,
19547                                                     SelectionDAG &DAG) const {
19548   // TODO: Eventually, the lowering of these nodes should be informed by or
19549   // deferred to the GC strategy for the function in which they appear. For
19550   // now, however, they must be lowered to something. Since they are logically
19551   // no-ops in the case of a null GC strategy (or a GC strategy which does not
19552   // require special handling for these nodes), lower them as literal NOOPs for
19553   // the time being.
19554   SmallVector<SDValue, 2> Ops;
19555
19556   Ops.push_back(Op.getOperand(0));
19557   if (Op->getGluedNode())
19558     Ops.push_back(Op->getOperand(Op->getNumOperands() - 1));
19559
19560   SDLoc OpDL(Op);
19561   SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
19562   SDValue NOOP(DAG.getMachineNode(X86::NOOP, SDLoc(Op), VTs, Ops), 0);
19563
19564   return NOOP;
19565 }
19566
19567 SDValue X86TargetLowering::LowerGC_TRANSITION_END(SDValue Op,
19568                                                   SelectionDAG &DAG) const {
19569   // TODO: Eventually, the lowering of these nodes should be informed by or
19570   // deferred to the GC strategy for the function in which they appear. For
19571   // now, however, they must be lowered to something. Since they are logically
19572   // no-ops in the case of a null GC strategy (or a GC strategy which does not
19573   // require special handling for these nodes), lower them as literal NOOPs for
19574   // the time being.
19575   SmallVector<SDValue, 2> Ops;
19576
19577   Ops.push_back(Op.getOperand(0));
19578   if (Op->getGluedNode())
19579     Ops.push_back(Op->getOperand(Op->getNumOperands() - 1));
19580
19581   SDLoc OpDL(Op);
19582   SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
19583   SDValue NOOP(DAG.getMachineNode(X86::NOOP, SDLoc(Op), VTs, Ops), 0);
19584
19585   return NOOP;
19586 }
19587
19588 /// LowerOperation - Provide custom lowering hooks for some operations.
19589 ///
19590 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
19591   switch (Op.getOpcode()) {
19592   default: llvm_unreachable("Should not custom lower this!");
19593   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
19594   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
19595     return LowerCMP_SWAP(Op, Subtarget, DAG);
19596   case ISD::CTPOP:              return LowerCTPOP(Op, Subtarget, DAG);
19597   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
19598   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
19599   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
19600   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, Subtarget, DAG);
19601   case ISD::VECTOR_SHUFFLE:     return lowerVectorShuffle(Op, Subtarget, DAG);
19602   case ISD::VSELECT:            return LowerVSELECT(Op, DAG);
19603   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
19604   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
19605   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
19606   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
19607   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
19608   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
19609   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
19610   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
19611   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
19612   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
19613   case ISD::SHL_PARTS:
19614   case ISD::SRA_PARTS:
19615   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
19616   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
19617   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
19618   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
19619   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
19620   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
19621   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
19622   case ISD::SIGN_EXTEND_VECTOR_INREG:
19623     return LowerSIGN_EXTEND_VECTOR_INREG(Op, Subtarget, DAG);
19624   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
19625   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
19626   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
19627   case ISD::LOAD:               return LowerExtendedLoad(Op, Subtarget, DAG);
19628   case ISD::FABS:
19629   case ISD::FNEG:               return LowerFABSorFNEG(Op, DAG);
19630   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
19631   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
19632   case ISD::SETCC:              return LowerSETCC(Op, DAG);
19633   case ISD::SELECT:             return LowerSELECT(Op, DAG);
19634   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
19635   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
19636   case ISD::VASTART:            return LowerVASTART(Op, DAG);
19637   case ISD::VAARG:              return LowerVAARG(Op, DAG);
19638   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
19639   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, Subtarget, DAG);
19640   case ISD::INTRINSIC_VOID:
19641   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
19642   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
19643   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
19644   case ISD::FRAME_TO_ARGS_OFFSET:
19645                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
19646   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
19647   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
19648   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
19649   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
19650   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
19651   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
19652   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
19653   case ISD::CTLZ:               return LowerCTLZ(Op, Subtarget, DAG);
19654   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, Subtarget, DAG);
19655   case ISD::CTTZ:
19656   case ISD::CTTZ_ZERO_UNDEF:    return LowerCTTZ(Op, DAG);
19657   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
19658   case ISD::UMUL_LOHI:
19659   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
19660   case ISD::SRA:
19661   case ISD::SRL:
19662   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
19663   case ISD::SADDO:
19664   case ISD::UADDO:
19665   case ISD::SSUBO:
19666   case ISD::USUBO:
19667   case ISD::SMULO:
19668   case ISD::UMULO:              return LowerXALUO(Op, DAG);
19669   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
19670   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
19671   case ISD::ADDC:
19672   case ISD::ADDE:
19673   case ISD::SUBC:
19674   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
19675   case ISD::ADD:                return LowerADD(Op, DAG);
19676   case ISD::SUB:                return LowerSUB(Op, DAG);
19677   case ISD::SMAX:
19678   case ISD::SMIN:
19679   case ISD::UMAX:
19680   case ISD::UMIN:               return LowerMINMAX(Op, DAG);
19681   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
19682   case ISD::MGATHER:            return LowerMGATHER(Op, Subtarget, DAG);
19683   case ISD::MSCATTER:           return LowerMSCATTER(Op, Subtarget, DAG);
19684   case ISD::GC_TRANSITION_START:
19685                                 return LowerGC_TRANSITION_START(Op, DAG);
19686   case ISD::GC_TRANSITION_END:  return LowerGC_TRANSITION_END(Op, DAG);
19687   }
19688 }
19689
19690 /// ReplaceNodeResults - Replace a node with an illegal result type
19691 /// with a new node built out of custom code.
19692 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
19693                                            SmallVectorImpl<SDValue>&Results,
19694                                            SelectionDAG &DAG) const {
19695   SDLoc dl(N);
19696   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19697   switch (N->getOpcode()) {
19698   default:
19699     llvm_unreachable("Do not know how to custom type legalize this operation!");
19700   // We might have generated v2f32 FMIN/FMAX operations. Widen them to v4f32.
19701   case X86ISD::FMINC:
19702   case X86ISD::FMIN:
19703   case X86ISD::FMAXC:
19704   case X86ISD::FMAX: {
19705     EVT VT = N->getValueType(0);
19706     if (VT != MVT::v2f32)
19707       llvm_unreachable("Unexpected type (!= v2f32) on FMIN/FMAX.");
19708     SDValue UNDEF = DAG.getUNDEF(VT);
19709     SDValue LHS = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4f32,
19710                               N->getOperand(0), UNDEF);
19711     SDValue RHS = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4f32,
19712                               N->getOperand(1), UNDEF);
19713     Results.push_back(DAG.getNode(N->getOpcode(), dl, MVT::v4f32, LHS, RHS));
19714     return;
19715   }
19716   case ISD::SIGN_EXTEND_INREG:
19717   case ISD::ADDC:
19718   case ISD::ADDE:
19719   case ISD::SUBC:
19720   case ISD::SUBE:
19721     // We don't want to expand or promote these.
19722     return;
19723   case ISD::SDIV:
19724   case ISD::UDIV:
19725   case ISD::SREM:
19726   case ISD::UREM:
19727   case ISD::SDIVREM:
19728   case ISD::UDIVREM: {
19729     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
19730     Results.push_back(V);
19731     return;
19732   }
19733   case ISD::FP_TO_SINT:
19734   case ISD::FP_TO_UINT: {
19735     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
19736
19737     std::pair<SDValue,SDValue> Vals =
19738         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
19739     SDValue FIST = Vals.first, StackSlot = Vals.second;
19740     if (FIST.getNode()) {
19741       EVT VT = N->getValueType(0);
19742       // Return a load from the stack slot.
19743       if (StackSlot.getNode())
19744         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
19745                                       MachinePointerInfo(),
19746                                       false, false, false, 0));
19747       else
19748         Results.push_back(FIST);
19749     }
19750     return;
19751   }
19752   case ISD::UINT_TO_FP: {
19753     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
19754     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
19755         N->getValueType(0) != MVT::v2f32)
19756       return;
19757     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
19758                                  N->getOperand(0));
19759     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
19760                                      MVT::f64);
19761     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
19762     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
19763                              DAG.getBitcast(MVT::v2i64, VBias));
19764     Or = DAG.getBitcast(MVT::v2f64, Or);
19765     // TODO: Are there any fast-math-flags to propagate here?
19766     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
19767     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
19768     return;
19769   }
19770   case ISD::FP_ROUND: {
19771     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
19772         return;
19773     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
19774     Results.push_back(V);
19775     return;
19776   }
19777   case ISD::FP_EXTEND: {
19778     // Right now, only MVT::v2f32 has OperationAction for FP_EXTEND.
19779     // No other ValueType for FP_EXTEND should reach this point.
19780     assert(N->getValueType(0) == MVT::v2f32 &&
19781            "Do not know how to legalize this Node");
19782     return;
19783   }
19784   case ISD::INTRINSIC_W_CHAIN: {
19785     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
19786     switch (IntNo) {
19787     default : llvm_unreachable("Do not know how to custom type "
19788                                "legalize this intrinsic operation!");
19789     case Intrinsic::x86_rdtsc:
19790       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
19791                                      Results);
19792     case Intrinsic::x86_rdtscp:
19793       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
19794                                      Results);
19795     case Intrinsic::x86_rdpmc:
19796       return getReadPerformanceCounter(N, dl, DAG, Subtarget, Results);
19797     }
19798   }
19799   case ISD::READCYCLECOUNTER: {
19800     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
19801                                    Results);
19802   }
19803   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
19804     EVT T = N->getValueType(0);
19805     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
19806     bool Regs64bit = T == MVT::i128;
19807     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
19808     SDValue cpInL, cpInH;
19809     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
19810                         DAG.getConstant(0, dl, HalfT));
19811     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
19812                         DAG.getConstant(1, dl, HalfT));
19813     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
19814                              Regs64bit ? X86::RAX : X86::EAX,
19815                              cpInL, SDValue());
19816     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
19817                              Regs64bit ? X86::RDX : X86::EDX,
19818                              cpInH, cpInL.getValue(1));
19819     SDValue swapInL, swapInH;
19820     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
19821                           DAG.getConstant(0, dl, HalfT));
19822     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
19823                           DAG.getConstant(1, dl, HalfT));
19824     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
19825                                Regs64bit ? X86::RBX : X86::EBX,
19826                                swapInL, cpInH.getValue(1));
19827     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
19828                                Regs64bit ? X86::RCX : X86::ECX,
19829                                swapInH, swapInL.getValue(1));
19830     SDValue Ops[] = { swapInH.getValue(0),
19831                       N->getOperand(1),
19832                       swapInH.getValue(1) };
19833     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
19834     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
19835     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
19836                                   X86ISD::LCMPXCHG8_DAG;
19837     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
19838     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
19839                                         Regs64bit ? X86::RAX : X86::EAX,
19840                                         HalfT, Result.getValue(1));
19841     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
19842                                         Regs64bit ? X86::RDX : X86::EDX,
19843                                         HalfT, cpOutL.getValue(2));
19844     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
19845
19846     SDValue EFLAGS = DAG.getCopyFromReg(cpOutH.getValue(1), dl, X86::EFLAGS,
19847                                         MVT::i32, cpOutH.getValue(2));
19848     SDValue Success =
19849         DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
19850                     DAG.getConstant(X86::COND_E, dl, MVT::i8), EFLAGS);
19851     Success = DAG.getZExtOrTrunc(Success, dl, N->getValueType(1));
19852
19853     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
19854     Results.push_back(Success);
19855     Results.push_back(EFLAGS.getValue(1));
19856     return;
19857   }
19858   case ISD::ATOMIC_SWAP:
19859   case ISD::ATOMIC_LOAD_ADD:
19860   case ISD::ATOMIC_LOAD_SUB:
19861   case ISD::ATOMIC_LOAD_AND:
19862   case ISD::ATOMIC_LOAD_OR:
19863   case ISD::ATOMIC_LOAD_XOR:
19864   case ISD::ATOMIC_LOAD_NAND:
19865   case ISD::ATOMIC_LOAD_MIN:
19866   case ISD::ATOMIC_LOAD_MAX:
19867   case ISD::ATOMIC_LOAD_UMIN:
19868   case ISD::ATOMIC_LOAD_UMAX:
19869   case ISD::ATOMIC_LOAD: {
19870     // Delegate to generic TypeLegalization. Situations we can really handle
19871     // should have already been dealt with by AtomicExpandPass.cpp.
19872     break;
19873   }
19874   case ISD::BITCAST: {
19875     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
19876     EVT DstVT = N->getValueType(0);
19877     EVT SrcVT = N->getOperand(0)->getValueType(0);
19878
19879     if (SrcVT != MVT::f64 ||
19880         (DstVT != MVT::v2i32 && DstVT != MVT::v4i16 && DstVT != MVT::v8i8))
19881       return;
19882
19883     unsigned NumElts = DstVT.getVectorNumElements();
19884     EVT SVT = DstVT.getVectorElementType();
19885     EVT WiderVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
19886     SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
19887                                    MVT::v2f64, N->getOperand(0));
19888     SDValue ToVecInt = DAG.getBitcast(WiderVT, Expanded);
19889
19890     if (ExperimentalVectorWideningLegalization) {
19891       // If we are legalizing vectors by widening, we already have the desired
19892       // legal vector type, just return it.
19893       Results.push_back(ToVecInt);
19894       return;
19895     }
19896
19897     SmallVector<SDValue, 8> Elts;
19898     for (unsigned i = 0, e = NumElts; i != e; ++i)
19899       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT,
19900                                    ToVecInt, DAG.getIntPtrConstant(i, dl)));
19901
19902     Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, DstVT, Elts));
19903   }
19904   }
19905 }
19906
19907 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
19908   switch ((X86ISD::NodeType)Opcode) {
19909   case X86ISD::FIRST_NUMBER:       break;
19910   case X86ISD::BSF:                return "X86ISD::BSF";
19911   case X86ISD::BSR:                return "X86ISD::BSR";
19912   case X86ISD::SHLD:               return "X86ISD::SHLD";
19913   case X86ISD::SHRD:               return "X86ISD::SHRD";
19914   case X86ISD::FAND:               return "X86ISD::FAND";
19915   case X86ISD::FANDN:              return "X86ISD::FANDN";
19916   case X86ISD::FOR:                return "X86ISD::FOR";
19917   case X86ISD::FXOR:               return "X86ISD::FXOR";
19918   case X86ISD::FILD:               return "X86ISD::FILD";
19919   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
19920   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
19921   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
19922   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
19923   case X86ISD::FLD:                return "X86ISD::FLD";
19924   case X86ISD::FST:                return "X86ISD::FST";
19925   case X86ISD::CALL:               return "X86ISD::CALL";
19926   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
19927   case X86ISD::RDTSCP_DAG:         return "X86ISD::RDTSCP_DAG";
19928   case X86ISD::RDPMC_DAG:          return "X86ISD::RDPMC_DAG";
19929   case X86ISD::BT:                 return "X86ISD::BT";
19930   case X86ISD::CMP:                return "X86ISD::CMP";
19931   case X86ISD::COMI:               return "X86ISD::COMI";
19932   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
19933   case X86ISD::CMPM:               return "X86ISD::CMPM";
19934   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
19935   case X86ISD::CMPM_RND:           return "X86ISD::CMPM_RND";
19936   case X86ISD::SETCC:              return "X86ISD::SETCC";
19937   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
19938   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
19939   case X86ISD::FGETSIGNx86:        return "X86ISD::FGETSIGNx86";
19940   case X86ISD::CMOV:               return "X86ISD::CMOV";
19941   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
19942   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
19943   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
19944   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
19945   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
19946   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
19947   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
19948   case X86ISD::MOVDQ2Q:            return "X86ISD::MOVDQ2Q";
19949   case X86ISD::MMX_MOVD2W:         return "X86ISD::MMX_MOVD2W";
19950   case X86ISD::MMX_MOVW2D:         return "X86ISD::MMX_MOVW2D";
19951   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
19952   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
19953   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
19954   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
19955   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
19956   case X86ISD::MMX_PINSRW:         return "X86ISD::MMX_PINSRW";
19957   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
19958   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
19959   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
19960   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
19961   case X86ISD::SHRUNKBLEND:        return "X86ISD::SHRUNKBLEND";
19962   case X86ISD::ADDUS:              return "X86ISD::ADDUS";
19963   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
19964   case X86ISD::HADD:               return "X86ISD::HADD";
19965   case X86ISD::HSUB:               return "X86ISD::HSUB";
19966   case X86ISD::FHADD:              return "X86ISD::FHADD";
19967   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
19968   case X86ISD::ABS:                return "X86ISD::ABS";
19969   case X86ISD::CONFLICT:           return "X86ISD::CONFLICT";
19970   case X86ISD::FMAX:               return "X86ISD::FMAX";
19971   case X86ISD::FMAX_RND:           return "X86ISD::FMAX_RND";
19972   case X86ISD::FMIN:               return "X86ISD::FMIN";
19973   case X86ISD::FMIN_RND:           return "X86ISD::FMIN_RND";
19974   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
19975   case X86ISD::FMINC:              return "X86ISD::FMINC";
19976   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
19977   case X86ISD::FRCP:               return "X86ISD::FRCP";
19978   case X86ISD::EXTRQI:             return "X86ISD::EXTRQI";
19979   case X86ISD::INSERTQI:           return "X86ISD::INSERTQI";
19980   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
19981   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
19982   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
19983   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
19984   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
19985   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
19986   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
19987   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
19988   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
19989   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
19990   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
19991   case X86ISD::LCMPXCHG16_DAG:     return "X86ISD::LCMPXCHG16_DAG";
19992   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
19993   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
19994   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
19995   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
19996   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
19997   case X86ISD::VTRUNCS:            return "X86ISD::VTRUNCS";
19998   case X86ISD::VTRUNCUS:           return "X86ISD::VTRUNCUS";
19999   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
20000   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
20001   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
20002   case X86ISD::CVTDQ2PD:           return "X86ISD::CVTDQ2PD";
20003   case X86ISD::CVTUDQ2PD:          return "X86ISD::CVTUDQ2PD";
20004   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
20005   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
20006   case X86ISD::VSHL:               return "X86ISD::VSHL";
20007   case X86ISD::VSRL:               return "X86ISD::VSRL";
20008   case X86ISD::VSRA:               return "X86ISD::VSRA";
20009   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
20010   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
20011   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
20012   case X86ISD::CMPP:               return "X86ISD::CMPP";
20013   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
20014   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
20015   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
20016   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
20017   case X86ISD::ADD:                return "X86ISD::ADD";
20018   case X86ISD::SUB:                return "X86ISD::SUB";
20019   case X86ISD::ADC:                return "X86ISD::ADC";
20020   case X86ISD::SBB:                return "X86ISD::SBB";
20021   case X86ISD::SMUL:               return "X86ISD::SMUL";
20022   case X86ISD::UMUL:               return "X86ISD::UMUL";
20023   case X86ISD::SMUL8:              return "X86ISD::SMUL8";
20024   case X86ISD::UMUL8:              return "X86ISD::UMUL8";
20025   case X86ISD::SDIVREM8_SEXT_HREG: return "X86ISD::SDIVREM8_SEXT_HREG";
20026   case X86ISD::UDIVREM8_ZEXT_HREG: return "X86ISD::UDIVREM8_ZEXT_HREG";
20027   case X86ISD::INC:                return "X86ISD::INC";
20028   case X86ISD::DEC:                return "X86ISD::DEC";
20029   case X86ISD::OR:                 return "X86ISD::OR";
20030   case X86ISD::XOR:                return "X86ISD::XOR";
20031   case X86ISD::AND:                return "X86ISD::AND";
20032   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
20033   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
20034   case X86ISD::PTEST:              return "X86ISD::PTEST";
20035   case X86ISD::TESTP:              return "X86ISD::TESTP";
20036   case X86ISD::TESTM:              return "X86ISD::TESTM";
20037   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
20038   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
20039   case X86ISD::KTEST:              return "X86ISD::KTEST";
20040   case X86ISD::PACKSS:             return "X86ISD::PACKSS";
20041   case X86ISD::PACKUS:             return "X86ISD::PACKUS";
20042   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
20043   case X86ISD::VALIGN:             return "X86ISD::VALIGN";
20044   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
20045   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
20046   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
20047   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
20048   case X86ISD::SHUF128:            return "X86ISD::SHUF128";
20049   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
20050   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
20051   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
20052   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
20053   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
20054   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
20055   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
20056   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
20057   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
20058   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
20059   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
20060   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
20061   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
20062   case X86ISD::SUBV_BROADCAST:     return "X86ISD::SUBV_BROADCAST";
20063   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
20064   case X86ISD::VPERMILPV:          return "X86ISD::VPERMILPV";
20065   case X86ISD::VPERMILPI:          return "X86ISD::VPERMILPI";
20066   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
20067   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
20068   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
20069   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
20070   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
20071   case X86ISD::VPTERNLOG:          return "X86ISD::VPTERNLOG";
20072   case X86ISD::VFIXUPIMM:          return "X86ISD::VFIXUPIMM";
20073   case X86ISD::VRANGE:             return "X86ISD::VRANGE";
20074   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
20075   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
20076   case X86ISD::PSADBW:             return "X86ISD::PSADBW";
20077   case X86ISD::DBPSADBW:           return "X86ISD::DBPSADBW";
20078   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
20079   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
20080   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
20081   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
20082   case X86ISD::MFENCE:             return "X86ISD::MFENCE";
20083   case X86ISD::SFENCE:             return "X86ISD::SFENCE";
20084   case X86ISD::LFENCE:             return "X86ISD::LFENCE";
20085   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
20086   case X86ISD::SAHF:               return "X86ISD::SAHF";
20087   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
20088   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
20089   case X86ISD::VPMADDUBSW:         return "X86ISD::VPMADDUBSW";
20090   case X86ISD::VPMADDWD:           return "X86ISD::VPMADDWD";
20091   case X86ISD::VPROT:              return "X86ISD::VPROT";
20092   case X86ISD::VPROTI:             return "X86ISD::VPROTI";
20093   case X86ISD::VPSHA:              return "X86ISD::VPSHA";
20094   case X86ISD::VPSHL:              return "X86ISD::VPSHL";
20095   case X86ISD::VPCOM:              return "X86ISD::VPCOM";
20096   case X86ISD::VPCOMU:             return "X86ISD::VPCOMU";
20097   case X86ISD::FMADD:              return "X86ISD::FMADD";
20098   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
20099   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
20100   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
20101   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
20102   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
20103   case X86ISD::FMADD_RND:          return "X86ISD::FMADD_RND";
20104   case X86ISD::FNMADD_RND:         return "X86ISD::FNMADD_RND";
20105   case X86ISD::FMSUB_RND:          return "X86ISD::FMSUB_RND";
20106   case X86ISD::FNMSUB_RND:         return "X86ISD::FNMSUB_RND";
20107   case X86ISD::FMADDSUB_RND:       return "X86ISD::FMADDSUB_RND";
20108   case X86ISD::FMSUBADD_RND:       return "X86ISD::FMSUBADD_RND";
20109   case X86ISD::VRNDSCALE:          return "X86ISD::VRNDSCALE";
20110   case X86ISD::VREDUCE:            return "X86ISD::VREDUCE";
20111   case X86ISD::VGETMANT:           return "X86ISD::VGETMANT";
20112   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
20113   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
20114   case X86ISD::XTEST:              return "X86ISD::XTEST";
20115   case X86ISD::COMPRESS:           return "X86ISD::COMPRESS";
20116   case X86ISD::EXPAND:             return "X86ISD::EXPAND";
20117   case X86ISD::SELECT:             return "X86ISD::SELECT";
20118   case X86ISD::ADDSUB:             return "X86ISD::ADDSUB";
20119   case X86ISD::RCP28:              return "X86ISD::RCP28";
20120   case X86ISD::EXP2:               return "X86ISD::EXP2";
20121   case X86ISD::RSQRT28:            return "X86ISD::RSQRT28";
20122   case X86ISD::FADD_RND:           return "X86ISD::FADD_RND";
20123   case X86ISD::FSUB_RND:           return "X86ISD::FSUB_RND";
20124   case X86ISD::FMUL_RND:           return "X86ISD::FMUL_RND";
20125   case X86ISD::FDIV_RND:           return "X86ISD::FDIV_RND";
20126   case X86ISD::FSQRT_RND:          return "X86ISD::FSQRT_RND";
20127   case X86ISD::FGETEXP_RND:        return "X86ISD::FGETEXP_RND";
20128   case X86ISD::SCALEF:             return "X86ISD::SCALEF";
20129   case X86ISD::ADDS:               return "X86ISD::ADDS";
20130   case X86ISD::SUBS:               return "X86ISD::SUBS";
20131   case X86ISD::AVG:                return "X86ISD::AVG";
20132   case X86ISD::MULHRS:             return "X86ISD::MULHRS";
20133   case X86ISD::SINT_TO_FP_RND:     return "X86ISD::SINT_TO_FP_RND";
20134   case X86ISD::UINT_TO_FP_RND:     return "X86ISD::UINT_TO_FP_RND";
20135   case X86ISD::FP_TO_SINT_RND:     return "X86ISD::FP_TO_SINT_RND";
20136   case X86ISD::FP_TO_UINT_RND:     return "X86ISD::FP_TO_UINT_RND";
20137   case X86ISD::VFPCLASS:           return "X86ISD::VFPCLASS";
20138   }
20139   return nullptr;
20140 }
20141
20142 // isLegalAddressingMode - Return true if the addressing mode represented
20143 // by AM is legal for this target, for a load/store of the specified type.
20144 bool X86TargetLowering::isLegalAddressingMode(const DataLayout &DL,
20145                                               const AddrMode &AM, Type *Ty,
20146                                               unsigned AS) const {
20147   // X86 supports extremely general addressing modes.
20148   CodeModel::Model M = getTargetMachine().getCodeModel();
20149   Reloc::Model R = getTargetMachine().getRelocationModel();
20150
20151   // X86 allows a sign-extended 32-bit immediate field as a displacement.
20152   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
20153     return false;
20154
20155   if (AM.BaseGV) {
20156     unsigned GVFlags =
20157       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
20158
20159     // If a reference to this global requires an extra load, we can't fold it.
20160     if (isGlobalStubReference(GVFlags))
20161       return false;
20162
20163     // If BaseGV requires a register for the PIC base, we cannot also have a
20164     // BaseReg specified.
20165     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
20166       return false;
20167
20168     // If lower 4G is not available, then we must use rip-relative addressing.
20169     if ((M != CodeModel::Small || R != Reloc::Static) &&
20170         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
20171       return false;
20172   }
20173
20174   switch (AM.Scale) {
20175   case 0:
20176   case 1:
20177   case 2:
20178   case 4:
20179   case 8:
20180     // These scales always work.
20181     break;
20182   case 3:
20183   case 5:
20184   case 9:
20185     // These scales are formed with basereg+scalereg.  Only accept if there is
20186     // no basereg yet.
20187     if (AM.HasBaseReg)
20188       return false;
20189     break;
20190   default:  // Other stuff never works.
20191     return false;
20192   }
20193
20194   return true;
20195 }
20196
20197 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
20198   unsigned Bits = Ty->getScalarSizeInBits();
20199
20200   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
20201   // particularly cheaper than those without.
20202   if (Bits == 8)
20203     return false;
20204
20205   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
20206   // variable shifts just as cheap as scalar ones.
20207   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
20208     return false;
20209
20210   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
20211   // fully general vector.
20212   return true;
20213 }
20214
20215 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
20216   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
20217     return false;
20218   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
20219   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
20220   return NumBits1 > NumBits2;
20221 }
20222
20223 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
20224   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
20225     return false;
20226
20227   if (!isTypeLegal(EVT::getEVT(Ty1)))
20228     return false;
20229
20230   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
20231
20232   // Assuming the caller doesn't have a zeroext or signext return parameter,
20233   // truncation all the way down to i1 is valid.
20234   return true;
20235 }
20236
20237 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
20238   return isInt<32>(Imm);
20239 }
20240
20241 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
20242   // Can also use sub to handle negated immediates.
20243   return isInt<32>(Imm);
20244 }
20245
20246 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
20247   if (!VT1.isInteger() || !VT2.isInteger())
20248     return false;
20249   unsigned NumBits1 = VT1.getSizeInBits();
20250   unsigned NumBits2 = VT2.getSizeInBits();
20251   return NumBits1 > NumBits2;
20252 }
20253
20254 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
20255   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
20256   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
20257 }
20258
20259 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
20260   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
20261   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
20262 }
20263
20264 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
20265   EVT VT1 = Val.getValueType();
20266   if (isZExtFree(VT1, VT2))
20267     return true;
20268
20269   if (Val.getOpcode() != ISD::LOAD)
20270     return false;
20271
20272   if (!VT1.isSimple() || !VT1.isInteger() ||
20273       !VT2.isSimple() || !VT2.isInteger())
20274     return false;
20275
20276   switch (VT1.getSimpleVT().SimpleTy) {
20277   default: break;
20278   case MVT::i8:
20279   case MVT::i16:
20280   case MVT::i32:
20281     // X86 has 8, 16, and 32-bit zero-extending loads.
20282     return true;
20283   }
20284
20285   return false;
20286 }
20287
20288 bool X86TargetLowering::isVectorLoadExtDesirable(SDValue) const { return true; }
20289
20290 bool
20291 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
20292   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4() || Subtarget->hasAVX512()))
20293     return false;
20294
20295   VT = VT.getScalarType();
20296
20297   if (!VT.isSimple())
20298     return false;
20299
20300   switch (VT.getSimpleVT().SimpleTy) {
20301   case MVT::f32:
20302   case MVT::f64:
20303     return true;
20304   default:
20305     break;
20306   }
20307
20308   return false;
20309 }
20310
20311 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
20312   // i16 instructions are longer (0x66 prefix) and potentially slower.
20313   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
20314 }
20315
20316 /// isShuffleMaskLegal - Targets can use this to indicate that they only
20317 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
20318 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
20319 /// are assumed to be legal.
20320 bool
20321 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
20322                                       EVT VT) const {
20323   if (!VT.isSimple())
20324     return false;
20325
20326   // Not for i1 vectors
20327   if (VT.getScalarType() == MVT::i1)
20328     return false;
20329
20330   // Very little shuffling can be done for 64-bit vectors right now.
20331   if (VT.getSizeInBits() == 64)
20332     return false;
20333
20334   // We only care that the types being shuffled are legal. The lowering can
20335   // handle any possible shuffle mask that results.
20336   return isTypeLegal(VT.getSimpleVT());
20337 }
20338
20339 bool
20340 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
20341                                           EVT VT) const {
20342   // Just delegate to the generic legality, clear masks aren't special.
20343   return isShuffleMaskLegal(Mask, VT);
20344 }
20345
20346 //===----------------------------------------------------------------------===//
20347 //                           X86 Scheduler Hooks
20348 //===----------------------------------------------------------------------===//
20349
20350 /// Utility function to emit xbegin specifying the start of an RTM region.
20351 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
20352                                      const TargetInstrInfo *TII) {
20353   DebugLoc DL = MI->getDebugLoc();
20354
20355   const BasicBlock *BB = MBB->getBasicBlock();
20356   MachineFunction::iterator I = MBB;
20357   ++I;
20358
20359   // For the v = xbegin(), we generate
20360   //
20361   // thisMBB:
20362   //  xbegin sinkMBB
20363   //
20364   // mainMBB:
20365   //  eax = -1
20366   //
20367   // sinkMBB:
20368   //  v = eax
20369
20370   MachineBasicBlock *thisMBB = MBB;
20371   MachineFunction *MF = MBB->getParent();
20372   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
20373   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
20374   MF->insert(I, mainMBB);
20375   MF->insert(I, sinkMBB);
20376
20377   // Transfer the remainder of BB and its successor edges to sinkMBB.
20378   sinkMBB->splice(sinkMBB->begin(), MBB,
20379                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
20380   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
20381
20382   // thisMBB:
20383   //  xbegin sinkMBB
20384   //  # fallthrough to mainMBB
20385   //  # abortion to sinkMBB
20386   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
20387   thisMBB->addSuccessor(mainMBB);
20388   thisMBB->addSuccessor(sinkMBB);
20389
20390   // mainMBB:
20391   //  EAX = -1
20392   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
20393   mainMBB->addSuccessor(sinkMBB);
20394
20395   // sinkMBB:
20396   // EAX is live into the sinkMBB
20397   sinkMBB->addLiveIn(X86::EAX);
20398   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
20399           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
20400     .addReg(X86::EAX);
20401
20402   MI->eraseFromParent();
20403   return sinkMBB;
20404 }
20405
20406 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
20407 // or XMM0_V32I8 in AVX all of this code can be replaced with that
20408 // in the .td file.
20409 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
20410                                        const TargetInstrInfo *TII) {
20411   unsigned Opc;
20412   switch (MI->getOpcode()) {
20413   default: llvm_unreachable("illegal opcode!");
20414   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
20415   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
20416   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
20417   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
20418   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
20419   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
20420   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
20421   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
20422   }
20423
20424   DebugLoc dl = MI->getDebugLoc();
20425   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
20426
20427   unsigned NumArgs = MI->getNumOperands();
20428   for (unsigned i = 1; i < NumArgs; ++i) {
20429     MachineOperand &Op = MI->getOperand(i);
20430     if (!(Op.isReg() && Op.isImplicit()))
20431       MIB.addOperand(Op);
20432   }
20433   if (MI->hasOneMemOperand())
20434     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
20435
20436   BuildMI(*BB, MI, dl,
20437     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
20438     .addReg(X86::XMM0);
20439
20440   MI->eraseFromParent();
20441   return BB;
20442 }
20443
20444 // FIXME: Custom handling because TableGen doesn't support multiple implicit
20445 // defs in an instruction pattern
20446 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
20447                                        const TargetInstrInfo *TII) {
20448   unsigned Opc;
20449   switch (MI->getOpcode()) {
20450   default: llvm_unreachable("illegal opcode!");
20451   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
20452   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
20453   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
20454   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
20455   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
20456   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
20457   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
20458   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
20459   }
20460
20461   DebugLoc dl = MI->getDebugLoc();
20462   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
20463
20464   unsigned NumArgs = MI->getNumOperands(); // remove the results
20465   for (unsigned i = 1; i < NumArgs; ++i) {
20466     MachineOperand &Op = MI->getOperand(i);
20467     if (!(Op.isReg() && Op.isImplicit()))
20468       MIB.addOperand(Op);
20469   }
20470   if (MI->hasOneMemOperand())
20471     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
20472
20473   BuildMI(*BB, MI, dl,
20474     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
20475     .addReg(X86::ECX);
20476
20477   MI->eraseFromParent();
20478   return BB;
20479 }
20480
20481 static MachineBasicBlock *EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
20482                                       const X86Subtarget *Subtarget) {
20483   DebugLoc dl = MI->getDebugLoc();
20484   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20485   // Address into RAX/EAX, other two args into ECX, EDX.
20486   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
20487   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
20488   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
20489   for (int i = 0; i < X86::AddrNumOperands; ++i)
20490     MIB.addOperand(MI->getOperand(i));
20491
20492   unsigned ValOps = X86::AddrNumOperands;
20493   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
20494     .addReg(MI->getOperand(ValOps).getReg());
20495   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
20496     .addReg(MI->getOperand(ValOps+1).getReg());
20497
20498   // The instruction doesn't actually take any operands though.
20499   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
20500
20501   MI->eraseFromParent(); // The pseudo is gone now.
20502   return BB;
20503 }
20504
20505 MachineBasicBlock *
20506 X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr *MI,
20507                                                  MachineBasicBlock *MBB) const {
20508   // Emit va_arg instruction on X86-64.
20509
20510   // Operands to this pseudo-instruction:
20511   // 0  ) Output        : destination address (reg)
20512   // 1-5) Input         : va_list address (addr, i64mem)
20513   // 6  ) ArgSize       : Size (in bytes) of vararg type
20514   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
20515   // 8  ) Align         : Alignment of type
20516   // 9  ) EFLAGS (implicit-def)
20517
20518   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
20519   static_assert(X86::AddrNumOperands == 5,
20520                 "VAARG_64 assumes 5 address operands");
20521
20522   unsigned DestReg = MI->getOperand(0).getReg();
20523   MachineOperand &Base = MI->getOperand(1);
20524   MachineOperand &Scale = MI->getOperand(2);
20525   MachineOperand &Index = MI->getOperand(3);
20526   MachineOperand &Disp = MI->getOperand(4);
20527   MachineOperand &Segment = MI->getOperand(5);
20528   unsigned ArgSize = MI->getOperand(6).getImm();
20529   unsigned ArgMode = MI->getOperand(7).getImm();
20530   unsigned Align = MI->getOperand(8).getImm();
20531
20532   // Memory Reference
20533   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
20534   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
20535   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
20536
20537   // Machine Information
20538   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20539   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
20540   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
20541   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
20542   DebugLoc DL = MI->getDebugLoc();
20543
20544   // struct va_list {
20545   //   i32   gp_offset
20546   //   i32   fp_offset
20547   //   i64   overflow_area (address)
20548   //   i64   reg_save_area (address)
20549   // }
20550   // sizeof(va_list) = 24
20551   // alignment(va_list) = 8
20552
20553   unsigned TotalNumIntRegs = 6;
20554   unsigned TotalNumXMMRegs = 8;
20555   bool UseGPOffset = (ArgMode == 1);
20556   bool UseFPOffset = (ArgMode == 2);
20557   unsigned MaxOffset = TotalNumIntRegs * 8 +
20558                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
20559
20560   /* Align ArgSize to a multiple of 8 */
20561   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
20562   bool NeedsAlign = (Align > 8);
20563
20564   MachineBasicBlock *thisMBB = MBB;
20565   MachineBasicBlock *overflowMBB;
20566   MachineBasicBlock *offsetMBB;
20567   MachineBasicBlock *endMBB;
20568
20569   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
20570   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
20571   unsigned OffsetReg = 0;
20572
20573   if (!UseGPOffset && !UseFPOffset) {
20574     // If we only pull from the overflow region, we don't create a branch.
20575     // We don't need to alter control flow.
20576     OffsetDestReg = 0; // unused
20577     OverflowDestReg = DestReg;
20578
20579     offsetMBB = nullptr;
20580     overflowMBB = thisMBB;
20581     endMBB = thisMBB;
20582   } else {
20583     // First emit code to check if gp_offset (or fp_offset) is below the bound.
20584     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
20585     // If not, pull from overflow_area. (branch to overflowMBB)
20586     //
20587     //       thisMBB
20588     //         |     .
20589     //         |        .
20590     //     offsetMBB   overflowMBB
20591     //         |        .
20592     //         |     .
20593     //        endMBB
20594
20595     // Registers for the PHI in endMBB
20596     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
20597     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
20598
20599     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
20600     MachineFunction *MF = MBB->getParent();
20601     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20602     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20603     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20604
20605     MachineFunction::iterator MBBIter = MBB;
20606     ++MBBIter;
20607
20608     // Insert the new basic blocks
20609     MF->insert(MBBIter, offsetMBB);
20610     MF->insert(MBBIter, overflowMBB);
20611     MF->insert(MBBIter, endMBB);
20612
20613     // Transfer the remainder of MBB and its successor edges to endMBB.
20614     endMBB->splice(endMBB->begin(), thisMBB,
20615                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
20616     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
20617
20618     // Make offsetMBB and overflowMBB successors of thisMBB
20619     thisMBB->addSuccessor(offsetMBB);
20620     thisMBB->addSuccessor(overflowMBB);
20621
20622     // endMBB is a successor of both offsetMBB and overflowMBB
20623     offsetMBB->addSuccessor(endMBB);
20624     overflowMBB->addSuccessor(endMBB);
20625
20626     // Load the offset value into a register
20627     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
20628     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
20629       .addOperand(Base)
20630       .addOperand(Scale)
20631       .addOperand(Index)
20632       .addDisp(Disp, UseFPOffset ? 4 : 0)
20633       .addOperand(Segment)
20634       .setMemRefs(MMOBegin, MMOEnd);
20635
20636     // Check if there is enough room left to pull this argument.
20637     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
20638       .addReg(OffsetReg)
20639       .addImm(MaxOffset + 8 - ArgSizeA8);
20640
20641     // Branch to "overflowMBB" if offset >= max
20642     // Fall through to "offsetMBB" otherwise
20643     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
20644       .addMBB(overflowMBB);
20645   }
20646
20647   // In offsetMBB, emit code to use the reg_save_area.
20648   if (offsetMBB) {
20649     assert(OffsetReg != 0);
20650
20651     // Read the reg_save_area address.
20652     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
20653     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
20654       .addOperand(Base)
20655       .addOperand(Scale)
20656       .addOperand(Index)
20657       .addDisp(Disp, 16)
20658       .addOperand(Segment)
20659       .setMemRefs(MMOBegin, MMOEnd);
20660
20661     // Zero-extend the offset
20662     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
20663       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
20664         .addImm(0)
20665         .addReg(OffsetReg)
20666         .addImm(X86::sub_32bit);
20667
20668     // Add the offset to the reg_save_area to get the final address.
20669     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
20670       .addReg(OffsetReg64)
20671       .addReg(RegSaveReg);
20672
20673     // Compute the offset for the next argument
20674     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
20675     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
20676       .addReg(OffsetReg)
20677       .addImm(UseFPOffset ? 16 : 8);
20678
20679     // Store it back into the va_list.
20680     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
20681       .addOperand(Base)
20682       .addOperand(Scale)
20683       .addOperand(Index)
20684       .addDisp(Disp, UseFPOffset ? 4 : 0)
20685       .addOperand(Segment)
20686       .addReg(NextOffsetReg)
20687       .setMemRefs(MMOBegin, MMOEnd);
20688
20689     // Jump to endMBB
20690     BuildMI(offsetMBB, DL, TII->get(X86::JMP_1))
20691       .addMBB(endMBB);
20692   }
20693
20694   //
20695   // Emit code to use overflow area
20696   //
20697
20698   // Load the overflow_area address into a register.
20699   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
20700   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
20701     .addOperand(Base)
20702     .addOperand(Scale)
20703     .addOperand(Index)
20704     .addDisp(Disp, 8)
20705     .addOperand(Segment)
20706     .setMemRefs(MMOBegin, MMOEnd);
20707
20708   // If we need to align it, do so. Otherwise, just copy the address
20709   // to OverflowDestReg.
20710   if (NeedsAlign) {
20711     // Align the overflow address
20712     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
20713     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
20714
20715     // aligned_addr = (addr + (align-1)) & ~(align-1)
20716     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
20717       .addReg(OverflowAddrReg)
20718       .addImm(Align-1);
20719
20720     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
20721       .addReg(TmpReg)
20722       .addImm(~(uint64_t)(Align-1));
20723   } else {
20724     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
20725       .addReg(OverflowAddrReg);
20726   }
20727
20728   // Compute the next overflow address after this argument.
20729   // (the overflow address should be kept 8-byte aligned)
20730   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
20731   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
20732     .addReg(OverflowDestReg)
20733     .addImm(ArgSizeA8);
20734
20735   // Store the new overflow address.
20736   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
20737     .addOperand(Base)
20738     .addOperand(Scale)
20739     .addOperand(Index)
20740     .addDisp(Disp, 8)
20741     .addOperand(Segment)
20742     .addReg(NextAddrReg)
20743     .setMemRefs(MMOBegin, MMOEnd);
20744
20745   // If we branched, emit the PHI to the front of endMBB.
20746   if (offsetMBB) {
20747     BuildMI(*endMBB, endMBB->begin(), DL,
20748             TII->get(X86::PHI), DestReg)
20749       .addReg(OffsetDestReg).addMBB(offsetMBB)
20750       .addReg(OverflowDestReg).addMBB(overflowMBB);
20751   }
20752
20753   // Erase the pseudo instruction
20754   MI->eraseFromParent();
20755
20756   return endMBB;
20757 }
20758
20759 MachineBasicBlock *
20760 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
20761                                                  MachineInstr *MI,
20762                                                  MachineBasicBlock *MBB) const {
20763   // Emit code to save XMM registers to the stack. The ABI says that the
20764   // number of registers to save is given in %al, so it's theoretically
20765   // possible to do an indirect jump trick to avoid saving all of them,
20766   // however this code takes a simpler approach and just executes all
20767   // of the stores if %al is non-zero. It's less code, and it's probably
20768   // easier on the hardware branch predictor, and stores aren't all that
20769   // expensive anyway.
20770
20771   // Create the new basic blocks. One block contains all the XMM stores,
20772   // and one block is the final destination regardless of whether any
20773   // stores were performed.
20774   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
20775   MachineFunction *F = MBB->getParent();
20776   MachineFunction::iterator MBBIter = MBB;
20777   ++MBBIter;
20778   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
20779   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
20780   F->insert(MBBIter, XMMSaveMBB);
20781   F->insert(MBBIter, EndMBB);
20782
20783   // Transfer the remainder of MBB and its successor edges to EndMBB.
20784   EndMBB->splice(EndMBB->begin(), MBB,
20785                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
20786   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
20787
20788   // The original block will now fall through to the XMM save block.
20789   MBB->addSuccessor(XMMSaveMBB);
20790   // The XMMSaveMBB will fall through to the end block.
20791   XMMSaveMBB->addSuccessor(EndMBB);
20792
20793   // Now add the instructions.
20794   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20795   DebugLoc DL = MI->getDebugLoc();
20796
20797   unsigned CountReg = MI->getOperand(0).getReg();
20798   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
20799   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
20800
20801   if (!Subtarget->isCallingConvWin64(F->getFunction()->getCallingConv())) {
20802     // If %al is 0, branch around the XMM save block.
20803     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
20804     BuildMI(MBB, DL, TII->get(X86::JE_1)).addMBB(EndMBB);
20805     MBB->addSuccessor(EndMBB);
20806   }
20807
20808   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
20809   // that was just emitted, but clearly shouldn't be "saved".
20810   assert((MI->getNumOperands() <= 3 ||
20811           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
20812           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
20813          && "Expected last argument to be EFLAGS");
20814   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
20815   // In the XMM save block, save all the XMM argument registers.
20816   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
20817     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
20818     MachineMemOperand *MMO = F->getMachineMemOperand(
20819         MachinePointerInfo::getFixedStack(*F, RegSaveFrameIndex, Offset),
20820         MachineMemOperand::MOStore,
20821         /*Size=*/16, /*Align=*/16);
20822     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
20823       .addFrameIndex(RegSaveFrameIndex)
20824       .addImm(/*Scale=*/1)
20825       .addReg(/*IndexReg=*/0)
20826       .addImm(/*Disp=*/Offset)
20827       .addReg(/*Segment=*/0)
20828       .addReg(MI->getOperand(i).getReg())
20829       .addMemOperand(MMO);
20830   }
20831
20832   MI->eraseFromParent();   // The pseudo instruction is gone now.
20833
20834   return EndMBB;
20835 }
20836
20837 // The EFLAGS operand of SelectItr might be missing a kill marker
20838 // because there were multiple uses of EFLAGS, and ISel didn't know
20839 // which to mark. Figure out whether SelectItr should have had a
20840 // kill marker, and set it if it should. Returns the correct kill
20841 // marker value.
20842 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
20843                                      MachineBasicBlock* BB,
20844                                      const TargetRegisterInfo* TRI) {
20845   // Scan forward through BB for a use/def of EFLAGS.
20846   MachineBasicBlock::iterator miI(std::next(SelectItr));
20847   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
20848     const MachineInstr& mi = *miI;
20849     if (mi.readsRegister(X86::EFLAGS))
20850       return false;
20851     if (mi.definesRegister(X86::EFLAGS))
20852       break; // Should have kill-flag - update below.
20853   }
20854
20855   // If we hit the end of the block, check whether EFLAGS is live into a
20856   // successor.
20857   if (miI == BB->end()) {
20858     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
20859                                           sEnd = BB->succ_end();
20860          sItr != sEnd; ++sItr) {
20861       MachineBasicBlock* succ = *sItr;
20862       if (succ->isLiveIn(X86::EFLAGS))
20863         return false;
20864     }
20865   }
20866
20867   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
20868   // out. SelectMI should have a kill flag on EFLAGS.
20869   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
20870   return true;
20871 }
20872
20873 // Return true if it is OK for this CMOV pseudo-opcode to be cascaded
20874 // together with other CMOV pseudo-opcodes into a single basic-block with
20875 // conditional jump around it.
20876 static bool isCMOVPseudo(MachineInstr *MI) {
20877   switch (MI->getOpcode()) {
20878   case X86::CMOV_FR32:
20879   case X86::CMOV_FR64:
20880   case X86::CMOV_GR8:
20881   case X86::CMOV_GR16:
20882   case X86::CMOV_GR32:
20883   case X86::CMOV_RFP32:
20884   case X86::CMOV_RFP64:
20885   case X86::CMOV_RFP80:
20886   case X86::CMOV_V2F64:
20887   case X86::CMOV_V2I64:
20888   case X86::CMOV_V4F32:
20889   case X86::CMOV_V4F64:
20890   case X86::CMOV_V4I64:
20891   case X86::CMOV_V16F32:
20892   case X86::CMOV_V8F32:
20893   case X86::CMOV_V8F64:
20894   case X86::CMOV_V8I64:
20895   case X86::CMOV_V8I1:
20896   case X86::CMOV_V16I1:
20897   case X86::CMOV_V32I1:
20898   case X86::CMOV_V64I1:
20899     return true;
20900
20901   default:
20902     return false;
20903   }
20904 }
20905
20906 MachineBasicBlock *
20907 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
20908                                      MachineBasicBlock *BB) const {
20909   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20910   DebugLoc DL = MI->getDebugLoc();
20911
20912   // To "insert" a SELECT_CC instruction, we actually have to insert the
20913   // diamond control-flow pattern.  The incoming instruction knows the
20914   // destination vreg to set, the condition code register to branch on, the
20915   // true/false values to select between, and a branch opcode to use.
20916   const BasicBlock *LLVM_BB = BB->getBasicBlock();
20917   MachineFunction::iterator It = BB;
20918   ++It;
20919
20920   //  thisMBB:
20921   //  ...
20922   //   TrueVal = ...
20923   //   cmpTY ccX, r1, r2
20924   //   bCC copy1MBB
20925   //   fallthrough --> copy0MBB
20926   MachineBasicBlock *thisMBB = BB;
20927   MachineFunction *F = BB->getParent();
20928
20929   // This code lowers all pseudo-CMOV instructions. Generally it lowers these
20930   // as described above, by inserting a BB, and then making a PHI at the join
20931   // point to select the true and false operands of the CMOV in the PHI.
20932   //
20933   // The code also handles two different cases of multiple CMOV opcodes
20934   // in a row.
20935   //
20936   // Case 1:
20937   // In this case, there are multiple CMOVs in a row, all which are based on
20938   // the same condition setting (or the exact opposite condition setting).
20939   // In this case we can lower all the CMOVs using a single inserted BB, and
20940   // then make a number of PHIs at the join point to model the CMOVs. The only
20941   // trickiness here, is that in a case like:
20942   //
20943   // t2 = CMOV cond1 t1, f1
20944   // t3 = CMOV cond1 t2, f2
20945   //
20946   // when rewriting this into PHIs, we have to perform some renaming on the
20947   // temps since you cannot have a PHI operand refer to a PHI result earlier
20948   // in the same block.  The "simple" but wrong lowering would be:
20949   //
20950   // t2 = PHI t1(BB1), f1(BB2)
20951   // t3 = PHI t2(BB1), f2(BB2)
20952   //
20953   // but clearly t2 is not defined in BB1, so that is incorrect. The proper
20954   // renaming is to note that on the path through BB1, t2 is really just a
20955   // copy of t1, and do that renaming, properly generating:
20956   //
20957   // t2 = PHI t1(BB1), f1(BB2)
20958   // t3 = PHI t1(BB1), f2(BB2)
20959   //
20960   // Case 2, we lower cascaded CMOVs such as
20961   //
20962   //   (CMOV (CMOV F, T, cc1), T, cc2)
20963   //
20964   // to two successives branches.  For that, we look for another CMOV as the
20965   // following instruction.
20966   //
20967   // Without this, we would add a PHI between the two jumps, which ends up
20968   // creating a few copies all around. For instance, for
20969   //
20970   //    (sitofp (zext (fcmp une)))
20971   //
20972   // we would generate:
20973   //
20974   //         ucomiss %xmm1, %xmm0
20975   //         movss  <1.0f>, %xmm0
20976   //         movaps  %xmm0, %xmm1
20977   //         jne     .LBB5_2
20978   //         xorps   %xmm1, %xmm1
20979   // .LBB5_2:
20980   //         jp      .LBB5_4
20981   //         movaps  %xmm1, %xmm0
20982   // .LBB5_4:
20983   //         retq
20984   //
20985   // because this custom-inserter would have generated:
20986   //
20987   //   A
20988   //   | \
20989   //   |  B
20990   //   | /
20991   //   C
20992   //   | \
20993   //   |  D
20994   //   | /
20995   //   E
20996   //
20997   // A: X = ...; Y = ...
20998   // B: empty
20999   // C: Z = PHI [X, A], [Y, B]
21000   // D: empty
21001   // E: PHI [X, C], [Z, D]
21002   //
21003   // If we lower both CMOVs in a single step, we can instead generate:
21004   //
21005   //   A
21006   //   | \
21007   //   |  C
21008   //   | /|
21009   //   |/ |
21010   //   |  |
21011   //   |  D
21012   //   | /
21013   //   E
21014   //
21015   // A: X = ...; Y = ...
21016   // D: empty
21017   // E: PHI [X, A], [X, C], [Y, D]
21018   //
21019   // Which, in our sitofp/fcmp example, gives us something like:
21020   //
21021   //         ucomiss %xmm1, %xmm0
21022   //         movss  <1.0f>, %xmm0
21023   //         jne     .LBB5_4
21024   //         jp      .LBB5_4
21025   //         xorps   %xmm0, %xmm0
21026   // .LBB5_4:
21027   //         retq
21028   //
21029   MachineInstr *CascadedCMOV = nullptr;
21030   MachineInstr *LastCMOV = MI;
21031   X86::CondCode CC = X86::CondCode(MI->getOperand(3).getImm());
21032   X86::CondCode OppCC = X86::GetOppositeBranchCondition(CC);
21033   MachineBasicBlock::iterator NextMIIt =
21034       std::next(MachineBasicBlock::iterator(MI));
21035
21036   // Check for case 1, where there are multiple CMOVs with the same condition
21037   // first.  Of the two cases of multiple CMOV lowerings, case 1 reduces the
21038   // number of jumps the most.
21039
21040   if (isCMOVPseudo(MI)) {
21041     // See if we have a string of CMOVS with the same condition.
21042     while (NextMIIt != BB->end() &&
21043            isCMOVPseudo(NextMIIt) &&
21044            (NextMIIt->getOperand(3).getImm() == CC ||
21045             NextMIIt->getOperand(3).getImm() == OppCC)) {
21046       LastCMOV = &*NextMIIt;
21047       ++NextMIIt;
21048     }
21049   }
21050
21051   // This checks for case 2, but only do this if we didn't already find
21052   // case 1, as indicated by LastCMOV == MI.
21053   if (LastCMOV == MI &&
21054       NextMIIt != BB->end() && NextMIIt->getOpcode() == MI->getOpcode() &&
21055       NextMIIt->getOperand(2).getReg() == MI->getOperand(2).getReg() &&
21056       NextMIIt->getOperand(1).getReg() == MI->getOperand(0).getReg()) {
21057     CascadedCMOV = &*NextMIIt;
21058   }
21059
21060   MachineBasicBlock *jcc1MBB = nullptr;
21061
21062   // If we have a cascaded CMOV, we lower it to two successive branches to
21063   // the same block.  EFLAGS is used by both, so mark it as live in the second.
21064   if (CascadedCMOV) {
21065     jcc1MBB = F->CreateMachineBasicBlock(LLVM_BB);
21066     F->insert(It, jcc1MBB);
21067     jcc1MBB->addLiveIn(X86::EFLAGS);
21068   }
21069
21070   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
21071   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
21072   F->insert(It, copy0MBB);
21073   F->insert(It, sinkMBB);
21074
21075   // If the EFLAGS register isn't dead in the terminator, then claim that it's
21076   // live into the sink and copy blocks.
21077   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
21078
21079   MachineInstr *LastEFLAGSUser = CascadedCMOV ? CascadedCMOV : LastCMOV;
21080   if (!LastEFLAGSUser->killsRegister(X86::EFLAGS) &&
21081       !checkAndUpdateEFLAGSKill(LastEFLAGSUser, BB, TRI)) {
21082     copy0MBB->addLiveIn(X86::EFLAGS);
21083     sinkMBB->addLiveIn(X86::EFLAGS);
21084   }
21085
21086   // Transfer the remainder of BB and its successor edges to sinkMBB.
21087   sinkMBB->splice(sinkMBB->begin(), BB,
21088                   std::next(MachineBasicBlock::iterator(LastCMOV)), BB->end());
21089   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
21090
21091   // Add the true and fallthrough blocks as its successors.
21092   if (CascadedCMOV) {
21093     // The fallthrough block may be jcc1MBB, if we have a cascaded CMOV.
21094     BB->addSuccessor(jcc1MBB);
21095
21096     // In that case, jcc1MBB will itself fallthrough the copy0MBB, and
21097     // jump to the sinkMBB.
21098     jcc1MBB->addSuccessor(copy0MBB);
21099     jcc1MBB->addSuccessor(sinkMBB);
21100   } else {
21101     BB->addSuccessor(copy0MBB);
21102   }
21103
21104   // The true block target of the first (or only) branch is always sinkMBB.
21105   BB->addSuccessor(sinkMBB);
21106
21107   // Create the conditional branch instruction.
21108   unsigned Opc = X86::GetCondBranchFromCond(CC);
21109   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
21110
21111   if (CascadedCMOV) {
21112     unsigned Opc2 = X86::GetCondBranchFromCond(
21113         (X86::CondCode)CascadedCMOV->getOperand(3).getImm());
21114     BuildMI(jcc1MBB, DL, TII->get(Opc2)).addMBB(sinkMBB);
21115   }
21116
21117   //  copy0MBB:
21118   //   %FalseValue = ...
21119   //   # fallthrough to sinkMBB
21120   copy0MBB->addSuccessor(sinkMBB);
21121
21122   //  sinkMBB:
21123   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
21124   //  ...
21125   MachineBasicBlock::iterator MIItBegin = MachineBasicBlock::iterator(MI);
21126   MachineBasicBlock::iterator MIItEnd =
21127     std::next(MachineBasicBlock::iterator(LastCMOV));
21128   MachineBasicBlock::iterator SinkInsertionPoint = sinkMBB->begin();
21129   DenseMap<unsigned, std::pair<unsigned, unsigned>> RegRewriteTable;
21130   MachineInstrBuilder MIB;
21131
21132   // As we are creating the PHIs, we have to be careful if there is more than
21133   // one.  Later CMOVs may reference the results of earlier CMOVs, but later
21134   // PHIs have to reference the individual true/false inputs from earlier PHIs.
21135   // That also means that PHI construction must work forward from earlier to
21136   // later, and that the code must maintain a mapping from earlier PHI's
21137   // destination registers, and the registers that went into the PHI.
21138
21139   for (MachineBasicBlock::iterator MIIt = MIItBegin; MIIt != MIItEnd; ++MIIt) {
21140     unsigned DestReg = MIIt->getOperand(0).getReg();
21141     unsigned Op1Reg = MIIt->getOperand(1).getReg();
21142     unsigned Op2Reg = MIIt->getOperand(2).getReg();
21143
21144     // If this CMOV we are generating is the opposite condition from
21145     // the jump we generated, then we have to swap the operands for the
21146     // PHI that is going to be generated.
21147     if (MIIt->getOperand(3).getImm() == OppCC)
21148         std::swap(Op1Reg, Op2Reg);
21149
21150     if (RegRewriteTable.find(Op1Reg) != RegRewriteTable.end())
21151       Op1Reg = RegRewriteTable[Op1Reg].first;
21152
21153     if (RegRewriteTable.find(Op2Reg) != RegRewriteTable.end())
21154       Op2Reg = RegRewriteTable[Op2Reg].second;
21155
21156     MIB = BuildMI(*sinkMBB, SinkInsertionPoint, DL,
21157                   TII->get(X86::PHI), DestReg)
21158           .addReg(Op1Reg).addMBB(copy0MBB)
21159           .addReg(Op2Reg).addMBB(thisMBB);
21160
21161     // Add this PHI to the rewrite table.
21162     RegRewriteTable[DestReg] = std::make_pair(Op1Reg, Op2Reg);
21163   }
21164
21165   // If we have a cascaded CMOV, the second Jcc provides the same incoming
21166   // value as the first Jcc (the True operand of the SELECT_CC/CMOV nodes).
21167   if (CascadedCMOV) {
21168     MIB.addReg(MI->getOperand(2).getReg()).addMBB(jcc1MBB);
21169     // Copy the PHI result to the register defined by the second CMOV.
21170     BuildMI(*sinkMBB, std::next(MachineBasicBlock::iterator(MIB.getInstr())),
21171             DL, TII->get(TargetOpcode::COPY),
21172             CascadedCMOV->getOperand(0).getReg())
21173         .addReg(MI->getOperand(0).getReg());
21174     CascadedCMOV->eraseFromParent();
21175   }
21176
21177   // Now remove the CMOV(s).
21178   for (MachineBasicBlock::iterator MIIt = MIItBegin; MIIt != MIItEnd; )
21179     (MIIt++)->eraseFromParent();
21180
21181   return sinkMBB;
21182 }
21183
21184 MachineBasicBlock *
21185 X86TargetLowering::EmitLoweredAtomicFP(MachineInstr *MI,
21186                                        MachineBasicBlock *BB) const {
21187   // Combine the following atomic floating-point modification pattern:
21188   //   a.store(reg OP a.load(acquire), release)
21189   // Transform them into:
21190   //   OPss (%gpr), %xmm
21191   //   movss %xmm, (%gpr)
21192   // Or sd equivalent for 64-bit operations.
21193   unsigned MOp, FOp;
21194   switch (MI->getOpcode()) {
21195   default: llvm_unreachable("unexpected instr type for EmitLoweredAtomicFP");
21196   case X86::RELEASE_FADD32mr: MOp = X86::MOVSSmr; FOp = X86::ADDSSrm; break;
21197   case X86::RELEASE_FADD64mr: MOp = X86::MOVSDmr; FOp = X86::ADDSDrm; break;
21198   }
21199   const X86InstrInfo *TII = Subtarget->getInstrInfo();
21200   DebugLoc DL = MI->getDebugLoc();
21201   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
21202   MachineOperand MSrc = MI->getOperand(0);
21203   unsigned VSrc = MI->getOperand(5).getReg();
21204   const MachineOperand &Disp = MI->getOperand(3);
21205   MachineOperand ZeroDisp = MachineOperand::CreateImm(0);
21206   bool hasDisp = Disp.isGlobal() || Disp.isImm();
21207   if (hasDisp && MSrc.isReg())
21208     MSrc.setIsKill(false);
21209   MachineInstrBuilder MIM = BuildMI(*BB, MI, DL, TII->get(MOp))
21210                                 .addOperand(/*Base=*/MSrc)
21211                                 .addImm(/*Scale=*/1)
21212                                 .addReg(/*Index=*/0)
21213                                 .addDisp(hasDisp ? Disp : ZeroDisp, /*off=*/0)
21214                                 .addReg(0);
21215   MachineInstr *MIO = BuildMI(*BB, (MachineInstr *)MIM, DL, TII->get(FOp),
21216                               MRI.createVirtualRegister(MRI.getRegClass(VSrc)))
21217                           .addReg(VSrc)
21218                           .addOperand(/*Base=*/MSrc)
21219                           .addImm(/*Scale=*/1)
21220                           .addReg(/*Index=*/0)
21221                           .addDisp(hasDisp ? Disp : ZeroDisp, /*off=*/0)
21222                           .addReg(/*Segment=*/0);
21223   MIM.addReg(MIO->getOperand(0).getReg(), RegState::Kill);
21224   MI->eraseFromParent(); // The pseudo instruction is gone now.
21225   return BB;
21226 }
21227
21228 MachineBasicBlock *
21229 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI,
21230                                         MachineBasicBlock *BB) const {
21231   MachineFunction *MF = BB->getParent();
21232   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
21233   DebugLoc DL = MI->getDebugLoc();
21234   const BasicBlock *LLVM_BB = BB->getBasicBlock();
21235
21236   assert(MF->shouldSplitStack());
21237
21238   const bool Is64Bit = Subtarget->is64Bit();
21239   const bool IsLP64 = Subtarget->isTarget64BitLP64();
21240
21241   const unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
21242   const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30;
21243
21244   // BB:
21245   //  ... [Till the alloca]
21246   // If stacklet is not large enough, jump to mallocMBB
21247   //
21248   // bumpMBB:
21249   //  Allocate by subtracting from RSP
21250   //  Jump to continueMBB
21251   //
21252   // mallocMBB:
21253   //  Allocate by call to runtime
21254   //
21255   // continueMBB:
21256   //  ...
21257   //  [rest of original BB]
21258   //
21259
21260   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
21261   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
21262   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
21263
21264   MachineRegisterInfo &MRI = MF->getRegInfo();
21265   const TargetRegisterClass *AddrRegClass =
21266       getRegClassFor(getPointerTy(MF->getDataLayout()));
21267
21268   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
21269     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
21270     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
21271     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
21272     sizeVReg = MI->getOperand(1).getReg(),
21273     physSPReg = IsLP64 || Subtarget->isTargetNaCl64() ? X86::RSP : X86::ESP;
21274
21275   MachineFunction::iterator MBBIter = BB;
21276   ++MBBIter;
21277
21278   MF->insert(MBBIter, bumpMBB);
21279   MF->insert(MBBIter, mallocMBB);
21280   MF->insert(MBBIter, continueMBB);
21281
21282   continueMBB->splice(continueMBB->begin(), BB,
21283                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
21284   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
21285
21286   // Add code to the main basic block to check if the stack limit has been hit,
21287   // and if so, jump to mallocMBB otherwise to bumpMBB.
21288   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
21289   BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
21290     .addReg(tmpSPVReg).addReg(sizeVReg);
21291   BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr))
21292     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
21293     .addReg(SPLimitVReg);
21294   BuildMI(BB, DL, TII->get(X86::JG_1)).addMBB(mallocMBB);
21295
21296   // bumpMBB simply decreases the stack pointer, since we know the current
21297   // stacklet has enough space.
21298   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
21299     .addReg(SPLimitVReg);
21300   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
21301     .addReg(SPLimitVReg);
21302   BuildMI(bumpMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB);
21303
21304   // Calls into a routine in libgcc to allocate more space from the heap.
21305   const uint32_t *RegMask =
21306       Subtarget->getRegisterInfo()->getCallPreservedMask(*MF, CallingConv::C);
21307   if (IsLP64) {
21308     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
21309       .addReg(sizeVReg);
21310     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
21311       .addExternalSymbol("__morestack_allocate_stack_space")
21312       .addRegMask(RegMask)
21313       .addReg(X86::RDI, RegState::Implicit)
21314       .addReg(X86::RAX, RegState::ImplicitDefine);
21315   } else if (Is64Bit) {
21316     BuildMI(mallocMBB, DL, TII->get(X86::MOV32rr), X86::EDI)
21317       .addReg(sizeVReg);
21318     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
21319       .addExternalSymbol("__morestack_allocate_stack_space")
21320       .addRegMask(RegMask)
21321       .addReg(X86::EDI, RegState::Implicit)
21322       .addReg(X86::EAX, RegState::ImplicitDefine);
21323   } else {
21324     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
21325       .addImm(12);
21326     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
21327     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
21328       .addExternalSymbol("__morestack_allocate_stack_space")
21329       .addRegMask(RegMask)
21330       .addReg(X86::EAX, RegState::ImplicitDefine);
21331   }
21332
21333   if (!Is64Bit)
21334     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
21335       .addImm(16);
21336
21337   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
21338     .addReg(IsLP64 ? X86::RAX : X86::EAX);
21339   BuildMI(mallocMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB);
21340
21341   // Set up the CFG correctly.
21342   BB->addSuccessor(bumpMBB);
21343   BB->addSuccessor(mallocMBB);
21344   mallocMBB->addSuccessor(continueMBB);
21345   bumpMBB->addSuccessor(continueMBB);
21346
21347   // Take care of the PHI nodes.
21348   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
21349           MI->getOperand(0).getReg())
21350     .addReg(mallocPtrVReg).addMBB(mallocMBB)
21351     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
21352
21353   // Delete the original pseudo instruction.
21354   MI->eraseFromParent();
21355
21356   // And we're done.
21357   return continueMBB;
21358 }
21359
21360 MachineBasicBlock *
21361 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
21362                                         MachineBasicBlock *BB) const {
21363   DebugLoc DL = MI->getDebugLoc();
21364
21365   assert(!Subtarget->isTargetMachO());
21366
21367   Subtarget->getFrameLowering()->emitStackProbeCall(*BB->getParent(), *BB, MI,
21368                                                     DL);
21369
21370   MI->eraseFromParent();   // The pseudo instruction is gone now.
21371   return BB;
21372 }
21373
21374 MachineBasicBlock *
21375 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
21376                                       MachineBasicBlock *BB) const {
21377   // This is pretty easy.  We're taking the value that we received from
21378   // our load from the relocation, sticking it in either RDI (x86-64)
21379   // or EAX and doing an indirect call.  The return value will then
21380   // be in the normal return register.
21381   MachineFunction *F = BB->getParent();
21382   const X86InstrInfo *TII = Subtarget->getInstrInfo();
21383   DebugLoc DL = MI->getDebugLoc();
21384
21385   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
21386   assert(MI->getOperand(3).isGlobal() && "This should be a global");
21387
21388   // Get a register mask for the lowered call.
21389   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
21390   // proper register mask.
21391   const uint32_t *RegMask =
21392       Subtarget->getRegisterInfo()->getCallPreservedMask(*F, CallingConv::C);
21393   if (Subtarget->is64Bit()) {
21394     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
21395                                       TII->get(X86::MOV64rm), X86::RDI)
21396     .addReg(X86::RIP)
21397     .addImm(0).addReg(0)
21398     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
21399                       MI->getOperand(3).getTargetFlags())
21400     .addReg(0);
21401     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
21402     addDirectMem(MIB, X86::RDI);
21403     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
21404   } else if (F->getTarget().getRelocationModel() != Reloc::PIC_) {
21405     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
21406                                       TII->get(X86::MOV32rm), X86::EAX)
21407     .addReg(0)
21408     .addImm(0).addReg(0)
21409     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
21410                       MI->getOperand(3).getTargetFlags())
21411     .addReg(0);
21412     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
21413     addDirectMem(MIB, X86::EAX);
21414     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
21415   } else {
21416     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
21417                                       TII->get(X86::MOV32rm), X86::EAX)
21418     .addReg(TII->getGlobalBaseReg(F))
21419     .addImm(0).addReg(0)
21420     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
21421                       MI->getOperand(3).getTargetFlags())
21422     .addReg(0);
21423     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
21424     addDirectMem(MIB, X86::EAX);
21425     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
21426   }
21427
21428   MI->eraseFromParent(); // The pseudo instruction is gone now.
21429   return BB;
21430 }
21431
21432 MachineBasicBlock *
21433 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
21434                                     MachineBasicBlock *MBB) const {
21435   DebugLoc DL = MI->getDebugLoc();
21436   MachineFunction *MF = MBB->getParent();
21437   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
21438   MachineRegisterInfo &MRI = MF->getRegInfo();
21439
21440   const BasicBlock *BB = MBB->getBasicBlock();
21441   MachineFunction::iterator I = MBB;
21442   ++I;
21443
21444   // Memory Reference
21445   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
21446   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
21447
21448   unsigned DstReg;
21449   unsigned MemOpndSlot = 0;
21450
21451   unsigned CurOp = 0;
21452
21453   DstReg = MI->getOperand(CurOp++).getReg();
21454   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
21455   assert(RC->hasType(MVT::i32) && "Invalid destination!");
21456   unsigned mainDstReg = MRI.createVirtualRegister(RC);
21457   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
21458
21459   MemOpndSlot = CurOp;
21460
21461   MVT PVT = getPointerTy(MF->getDataLayout());
21462   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
21463          "Invalid Pointer Size!");
21464
21465   // For v = setjmp(buf), we generate
21466   //
21467   // thisMBB:
21468   //  buf[LabelOffset] = restoreMBB
21469   //  SjLjSetup restoreMBB
21470   //
21471   // mainMBB:
21472   //  v_main = 0
21473   //
21474   // sinkMBB:
21475   //  v = phi(main, restore)
21476   //
21477   // restoreMBB:
21478   //  if base pointer being used, load it from frame
21479   //  v_restore = 1
21480
21481   MachineBasicBlock *thisMBB = MBB;
21482   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
21483   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
21484   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
21485   MF->insert(I, mainMBB);
21486   MF->insert(I, sinkMBB);
21487   MF->push_back(restoreMBB);
21488
21489   MachineInstrBuilder MIB;
21490
21491   // Transfer the remainder of BB and its successor edges to sinkMBB.
21492   sinkMBB->splice(sinkMBB->begin(), MBB,
21493                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
21494   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
21495
21496   // thisMBB:
21497   unsigned PtrStoreOpc = 0;
21498   unsigned LabelReg = 0;
21499   const int64_t LabelOffset = 1 * PVT.getStoreSize();
21500   Reloc::Model RM = MF->getTarget().getRelocationModel();
21501   bool UseImmLabel = (MF->getTarget().getCodeModel() == CodeModel::Small) &&
21502                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
21503
21504   // Prepare IP either in reg or imm.
21505   if (!UseImmLabel) {
21506     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
21507     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
21508     LabelReg = MRI.createVirtualRegister(PtrRC);
21509     if (Subtarget->is64Bit()) {
21510       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
21511               .addReg(X86::RIP)
21512               .addImm(0)
21513               .addReg(0)
21514               .addMBB(restoreMBB)
21515               .addReg(0);
21516     } else {
21517       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
21518       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
21519               .addReg(XII->getGlobalBaseReg(MF))
21520               .addImm(0)
21521               .addReg(0)
21522               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
21523               .addReg(0);
21524     }
21525   } else
21526     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
21527   // Store IP
21528   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
21529   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
21530     if (i == X86::AddrDisp)
21531       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
21532     else
21533       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
21534   }
21535   if (!UseImmLabel)
21536     MIB.addReg(LabelReg);
21537   else
21538     MIB.addMBB(restoreMBB);
21539   MIB.setMemRefs(MMOBegin, MMOEnd);
21540   // Setup
21541   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
21542           .addMBB(restoreMBB);
21543
21544   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
21545   MIB.addRegMask(RegInfo->getNoPreservedMask());
21546   thisMBB->addSuccessor(mainMBB);
21547   thisMBB->addSuccessor(restoreMBB);
21548
21549   // mainMBB:
21550   //  EAX = 0
21551   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
21552   mainMBB->addSuccessor(sinkMBB);
21553
21554   // sinkMBB:
21555   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
21556           TII->get(X86::PHI), DstReg)
21557     .addReg(mainDstReg).addMBB(mainMBB)
21558     .addReg(restoreDstReg).addMBB(restoreMBB);
21559
21560   // restoreMBB:
21561   if (RegInfo->hasBasePointer(*MF)) {
21562     const bool Uses64BitFramePtr =
21563         Subtarget->isTarget64BitLP64() || Subtarget->isTargetNaCl64();
21564     X86MachineFunctionInfo *X86FI = MF->getInfo<X86MachineFunctionInfo>();
21565     X86FI->setRestoreBasePointer(MF);
21566     unsigned FramePtr = RegInfo->getFrameRegister(*MF);
21567     unsigned BasePtr = RegInfo->getBaseRegister();
21568     unsigned Opm = Uses64BitFramePtr ? X86::MOV64rm : X86::MOV32rm;
21569     addRegOffset(BuildMI(restoreMBB, DL, TII->get(Opm), BasePtr),
21570                  FramePtr, true, X86FI->getRestoreBasePointerOffset())
21571       .setMIFlag(MachineInstr::FrameSetup);
21572   }
21573   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
21574   BuildMI(restoreMBB, DL, TII->get(X86::JMP_1)).addMBB(sinkMBB);
21575   restoreMBB->addSuccessor(sinkMBB);
21576
21577   MI->eraseFromParent();
21578   return sinkMBB;
21579 }
21580
21581 MachineBasicBlock *
21582 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
21583                                      MachineBasicBlock *MBB) const {
21584   DebugLoc DL = MI->getDebugLoc();
21585   MachineFunction *MF = MBB->getParent();
21586   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
21587   MachineRegisterInfo &MRI = MF->getRegInfo();
21588
21589   // Memory Reference
21590   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
21591   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
21592
21593   MVT PVT = getPointerTy(MF->getDataLayout());
21594   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
21595          "Invalid Pointer Size!");
21596
21597   const TargetRegisterClass *RC =
21598     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
21599   unsigned Tmp = MRI.createVirtualRegister(RC);
21600   // Since FP is only updated here but NOT referenced, it's treated as GPR.
21601   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
21602   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
21603   unsigned SP = RegInfo->getStackRegister();
21604
21605   MachineInstrBuilder MIB;
21606
21607   const int64_t LabelOffset = 1 * PVT.getStoreSize();
21608   const int64_t SPOffset = 2 * PVT.getStoreSize();
21609
21610   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
21611   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
21612
21613   // Reload FP
21614   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
21615   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
21616     MIB.addOperand(MI->getOperand(i));
21617   MIB.setMemRefs(MMOBegin, MMOEnd);
21618   // Reload IP
21619   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
21620   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
21621     if (i == X86::AddrDisp)
21622       MIB.addDisp(MI->getOperand(i), LabelOffset);
21623     else
21624       MIB.addOperand(MI->getOperand(i));
21625   }
21626   MIB.setMemRefs(MMOBegin, MMOEnd);
21627   // Reload SP
21628   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
21629   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
21630     if (i == X86::AddrDisp)
21631       MIB.addDisp(MI->getOperand(i), SPOffset);
21632     else
21633       MIB.addOperand(MI->getOperand(i));
21634   }
21635   MIB.setMemRefs(MMOBegin, MMOEnd);
21636   // Jump
21637   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
21638
21639   MI->eraseFromParent();
21640   return MBB;
21641 }
21642
21643 // Replace 213-type (isel default) FMA3 instructions with 231-type for
21644 // accumulator loops. Writing back to the accumulator allows the coalescer
21645 // to remove extra copies in the loop.
21646 // FIXME: Do this on AVX512.  We don't support 231 variants yet (PR23937).
21647 MachineBasicBlock *
21648 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
21649                                  MachineBasicBlock *MBB) const {
21650   MachineOperand &AddendOp = MI->getOperand(3);
21651
21652   // Bail out early if the addend isn't a register - we can't switch these.
21653   if (!AddendOp.isReg())
21654     return MBB;
21655
21656   MachineFunction &MF = *MBB->getParent();
21657   MachineRegisterInfo &MRI = MF.getRegInfo();
21658
21659   // Check whether the addend is defined by a PHI:
21660   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
21661   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
21662   if (!AddendDef.isPHI())
21663     return MBB;
21664
21665   // Look for the following pattern:
21666   // loop:
21667   //   %addend = phi [%entry, 0], [%loop, %result]
21668   //   ...
21669   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
21670
21671   // Replace with:
21672   //   loop:
21673   //   %addend = phi [%entry, 0], [%loop, %result]
21674   //   ...
21675   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
21676
21677   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
21678     assert(AddendDef.getOperand(i).isReg());
21679     MachineOperand PHISrcOp = AddendDef.getOperand(i);
21680     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
21681     if (&PHISrcInst == MI) {
21682       // Found a matching instruction.
21683       unsigned NewFMAOpc = 0;
21684       switch (MI->getOpcode()) {
21685         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
21686         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
21687         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
21688         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
21689         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
21690         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
21691         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
21692         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
21693         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
21694         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
21695         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
21696         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
21697         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
21698         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
21699         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
21700         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
21701         case X86::VFMADDSUBPDr213r: NewFMAOpc = X86::VFMADDSUBPDr231r; break;
21702         case X86::VFMADDSUBPSr213r: NewFMAOpc = X86::VFMADDSUBPSr231r; break;
21703         case X86::VFMSUBADDPDr213r: NewFMAOpc = X86::VFMSUBADDPDr231r; break;
21704         case X86::VFMSUBADDPSr213r: NewFMAOpc = X86::VFMSUBADDPSr231r; break;
21705
21706         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
21707         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
21708         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
21709         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
21710         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
21711         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
21712         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
21713         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
21714         case X86::VFMADDSUBPDr213rY: NewFMAOpc = X86::VFMADDSUBPDr231rY; break;
21715         case X86::VFMADDSUBPSr213rY: NewFMAOpc = X86::VFMADDSUBPSr231rY; break;
21716         case X86::VFMSUBADDPDr213rY: NewFMAOpc = X86::VFMSUBADDPDr231rY; break;
21717         case X86::VFMSUBADDPSr213rY: NewFMAOpc = X86::VFMSUBADDPSr231rY; break;
21718         default: llvm_unreachable("Unrecognized FMA variant.");
21719       }
21720
21721       const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
21722       MachineInstrBuilder MIB =
21723         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
21724         .addOperand(MI->getOperand(0))
21725         .addOperand(MI->getOperand(3))
21726         .addOperand(MI->getOperand(2))
21727         .addOperand(MI->getOperand(1));
21728       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
21729       MI->eraseFromParent();
21730     }
21731   }
21732
21733   return MBB;
21734 }
21735
21736 MachineBasicBlock *
21737 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
21738                                                MachineBasicBlock *BB) const {
21739   switch (MI->getOpcode()) {
21740   default: llvm_unreachable("Unexpected instr type to insert");
21741   case X86::TAILJMPd64:
21742   case X86::TAILJMPr64:
21743   case X86::TAILJMPm64:
21744   case X86::TAILJMPd64_REX:
21745   case X86::TAILJMPr64_REX:
21746   case X86::TAILJMPm64_REX:
21747     llvm_unreachable("TAILJMP64 would not be touched here.");
21748   case X86::TCRETURNdi64:
21749   case X86::TCRETURNri64:
21750   case X86::TCRETURNmi64:
21751     return BB;
21752   case X86::WIN_ALLOCA:
21753     return EmitLoweredWinAlloca(MI, BB);
21754   case X86::SEG_ALLOCA_32:
21755   case X86::SEG_ALLOCA_64:
21756     return EmitLoweredSegAlloca(MI, BB);
21757   case X86::TLSCall_32:
21758   case X86::TLSCall_64:
21759     return EmitLoweredTLSCall(MI, BB);
21760   case X86::CMOV_FR32:
21761   case X86::CMOV_FR64:
21762   case X86::CMOV_GR8:
21763   case X86::CMOV_GR16:
21764   case X86::CMOV_GR32:
21765   case X86::CMOV_RFP32:
21766   case X86::CMOV_RFP64:
21767   case X86::CMOV_RFP80:
21768   case X86::CMOV_V2F64:
21769   case X86::CMOV_V2I64:
21770   case X86::CMOV_V4F32:
21771   case X86::CMOV_V4F64:
21772   case X86::CMOV_V4I64:
21773   case X86::CMOV_V16F32:
21774   case X86::CMOV_V8F32:
21775   case X86::CMOV_V8F64:
21776   case X86::CMOV_V8I64:
21777   case X86::CMOV_V8I1:
21778   case X86::CMOV_V16I1:
21779   case X86::CMOV_V32I1:
21780   case X86::CMOV_V64I1:
21781     return EmitLoweredSelect(MI, BB);
21782
21783   case X86::RELEASE_FADD32mr:
21784   case X86::RELEASE_FADD64mr:
21785     return EmitLoweredAtomicFP(MI, BB);
21786
21787   case X86::FP32_TO_INT16_IN_MEM:
21788   case X86::FP32_TO_INT32_IN_MEM:
21789   case X86::FP32_TO_INT64_IN_MEM:
21790   case X86::FP64_TO_INT16_IN_MEM:
21791   case X86::FP64_TO_INT32_IN_MEM:
21792   case X86::FP64_TO_INT64_IN_MEM:
21793   case X86::FP80_TO_INT16_IN_MEM:
21794   case X86::FP80_TO_INT32_IN_MEM:
21795   case X86::FP80_TO_INT64_IN_MEM: {
21796     MachineFunction *F = BB->getParent();
21797     const TargetInstrInfo *TII = Subtarget->getInstrInfo();
21798     DebugLoc DL = MI->getDebugLoc();
21799
21800     // Change the floating point control register to use "round towards zero"
21801     // mode when truncating to an integer value.
21802     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
21803     addFrameReference(BuildMI(*BB, MI, DL,
21804                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
21805
21806     // Load the old value of the high byte of the control word...
21807     unsigned OldCW =
21808       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
21809     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
21810                       CWFrameIdx);
21811
21812     // Set the high part to be round to zero...
21813     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
21814       .addImm(0xC7F);
21815
21816     // Reload the modified control word now...
21817     addFrameReference(BuildMI(*BB, MI, DL,
21818                               TII->get(X86::FLDCW16m)), CWFrameIdx);
21819
21820     // Restore the memory image of control word to original value
21821     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
21822       .addReg(OldCW);
21823
21824     // Get the X86 opcode to use.
21825     unsigned Opc;
21826     switch (MI->getOpcode()) {
21827     default: llvm_unreachable("illegal opcode!");
21828     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
21829     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
21830     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
21831     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
21832     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
21833     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
21834     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
21835     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
21836     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
21837     }
21838
21839     X86AddressMode AM;
21840     MachineOperand &Op = MI->getOperand(0);
21841     if (Op.isReg()) {
21842       AM.BaseType = X86AddressMode::RegBase;
21843       AM.Base.Reg = Op.getReg();
21844     } else {
21845       AM.BaseType = X86AddressMode::FrameIndexBase;
21846       AM.Base.FrameIndex = Op.getIndex();
21847     }
21848     Op = MI->getOperand(1);
21849     if (Op.isImm())
21850       AM.Scale = Op.getImm();
21851     Op = MI->getOperand(2);
21852     if (Op.isImm())
21853       AM.IndexReg = Op.getImm();
21854     Op = MI->getOperand(3);
21855     if (Op.isGlobal()) {
21856       AM.GV = Op.getGlobal();
21857     } else {
21858       AM.Disp = Op.getImm();
21859     }
21860     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
21861                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
21862
21863     // Reload the original control word now.
21864     addFrameReference(BuildMI(*BB, MI, DL,
21865                               TII->get(X86::FLDCW16m)), CWFrameIdx);
21866
21867     MI->eraseFromParent();   // The pseudo instruction is gone now.
21868     return BB;
21869   }
21870     // String/text processing lowering.
21871   case X86::PCMPISTRM128REG:
21872   case X86::VPCMPISTRM128REG:
21873   case X86::PCMPISTRM128MEM:
21874   case X86::VPCMPISTRM128MEM:
21875   case X86::PCMPESTRM128REG:
21876   case X86::VPCMPESTRM128REG:
21877   case X86::PCMPESTRM128MEM:
21878   case X86::VPCMPESTRM128MEM:
21879     assert(Subtarget->hasSSE42() &&
21880            "Target must have SSE4.2 or AVX features enabled");
21881     return EmitPCMPSTRM(MI, BB, Subtarget->getInstrInfo());
21882
21883   // String/text processing lowering.
21884   case X86::PCMPISTRIREG:
21885   case X86::VPCMPISTRIREG:
21886   case X86::PCMPISTRIMEM:
21887   case X86::VPCMPISTRIMEM:
21888   case X86::PCMPESTRIREG:
21889   case X86::VPCMPESTRIREG:
21890   case X86::PCMPESTRIMEM:
21891   case X86::VPCMPESTRIMEM:
21892     assert(Subtarget->hasSSE42() &&
21893            "Target must have SSE4.2 or AVX features enabled");
21894     return EmitPCMPSTRI(MI, BB, Subtarget->getInstrInfo());
21895
21896   // Thread synchronization.
21897   case X86::MONITOR:
21898     return EmitMonitor(MI, BB, Subtarget);
21899
21900   // xbegin
21901   case X86::XBEGIN:
21902     return EmitXBegin(MI, BB, Subtarget->getInstrInfo());
21903
21904   case X86::VASTART_SAVE_XMM_REGS:
21905     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
21906
21907   case X86::VAARG_64:
21908     return EmitVAARG64WithCustomInserter(MI, BB);
21909
21910   case X86::EH_SjLj_SetJmp32:
21911   case X86::EH_SjLj_SetJmp64:
21912     return emitEHSjLjSetJmp(MI, BB);
21913
21914   case X86::EH_SjLj_LongJmp32:
21915   case X86::EH_SjLj_LongJmp64:
21916     return emitEHSjLjLongJmp(MI, BB);
21917
21918   case TargetOpcode::STATEPOINT:
21919     // As an implementation detail, STATEPOINT shares the STACKMAP format at
21920     // this point in the process.  We diverge later.
21921     return emitPatchPoint(MI, BB);
21922
21923   case TargetOpcode::STACKMAP:
21924   case TargetOpcode::PATCHPOINT:
21925     return emitPatchPoint(MI, BB);
21926
21927   case X86::VFMADDPDr213r:
21928   case X86::VFMADDPSr213r:
21929   case X86::VFMADDSDr213r:
21930   case X86::VFMADDSSr213r:
21931   case X86::VFMSUBPDr213r:
21932   case X86::VFMSUBPSr213r:
21933   case X86::VFMSUBSDr213r:
21934   case X86::VFMSUBSSr213r:
21935   case X86::VFNMADDPDr213r:
21936   case X86::VFNMADDPSr213r:
21937   case X86::VFNMADDSDr213r:
21938   case X86::VFNMADDSSr213r:
21939   case X86::VFNMSUBPDr213r:
21940   case X86::VFNMSUBPSr213r:
21941   case X86::VFNMSUBSDr213r:
21942   case X86::VFNMSUBSSr213r:
21943   case X86::VFMADDSUBPDr213r:
21944   case X86::VFMADDSUBPSr213r:
21945   case X86::VFMSUBADDPDr213r:
21946   case X86::VFMSUBADDPSr213r:
21947   case X86::VFMADDPDr213rY:
21948   case X86::VFMADDPSr213rY:
21949   case X86::VFMSUBPDr213rY:
21950   case X86::VFMSUBPSr213rY:
21951   case X86::VFNMADDPDr213rY:
21952   case X86::VFNMADDPSr213rY:
21953   case X86::VFNMSUBPDr213rY:
21954   case X86::VFNMSUBPSr213rY:
21955   case X86::VFMADDSUBPDr213rY:
21956   case X86::VFMADDSUBPSr213rY:
21957   case X86::VFMSUBADDPDr213rY:
21958   case X86::VFMSUBADDPSr213rY:
21959     return emitFMA3Instr(MI, BB);
21960   }
21961 }
21962
21963 //===----------------------------------------------------------------------===//
21964 //                           X86 Optimization Hooks
21965 //===----------------------------------------------------------------------===//
21966
21967 void X86TargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
21968                                                       APInt &KnownZero,
21969                                                       APInt &KnownOne,
21970                                                       const SelectionDAG &DAG,
21971                                                       unsigned Depth) const {
21972   unsigned BitWidth = KnownZero.getBitWidth();
21973   unsigned Opc = Op.getOpcode();
21974   assert((Opc >= ISD::BUILTIN_OP_END ||
21975           Opc == ISD::INTRINSIC_WO_CHAIN ||
21976           Opc == ISD::INTRINSIC_W_CHAIN ||
21977           Opc == ISD::INTRINSIC_VOID) &&
21978          "Should use MaskedValueIsZero if you don't know whether Op"
21979          " is a target node!");
21980
21981   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
21982   switch (Opc) {
21983   default: break;
21984   case X86ISD::ADD:
21985   case X86ISD::SUB:
21986   case X86ISD::ADC:
21987   case X86ISD::SBB:
21988   case X86ISD::SMUL:
21989   case X86ISD::UMUL:
21990   case X86ISD::INC:
21991   case X86ISD::DEC:
21992   case X86ISD::OR:
21993   case X86ISD::XOR:
21994   case X86ISD::AND:
21995     // These nodes' second result is a boolean.
21996     if (Op.getResNo() == 0)
21997       break;
21998     // Fallthrough
21999   case X86ISD::SETCC:
22000     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
22001     break;
22002   case ISD::INTRINSIC_WO_CHAIN: {
22003     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
22004     unsigned NumLoBits = 0;
22005     switch (IntId) {
22006     default: break;
22007     case Intrinsic::x86_sse_movmsk_ps:
22008     case Intrinsic::x86_avx_movmsk_ps_256:
22009     case Intrinsic::x86_sse2_movmsk_pd:
22010     case Intrinsic::x86_avx_movmsk_pd_256:
22011     case Intrinsic::x86_mmx_pmovmskb:
22012     case Intrinsic::x86_sse2_pmovmskb_128:
22013     case Intrinsic::x86_avx2_pmovmskb: {
22014       // High bits of movmskp{s|d}, pmovmskb are known zero.
22015       switch (IntId) {
22016         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
22017         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
22018         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
22019         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
22020         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
22021         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
22022         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
22023         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
22024       }
22025       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
22026       break;
22027     }
22028     }
22029     break;
22030   }
22031   }
22032 }
22033
22034 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
22035   SDValue Op,
22036   const SelectionDAG &,
22037   unsigned Depth) const {
22038   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
22039   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
22040     return Op.getValueType().getScalarType().getSizeInBits();
22041
22042   // Fallback case.
22043   return 1;
22044 }
22045
22046 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
22047 /// node is a GlobalAddress + offset.
22048 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
22049                                        const GlobalValue* &GA,
22050                                        int64_t &Offset) const {
22051   if (N->getOpcode() == X86ISD::Wrapper) {
22052     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
22053       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
22054       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
22055       return true;
22056     }
22057   }
22058   return TargetLowering::isGAPlusOffset(N, GA, Offset);
22059 }
22060
22061 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
22062 /// same as extracting the high 128-bit part of 256-bit vector and then
22063 /// inserting the result into the low part of a new 256-bit vector
22064 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
22065   EVT VT = SVOp->getValueType(0);
22066   unsigned NumElems = VT.getVectorNumElements();
22067
22068   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
22069   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
22070     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
22071         SVOp->getMaskElt(j) >= 0)
22072       return false;
22073
22074   return true;
22075 }
22076
22077 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
22078 /// same as extracting the low 128-bit part of 256-bit vector and then
22079 /// inserting the result into the high part of a new 256-bit vector
22080 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
22081   EVT VT = SVOp->getValueType(0);
22082   unsigned NumElems = VT.getVectorNumElements();
22083
22084   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
22085   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
22086     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
22087         SVOp->getMaskElt(j) >= 0)
22088       return false;
22089
22090   return true;
22091 }
22092
22093 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
22094 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
22095                                         TargetLowering::DAGCombinerInfo &DCI,
22096                                         const X86Subtarget* Subtarget) {
22097   SDLoc dl(N);
22098   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
22099   SDValue V1 = SVOp->getOperand(0);
22100   SDValue V2 = SVOp->getOperand(1);
22101   EVT VT = SVOp->getValueType(0);
22102   unsigned NumElems = VT.getVectorNumElements();
22103
22104   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
22105       V2.getOpcode() == ISD::CONCAT_VECTORS) {
22106     //
22107     //                   0,0,0,...
22108     //                      |
22109     //    V      UNDEF    BUILD_VECTOR    UNDEF
22110     //     \      /           \           /
22111     //  CONCAT_VECTOR         CONCAT_VECTOR
22112     //         \                  /
22113     //          \                /
22114     //          RESULT: V + zero extended
22115     //
22116     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
22117         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
22118         V1.getOperand(1).getOpcode() != ISD::UNDEF)
22119       return SDValue();
22120
22121     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
22122       return SDValue();
22123
22124     // To match the shuffle mask, the first half of the mask should
22125     // be exactly the first vector, and all the rest a splat with the
22126     // first element of the second one.
22127     for (unsigned i = 0; i != NumElems/2; ++i)
22128       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
22129           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
22130         return SDValue();
22131
22132     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
22133     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
22134       if (Ld->hasNUsesOfValue(1, 0)) {
22135         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
22136         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
22137         SDValue ResNode =
22138           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
22139                                   Ld->getMemoryVT(),
22140                                   Ld->getPointerInfo(),
22141                                   Ld->getAlignment(),
22142                                   false/*isVolatile*/, true/*ReadMem*/,
22143                                   false/*WriteMem*/);
22144
22145         // Make sure the newly-created LOAD is in the same position as Ld in
22146         // terms of dependency. We create a TokenFactor for Ld and ResNode,
22147         // and update uses of Ld's output chain to use the TokenFactor.
22148         if (Ld->hasAnyUseOfValue(1)) {
22149           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
22150                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
22151           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
22152           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
22153                                  SDValue(ResNode.getNode(), 1));
22154         }
22155
22156         return DAG.getBitcast(VT, ResNode);
22157       }
22158     }
22159
22160     // Emit a zeroed vector and insert the desired subvector on its
22161     // first half.
22162     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
22163     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
22164     return DCI.CombineTo(N, InsV);
22165   }
22166
22167   //===--------------------------------------------------------------------===//
22168   // Combine some shuffles into subvector extracts and inserts:
22169   //
22170
22171   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
22172   if (isShuffleHigh128VectorInsertLow(SVOp)) {
22173     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
22174     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
22175     return DCI.CombineTo(N, InsV);
22176   }
22177
22178   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
22179   if (isShuffleLow128VectorInsertHigh(SVOp)) {
22180     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
22181     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
22182     return DCI.CombineTo(N, InsV);
22183   }
22184
22185   return SDValue();
22186 }
22187
22188 /// \brief Combine an arbitrary chain of shuffles into a single instruction if
22189 /// possible.
22190 ///
22191 /// This is the leaf of the recursive combinine below. When we have found some
22192 /// chain of single-use x86 shuffle instructions and accumulated the combined
22193 /// shuffle mask represented by them, this will try to pattern match that mask
22194 /// into either a single instruction if there is a special purpose instruction
22195 /// for this operation, or into a PSHUFB instruction which is a fully general
22196 /// instruction but should only be used to replace chains over a certain depth.
22197 static bool combineX86ShuffleChain(SDValue Op, SDValue Root, ArrayRef<int> Mask,
22198                                    int Depth, bool HasPSHUFB, SelectionDAG &DAG,
22199                                    TargetLowering::DAGCombinerInfo &DCI,
22200                                    const X86Subtarget *Subtarget) {
22201   assert(!Mask.empty() && "Cannot combine an empty shuffle mask!");
22202
22203   // Find the operand that enters the chain. Note that multiple uses are OK
22204   // here, we're not going to remove the operand we find.
22205   SDValue Input = Op.getOperand(0);
22206   while (Input.getOpcode() == ISD::BITCAST)
22207     Input = Input.getOperand(0);
22208
22209   MVT VT = Input.getSimpleValueType();
22210   MVT RootVT = Root.getSimpleValueType();
22211   SDLoc DL(Root);
22212
22213   if (Mask.size() == 1) {
22214     int Index = Mask[0];
22215     assert((Index >= 0 || Index == SM_SentinelUndef ||
22216             Index == SM_SentinelZero) &&
22217            "Invalid shuffle index found!");
22218
22219     // We may end up with an accumulated mask of size 1 as a result of
22220     // widening of shuffle operands (see function canWidenShuffleElements).
22221     // If the only shuffle index is equal to SM_SentinelZero then propagate
22222     // a zero vector. Otherwise, the combine shuffle mask is a no-op shuffle
22223     // mask, and therefore the entire chain of shuffles can be folded away.
22224     if (Index == SM_SentinelZero)
22225       DCI.CombineTo(Root.getNode(), getZeroVector(RootVT, Subtarget, DAG, DL));
22226     else
22227       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Input),
22228                     /*AddTo*/ true);
22229     return true;
22230   }
22231
22232   // Use the float domain if the operand type is a floating point type.
22233   bool FloatDomain = VT.isFloatingPoint();
22234
22235   // For floating point shuffles, we don't have free copies in the shuffle
22236   // instructions or the ability to load as part of the instruction, so
22237   // canonicalize their shuffles to UNPCK or MOV variants.
22238   //
22239   // Note that even with AVX we prefer the PSHUFD form of shuffle for integer
22240   // vectors because it can have a load folded into it that UNPCK cannot. This
22241   // doesn't preclude something switching to the shorter encoding post-RA.
22242   //
22243   // FIXME: Should teach these routines about AVX vector widths.
22244   if (FloatDomain && VT.getSizeInBits() == 128) {
22245     if (Mask.equals({0, 0}) || Mask.equals({1, 1})) {
22246       bool Lo = Mask.equals({0, 0});
22247       unsigned Shuffle;
22248       MVT ShuffleVT;
22249       // Check if we have SSE3 which will let us use MOVDDUP. That instruction
22250       // is no slower than UNPCKLPD but has the option to fold the input operand
22251       // into even an unaligned memory load.
22252       if (Lo && Subtarget->hasSSE3()) {
22253         Shuffle = X86ISD::MOVDDUP;
22254         ShuffleVT = MVT::v2f64;
22255       } else {
22256         // We have MOVLHPS and MOVHLPS throughout SSE and they encode smaller
22257         // than the UNPCK variants.
22258         Shuffle = Lo ? X86ISD::MOVLHPS : X86ISD::MOVHLPS;
22259         ShuffleVT = MVT::v4f32;
22260       }
22261       if (Depth == 1 && Root->getOpcode() == Shuffle)
22262         return false; // Nothing to do!
22263       Op = DAG.getBitcast(ShuffleVT, Input);
22264       DCI.AddToWorklist(Op.getNode());
22265       if (Shuffle == X86ISD::MOVDDUP)
22266         Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op);
22267       else
22268         Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
22269       DCI.AddToWorklist(Op.getNode());
22270       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
22271                     /*AddTo*/ true);
22272       return true;
22273     }
22274     if (Subtarget->hasSSE3() &&
22275         (Mask.equals({0, 0, 2, 2}) || Mask.equals({1, 1, 3, 3}))) {
22276       bool Lo = Mask.equals({0, 0, 2, 2});
22277       unsigned Shuffle = Lo ? X86ISD::MOVSLDUP : X86ISD::MOVSHDUP;
22278       MVT ShuffleVT = MVT::v4f32;
22279       if (Depth == 1 && Root->getOpcode() == Shuffle)
22280         return false; // Nothing to do!
22281       Op = DAG.getBitcast(ShuffleVT, Input);
22282       DCI.AddToWorklist(Op.getNode());
22283       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op);
22284       DCI.AddToWorklist(Op.getNode());
22285       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
22286                     /*AddTo*/ true);
22287       return true;
22288     }
22289     if (Mask.equals({0, 0, 1, 1}) || Mask.equals({2, 2, 3, 3})) {
22290       bool Lo = Mask.equals({0, 0, 1, 1});
22291       unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
22292       MVT ShuffleVT = MVT::v4f32;
22293       if (Depth == 1 && Root->getOpcode() == Shuffle)
22294         return false; // Nothing to do!
22295       Op = DAG.getBitcast(ShuffleVT, Input);
22296       DCI.AddToWorklist(Op.getNode());
22297       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
22298       DCI.AddToWorklist(Op.getNode());
22299       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
22300                     /*AddTo*/ true);
22301       return true;
22302     }
22303   }
22304
22305   // We always canonicalize the 8 x i16 and 16 x i8 shuffles into their UNPCK
22306   // variants as none of these have single-instruction variants that are
22307   // superior to the UNPCK formulation.
22308   if (!FloatDomain && VT.getSizeInBits() == 128 &&
22309       (Mask.equals({0, 0, 1, 1, 2, 2, 3, 3}) ||
22310        Mask.equals({4, 4, 5, 5, 6, 6, 7, 7}) ||
22311        Mask.equals({0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7}) ||
22312        Mask.equals(
22313            {8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15}))) {
22314     bool Lo = Mask[0] == 0;
22315     unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
22316     if (Depth == 1 && Root->getOpcode() == Shuffle)
22317       return false; // Nothing to do!
22318     MVT ShuffleVT;
22319     switch (Mask.size()) {
22320     case 8:
22321       ShuffleVT = MVT::v8i16;
22322       break;
22323     case 16:
22324       ShuffleVT = MVT::v16i8;
22325       break;
22326     default:
22327       llvm_unreachable("Impossible mask size!");
22328     };
22329     Op = DAG.getBitcast(ShuffleVT, Input);
22330     DCI.AddToWorklist(Op.getNode());
22331     Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
22332     DCI.AddToWorklist(Op.getNode());
22333     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
22334                   /*AddTo*/ true);
22335     return true;
22336   }
22337
22338   // Don't try to re-form single instruction chains under any circumstances now
22339   // that we've done encoding canonicalization for them.
22340   if (Depth < 2)
22341     return false;
22342
22343   // If we have 3 or more shuffle instructions or a chain involving PSHUFB, we
22344   // can replace them with a single PSHUFB instruction profitably. Intel's
22345   // manuals suggest only using PSHUFB if doing so replacing 5 instructions, but
22346   // in practice PSHUFB tends to be *very* fast so we're more aggressive.
22347   if ((Depth >= 3 || HasPSHUFB) && Subtarget->hasSSSE3()) {
22348     SmallVector<SDValue, 16> PSHUFBMask;
22349     int NumBytes = VT.getSizeInBits() / 8;
22350     int Ratio = NumBytes / Mask.size();
22351     for (int i = 0; i < NumBytes; ++i) {
22352       if (Mask[i / Ratio] == SM_SentinelUndef) {
22353         PSHUFBMask.push_back(DAG.getUNDEF(MVT::i8));
22354         continue;
22355       }
22356       int M = Mask[i / Ratio] != SM_SentinelZero
22357                   ? Ratio * Mask[i / Ratio] + i % Ratio
22358                   : 255;
22359       PSHUFBMask.push_back(DAG.getConstant(M, DL, MVT::i8));
22360     }
22361     MVT ByteVT = MVT::getVectorVT(MVT::i8, NumBytes);
22362     Op = DAG.getBitcast(ByteVT, Input);
22363     DCI.AddToWorklist(Op.getNode());
22364     SDValue PSHUFBMaskOp =
22365         DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVT, PSHUFBMask);
22366     DCI.AddToWorklist(PSHUFBMaskOp.getNode());
22367     Op = DAG.getNode(X86ISD::PSHUFB, DL, ByteVT, Op, PSHUFBMaskOp);
22368     DCI.AddToWorklist(Op.getNode());
22369     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
22370                   /*AddTo*/ true);
22371     return true;
22372   }
22373
22374   // Failed to find any combines.
22375   return false;
22376 }
22377
22378 /// \brief Fully generic combining of x86 shuffle instructions.
22379 ///
22380 /// This should be the last combine run over the x86 shuffle instructions. Once
22381 /// they have been fully optimized, this will recursively consider all chains
22382 /// of single-use shuffle instructions, build a generic model of the cumulative
22383 /// shuffle operation, and check for simpler instructions which implement this
22384 /// operation. We use this primarily for two purposes:
22385 ///
22386 /// 1) Collapse generic shuffles to specialized single instructions when
22387 ///    equivalent. In most cases, this is just an encoding size win, but
22388 ///    sometimes we will collapse multiple generic shuffles into a single
22389 ///    special-purpose shuffle.
22390 /// 2) Look for sequences of shuffle instructions with 3 or more total
22391 ///    instructions, and replace them with the slightly more expensive SSSE3
22392 ///    PSHUFB instruction if available. We do this as the last combining step
22393 ///    to ensure we avoid using PSHUFB if we can implement the shuffle with
22394 ///    a suitable short sequence of other instructions. The PHUFB will either
22395 ///    use a register or have to read from memory and so is slightly (but only
22396 ///    slightly) more expensive than the other shuffle instructions.
22397 ///
22398 /// Because this is inherently a quadratic operation (for each shuffle in
22399 /// a chain, we recurse up the chain), the depth is limited to 8 instructions.
22400 /// This should never be an issue in practice as the shuffle lowering doesn't
22401 /// produce sequences of more than 8 instructions.
22402 ///
22403 /// FIXME: We will currently miss some cases where the redundant shuffling
22404 /// would simplify under the threshold for PSHUFB formation because of
22405 /// combine-ordering. To fix this, we should do the redundant instruction
22406 /// combining in this recursive walk.
22407 static bool combineX86ShufflesRecursively(SDValue Op, SDValue Root,
22408                                           ArrayRef<int> RootMask,
22409                                           int Depth, bool HasPSHUFB,
22410                                           SelectionDAG &DAG,
22411                                           TargetLowering::DAGCombinerInfo &DCI,
22412                                           const X86Subtarget *Subtarget) {
22413   // Bound the depth of our recursive combine because this is ultimately
22414   // quadratic in nature.
22415   if (Depth > 8)
22416     return false;
22417
22418   // Directly rip through bitcasts to find the underlying operand.
22419   while (Op.getOpcode() == ISD::BITCAST && Op.getOperand(0).hasOneUse())
22420     Op = Op.getOperand(0);
22421
22422   MVT VT = Op.getSimpleValueType();
22423   if (!VT.isVector())
22424     return false; // Bail if we hit a non-vector.
22425
22426   assert(Root.getSimpleValueType().isVector() &&
22427          "Shuffles operate on vector types!");
22428   assert(VT.getSizeInBits() == Root.getSimpleValueType().getSizeInBits() &&
22429          "Can only combine shuffles of the same vector register size.");
22430
22431   if (!isTargetShuffle(Op.getOpcode()))
22432     return false;
22433   SmallVector<int, 16> OpMask;
22434   bool IsUnary;
22435   bool HaveMask = getTargetShuffleMask(Op.getNode(), VT, OpMask, IsUnary);
22436   // We only can combine unary shuffles which we can decode the mask for.
22437   if (!HaveMask || !IsUnary)
22438     return false;
22439
22440   assert(VT.getVectorNumElements() == OpMask.size() &&
22441          "Different mask size from vector size!");
22442   assert(((RootMask.size() > OpMask.size() &&
22443            RootMask.size() % OpMask.size() == 0) ||
22444           (OpMask.size() > RootMask.size() &&
22445            OpMask.size() % RootMask.size() == 0) ||
22446           OpMask.size() == RootMask.size()) &&
22447          "The smaller number of elements must divide the larger.");
22448   int RootRatio = std::max<int>(1, OpMask.size() / RootMask.size());
22449   int OpRatio = std::max<int>(1, RootMask.size() / OpMask.size());
22450   assert(((RootRatio == 1 && OpRatio == 1) ||
22451           (RootRatio == 1) != (OpRatio == 1)) &&
22452          "Must not have a ratio for both incoming and op masks!");
22453
22454   SmallVector<int, 16> Mask;
22455   Mask.reserve(std::max(OpMask.size(), RootMask.size()));
22456
22457   // Merge this shuffle operation's mask into our accumulated mask. Note that
22458   // this shuffle's mask will be the first applied to the input, followed by the
22459   // root mask to get us all the way to the root value arrangement. The reason
22460   // for this order is that we are recursing up the operation chain.
22461   for (int i = 0, e = std::max(OpMask.size(), RootMask.size()); i < e; ++i) {
22462     int RootIdx = i / RootRatio;
22463     if (RootMask[RootIdx] < 0) {
22464       // This is a zero or undef lane, we're done.
22465       Mask.push_back(RootMask[RootIdx]);
22466       continue;
22467     }
22468
22469     int RootMaskedIdx = RootMask[RootIdx] * RootRatio + i % RootRatio;
22470     int OpIdx = RootMaskedIdx / OpRatio;
22471     if (OpMask[OpIdx] < 0) {
22472       // The incoming lanes are zero or undef, it doesn't matter which ones we
22473       // are using.
22474       Mask.push_back(OpMask[OpIdx]);
22475       continue;
22476     }
22477
22478     // Ok, we have non-zero lanes, map them through.
22479     Mask.push_back(OpMask[OpIdx] * OpRatio +
22480                    RootMaskedIdx % OpRatio);
22481   }
22482
22483   // See if we can recurse into the operand to combine more things.
22484   switch (Op.getOpcode()) {
22485   case X86ISD::PSHUFB:
22486     HasPSHUFB = true;
22487   case X86ISD::PSHUFD:
22488   case X86ISD::PSHUFHW:
22489   case X86ISD::PSHUFLW:
22490     if (Op.getOperand(0).hasOneUse() &&
22491         combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
22492                                       HasPSHUFB, DAG, DCI, Subtarget))
22493       return true;
22494     break;
22495
22496   case X86ISD::UNPCKL:
22497   case X86ISD::UNPCKH:
22498     assert(Op.getOperand(0) == Op.getOperand(1) &&
22499            "We only combine unary shuffles!");
22500     // We can't check for single use, we have to check that this shuffle is the
22501     // only user.
22502     if (Op->isOnlyUserOf(Op.getOperand(0).getNode()) &&
22503         combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
22504                                       HasPSHUFB, DAG, DCI, Subtarget))
22505       return true;
22506     break;
22507   }
22508
22509   // Minor canonicalization of the accumulated shuffle mask to make it easier
22510   // to match below. All this does is detect masks with squential pairs of
22511   // elements, and shrink them to the half-width mask. It does this in a loop
22512   // so it will reduce the size of the mask to the minimal width mask which
22513   // performs an equivalent shuffle.
22514   SmallVector<int, 16> WidenedMask;
22515   while (Mask.size() > 1 && canWidenShuffleElements(Mask, WidenedMask)) {
22516     Mask = std::move(WidenedMask);
22517     WidenedMask.clear();
22518   }
22519
22520   return combineX86ShuffleChain(Op, Root, Mask, Depth, HasPSHUFB, DAG, DCI,
22521                                 Subtarget);
22522 }
22523
22524 /// \brief Get the PSHUF-style mask from PSHUF node.
22525 ///
22526 /// This is a very minor wrapper around getTargetShuffleMask to easy forming v4
22527 /// PSHUF-style masks that can be reused with such instructions.
22528 static SmallVector<int, 4> getPSHUFShuffleMask(SDValue N) {
22529   MVT VT = N.getSimpleValueType();
22530   SmallVector<int, 4> Mask;
22531   bool IsUnary;
22532   bool HaveMask = getTargetShuffleMask(N.getNode(), VT, Mask, IsUnary);
22533   (void)HaveMask;
22534   assert(HaveMask);
22535
22536   // If we have more than 128-bits, only the low 128-bits of shuffle mask
22537   // matter. Check that the upper masks are repeats and remove them.
22538   if (VT.getSizeInBits() > 128) {
22539     int LaneElts = 128 / VT.getScalarSizeInBits();
22540 #ifndef NDEBUG
22541     for (int i = 1, NumLanes = VT.getSizeInBits() / 128; i < NumLanes; ++i)
22542       for (int j = 0; j < LaneElts; ++j)
22543         assert(Mask[j] == Mask[i * LaneElts + j] - (LaneElts * i) &&
22544                "Mask doesn't repeat in high 128-bit lanes!");
22545 #endif
22546     Mask.resize(LaneElts);
22547   }
22548
22549   switch (N.getOpcode()) {
22550   case X86ISD::PSHUFD:
22551     return Mask;
22552   case X86ISD::PSHUFLW:
22553     Mask.resize(4);
22554     return Mask;
22555   case X86ISD::PSHUFHW:
22556     Mask.erase(Mask.begin(), Mask.begin() + 4);
22557     for (int &M : Mask)
22558       M -= 4;
22559     return Mask;
22560   default:
22561     llvm_unreachable("No valid shuffle instruction found!");
22562   }
22563 }
22564
22565 /// \brief Search for a combinable shuffle across a chain ending in pshufd.
22566 ///
22567 /// We walk up the chain and look for a combinable shuffle, skipping over
22568 /// shuffles that we could hoist this shuffle's transformation past without
22569 /// altering anything.
22570 static SDValue
22571 combineRedundantDWordShuffle(SDValue N, MutableArrayRef<int> Mask,
22572                              SelectionDAG &DAG,
22573                              TargetLowering::DAGCombinerInfo &DCI) {
22574   assert(N.getOpcode() == X86ISD::PSHUFD &&
22575          "Called with something other than an x86 128-bit half shuffle!");
22576   SDLoc DL(N);
22577
22578   // Walk up a single-use chain looking for a combinable shuffle. Keep a stack
22579   // of the shuffles in the chain so that we can form a fresh chain to replace
22580   // this one.
22581   SmallVector<SDValue, 8> Chain;
22582   SDValue V = N.getOperand(0);
22583   for (; V.hasOneUse(); V = V.getOperand(0)) {
22584     switch (V.getOpcode()) {
22585     default:
22586       return SDValue(); // Nothing combined!
22587
22588     case ISD::BITCAST:
22589       // Skip bitcasts as we always know the type for the target specific
22590       // instructions.
22591       continue;
22592
22593     case X86ISD::PSHUFD:
22594       // Found another dword shuffle.
22595       break;
22596
22597     case X86ISD::PSHUFLW:
22598       // Check that the low words (being shuffled) are the identity in the
22599       // dword shuffle, and the high words are self-contained.
22600       if (Mask[0] != 0 || Mask[1] != 1 ||
22601           !(Mask[2] >= 2 && Mask[2] < 4 && Mask[3] >= 2 && Mask[3] < 4))
22602         return SDValue();
22603
22604       Chain.push_back(V);
22605       continue;
22606
22607     case X86ISD::PSHUFHW:
22608       // Check that the high words (being shuffled) are the identity in the
22609       // dword shuffle, and the low words are self-contained.
22610       if (Mask[2] != 2 || Mask[3] != 3 ||
22611           !(Mask[0] >= 0 && Mask[0] < 2 && Mask[1] >= 0 && Mask[1] < 2))
22612         return SDValue();
22613
22614       Chain.push_back(V);
22615       continue;
22616
22617     case X86ISD::UNPCKL:
22618     case X86ISD::UNPCKH:
22619       // For either i8 -> i16 or i16 -> i32 unpacks, we can combine a dword
22620       // shuffle into a preceding word shuffle.
22621       if (V.getSimpleValueType().getScalarType() != MVT::i8 &&
22622           V.getSimpleValueType().getScalarType() != MVT::i16)
22623         return SDValue();
22624
22625       // Search for a half-shuffle which we can combine with.
22626       unsigned CombineOp =
22627           V.getOpcode() == X86ISD::UNPCKL ? X86ISD::PSHUFLW : X86ISD::PSHUFHW;
22628       if (V.getOperand(0) != V.getOperand(1) ||
22629           !V->isOnlyUserOf(V.getOperand(0).getNode()))
22630         return SDValue();
22631       Chain.push_back(V);
22632       V = V.getOperand(0);
22633       do {
22634         switch (V.getOpcode()) {
22635         default:
22636           return SDValue(); // Nothing to combine.
22637
22638         case X86ISD::PSHUFLW:
22639         case X86ISD::PSHUFHW:
22640           if (V.getOpcode() == CombineOp)
22641             break;
22642
22643           Chain.push_back(V);
22644
22645           // Fallthrough!
22646         case ISD::BITCAST:
22647           V = V.getOperand(0);
22648           continue;
22649         }
22650         break;
22651       } while (V.hasOneUse());
22652       break;
22653     }
22654     // Break out of the loop if we break out of the switch.
22655     break;
22656   }
22657
22658   if (!V.hasOneUse())
22659     // We fell out of the loop without finding a viable combining instruction.
22660     return SDValue();
22661
22662   // Merge this node's mask and our incoming mask.
22663   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
22664   for (int &M : Mask)
22665     M = VMask[M];
22666   V = DAG.getNode(V.getOpcode(), DL, V.getValueType(), V.getOperand(0),
22667                   getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
22668
22669   // Rebuild the chain around this new shuffle.
22670   while (!Chain.empty()) {
22671     SDValue W = Chain.pop_back_val();
22672
22673     if (V.getValueType() != W.getOperand(0).getValueType())
22674       V = DAG.getBitcast(W.getOperand(0).getValueType(), V);
22675
22676     switch (W.getOpcode()) {
22677     default:
22678       llvm_unreachable("Only PSHUF and UNPCK instructions get here!");
22679
22680     case X86ISD::UNPCKL:
22681     case X86ISD::UNPCKH:
22682       V = DAG.getNode(W.getOpcode(), DL, W.getValueType(), V, V);
22683       break;
22684
22685     case X86ISD::PSHUFD:
22686     case X86ISD::PSHUFLW:
22687     case X86ISD::PSHUFHW:
22688       V = DAG.getNode(W.getOpcode(), DL, W.getValueType(), V, W.getOperand(1));
22689       break;
22690     }
22691   }
22692   if (V.getValueType() != N.getValueType())
22693     V = DAG.getBitcast(N.getValueType(), V);
22694
22695   // Return the new chain to replace N.
22696   return V;
22697 }
22698
22699 /// \brief Search for a combinable shuffle across a chain ending in pshuflw or
22700 /// pshufhw.
22701 ///
22702 /// We walk up the chain, skipping shuffles of the other half and looking
22703 /// through shuffles which switch halves trying to find a shuffle of the same
22704 /// pair of dwords.
22705 static bool combineRedundantHalfShuffle(SDValue N, MutableArrayRef<int> Mask,
22706                                         SelectionDAG &DAG,
22707                                         TargetLowering::DAGCombinerInfo &DCI) {
22708   assert(
22709       (N.getOpcode() == X86ISD::PSHUFLW || N.getOpcode() == X86ISD::PSHUFHW) &&
22710       "Called with something other than an x86 128-bit half shuffle!");
22711   SDLoc DL(N);
22712   unsigned CombineOpcode = N.getOpcode();
22713
22714   // Walk up a single-use chain looking for a combinable shuffle.
22715   SDValue V = N.getOperand(0);
22716   for (; V.hasOneUse(); V = V.getOperand(0)) {
22717     switch (V.getOpcode()) {
22718     default:
22719       return false; // Nothing combined!
22720
22721     case ISD::BITCAST:
22722       // Skip bitcasts as we always know the type for the target specific
22723       // instructions.
22724       continue;
22725
22726     case X86ISD::PSHUFLW:
22727     case X86ISD::PSHUFHW:
22728       if (V.getOpcode() == CombineOpcode)
22729         break;
22730
22731       // Other-half shuffles are no-ops.
22732       continue;
22733     }
22734     // Break out of the loop if we break out of the switch.
22735     break;
22736   }
22737
22738   if (!V.hasOneUse())
22739     // We fell out of the loop without finding a viable combining instruction.
22740     return false;
22741
22742   // Combine away the bottom node as its shuffle will be accumulated into
22743   // a preceding shuffle.
22744   DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
22745
22746   // Record the old value.
22747   SDValue Old = V;
22748
22749   // Merge this node's mask and our incoming mask (adjusted to account for all
22750   // the pshufd instructions encountered).
22751   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
22752   for (int &M : Mask)
22753     M = VMask[M];
22754   V = DAG.getNode(V.getOpcode(), DL, MVT::v8i16, V.getOperand(0),
22755                   getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
22756
22757   // Check that the shuffles didn't cancel each other out. If not, we need to
22758   // combine to the new one.
22759   if (Old != V)
22760     // Replace the combinable shuffle with the combined one, updating all users
22761     // so that we re-evaluate the chain here.
22762     DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
22763
22764   return true;
22765 }
22766
22767 /// \brief Try to combine x86 target specific shuffles.
22768 static SDValue PerformTargetShuffleCombine(SDValue N, SelectionDAG &DAG,
22769                                            TargetLowering::DAGCombinerInfo &DCI,
22770                                            const X86Subtarget *Subtarget) {
22771   SDLoc DL(N);
22772   MVT VT = N.getSimpleValueType();
22773   SmallVector<int, 4> Mask;
22774
22775   switch (N.getOpcode()) {
22776   case X86ISD::PSHUFD:
22777   case X86ISD::PSHUFLW:
22778   case X86ISD::PSHUFHW:
22779     Mask = getPSHUFShuffleMask(N);
22780     assert(Mask.size() == 4);
22781     break;
22782   default:
22783     return SDValue();
22784   }
22785
22786   // Nuke no-op shuffles that show up after combining.
22787   if (isNoopShuffleMask(Mask))
22788     return DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
22789
22790   // Look for simplifications involving one or two shuffle instructions.
22791   SDValue V = N.getOperand(0);
22792   switch (N.getOpcode()) {
22793   default:
22794     break;
22795   case X86ISD::PSHUFLW:
22796   case X86ISD::PSHUFHW:
22797     assert(VT.getScalarType() == MVT::i16 && "Bad word shuffle type!");
22798
22799     if (combineRedundantHalfShuffle(N, Mask, DAG, DCI))
22800       return SDValue(); // We combined away this shuffle, so we're done.
22801
22802     // See if this reduces to a PSHUFD which is no more expensive and can
22803     // combine with more operations. Note that it has to at least flip the
22804     // dwords as otherwise it would have been removed as a no-op.
22805     if (makeArrayRef(Mask).equals({2, 3, 0, 1})) {
22806       int DMask[] = {0, 1, 2, 3};
22807       int DOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 2;
22808       DMask[DOffset + 0] = DOffset + 1;
22809       DMask[DOffset + 1] = DOffset + 0;
22810       MVT DVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() / 2);
22811       V = DAG.getBitcast(DVT, V);
22812       DCI.AddToWorklist(V.getNode());
22813       V = DAG.getNode(X86ISD::PSHUFD, DL, DVT, V,
22814                       getV4X86ShuffleImm8ForMask(DMask, DL, DAG));
22815       DCI.AddToWorklist(V.getNode());
22816       return DAG.getBitcast(VT, V);
22817     }
22818
22819     // Look for shuffle patterns which can be implemented as a single unpack.
22820     // FIXME: This doesn't handle the location of the PSHUFD generically, and
22821     // only works when we have a PSHUFD followed by two half-shuffles.
22822     if (Mask[0] == Mask[1] && Mask[2] == Mask[3] &&
22823         (V.getOpcode() == X86ISD::PSHUFLW ||
22824          V.getOpcode() == X86ISD::PSHUFHW) &&
22825         V.getOpcode() != N.getOpcode() &&
22826         V.hasOneUse()) {
22827       SDValue D = V.getOperand(0);
22828       while (D.getOpcode() == ISD::BITCAST && D.hasOneUse())
22829         D = D.getOperand(0);
22830       if (D.getOpcode() == X86ISD::PSHUFD && D.hasOneUse()) {
22831         SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
22832         SmallVector<int, 4> DMask = getPSHUFShuffleMask(D);
22833         int NOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
22834         int VOffset = V.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
22835         int WordMask[8];
22836         for (int i = 0; i < 4; ++i) {
22837           WordMask[i + NOffset] = Mask[i] + NOffset;
22838           WordMask[i + VOffset] = VMask[i] + VOffset;
22839         }
22840         // Map the word mask through the DWord mask.
22841         int MappedMask[8];
22842         for (int i = 0; i < 8; ++i)
22843           MappedMask[i] = 2 * DMask[WordMask[i] / 2] + WordMask[i] % 2;
22844         if (makeArrayRef(MappedMask).equals({0, 0, 1, 1, 2, 2, 3, 3}) ||
22845             makeArrayRef(MappedMask).equals({4, 4, 5, 5, 6, 6, 7, 7})) {
22846           // We can replace all three shuffles with an unpack.
22847           V = DAG.getBitcast(VT, D.getOperand(0));
22848           DCI.AddToWorklist(V.getNode());
22849           return DAG.getNode(MappedMask[0] == 0 ? X86ISD::UNPCKL
22850                                                 : X86ISD::UNPCKH,
22851                              DL, VT, V, V);
22852         }
22853       }
22854     }
22855
22856     break;
22857
22858   case X86ISD::PSHUFD:
22859     if (SDValue NewN = combineRedundantDWordShuffle(N, Mask, DAG, DCI))
22860       return NewN;
22861
22862     break;
22863   }
22864
22865   return SDValue();
22866 }
22867
22868 /// \brief Try to combine a shuffle into a target-specific add-sub node.
22869 ///
22870 /// We combine this directly on the abstract vector shuffle nodes so it is
22871 /// easier to generically match. We also insert dummy vector shuffle nodes for
22872 /// the operands which explicitly discard the lanes which are unused by this
22873 /// operation to try to flow through the rest of the combiner the fact that
22874 /// they're unused.
22875 static SDValue combineShuffleToAddSub(SDNode *N, SelectionDAG &DAG) {
22876   SDLoc DL(N);
22877   EVT VT = N->getValueType(0);
22878
22879   // We only handle target-independent shuffles.
22880   // FIXME: It would be easy and harmless to use the target shuffle mask
22881   // extraction tool to support more.
22882   if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
22883     return SDValue();
22884
22885   auto *SVN = cast<ShuffleVectorSDNode>(N);
22886   ArrayRef<int> Mask = SVN->getMask();
22887   SDValue V1 = N->getOperand(0);
22888   SDValue V2 = N->getOperand(1);
22889
22890   // We require the first shuffle operand to be the SUB node, and the second to
22891   // be the ADD node.
22892   // FIXME: We should support the commuted patterns.
22893   if (V1->getOpcode() != ISD::FSUB || V2->getOpcode() != ISD::FADD)
22894     return SDValue();
22895
22896   // If there are other uses of these operations we can't fold them.
22897   if (!V1->hasOneUse() || !V2->hasOneUse())
22898     return SDValue();
22899
22900   // Ensure that both operations have the same operands. Note that we can
22901   // commute the FADD operands.
22902   SDValue LHS = V1->getOperand(0), RHS = V1->getOperand(1);
22903   if ((V2->getOperand(0) != LHS || V2->getOperand(1) != RHS) &&
22904       (V2->getOperand(0) != RHS || V2->getOperand(1) != LHS))
22905     return SDValue();
22906
22907   // We're looking for blends between FADD and FSUB nodes. We insist on these
22908   // nodes being lined up in a specific expected pattern.
22909   if (!(isShuffleEquivalent(V1, V2, Mask, {0, 3}) ||
22910         isShuffleEquivalent(V1, V2, Mask, {0, 5, 2, 7}) ||
22911         isShuffleEquivalent(V1, V2, Mask, {0, 9, 2, 11, 4, 13, 6, 15})))
22912     return SDValue();
22913
22914   // Only specific types are legal at this point, assert so we notice if and
22915   // when these change.
22916   assert((VT == MVT::v4f32 || VT == MVT::v2f64 || VT == MVT::v8f32 ||
22917           VT == MVT::v4f64) &&
22918          "Unknown vector type encountered!");
22919
22920   return DAG.getNode(X86ISD::ADDSUB, DL, VT, LHS, RHS);
22921 }
22922
22923 /// PerformShuffleCombine - Performs several different shuffle combines.
22924 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
22925                                      TargetLowering::DAGCombinerInfo &DCI,
22926                                      const X86Subtarget *Subtarget) {
22927   SDLoc dl(N);
22928   SDValue N0 = N->getOperand(0);
22929   SDValue N1 = N->getOperand(1);
22930   EVT VT = N->getValueType(0);
22931
22932   // Don't create instructions with illegal types after legalize types has run.
22933   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22934   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
22935     return SDValue();
22936
22937   // If we have legalized the vector types, look for blends of FADD and FSUB
22938   // nodes that we can fuse into an ADDSUB node.
22939   if (TLI.isTypeLegal(VT) && Subtarget->hasSSE3())
22940     if (SDValue AddSub = combineShuffleToAddSub(N, DAG))
22941       return AddSub;
22942
22943   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
22944   if (Subtarget->hasFp256() && VT.is256BitVector() &&
22945       N->getOpcode() == ISD::VECTOR_SHUFFLE)
22946     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
22947
22948   // During Type Legalization, when promoting illegal vector types,
22949   // the backend might introduce new shuffle dag nodes and bitcasts.
22950   //
22951   // This code performs the following transformation:
22952   // fold: (shuffle (bitcast (BINOP A, B)), Undef, <Mask>) ->
22953   //       (shuffle (BINOP (bitcast A), (bitcast B)), Undef, <Mask>)
22954   //
22955   // We do this only if both the bitcast and the BINOP dag nodes have
22956   // one use. Also, perform this transformation only if the new binary
22957   // operation is legal. This is to avoid introducing dag nodes that
22958   // potentially need to be further expanded (or custom lowered) into a
22959   // less optimal sequence of dag nodes.
22960   if (!DCI.isBeforeLegalize() && DCI.isBeforeLegalizeOps() &&
22961       N1.getOpcode() == ISD::UNDEF && N0.hasOneUse() &&
22962       N0.getOpcode() == ISD::BITCAST) {
22963     SDValue BC0 = N0.getOperand(0);
22964     EVT SVT = BC0.getValueType();
22965     unsigned Opcode = BC0.getOpcode();
22966     unsigned NumElts = VT.getVectorNumElements();
22967
22968     if (BC0.hasOneUse() && SVT.isVector() &&
22969         SVT.getVectorNumElements() * 2 == NumElts &&
22970         TLI.isOperationLegal(Opcode, VT)) {
22971       bool CanFold = false;
22972       switch (Opcode) {
22973       default : break;
22974       case ISD::ADD :
22975       case ISD::FADD :
22976       case ISD::SUB :
22977       case ISD::FSUB :
22978       case ISD::MUL :
22979       case ISD::FMUL :
22980         CanFold = true;
22981       }
22982
22983       unsigned SVTNumElts = SVT.getVectorNumElements();
22984       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
22985       for (unsigned i = 0, e = SVTNumElts; i != e && CanFold; ++i)
22986         CanFold = SVOp->getMaskElt(i) == (int)(i * 2);
22987       for (unsigned i = SVTNumElts, e = NumElts; i != e && CanFold; ++i)
22988         CanFold = SVOp->getMaskElt(i) < 0;
22989
22990       if (CanFold) {
22991         SDValue BC00 = DAG.getBitcast(VT, BC0.getOperand(0));
22992         SDValue BC01 = DAG.getBitcast(VT, BC0.getOperand(1));
22993         SDValue NewBinOp = DAG.getNode(BC0.getOpcode(), dl, VT, BC00, BC01);
22994         return DAG.getVectorShuffle(VT, dl, NewBinOp, N1, &SVOp->getMask()[0]);
22995       }
22996     }
22997   }
22998
22999   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
23000   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
23001   // consecutive, non-overlapping, and in the right order.
23002   SmallVector<SDValue, 16> Elts;
23003   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
23004     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
23005
23006   if (SDValue LD = EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true))
23007     return LD;
23008
23009   if (isTargetShuffle(N->getOpcode())) {
23010     SDValue Shuffle =
23011         PerformTargetShuffleCombine(SDValue(N, 0), DAG, DCI, Subtarget);
23012     if (Shuffle.getNode())
23013       return Shuffle;
23014
23015     // Try recursively combining arbitrary sequences of x86 shuffle
23016     // instructions into higher-order shuffles. We do this after combining
23017     // specific PSHUF instruction sequences into their minimal form so that we
23018     // can evaluate how many specialized shuffle instructions are involved in
23019     // a particular chain.
23020     SmallVector<int, 1> NonceMask; // Just a placeholder.
23021     NonceMask.push_back(0);
23022     if (combineX86ShufflesRecursively(SDValue(N, 0), SDValue(N, 0), NonceMask,
23023                                       /*Depth*/ 1, /*HasPSHUFB*/ false, DAG,
23024                                       DCI, Subtarget))
23025       return SDValue(); // This routine will use CombineTo to replace N.
23026   }
23027
23028   return SDValue();
23029 }
23030
23031 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
23032 /// specific shuffle of a load can be folded into a single element load.
23033 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
23034 /// shuffles have been custom lowered so we need to handle those here.
23035 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
23036                                          TargetLowering::DAGCombinerInfo &DCI) {
23037   if (DCI.isBeforeLegalizeOps())
23038     return SDValue();
23039
23040   SDValue InVec = N->getOperand(0);
23041   SDValue EltNo = N->getOperand(1);
23042
23043   if (!isa<ConstantSDNode>(EltNo))
23044     return SDValue();
23045
23046   EVT OriginalVT = InVec.getValueType();
23047
23048   if (InVec.getOpcode() == ISD::BITCAST) {
23049     // Don't duplicate a load with other uses.
23050     if (!InVec.hasOneUse())
23051       return SDValue();
23052     EVT BCVT = InVec.getOperand(0).getValueType();
23053     if (!BCVT.isVector() ||
23054         BCVT.getVectorNumElements() != OriginalVT.getVectorNumElements())
23055       return SDValue();
23056     InVec = InVec.getOperand(0);
23057   }
23058
23059   EVT CurrentVT = InVec.getValueType();
23060
23061   if (!isTargetShuffle(InVec.getOpcode()))
23062     return SDValue();
23063
23064   // Don't duplicate a load with other uses.
23065   if (!InVec.hasOneUse())
23066     return SDValue();
23067
23068   SmallVector<int, 16> ShuffleMask;
23069   bool UnaryShuffle;
23070   if (!getTargetShuffleMask(InVec.getNode(), CurrentVT.getSimpleVT(),
23071                             ShuffleMask, UnaryShuffle))
23072     return SDValue();
23073
23074   // Select the input vector, guarding against out of range extract vector.
23075   unsigned NumElems = CurrentVT.getVectorNumElements();
23076   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
23077   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
23078   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
23079                                          : InVec.getOperand(1);
23080
23081   // If inputs to shuffle are the same for both ops, then allow 2 uses
23082   unsigned AllowedUses = InVec.getNumOperands() > 1 &&
23083                          InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
23084
23085   if (LdNode.getOpcode() == ISD::BITCAST) {
23086     // Don't duplicate a load with other uses.
23087     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
23088       return SDValue();
23089
23090     AllowedUses = 1; // only allow 1 load use if we have a bitcast
23091     LdNode = LdNode.getOperand(0);
23092   }
23093
23094   if (!ISD::isNormalLoad(LdNode.getNode()))
23095     return SDValue();
23096
23097   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
23098
23099   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
23100     return SDValue();
23101
23102   EVT EltVT = N->getValueType(0);
23103   // If there's a bitcast before the shuffle, check if the load type and
23104   // alignment is valid.
23105   unsigned Align = LN0->getAlignment();
23106   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23107   unsigned NewAlign = DAG.getDataLayout().getABITypeAlignment(
23108       EltVT.getTypeForEVT(*DAG.getContext()));
23109
23110   if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, EltVT))
23111     return SDValue();
23112
23113   // All checks match so transform back to vector_shuffle so that DAG combiner
23114   // can finish the job
23115   SDLoc dl(N);
23116
23117   // Create shuffle node taking into account the case that its a unary shuffle
23118   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(CurrentVT)
23119                                    : InVec.getOperand(1);
23120   Shuffle = DAG.getVectorShuffle(CurrentVT, dl,
23121                                  InVec.getOperand(0), Shuffle,
23122                                  &ShuffleMask[0]);
23123   Shuffle = DAG.getBitcast(OriginalVT, Shuffle);
23124   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
23125                      EltNo);
23126 }
23127
23128 /// \brief Detect bitcasts between i32 to x86mmx low word. Since MMX types are
23129 /// special and don't usually play with other vector types, it's better to
23130 /// handle them early to be sure we emit efficient code by avoiding
23131 /// store-load conversions.
23132 static SDValue PerformBITCASTCombine(SDNode *N, SelectionDAG &DAG) {
23133   if (N->getValueType(0) != MVT::x86mmx ||
23134       N->getOperand(0)->getOpcode() != ISD::BUILD_VECTOR ||
23135       N->getOperand(0)->getValueType(0) != MVT::v2i32)
23136     return SDValue();
23137
23138   SDValue V = N->getOperand(0);
23139   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V.getOperand(1));
23140   if (C && C->getZExtValue() == 0 && V.getOperand(0).getValueType() == MVT::i32)
23141     return DAG.getNode(X86ISD::MMX_MOVW2D, SDLoc(V.getOperand(0)),
23142                        N->getValueType(0), V.getOperand(0));
23143
23144   return SDValue();
23145 }
23146
23147 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
23148 /// generation and convert it from being a bunch of shuffles and extracts
23149 /// into a somewhat faster sequence. For i686, the best sequence is apparently
23150 /// storing the value and loading scalars back, while for x64 we should
23151 /// use 64-bit extracts and shifts.
23152 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
23153                                          TargetLowering::DAGCombinerInfo &DCI) {
23154   if (SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI))
23155     return NewOp;
23156
23157   SDValue InputVector = N->getOperand(0);
23158   SDLoc dl(InputVector);
23159   // Detect mmx to i32 conversion through a v2i32 elt extract.
23160   if (InputVector.getOpcode() == ISD::BITCAST && InputVector.hasOneUse() &&
23161       N->getValueType(0) == MVT::i32 &&
23162       InputVector.getValueType() == MVT::v2i32) {
23163
23164     // The bitcast source is a direct mmx result.
23165     SDValue MMXSrc = InputVector.getNode()->getOperand(0);
23166     if (MMXSrc.getValueType() == MVT::x86mmx)
23167       return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
23168                          N->getValueType(0),
23169                          InputVector.getNode()->getOperand(0));
23170
23171     // The mmx is indirect: (i64 extract_elt (v1i64 bitcast (x86mmx ...))).
23172     if (MMXSrc.getOpcode() == ISD::EXTRACT_VECTOR_ELT && MMXSrc.hasOneUse() &&
23173         MMXSrc.getValueType() == MVT::i64) {
23174       SDValue MMXSrcOp = MMXSrc.getOperand(0);
23175       if (MMXSrcOp.hasOneUse() && MMXSrcOp.getOpcode() == ISD::BITCAST &&
23176           MMXSrcOp.getValueType() == MVT::v1i64 &&
23177           MMXSrcOp.getOperand(0).getValueType() == MVT::x86mmx)
23178         return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
23179                            N->getValueType(0), MMXSrcOp.getOperand(0));
23180     }
23181   }
23182
23183   EVT VT = N->getValueType(0);
23184
23185   if (VT == MVT::i1 && dyn_cast<ConstantSDNode>(N->getOperand(1)) &&
23186       InputVector.getOpcode() == ISD::BITCAST &&
23187       dyn_cast<ConstantSDNode>(InputVector.getOperand(0))) {
23188     uint64_t ExtractedElt =
23189         cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
23190     uint64_t InputValue =
23191         cast<ConstantSDNode>(InputVector.getOperand(0))->getZExtValue();
23192     uint64_t Res = (InputValue >> ExtractedElt) & 1;
23193     return DAG.getConstant(Res, dl, MVT::i1);
23194   }
23195   // Only operate on vectors of 4 elements, where the alternative shuffling
23196   // gets to be more expensive.
23197   if (InputVector.getValueType() != MVT::v4i32)
23198     return SDValue();
23199
23200   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
23201   // single use which is a sign-extend or zero-extend, and all elements are
23202   // used.
23203   SmallVector<SDNode *, 4> Uses;
23204   unsigned ExtractedElements = 0;
23205   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
23206        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
23207     if (UI.getUse().getResNo() != InputVector.getResNo())
23208       return SDValue();
23209
23210     SDNode *Extract = *UI;
23211     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
23212       return SDValue();
23213
23214     if (Extract->getValueType(0) != MVT::i32)
23215       return SDValue();
23216     if (!Extract->hasOneUse())
23217       return SDValue();
23218     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
23219         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
23220       return SDValue();
23221     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
23222       return SDValue();
23223
23224     // Record which element was extracted.
23225     ExtractedElements |=
23226       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
23227
23228     Uses.push_back(Extract);
23229   }
23230
23231   // If not all the elements were used, this may not be worthwhile.
23232   if (ExtractedElements != 15)
23233     return SDValue();
23234
23235   // Ok, we've now decided to do the transformation.
23236   // If 64-bit shifts are legal, use the extract-shift sequence,
23237   // otherwise bounce the vector off the cache.
23238   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23239   SDValue Vals[4];
23240
23241   if (TLI.isOperationLegal(ISD::SRA, MVT::i64)) {
23242     SDValue Cst = DAG.getBitcast(MVT::v2i64, InputVector);
23243     auto &DL = DAG.getDataLayout();
23244     EVT VecIdxTy = DAG.getTargetLoweringInfo().getVectorIdxTy(DL);
23245     SDValue BottomHalf = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Cst,
23246       DAG.getConstant(0, dl, VecIdxTy));
23247     SDValue TopHalf = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Cst,
23248       DAG.getConstant(1, dl, VecIdxTy));
23249
23250     SDValue ShAmt = DAG.getConstant(
23251         32, dl, DAG.getTargetLoweringInfo().getShiftAmountTy(MVT::i64, DL));
23252     Vals[0] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BottomHalf);
23253     Vals[1] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
23254       DAG.getNode(ISD::SRA, dl, MVT::i64, BottomHalf, ShAmt));
23255     Vals[2] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, TopHalf);
23256     Vals[3] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
23257       DAG.getNode(ISD::SRA, dl, MVT::i64, TopHalf, ShAmt));
23258   } else {
23259     // Store the value to a temporary stack slot.
23260     SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
23261     SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
23262       MachinePointerInfo(), false, false, 0);
23263
23264     EVT ElementType = InputVector.getValueType().getVectorElementType();
23265     unsigned EltSize = ElementType.getSizeInBits() / 8;
23266
23267     // Replace each use (extract) with a load of the appropriate element.
23268     for (unsigned i = 0; i < 4; ++i) {
23269       uint64_t Offset = EltSize * i;
23270       auto PtrVT = TLI.getPointerTy(DAG.getDataLayout());
23271       SDValue OffsetVal = DAG.getConstant(Offset, dl, PtrVT);
23272
23273       SDValue ScalarAddr =
23274           DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, OffsetVal);
23275
23276       // Load the scalar.
23277       Vals[i] = DAG.getLoad(ElementType, dl, Ch,
23278                             ScalarAddr, MachinePointerInfo(),
23279                             false, false, false, 0);
23280
23281     }
23282   }
23283
23284   // Replace the extracts
23285   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
23286     UE = Uses.end(); UI != UE; ++UI) {
23287     SDNode *Extract = *UI;
23288
23289     SDValue Idx = Extract->getOperand(1);
23290     uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
23291     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), Vals[IdxVal]);
23292   }
23293
23294   // The replacement was made in place; don't return anything.
23295   return SDValue();
23296 }
23297
23298 static SDValue
23299 transformVSELECTtoBlendVECTOR_SHUFFLE(SDNode *N, SelectionDAG &DAG,
23300                                       const X86Subtarget *Subtarget) {
23301   SDLoc dl(N);
23302   SDValue Cond = N->getOperand(0);
23303   SDValue LHS = N->getOperand(1);
23304   SDValue RHS = N->getOperand(2);
23305
23306   if (Cond.getOpcode() == ISD::SIGN_EXTEND) {
23307     SDValue CondSrc = Cond->getOperand(0);
23308     if (CondSrc->getOpcode() == ISD::SIGN_EXTEND_INREG)
23309       Cond = CondSrc->getOperand(0);
23310   }
23311
23312   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
23313     return SDValue();
23314
23315   // A vselect where all conditions and data are constants can be optimized into
23316   // a single vector load by SelectionDAGLegalize::ExpandBUILD_VECTOR().
23317   if (ISD::isBuildVectorOfConstantSDNodes(LHS.getNode()) &&
23318       ISD::isBuildVectorOfConstantSDNodes(RHS.getNode()))
23319     return SDValue();
23320
23321   unsigned MaskValue = 0;
23322   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
23323     return SDValue();
23324
23325   MVT VT = N->getSimpleValueType(0);
23326   unsigned NumElems = VT.getVectorNumElements();
23327   SmallVector<int, 8> ShuffleMask(NumElems, -1);
23328   for (unsigned i = 0; i < NumElems; ++i) {
23329     // Be sure we emit undef where we can.
23330     if (Cond.getOperand(i)->getOpcode() == ISD::UNDEF)
23331       ShuffleMask[i] = -1;
23332     else
23333       ShuffleMask[i] = i + NumElems * ((MaskValue >> i) & 1);
23334   }
23335
23336   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23337   if (!TLI.isShuffleMaskLegal(ShuffleMask, VT))
23338     return SDValue();
23339   return DAG.getVectorShuffle(VT, dl, LHS, RHS, &ShuffleMask[0]);
23340 }
23341
23342 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
23343 /// nodes.
23344 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
23345                                     TargetLowering::DAGCombinerInfo &DCI,
23346                                     const X86Subtarget *Subtarget) {
23347   SDLoc DL(N);
23348   SDValue Cond = N->getOperand(0);
23349   // Get the LHS/RHS of the select.
23350   SDValue LHS = N->getOperand(1);
23351   SDValue RHS = N->getOperand(2);
23352   EVT VT = LHS.getValueType();
23353   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
23354
23355   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
23356   // instructions match the semantics of the common C idiom x<y?x:y but not
23357   // x<=y?x:y, because of how they handle negative zero (which can be
23358   // ignored in unsafe-math mode).
23359   // We also try to create v2f32 min/max nodes, which we later widen to v4f32.
23360   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
23361       VT != MVT::f80 && (TLI.isTypeLegal(VT) || VT == MVT::v2f32) &&
23362       (Subtarget->hasSSE2() ||
23363        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
23364     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
23365
23366     unsigned Opcode = 0;
23367     // Check for x CC y ? x : y.
23368     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
23369         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
23370       switch (CC) {
23371       default: break;
23372       case ISD::SETULT:
23373         // Converting this to a min would handle NaNs incorrectly, and swapping
23374         // the operands would cause it to handle comparisons between positive
23375         // and negative zero incorrectly.
23376         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
23377           if (!DAG.getTarget().Options.UnsafeFPMath &&
23378               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
23379             break;
23380           std::swap(LHS, RHS);
23381         }
23382         Opcode = X86ISD::FMIN;
23383         break;
23384       case ISD::SETOLE:
23385         // Converting this to a min would handle comparisons between positive
23386         // and negative zero incorrectly.
23387         if (!DAG.getTarget().Options.UnsafeFPMath &&
23388             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
23389           break;
23390         Opcode = X86ISD::FMIN;
23391         break;
23392       case ISD::SETULE:
23393         // Converting this to a min would handle both negative zeros and NaNs
23394         // incorrectly, but we can swap the operands to fix both.
23395         std::swap(LHS, RHS);
23396       case ISD::SETOLT:
23397       case ISD::SETLT:
23398       case ISD::SETLE:
23399         Opcode = X86ISD::FMIN;
23400         break;
23401
23402       case ISD::SETOGE:
23403         // Converting this to a max would handle comparisons between positive
23404         // and negative zero incorrectly.
23405         if (!DAG.getTarget().Options.UnsafeFPMath &&
23406             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
23407           break;
23408         Opcode = X86ISD::FMAX;
23409         break;
23410       case ISD::SETUGT:
23411         // Converting this to a max would handle NaNs incorrectly, and swapping
23412         // the operands would cause it to handle comparisons between positive
23413         // and negative zero incorrectly.
23414         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
23415           if (!DAG.getTarget().Options.UnsafeFPMath &&
23416               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
23417             break;
23418           std::swap(LHS, RHS);
23419         }
23420         Opcode = X86ISD::FMAX;
23421         break;
23422       case ISD::SETUGE:
23423         // Converting this to a max would handle both negative zeros and NaNs
23424         // incorrectly, but we can swap the operands to fix both.
23425         std::swap(LHS, RHS);
23426       case ISD::SETOGT:
23427       case ISD::SETGT:
23428       case ISD::SETGE:
23429         Opcode = X86ISD::FMAX;
23430         break;
23431       }
23432     // Check for x CC y ? y : x -- a min/max with reversed arms.
23433     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
23434                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
23435       switch (CC) {
23436       default: break;
23437       case ISD::SETOGE:
23438         // Converting this to a min would handle comparisons between positive
23439         // and negative zero incorrectly, and swapping the operands would
23440         // cause it to handle NaNs incorrectly.
23441         if (!DAG.getTarget().Options.UnsafeFPMath &&
23442             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
23443           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
23444             break;
23445           std::swap(LHS, RHS);
23446         }
23447         Opcode = X86ISD::FMIN;
23448         break;
23449       case ISD::SETUGT:
23450         // Converting this to a min would handle NaNs incorrectly.
23451         if (!DAG.getTarget().Options.UnsafeFPMath &&
23452             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
23453           break;
23454         Opcode = X86ISD::FMIN;
23455         break;
23456       case ISD::SETUGE:
23457         // Converting this to a min would handle both negative zeros and NaNs
23458         // incorrectly, but we can swap the operands to fix both.
23459         std::swap(LHS, RHS);
23460       case ISD::SETOGT:
23461       case ISD::SETGT:
23462       case ISD::SETGE:
23463         Opcode = X86ISD::FMIN;
23464         break;
23465
23466       case ISD::SETULT:
23467         // Converting this to a max would handle NaNs incorrectly.
23468         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
23469           break;
23470         Opcode = X86ISD::FMAX;
23471         break;
23472       case ISD::SETOLE:
23473         // Converting this to a max would handle comparisons between positive
23474         // and negative zero incorrectly, and swapping the operands would
23475         // cause it to handle NaNs incorrectly.
23476         if (!DAG.getTarget().Options.UnsafeFPMath &&
23477             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
23478           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
23479             break;
23480           std::swap(LHS, RHS);
23481         }
23482         Opcode = X86ISD::FMAX;
23483         break;
23484       case ISD::SETULE:
23485         // Converting this to a max would handle both negative zeros and NaNs
23486         // incorrectly, but we can swap the operands to fix both.
23487         std::swap(LHS, RHS);
23488       case ISD::SETOLT:
23489       case ISD::SETLT:
23490       case ISD::SETLE:
23491         Opcode = X86ISD::FMAX;
23492         break;
23493       }
23494     }
23495
23496     if (Opcode)
23497       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
23498   }
23499
23500   EVT CondVT = Cond.getValueType();
23501   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
23502       CondVT.getVectorElementType() == MVT::i1) {
23503     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
23504     // lowering on KNL. In this case we convert it to
23505     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
23506     // The same situation for all 128 and 256-bit vectors of i8 and i16.
23507     // Since SKX these selects have a proper lowering.
23508     EVT OpVT = LHS.getValueType();
23509     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
23510         (OpVT.getVectorElementType() == MVT::i8 ||
23511          OpVT.getVectorElementType() == MVT::i16) &&
23512         !(Subtarget->hasBWI() && Subtarget->hasVLX())) {
23513       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
23514       DCI.AddToWorklist(Cond.getNode());
23515       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
23516     }
23517   }
23518   // If this is a select between two integer constants, try to do some
23519   // optimizations.
23520   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
23521     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
23522       // Don't do this for crazy integer types.
23523       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
23524         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
23525         // so that TrueC (the true value) is larger than FalseC.
23526         bool NeedsCondInvert = false;
23527
23528         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
23529             // Efficiently invertible.
23530             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
23531              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
23532               isa<ConstantSDNode>(Cond.getOperand(1))))) {
23533           NeedsCondInvert = true;
23534           std::swap(TrueC, FalseC);
23535         }
23536
23537         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
23538         if (FalseC->getAPIntValue() == 0 &&
23539             TrueC->getAPIntValue().isPowerOf2()) {
23540           if (NeedsCondInvert) // Invert the condition if needed.
23541             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
23542                                DAG.getConstant(1, DL, Cond.getValueType()));
23543
23544           // Zero extend the condition if needed.
23545           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
23546
23547           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
23548           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
23549                              DAG.getConstant(ShAmt, DL, MVT::i8));
23550         }
23551
23552         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
23553         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
23554           if (NeedsCondInvert) // Invert the condition if needed.
23555             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
23556                                DAG.getConstant(1, DL, Cond.getValueType()));
23557
23558           // Zero extend the condition if needed.
23559           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
23560                              FalseC->getValueType(0), Cond);
23561           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
23562                              SDValue(FalseC, 0));
23563         }
23564
23565         // Optimize cases that will turn into an LEA instruction.  This requires
23566         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
23567         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
23568           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
23569           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
23570
23571           bool isFastMultiplier = false;
23572           if (Diff < 10) {
23573             switch ((unsigned char)Diff) {
23574               default: break;
23575               case 1:  // result = add base, cond
23576               case 2:  // result = lea base(    , cond*2)
23577               case 3:  // result = lea base(cond, cond*2)
23578               case 4:  // result = lea base(    , cond*4)
23579               case 5:  // result = lea base(cond, cond*4)
23580               case 8:  // result = lea base(    , cond*8)
23581               case 9:  // result = lea base(cond, cond*8)
23582                 isFastMultiplier = true;
23583                 break;
23584             }
23585           }
23586
23587           if (isFastMultiplier) {
23588             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
23589             if (NeedsCondInvert) // Invert the condition if needed.
23590               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
23591                                  DAG.getConstant(1, DL, Cond.getValueType()));
23592
23593             // Zero extend the condition if needed.
23594             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
23595                                Cond);
23596             // Scale the condition by the difference.
23597             if (Diff != 1)
23598               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
23599                                  DAG.getConstant(Diff, DL,
23600                                                  Cond.getValueType()));
23601
23602             // Add the base if non-zero.
23603             if (FalseC->getAPIntValue() != 0)
23604               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
23605                                  SDValue(FalseC, 0));
23606             return Cond;
23607           }
23608         }
23609       }
23610   }
23611
23612   // Canonicalize max and min:
23613   // (x > y) ? x : y -> (x >= y) ? x : y
23614   // (x < y) ? x : y -> (x <= y) ? x : y
23615   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
23616   // the need for an extra compare
23617   // against zero. e.g.
23618   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
23619   // subl   %esi, %edi
23620   // testl  %edi, %edi
23621   // movl   $0, %eax
23622   // cmovgl %edi, %eax
23623   // =>
23624   // xorl   %eax, %eax
23625   // subl   %esi, $edi
23626   // cmovsl %eax, %edi
23627   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
23628       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
23629       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
23630     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
23631     switch (CC) {
23632     default: break;
23633     case ISD::SETLT:
23634     case ISD::SETGT: {
23635       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
23636       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
23637                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
23638       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
23639     }
23640     }
23641   }
23642
23643   // Early exit check
23644   if (!TLI.isTypeLegal(VT))
23645     return SDValue();
23646
23647   // Match VSELECTs into subs with unsigned saturation.
23648   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
23649       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
23650       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
23651        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
23652     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
23653
23654     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
23655     // left side invert the predicate to simplify logic below.
23656     SDValue Other;
23657     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
23658       Other = RHS;
23659       CC = ISD::getSetCCInverse(CC, true);
23660     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
23661       Other = LHS;
23662     }
23663
23664     if (Other.getNode() && Other->getNumOperands() == 2 &&
23665         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
23666       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
23667       SDValue CondRHS = Cond->getOperand(1);
23668
23669       // Look for a general sub with unsigned saturation first.
23670       // x >= y ? x-y : 0 --> subus x, y
23671       // x >  y ? x-y : 0 --> subus x, y
23672       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
23673           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
23674         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
23675
23676       if (auto *OpRHSBV = dyn_cast<BuildVectorSDNode>(OpRHS))
23677         if (auto *OpRHSConst = OpRHSBV->getConstantSplatNode()) {
23678           if (auto *CondRHSBV = dyn_cast<BuildVectorSDNode>(CondRHS))
23679             if (auto *CondRHSConst = CondRHSBV->getConstantSplatNode())
23680               // If the RHS is a constant we have to reverse the const
23681               // canonicalization.
23682               // x > C-1 ? x+-C : 0 --> subus x, C
23683               if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
23684                   CondRHSConst->getAPIntValue() ==
23685                       (-OpRHSConst->getAPIntValue() - 1))
23686                 return DAG.getNode(
23687                     X86ISD::SUBUS, DL, VT, OpLHS,
23688                     DAG.getConstant(-OpRHSConst->getAPIntValue(), DL, VT));
23689
23690           // Another special case: If C was a sign bit, the sub has been
23691           // canonicalized into a xor.
23692           // FIXME: Would it be better to use computeKnownBits to determine
23693           //        whether it's safe to decanonicalize the xor?
23694           // x s< 0 ? x^C : 0 --> subus x, C
23695           if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
23696               ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
23697               OpRHSConst->getAPIntValue().isSignBit())
23698             // Note that we have to rebuild the RHS constant here to ensure we
23699             // don't rely on particular values of undef lanes.
23700             return DAG.getNode(
23701                 X86ISD::SUBUS, DL, VT, OpLHS,
23702                 DAG.getConstant(OpRHSConst->getAPIntValue(), DL, VT));
23703         }
23704     }
23705   }
23706
23707   // Simplify vector selection if condition value type matches vselect
23708   // operand type
23709   if (N->getOpcode() == ISD::VSELECT && CondVT == VT) {
23710     assert(Cond.getValueType().isVector() &&
23711            "vector select expects a vector selector!");
23712
23713     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
23714     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
23715
23716     // Try invert the condition if true value is not all 1s and false value
23717     // is not all 0s.
23718     if (!TValIsAllOnes && !FValIsAllZeros &&
23719         // Check if the selector will be produced by CMPP*/PCMP*
23720         Cond.getOpcode() == ISD::SETCC &&
23721         // Check if SETCC has already been promoted
23722         TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT) ==
23723             CondVT) {
23724       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
23725       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
23726
23727       if (TValIsAllZeros || FValIsAllOnes) {
23728         SDValue CC = Cond.getOperand(2);
23729         ISD::CondCode NewCC =
23730           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
23731                                Cond.getOperand(0).getValueType().isInteger());
23732         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
23733         std::swap(LHS, RHS);
23734         TValIsAllOnes = FValIsAllOnes;
23735         FValIsAllZeros = TValIsAllZeros;
23736       }
23737     }
23738
23739     if (TValIsAllOnes || FValIsAllZeros) {
23740       SDValue Ret;
23741
23742       if (TValIsAllOnes && FValIsAllZeros)
23743         Ret = Cond;
23744       else if (TValIsAllOnes)
23745         Ret =
23746             DAG.getNode(ISD::OR, DL, CondVT, Cond, DAG.getBitcast(CondVT, RHS));
23747       else if (FValIsAllZeros)
23748         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
23749                           DAG.getBitcast(CondVT, LHS));
23750
23751       return DAG.getBitcast(VT, Ret);
23752     }
23753   }
23754
23755   // We should generate an X86ISD::BLENDI from a vselect if its argument
23756   // is a sign_extend_inreg of an any_extend of a BUILD_VECTOR of
23757   // constants. This specific pattern gets generated when we split a
23758   // selector for a 512 bit vector in a machine without AVX512 (but with
23759   // 256-bit vectors), during legalization:
23760   //
23761   // (vselect (sign_extend (any_extend (BUILD_VECTOR)) i1) LHS RHS)
23762   //
23763   // Iff we find this pattern and the build_vectors are built from
23764   // constants, we translate the vselect into a shuffle_vector that we
23765   // know will be matched by LowerVECTOR_SHUFFLEtoBlend.
23766   if ((N->getOpcode() == ISD::VSELECT ||
23767        N->getOpcode() == X86ISD::SHRUNKBLEND) &&
23768       !DCI.isBeforeLegalize() && !VT.is512BitVector()) {
23769     SDValue Shuffle = transformVSELECTtoBlendVECTOR_SHUFFLE(N, DAG, Subtarget);
23770     if (Shuffle.getNode())
23771       return Shuffle;
23772   }
23773
23774   // If this is a *dynamic* select (non-constant condition) and we can match
23775   // this node with one of the variable blend instructions, restructure the
23776   // condition so that the blends can use the high bit of each element and use
23777   // SimplifyDemandedBits to simplify the condition operand.
23778   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
23779       !DCI.isBeforeLegalize() &&
23780       !ISD::isBuildVectorOfConstantSDNodes(Cond.getNode())) {
23781     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
23782
23783     // Don't optimize vector selects that map to mask-registers.
23784     if (BitWidth == 1)
23785       return SDValue();
23786
23787     // We can only handle the cases where VSELECT is directly legal on the
23788     // subtarget. We custom lower VSELECT nodes with constant conditions and
23789     // this makes it hard to see whether a dynamic VSELECT will correctly
23790     // lower, so we both check the operation's status and explicitly handle the
23791     // cases where a *dynamic* blend will fail even though a constant-condition
23792     // blend could be custom lowered.
23793     // FIXME: We should find a better way to handle this class of problems.
23794     // Potentially, we should combine constant-condition vselect nodes
23795     // pre-legalization into shuffles and not mark as many types as custom
23796     // lowered.
23797     if (!TLI.isOperationLegalOrCustom(ISD::VSELECT, VT))
23798       return SDValue();
23799     // FIXME: We don't support i16-element blends currently. We could and
23800     // should support them by making *all* the bits in the condition be set
23801     // rather than just the high bit and using an i8-element blend.
23802     if (VT.getScalarType() == MVT::i16)
23803       return SDValue();
23804     // Dynamic blending was only available from SSE4.1 onward.
23805     if (VT.getSizeInBits() == 128 && !Subtarget->hasSSE41())
23806       return SDValue();
23807     // Byte blends are only available in AVX2
23808     if (VT.getSizeInBits() == 256 && VT.getScalarType() == MVT::i8 &&
23809         !Subtarget->hasAVX2())
23810       return SDValue();
23811
23812     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
23813     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
23814
23815     APInt KnownZero, KnownOne;
23816     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
23817                                           DCI.isBeforeLegalizeOps());
23818     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
23819         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne,
23820                                  TLO)) {
23821       // If we changed the computation somewhere in the DAG, this change
23822       // will affect all users of Cond.
23823       // Make sure it is fine and update all the nodes so that we do not
23824       // use the generic VSELECT anymore. Otherwise, we may perform
23825       // wrong optimizations as we messed up with the actual expectation
23826       // for the vector boolean values.
23827       if (Cond != TLO.Old) {
23828         // Check all uses of that condition operand to check whether it will be
23829         // consumed by non-BLEND instructions, which may depend on all bits are
23830         // set properly.
23831         for (SDNode::use_iterator I = Cond->use_begin(), E = Cond->use_end();
23832              I != E; ++I)
23833           if (I->getOpcode() != ISD::VSELECT)
23834             // TODO: Add other opcodes eventually lowered into BLEND.
23835             return SDValue();
23836
23837         // Update all the users of the condition, before committing the change,
23838         // so that the VSELECT optimizations that expect the correct vector
23839         // boolean value will not be triggered.
23840         for (SDNode::use_iterator I = Cond->use_begin(), E = Cond->use_end();
23841              I != E; ++I)
23842           DAG.ReplaceAllUsesOfValueWith(
23843               SDValue(*I, 0),
23844               DAG.getNode(X86ISD::SHRUNKBLEND, SDLoc(*I), I->getValueType(0),
23845                           Cond, I->getOperand(1), I->getOperand(2)));
23846         DCI.CommitTargetLoweringOpt(TLO);
23847         return SDValue();
23848       }
23849       // At this point, only Cond is changed. Change the condition
23850       // just for N to keep the opportunity to optimize all other
23851       // users their own way.
23852       DAG.ReplaceAllUsesOfValueWith(
23853           SDValue(N, 0),
23854           DAG.getNode(X86ISD::SHRUNKBLEND, SDLoc(N), N->getValueType(0),
23855                       TLO.New, N->getOperand(1), N->getOperand(2)));
23856       return SDValue();
23857     }
23858   }
23859
23860   return SDValue();
23861 }
23862
23863 // Check whether a boolean test is testing a boolean value generated by
23864 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
23865 // code.
23866 //
23867 // Simplify the following patterns:
23868 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
23869 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
23870 // to (Op EFLAGS Cond)
23871 //
23872 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
23873 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
23874 // to (Op EFLAGS !Cond)
23875 //
23876 // where Op could be BRCOND or CMOV.
23877 //
23878 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
23879   // Quit if not CMP and SUB with its value result used.
23880   if (Cmp.getOpcode() != X86ISD::CMP &&
23881       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
23882       return SDValue();
23883
23884   // Quit if not used as a boolean value.
23885   if (CC != X86::COND_E && CC != X86::COND_NE)
23886     return SDValue();
23887
23888   // Check CMP operands. One of them should be 0 or 1 and the other should be
23889   // an SetCC or extended from it.
23890   SDValue Op1 = Cmp.getOperand(0);
23891   SDValue Op2 = Cmp.getOperand(1);
23892
23893   SDValue SetCC;
23894   const ConstantSDNode* C = nullptr;
23895   bool needOppositeCond = (CC == X86::COND_E);
23896   bool checkAgainstTrue = false; // Is it a comparison against 1?
23897
23898   if ((C = dyn_cast<ConstantSDNode>(Op1)))
23899     SetCC = Op2;
23900   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
23901     SetCC = Op1;
23902   else // Quit if all operands are not constants.
23903     return SDValue();
23904
23905   if (C->getZExtValue() == 1) {
23906     needOppositeCond = !needOppositeCond;
23907     checkAgainstTrue = true;
23908   } else if (C->getZExtValue() != 0)
23909     // Quit if the constant is neither 0 or 1.
23910     return SDValue();
23911
23912   bool truncatedToBoolWithAnd = false;
23913   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
23914   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
23915          SetCC.getOpcode() == ISD::TRUNCATE ||
23916          SetCC.getOpcode() == ISD::AND) {
23917     if (SetCC.getOpcode() == ISD::AND) {
23918       int OpIdx = -1;
23919       ConstantSDNode *CS;
23920       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
23921           CS->getZExtValue() == 1)
23922         OpIdx = 1;
23923       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
23924           CS->getZExtValue() == 1)
23925         OpIdx = 0;
23926       if (OpIdx == -1)
23927         break;
23928       SetCC = SetCC.getOperand(OpIdx);
23929       truncatedToBoolWithAnd = true;
23930     } else
23931       SetCC = SetCC.getOperand(0);
23932   }
23933
23934   switch (SetCC.getOpcode()) {
23935   case X86ISD::SETCC_CARRY:
23936     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
23937     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
23938     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
23939     // truncated to i1 using 'and'.
23940     if (checkAgainstTrue && !truncatedToBoolWithAnd)
23941       break;
23942     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
23943            "Invalid use of SETCC_CARRY!");
23944     // FALL THROUGH
23945   case X86ISD::SETCC:
23946     // Set the condition code or opposite one if necessary.
23947     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
23948     if (needOppositeCond)
23949       CC = X86::GetOppositeBranchCondition(CC);
23950     return SetCC.getOperand(1);
23951   case X86ISD::CMOV: {
23952     // Check whether false/true value has canonical one, i.e. 0 or 1.
23953     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
23954     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
23955     // Quit if true value is not a constant.
23956     if (!TVal)
23957       return SDValue();
23958     // Quit if false value is not a constant.
23959     if (!FVal) {
23960       SDValue Op = SetCC.getOperand(0);
23961       // Skip 'zext' or 'trunc' node.
23962       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
23963           Op.getOpcode() == ISD::TRUNCATE)
23964         Op = Op.getOperand(0);
23965       // A special case for rdrand/rdseed, where 0 is set if false cond is
23966       // found.
23967       if ((Op.getOpcode() != X86ISD::RDRAND &&
23968            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
23969         return SDValue();
23970     }
23971     // Quit if false value is not the constant 0 or 1.
23972     bool FValIsFalse = true;
23973     if (FVal && FVal->getZExtValue() != 0) {
23974       if (FVal->getZExtValue() != 1)
23975         return SDValue();
23976       // If FVal is 1, opposite cond is needed.
23977       needOppositeCond = !needOppositeCond;
23978       FValIsFalse = false;
23979     }
23980     // Quit if TVal is not the constant opposite of FVal.
23981     if (FValIsFalse && TVal->getZExtValue() != 1)
23982       return SDValue();
23983     if (!FValIsFalse && TVal->getZExtValue() != 0)
23984       return SDValue();
23985     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
23986     if (needOppositeCond)
23987       CC = X86::GetOppositeBranchCondition(CC);
23988     return SetCC.getOperand(3);
23989   }
23990   }
23991
23992   return SDValue();
23993 }
23994
23995 /// Check whether Cond is an AND/OR of SETCCs off of the same EFLAGS.
23996 /// Match:
23997 ///   (X86or (X86setcc) (X86setcc))
23998 ///   (X86cmp (and (X86setcc) (X86setcc)), 0)
23999 static bool checkBoolTestAndOrSetCCCombine(SDValue Cond, X86::CondCode &CC0,
24000                                            X86::CondCode &CC1, SDValue &Flags,
24001                                            bool &isAnd) {
24002   if (Cond->getOpcode() == X86ISD::CMP) {
24003     ConstantSDNode *CondOp1C = dyn_cast<ConstantSDNode>(Cond->getOperand(1));
24004     if (!CondOp1C || !CondOp1C->isNullValue())
24005       return false;
24006
24007     Cond = Cond->getOperand(0);
24008   }
24009
24010   isAnd = false;
24011
24012   SDValue SetCC0, SetCC1;
24013   switch (Cond->getOpcode()) {
24014   default: return false;
24015   case ISD::AND:
24016   case X86ISD::AND:
24017     isAnd = true;
24018     // fallthru
24019   case ISD::OR:
24020   case X86ISD::OR:
24021     SetCC0 = Cond->getOperand(0);
24022     SetCC1 = Cond->getOperand(1);
24023     break;
24024   };
24025
24026   // Make sure we have SETCC nodes, using the same flags value.
24027   if (SetCC0.getOpcode() != X86ISD::SETCC ||
24028       SetCC1.getOpcode() != X86ISD::SETCC ||
24029       SetCC0->getOperand(1) != SetCC1->getOperand(1))
24030     return false;
24031
24032   CC0 = (X86::CondCode)SetCC0->getConstantOperandVal(0);
24033   CC1 = (X86::CondCode)SetCC1->getConstantOperandVal(0);
24034   Flags = SetCC0->getOperand(1);
24035   return true;
24036 }
24037
24038 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
24039 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
24040                                   TargetLowering::DAGCombinerInfo &DCI,
24041                                   const X86Subtarget *Subtarget) {
24042   SDLoc DL(N);
24043
24044   // If the flag operand isn't dead, don't touch this CMOV.
24045   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
24046     return SDValue();
24047
24048   SDValue FalseOp = N->getOperand(0);
24049   SDValue TrueOp = N->getOperand(1);
24050   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
24051   SDValue Cond = N->getOperand(3);
24052
24053   if (CC == X86::COND_E || CC == X86::COND_NE) {
24054     switch (Cond.getOpcode()) {
24055     default: break;
24056     case X86ISD::BSR:
24057     case X86ISD::BSF:
24058       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
24059       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
24060         return (CC == X86::COND_E) ? FalseOp : TrueOp;
24061     }
24062   }
24063
24064   SDValue Flags;
24065
24066   Flags = checkBoolTestSetCCCombine(Cond, CC);
24067   if (Flags.getNode() &&
24068       // Extra check as FCMOV only supports a subset of X86 cond.
24069       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
24070     SDValue Ops[] = { FalseOp, TrueOp,
24071                       DAG.getConstant(CC, DL, MVT::i8), Flags };
24072     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
24073   }
24074
24075   // If this is a select between two integer constants, try to do some
24076   // optimizations.  Note that the operands are ordered the opposite of SELECT
24077   // operands.
24078   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
24079     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
24080       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
24081       // larger than FalseC (the false value).
24082       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
24083         CC = X86::GetOppositeBranchCondition(CC);
24084         std::swap(TrueC, FalseC);
24085         std::swap(TrueOp, FalseOp);
24086       }
24087
24088       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
24089       // This is efficient for any integer data type (including i8/i16) and
24090       // shift amount.
24091       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
24092         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
24093                            DAG.getConstant(CC, DL, MVT::i8), Cond);
24094
24095         // Zero extend the condition if needed.
24096         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
24097
24098         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
24099         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
24100                            DAG.getConstant(ShAmt, DL, MVT::i8));
24101         if (N->getNumValues() == 2)  // Dead flag value?
24102           return DCI.CombineTo(N, Cond, SDValue());
24103         return Cond;
24104       }
24105
24106       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
24107       // for any integer data type, including i8/i16.
24108       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
24109         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
24110                            DAG.getConstant(CC, DL, MVT::i8), Cond);
24111
24112         // Zero extend the condition if needed.
24113         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
24114                            FalseC->getValueType(0), Cond);
24115         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
24116                            SDValue(FalseC, 0));
24117
24118         if (N->getNumValues() == 2)  // Dead flag value?
24119           return DCI.CombineTo(N, Cond, SDValue());
24120         return Cond;
24121       }
24122
24123       // Optimize cases that will turn into an LEA instruction.  This requires
24124       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
24125       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
24126         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
24127         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
24128
24129         bool isFastMultiplier = false;
24130         if (Diff < 10) {
24131           switch ((unsigned char)Diff) {
24132           default: break;
24133           case 1:  // result = add base, cond
24134           case 2:  // result = lea base(    , cond*2)
24135           case 3:  // result = lea base(cond, cond*2)
24136           case 4:  // result = lea base(    , cond*4)
24137           case 5:  // result = lea base(cond, cond*4)
24138           case 8:  // result = lea base(    , cond*8)
24139           case 9:  // result = lea base(cond, cond*8)
24140             isFastMultiplier = true;
24141             break;
24142           }
24143         }
24144
24145         if (isFastMultiplier) {
24146           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
24147           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
24148                              DAG.getConstant(CC, DL, MVT::i8), Cond);
24149           // Zero extend the condition if needed.
24150           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
24151                              Cond);
24152           // Scale the condition by the difference.
24153           if (Diff != 1)
24154             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
24155                                DAG.getConstant(Diff, DL, Cond.getValueType()));
24156
24157           // Add the base if non-zero.
24158           if (FalseC->getAPIntValue() != 0)
24159             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
24160                                SDValue(FalseC, 0));
24161           if (N->getNumValues() == 2)  // Dead flag value?
24162             return DCI.CombineTo(N, Cond, SDValue());
24163           return Cond;
24164         }
24165       }
24166     }
24167   }
24168
24169   // Handle these cases:
24170   //   (select (x != c), e, c) -> select (x != c), e, x),
24171   //   (select (x == c), c, e) -> select (x == c), x, e)
24172   // where the c is an integer constant, and the "select" is the combination
24173   // of CMOV and CMP.
24174   //
24175   // The rationale for this change is that the conditional-move from a constant
24176   // needs two instructions, however, conditional-move from a register needs
24177   // only one instruction.
24178   //
24179   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
24180   //  some instruction-combining opportunities. This opt needs to be
24181   //  postponed as late as possible.
24182   //
24183   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
24184     // the DCI.xxxx conditions are provided to postpone the optimization as
24185     // late as possible.
24186
24187     ConstantSDNode *CmpAgainst = nullptr;
24188     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
24189         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
24190         !isa<ConstantSDNode>(Cond.getOperand(0))) {
24191
24192       if (CC == X86::COND_NE &&
24193           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
24194         CC = X86::GetOppositeBranchCondition(CC);
24195         std::swap(TrueOp, FalseOp);
24196       }
24197
24198       if (CC == X86::COND_E &&
24199           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
24200         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
24201                           DAG.getConstant(CC, DL, MVT::i8), Cond };
24202         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
24203       }
24204     }
24205   }
24206
24207   // Fold and/or of setcc's to double CMOV:
24208   //   (CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
24209   //   (CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
24210   //
24211   // This combine lets us generate:
24212   //   cmovcc1 (jcc1 if we don't have CMOV)
24213   //   cmovcc2 (same)
24214   // instead of:
24215   //   setcc1
24216   //   setcc2
24217   //   and/or
24218   //   cmovne (jne if we don't have CMOV)
24219   // When we can't use the CMOV instruction, it might increase branch
24220   // mispredicts.
24221   // When we can use CMOV, or when there is no mispredict, this improves
24222   // throughput and reduces register pressure.
24223   //
24224   if (CC == X86::COND_NE) {
24225     SDValue Flags;
24226     X86::CondCode CC0, CC1;
24227     bool isAndSetCC;
24228     if (checkBoolTestAndOrSetCCCombine(Cond, CC0, CC1, Flags, isAndSetCC)) {
24229       if (isAndSetCC) {
24230         std::swap(FalseOp, TrueOp);
24231         CC0 = X86::GetOppositeBranchCondition(CC0);
24232         CC1 = X86::GetOppositeBranchCondition(CC1);
24233       }
24234
24235       SDValue LOps[] = {FalseOp, TrueOp, DAG.getConstant(CC0, DL, MVT::i8),
24236         Flags};
24237       SDValue LCMOV = DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), LOps);
24238       SDValue Ops[] = {LCMOV, TrueOp, DAG.getConstant(CC1, DL, MVT::i8), Flags};
24239       SDValue CMOV = DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
24240       DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SDValue(CMOV.getNode(), 1));
24241       return CMOV;
24242     }
24243   }
24244
24245   return SDValue();
24246 }
24247
24248 /// PerformMulCombine - Optimize a single multiply with constant into two
24249 /// in order to implement it with two cheaper instructions, e.g.
24250 /// LEA + SHL, LEA + LEA.
24251 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
24252                                  TargetLowering::DAGCombinerInfo &DCI) {
24253   // An imul is usually smaller than the alternative sequence.
24254   if (DAG.getMachineFunction().getFunction()->optForMinSize())
24255     return SDValue();
24256
24257   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
24258     return SDValue();
24259
24260   EVT VT = N->getValueType(0);
24261   if (VT != MVT::i64 && VT != MVT::i32)
24262     return SDValue();
24263
24264   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
24265   if (!C)
24266     return SDValue();
24267   uint64_t MulAmt = C->getZExtValue();
24268   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
24269     return SDValue();
24270
24271   uint64_t MulAmt1 = 0;
24272   uint64_t MulAmt2 = 0;
24273   if ((MulAmt % 9) == 0) {
24274     MulAmt1 = 9;
24275     MulAmt2 = MulAmt / 9;
24276   } else if ((MulAmt % 5) == 0) {
24277     MulAmt1 = 5;
24278     MulAmt2 = MulAmt / 5;
24279   } else if ((MulAmt % 3) == 0) {
24280     MulAmt1 = 3;
24281     MulAmt2 = MulAmt / 3;
24282   }
24283   if (MulAmt2 &&
24284       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
24285     SDLoc DL(N);
24286
24287     if (isPowerOf2_64(MulAmt2) &&
24288         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
24289       // If second multiplifer is pow2, issue it first. We want the multiply by
24290       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
24291       // is an add.
24292       std::swap(MulAmt1, MulAmt2);
24293
24294     SDValue NewMul;
24295     if (isPowerOf2_64(MulAmt1))
24296       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
24297                            DAG.getConstant(Log2_64(MulAmt1), DL, MVT::i8));
24298     else
24299       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
24300                            DAG.getConstant(MulAmt1, DL, VT));
24301
24302     if (isPowerOf2_64(MulAmt2))
24303       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
24304                            DAG.getConstant(Log2_64(MulAmt2), DL, MVT::i8));
24305     else
24306       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
24307                            DAG.getConstant(MulAmt2, DL, VT));
24308
24309     // Do not add new nodes to DAG combiner worklist.
24310     DCI.CombineTo(N, NewMul, false);
24311   }
24312   return SDValue();
24313 }
24314
24315 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
24316   SDValue N0 = N->getOperand(0);
24317   SDValue N1 = N->getOperand(1);
24318   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
24319   EVT VT = N0.getValueType();
24320
24321   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
24322   // since the result of setcc_c is all zero's or all ones.
24323   if (VT.isInteger() && !VT.isVector() &&
24324       N1C && N0.getOpcode() == ISD::AND &&
24325       N0.getOperand(1).getOpcode() == ISD::Constant) {
24326     SDValue N00 = N0.getOperand(0);
24327     APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
24328     APInt ShAmt = N1C->getAPIntValue();
24329     Mask = Mask.shl(ShAmt);
24330     bool MaskOK = false;
24331     // We can handle cases concerning bit-widening nodes containing setcc_c if
24332     // we carefully interrogate the mask to make sure we are semantics
24333     // preserving.
24334     // The transform is not safe if the result of C1 << C2 exceeds the bitwidth
24335     // of the underlying setcc_c operation if the setcc_c was zero extended.
24336     // Consider the following example:
24337     //   zext(setcc_c)                 -> i32 0x0000FFFF
24338     //   c1                            -> i32 0x0000FFFF
24339     //   c2                            -> i32 0x00000001
24340     //   (shl (and (setcc_c), c1), c2) -> i32 0x0001FFFE
24341     //   (and setcc_c, (c1 << c2))     -> i32 0x0000FFFE
24342     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
24343       MaskOK = true;
24344     } else if (N00.getOpcode() == ISD::SIGN_EXTEND &&
24345                N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
24346       MaskOK = true;
24347     } else if ((N00.getOpcode() == ISD::ZERO_EXTEND ||
24348                 N00.getOpcode() == ISD::ANY_EXTEND) &&
24349                N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
24350       MaskOK = Mask.isIntN(N00.getOperand(0).getValueSizeInBits());
24351     }
24352     if (MaskOK && Mask != 0) {
24353       SDLoc DL(N);
24354       return DAG.getNode(ISD::AND, DL, VT, N00, DAG.getConstant(Mask, DL, VT));
24355     }
24356   }
24357
24358   // Hardware support for vector shifts is sparse which makes us scalarize the
24359   // vector operations in many cases. Also, on sandybridge ADD is faster than
24360   // shl.
24361   // (shl V, 1) -> add V,V
24362   if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
24363     if (auto *N1SplatC = N1BV->getConstantSplatNode()) {
24364       assert(N0.getValueType().isVector() && "Invalid vector shift type");
24365       // We shift all of the values by one. In many cases we do not have
24366       // hardware support for this operation. This is better expressed as an ADD
24367       // of two values.
24368       if (N1SplatC->getAPIntValue() == 1)
24369         return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
24370     }
24371
24372   return SDValue();
24373 }
24374
24375 /// \brief Returns a vector of 0s if the node in input is a vector logical
24376 /// shift by a constant amount which is known to be bigger than or equal
24377 /// to the vector element size in bits.
24378 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
24379                                       const X86Subtarget *Subtarget) {
24380   EVT VT = N->getValueType(0);
24381
24382   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
24383       (!Subtarget->hasInt256() ||
24384        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
24385     return SDValue();
24386
24387   SDValue Amt = N->getOperand(1);
24388   SDLoc DL(N);
24389   if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Amt))
24390     if (auto *AmtSplat = AmtBV->getConstantSplatNode()) {
24391       APInt ShiftAmt = AmtSplat->getAPIntValue();
24392       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
24393
24394       // SSE2/AVX2 logical shifts always return a vector of 0s
24395       // if the shift amount is bigger than or equal to
24396       // the element size. The constant shift amount will be
24397       // encoded as a 8-bit immediate.
24398       if (ShiftAmt.trunc(8).uge(MaxAmount))
24399         return getZeroVector(VT, Subtarget, DAG, DL);
24400     }
24401
24402   return SDValue();
24403 }
24404
24405 /// PerformShiftCombine - Combine shifts.
24406 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
24407                                    TargetLowering::DAGCombinerInfo &DCI,
24408                                    const X86Subtarget *Subtarget) {
24409   if (N->getOpcode() == ISD::SHL)
24410     if (SDValue V = PerformSHLCombine(N, DAG))
24411       return V;
24412
24413   // Try to fold this logical shift into a zero vector.
24414   if (N->getOpcode() != ISD::SRA)
24415     if (SDValue V = performShiftToAllZeros(N, DAG, Subtarget))
24416       return V;
24417
24418   return SDValue();
24419 }
24420
24421 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
24422 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
24423 // and friends.  Likewise for OR -> CMPNEQSS.
24424 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
24425                             TargetLowering::DAGCombinerInfo &DCI,
24426                             const X86Subtarget *Subtarget) {
24427   unsigned opcode;
24428
24429   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
24430   // we're requiring SSE2 for both.
24431   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
24432     SDValue N0 = N->getOperand(0);
24433     SDValue N1 = N->getOperand(1);
24434     SDValue CMP0 = N0->getOperand(1);
24435     SDValue CMP1 = N1->getOperand(1);
24436     SDLoc DL(N);
24437
24438     // The SETCCs should both refer to the same CMP.
24439     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
24440       return SDValue();
24441
24442     SDValue CMP00 = CMP0->getOperand(0);
24443     SDValue CMP01 = CMP0->getOperand(1);
24444     EVT     VT    = CMP00.getValueType();
24445
24446     if (VT == MVT::f32 || VT == MVT::f64) {
24447       bool ExpectingFlags = false;
24448       // Check for any users that want flags:
24449       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
24450            !ExpectingFlags && UI != UE; ++UI)
24451         switch (UI->getOpcode()) {
24452         default:
24453         case ISD::BR_CC:
24454         case ISD::BRCOND:
24455         case ISD::SELECT:
24456           ExpectingFlags = true;
24457           break;
24458         case ISD::CopyToReg:
24459         case ISD::SIGN_EXTEND:
24460         case ISD::ZERO_EXTEND:
24461         case ISD::ANY_EXTEND:
24462           break;
24463         }
24464
24465       if (!ExpectingFlags) {
24466         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
24467         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
24468
24469         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
24470           X86::CondCode tmp = cc0;
24471           cc0 = cc1;
24472           cc1 = tmp;
24473         }
24474
24475         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
24476             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
24477           // FIXME: need symbolic constants for these magic numbers.
24478           // See X86ATTInstPrinter.cpp:printSSECC().
24479           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
24480           if (Subtarget->hasAVX512()) {
24481             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
24482                                          CMP01,
24483                                          DAG.getConstant(x86cc, DL, MVT::i8));
24484             if (N->getValueType(0) != MVT::i1)
24485               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
24486                                  FSetCC);
24487             return FSetCC;
24488           }
24489           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
24490                                               CMP00.getValueType(), CMP00, CMP01,
24491                                               DAG.getConstant(x86cc, DL,
24492                                                               MVT::i8));
24493
24494           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
24495           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
24496
24497           if (is64BitFP && !Subtarget->is64Bit()) {
24498             // On a 32-bit target, we cannot bitcast the 64-bit float to a
24499             // 64-bit integer, since that's not a legal type. Since
24500             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
24501             // bits, but can do this little dance to extract the lowest 32 bits
24502             // and work with those going forward.
24503             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
24504                                            OnesOrZeroesF);
24505             SDValue Vector32 = DAG.getBitcast(MVT::v4f32, Vector64);
24506             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
24507                                         Vector32, DAG.getIntPtrConstant(0, DL));
24508             IntVT = MVT::i32;
24509           }
24510
24511           SDValue OnesOrZeroesI = DAG.getBitcast(IntVT, OnesOrZeroesF);
24512           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
24513                                       DAG.getConstant(1, DL, IntVT));
24514           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8,
24515                                               ANDed);
24516           return OneBitOfTruth;
24517         }
24518       }
24519     }
24520   }
24521   return SDValue();
24522 }
24523
24524 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
24525 /// so it can be folded inside ANDNP.
24526 static bool CanFoldXORWithAllOnes(const SDNode *N) {
24527   EVT VT = N->getValueType(0);
24528
24529   // Match direct AllOnes for 128 and 256-bit vectors
24530   if (ISD::isBuildVectorAllOnes(N))
24531     return true;
24532
24533   // Look through a bit convert.
24534   if (N->getOpcode() == ISD::BITCAST)
24535     N = N->getOperand(0).getNode();
24536
24537   // Sometimes the operand may come from a insert_subvector building a 256-bit
24538   // allones vector
24539   if (VT.is256BitVector() &&
24540       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
24541     SDValue V1 = N->getOperand(0);
24542     SDValue V2 = N->getOperand(1);
24543
24544     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
24545         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
24546         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
24547         ISD::isBuildVectorAllOnes(V2.getNode()))
24548       return true;
24549   }
24550
24551   return false;
24552 }
24553
24554 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
24555 // register. In most cases we actually compare or select YMM-sized registers
24556 // and mixing the two types creates horrible code. This method optimizes
24557 // some of the transition sequences.
24558 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
24559                                  TargetLowering::DAGCombinerInfo &DCI,
24560                                  const X86Subtarget *Subtarget) {
24561   EVT VT = N->getValueType(0);
24562   if (!VT.is256BitVector())
24563     return SDValue();
24564
24565   assert((N->getOpcode() == ISD::ANY_EXTEND ||
24566           N->getOpcode() == ISD::ZERO_EXTEND ||
24567           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
24568
24569   SDValue Narrow = N->getOperand(0);
24570   EVT NarrowVT = Narrow->getValueType(0);
24571   if (!NarrowVT.is128BitVector())
24572     return SDValue();
24573
24574   if (Narrow->getOpcode() != ISD::XOR &&
24575       Narrow->getOpcode() != ISD::AND &&
24576       Narrow->getOpcode() != ISD::OR)
24577     return SDValue();
24578
24579   SDValue N0  = Narrow->getOperand(0);
24580   SDValue N1  = Narrow->getOperand(1);
24581   SDLoc DL(Narrow);
24582
24583   // The Left side has to be a trunc.
24584   if (N0.getOpcode() != ISD::TRUNCATE)
24585     return SDValue();
24586
24587   // The type of the truncated inputs.
24588   EVT WideVT = N0->getOperand(0)->getValueType(0);
24589   if (WideVT != VT)
24590     return SDValue();
24591
24592   // The right side has to be a 'trunc' or a constant vector.
24593   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
24594   ConstantSDNode *RHSConstSplat = nullptr;
24595   if (auto *RHSBV = dyn_cast<BuildVectorSDNode>(N1))
24596     RHSConstSplat = RHSBV->getConstantSplatNode();
24597   if (!RHSTrunc && !RHSConstSplat)
24598     return SDValue();
24599
24600   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24601
24602   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
24603     return SDValue();
24604
24605   // Set N0 and N1 to hold the inputs to the new wide operation.
24606   N0 = N0->getOperand(0);
24607   if (RHSConstSplat) {
24608     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
24609                      SDValue(RHSConstSplat, 0));
24610     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
24611     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
24612   } else if (RHSTrunc) {
24613     N1 = N1->getOperand(0);
24614   }
24615
24616   // Generate the wide operation.
24617   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
24618   unsigned Opcode = N->getOpcode();
24619   switch (Opcode) {
24620   case ISD::ANY_EXTEND:
24621     return Op;
24622   case ISD::ZERO_EXTEND: {
24623     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
24624     APInt Mask = APInt::getAllOnesValue(InBits);
24625     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
24626     return DAG.getNode(ISD::AND, DL, VT,
24627                        Op, DAG.getConstant(Mask, DL, VT));
24628   }
24629   case ISD::SIGN_EXTEND:
24630     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
24631                        Op, DAG.getValueType(NarrowVT));
24632   default:
24633     llvm_unreachable("Unexpected opcode");
24634   }
24635 }
24636
24637 static SDValue VectorZextCombine(SDNode *N, SelectionDAG &DAG,
24638                                  TargetLowering::DAGCombinerInfo &DCI,
24639                                  const X86Subtarget *Subtarget) {
24640   SDValue N0 = N->getOperand(0);
24641   SDValue N1 = N->getOperand(1);
24642   SDLoc DL(N);
24643
24644   // A vector zext_in_reg may be represented as a shuffle,
24645   // feeding into a bitcast (this represents anyext) feeding into
24646   // an and with a mask.
24647   // We'd like to try to combine that into a shuffle with zero
24648   // plus a bitcast, removing the and.
24649   if (N0.getOpcode() != ISD::BITCAST ||
24650       N0.getOperand(0).getOpcode() != ISD::VECTOR_SHUFFLE)
24651     return SDValue();
24652
24653   // The other side of the AND should be a splat of 2^C, where C
24654   // is the number of bits in the source type.
24655   if (N1.getOpcode() == ISD::BITCAST)
24656     N1 = N1.getOperand(0);
24657   if (N1.getOpcode() != ISD::BUILD_VECTOR)
24658     return SDValue();
24659   BuildVectorSDNode *Vector = cast<BuildVectorSDNode>(N1);
24660
24661   ShuffleVectorSDNode *Shuffle = cast<ShuffleVectorSDNode>(N0.getOperand(0));
24662   EVT SrcType = Shuffle->getValueType(0);
24663
24664   // We expect a single-source shuffle
24665   if (Shuffle->getOperand(1)->getOpcode() != ISD::UNDEF)
24666     return SDValue();
24667
24668   unsigned SrcSize = SrcType.getScalarSizeInBits();
24669
24670   APInt SplatValue, SplatUndef;
24671   unsigned SplatBitSize;
24672   bool HasAnyUndefs;
24673   if (!Vector->isConstantSplat(SplatValue, SplatUndef,
24674                                 SplatBitSize, HasAnyUndefs))
24675     return SDValue();
24676
24677   unsigned ResSize = N1.getValueType().getScalarSizeInBits();
24678   // Make sure the splat matches the mask we expect
24679   if (SplatBitSize > ResSize ||
24680       (SplatValue + 1).exactLogBase2() != (int)SrcSize)
24681     return SDValue();
24682
24683   // Make sure the input and output size make sense
24684   if (SrcSize >= ResSize || ResSize % SrcSize)
24685     return SDValue();
24686
24687   // We expect a shuffle of the form <0, u, u, u, 1, u, u, u...>
24688   // The number of u's between each two values depends on the ratio between
24689   // the source and dest type.
24690   unsigned ZextRatio = ResSize / SrcSize;
24691   bool IsZext = true;
24692   for (unsigned i = 0; i < SrcType.getVectorNumElements(); ++i) {
24693     if (i % ZextRatio) {
24694       if (Shuffle->getMaskElt(i) > 0) {
24695         // Expected undef
24696         IsZext = false;
24697         break;
24698       }
24699     } else {
24700       if (Shuffle->getMaskElt(i) != (int)(i / ZextRatio)) {
24701         // Expected element number
24702         IsZext = false;
24703         break;
24704       }
24705     }
24706   }
24707
24708   if (!IsZext)
24709     return SDValue();
24710
24711   // Ok, perform the transformation - replace the shuffle with
24712   // a shuffle of the form <0, k, k, k, 1, k, k, k> with zero
24713   // (instead of undef) where the k elements come from the zero vector.
24714   SmallVector<int, 8> Mask;
24715   unsigned NumElems = SrcType.getVectorNumElements();
24716   for (unsigned i = 0; i < NumElems; ++i)
24717     if (i % ZextRatio)
24718       Mask.push_back(NumElems);
24719     else
24720       Mask.push_back(i / ZextRatio);
24721
24722   SDValue NewShuffle = DAG.getVectorShuffle(Shuffle->getValueType(0), DL,
24723     Shuffle->getOperand(0), DAG.getConstant(0, DL, SrcType), Mask);
24724   return DAG.getBitcast(N0.getValueType(), NewShuffle);
24725 }
24726
24727 /// If both input operands of a logic op are being cast from floating point
24728 /// types, try to convert this into a floating point logic node to avoid
24729 /// unnecessary moves from SSE to integer registers.
24730 static SDValue convertIntLogicToFPLogic(SDNode *N, SelectionDAG &DAG,
24731                                         const X86Subtarget *Subtarget) {
24732   unsigned FPOpcode = ISD::DELETED_NODE;
24733   if (N->getOpcode() == ISD::AND)
24734     FPOpcode = X86ISD::FAND;
24735   else if (N->getOpcode() == ISD::OR)
24736     FPOpcode = X86ISD::FOR;
24737   else if (N->getOpcode() == ISD::XOR)
24738     FPOpcode = X86ISD::FXOR;
24739
24740   assert(FPOpcode != ISD::DELETED_NODE &&
24741          "Unexpected input node for FP logic conversion");
24742
24743   EVT VT = N->getValueType(0);
24744   SDValue N0 = N->getOperand(0);
24745   SDValue N1 = N->getOperand(1);
24746   SDLoc DL(N);
24747   if (N0.getOpcode() == ISD::BITCAST && N1.getOpcode() == ISD::BITCAST &&
24748       ((Subtarget->hasSSE1() && VT == MVT::i32) ||
24749        (Subtarget->hasSSE2() && VT == MVT::i64))) {
24750     SDValue N00 = N0.getOperand(0);
24751     SDValue N10 = N1.getOperand(0);
24752     EVT N00Type = N00.getValueType();
24753     EVT N10Type = N10.getValueType();
24754     if (N00Type.isFloatingPoint() && N10Type.isFloatingPoint()) {
24755       SDValue FPLogic = DAG.getNode(FPOpcode, DL, N00Type, N00, N10);
24756       return DAG.getBitcast(VT, FPLogic);
24757     }
24758   }
24759   return SDValue();
24760 }
24761
24762 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
24763                                  TargetLowering::DAGCombinerInfo &DCI,
24764                                  const X86Subtarget *Subtarget) {
24765   if (DCI.isBeforeLegalizeOps())
24766     return SDValue();
24767
24768   if (SDValue Zext = VectorZextCombine(N, DAG, DCI, Subtarget))
24769     return Zext;
24770
24771   if (SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget))
24772     return R;
24773
24774   if (SDValue FPLogic = convertIntLogicToFPLogic(N, DAG, Subtarget))
24775     return FPLogic;
24776
24777   EVT VT = N->getValueType(0);
24778   SDValue N0 = N->getOperand(0);
24779   SDValue N1 = N->getOperand(1);
24780   SDLoc DL(N);
24781
24782   // Create BEXTR instructions
24783   // BEXTR is ((X >> imm) & (2**size-1))
24784   if (VT == MVT::i32 || VT == MVT::i64) {
24785     // Check for BEXTR.
24786     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
24787         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
24788       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
24789       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
24790       if (MaskNode && ShiftNode) {
24791         uint64_t Mask = MaskNode->getZExtValue();
24792         uint64_t Shift = ShiftNode->getZExtValue();
24793         if (isMask_64(Mask)) {
24794           uint64_t MaskSize = countPopulation(Mask);
24795           if (Shift + MaskSize <= VT.getSizeInBits())
24796             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
24797                                DAG.getConstant(Shift | (MaskSize << 8), DL,
24798                                                VT));
24799         }
24800       }
24801     } // BEXTR
24802
24803     return SDValue();
24804   }
24805
24806   // Want to form ANDNP nodes:
24807   // 1) In the hopes of then easily combining them with OR and AND nodes
24808   //    to form PBLEND/PSIGN.
24809   // 2) To match ANDN packed intrinsics
24810   if (VT != MVT::v2i64 && VT != MVT::v4i64)
24811     return SDValue();
24812
24813   // Check LHS for vnot
24814   if (N0.getOpcode() == ISD::XOR &&
24815       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
24816       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
24817     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
24818
24819   // Check RHS for vnot
24820   if (N1.getOpcode() == ISD::XOR &&
24821       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
24822       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
24823     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
24824
24825   return SDValue();
24826 }
24827
24828 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
24829                                 TargetLowering::DAGCombinerInfo &DCI,
24830                                 const X86Subtarget *Subtarget) {
24831   if (DCI.isBeforeLegalizeOps())
24832     return SDValue();
24833
24834   if (SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget))
24835     return R;
24836
24837   if (SDValue FPLogic = convertIntLogicToFPLogic(N, DAG, Subtarget))
24838     return FPLogic;
24839
24840   SDValue N0 = N->getOperand(0);
24841   SDValue N1 = N->getOperand(1);
24842   EVT VT = N->getValueType(0);
24843
24844   // look for psign/blend
24845   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
24846     if (!Subtarget->hasSSSE3() ||
24847         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
24848       return SDValue();
24849
24850     // Canonicalize pandn to RHS
24851     if (N0.getOpcode() == X86ISD::ANDNP)
24852       std::swap(N0, N1);
24853     // or (and (m, y), (pandn m, x))
24854     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
24855       SDValue Mask = N1.getOperand(0);
24856       SDValue X    = N1.getOperand(1);
24857       SDValue Y;
24858       if (N0.getOperand(0) == Mask)
24859         Y = N0.getOperand(1);
24860       if (N0.getOperand(1) == Mask)
24861         Y = N0.getOperand(0);
24862
24863       // Check to see if the mask appeared in both the AND and ANDNP and
24864       if (!Y.getNode())
24865         return SDValue();
24866
24867       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
24868       // Look through mask bitcast.
24869       if (Mask.getOpcode() == ISD::BITCAST)
24870         Mask = Mask.getOperand(0);
24871       if (X.getOpcode() == ISD::BITCAST)
24872         X = X.getOperand(0);
24873       if (Y.getOpcode() == ISD::BITCAST)
24874         Y = Y.getOperand(0);
24875
24876       EVT MaskVT = Mask.getValueType();
24877
24878       // Validate that the Mask operand is a vector sra node.
24879       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
24880       // there is no psrai.b
24881       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
24882       unsigned SraAmt = ~0;
24883       if (Mask.getOpcode() == ISD::SRA) {
24884         if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Mask.getOperand(1)))
24885           if (auto *AmtConst = AmtBV->getConstantSplatNode())
24886             SraAmt = AmtConst->getZExtValue();
24887       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
24888         SDValue SraC = Mask.getOperand(1);
24889         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
24890       }
24891       if ((SraAmt + 1) != EltBits)
24892         return SDValue();
24893
24894       SDLoc DL(N);
24895
24896       // Now we know we at least have a plendvb with the mask val.  See if
24897       // we can form a psignb/w/d.
24898       // psign = x.type == y.type == mask.type && y = sub(0, x);
24899       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
24900           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
24901           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
24902         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
24903                "Unsupported VT for PSIGN");
24904         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
24905         return DAG.getBitcast(VT, Mask);
24906       }
24907       // PBLENDVB only available on SSE 4.1
24908       if (!Subtarget->hasSSE41())
24909         return SDValue();
24910
24911       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
24912
24913       X = DAG.getBitcast(BlendVT, X);
24914       Y = DAG.getBitcast(BlendVT, Y);
24915       Mask = DAG.getBitcast(BlendVT, Mask);
24916       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
24917       return DAG.getBitcast(VT, Mask);
24918     }
24919   }
24920
24921   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
24922     return SDValue();
24923
24924   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
24925   bool OptForSize = DAG.getMachineFunction().getFunction()->optForSize();
24926
24927   // SHLD/SHRD instructions have lower register pressure, but on some
24928   // platforms they have higher latency than the equivalent
24929   // series of shifts/or that would otherwise be generated.
24930   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
24931   // have higher latencies and we are not optimizing for size.
24932   if (!OptForSize && Subtarget->isSHLDSlow())
24933     return SDValue();
24934
24935   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
24936     std::swap(N0, N1);
24937   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
24938     return SDValue();
24939   if (!N0.hasOneUse() || !N1.hasOneUse())
24940     return SDValue();
24941
24942   SDValue ShAmt0 = N0.getOperand(1);
24943   if (ShAmt0.getValueType() != MVT::i8)
24944     return SDValue();
24945   SDValue ShAmt1 = N1.getOperand(1);
24946   if (ShAmt1.getValueType() != MVT::i8)
24947     return SDValue();
24948   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
24949     ShAmt0 = ShAmt0.getOperand(0);
24950   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
24951     ShAmt1 = ShAmt1.getOperand(0);
24952
24953   SDLoc DL(N);
24954   unsigned Opc = X86ISD::SHLD;
24955   SDValue Op0 = N0.getOperand(0);
24956   SDValue Op1 = N1.getOperand(0);
24957   if (ShAmt0.getOpcode() == ISD::SUB) {
24958     Opc = X86ISD::SHRD;
24959     std::swap(Op0, Op1);
24960     std::swap(ShAmt0, ShAmt1);
24961   }
24962
24963   unsigned Bits = VT.getSizeInBits();
24964   if (ShAmt1.getOpcode() == ISD::SUB) {
24965     SDValue Sum = ShAmt1.getOperand(0);
24966     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
24967       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
24968       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
24969         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
24970       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
24971         return DAG.getNode(Opc, DL, VT,
24972                            Op0, Op1,
24973                            DAG.getNode(ISD::TRUNCATE, DL,
24974                                        MVT::i8, ShAmt0));
24975     }
24976   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
24977     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
24978     if (ShAmt0C &&
24979         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
24980       return DAG.getNode(Opc, DL, VT,
24981                          N0.getOperand(0), N1.getOperand(0),
24982                          DAG.getNode(ISD::TRUNCATE, DL,
24983                                        MVT::i8, ShAmt0));
24984   }
24985
24986   return SDValue();
24987 }
24988
24989 // Generate NEG and CMOV for integer abs.
24990 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
24991   EVT VT = N->getValueType(0);
24992
24993   // Since X86 does not have CMOV for 8-bit integer, we don't convert
24994   // 8-bit integer abs to NEG and CMOV.
24995   if (VT.isInteger() && VT.getSizeInBits() == 8)
24996     return SDValue();
24997
24998   SDValue N0 = N->getOperand(0);
24999   SDValue N1 = N->getOperand(1);
25000   SDLoc DL(N);
25001
25002   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
25003   // and change it to SUB and CMOV.
25004   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
25005       N0.getOpcode() == ISD::ADD &&
25006       N0.getOperand(1) == N1 &&
25007       N1.getOpcode() == ISD::SRA &&
25008       N1.getOperand(0) == N0.getOperand(0))
25009     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
25010       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
25011         // Generate SUB & CMOV.
25012         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
25013                                   DAG.getConstant(0, DL, VT), N0.getOperand(0));
25014
25015         SDValue Ops[] = { N0.getOperand(0), Neg,
25016                           DAG.getConstant(X86::COND_GE, DL, MVT::i8),
25017                           SDValue(Neg.getNode(), 1) };
25018         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
25019       }
25020   return SDValue();
25021 }
25022
25023 // Try to turn tests against the signbit in the form of:
25024 //   XOR(TRUNCATE(SRL(X, size(X)-1)), 1)
25025 // into:
25026 //   SETGT(X, -1)
25027 static SDValue foldXorTruncShiftIntoCmp(SDNode *N, SelectionDAG &DAG) {
25028   // This is only worth doing if the output type is i8.
25029   if (N->getValueType(0) != MVT::i8)
25030     return SDValue();
25031
25032   SDValue N0 = N->getOperand(0);
25033   SDValue N1 = N->getOperand(1);
25034
25035   // We should be performing an xor against a truncated shift.
25036   if (N0.getOpcode() != ISD::TRUNCATE || !N0.hasOneUse())
25037     return SDValue();
25038
25039   // Make sure we are performing an xor against one.
25040   if (!isa<ConstantSDNode>(N1) || !cast<ConstantSDNode>(N1)->isOne())
25041     return SDValue();
25042
25043   // SetCC on x86 zero extends so only act on this if it's a logical shift.
25044   SDValue Shift = N0.getOperand(0);
25045   if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse())
25046     return SDValue();
25047
25048   // Make sure we are truncating from one of i16, i32 or i64.
25049   EVT ShiftTy = Shift.getValueType();
25050   if (ShiftTy != MVT::i16 && ShiftTy != MVT::i32 && ShiftTy != MVT::i64)
25051     return SDValue();
25052
25053   // Make sure the shift amount extracts the sign bit.
25054   if (!isa<ConstantSDNode>(Shift.getOperand(1)) ||
25055       Shift.getConstantOperandVal(1) != ShiftTy.getSizeInBits() - 1)
25056     return SDValue();
25057
25058   // Create a greater-than comparison against -1.
25059   // N.B. Using SETGE against 0 works but we want a canonical looking
25060   // comparison, using SETGT matches up with what TranslateX86CC.
25061   SDLoc DL(N);
25062   SDValue ShiftOp = Shift.getOperand(0);
25063   EVT ShiftOpTy = ShiftOp.getValueType();
25064   SDValue Cond = DAG.getSetCC(DL, MVT::i8, ShiftOp,
25065                               DAG.getConstant(-1, DL, ShiftOpTy), ISD::SETGT);
25066   return Cond;
25067 }
25068
25069 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
25070                                  TargetLowering::DAGCombinerInfo &DCI,
25071                                  const X86Subtarget *Subtarget) {
25072   if (DCI.isBeforeLegalizeOps())
25073     return SDValue();
25074
25075   if (SDValue RV = foldXorTruncShiftIntoCmp(N, DAG))
25076     return RV;
25077
25078   if (Subtarget->hasCMov())
25079     if (SDValue RV = performIntegerAbsCombine(N, DAG))
25080       return RV;
25081
25082   if (SDValue FPLogic = convertIntLogicToFPLogic(N, DAG, Subtarget))
25083     return FPLogic;
25084
25085   return SDValue();
25086 }
25087
25088 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
25089 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
25090                                   TargetLowering::DAGCombinerInfo &DCI,
25091                                   const X86Subtarget *Subtarget) {
25092   LoadSDNode *Ld = cast<LoadSDNode>(N);
25093   EVT RegVT = Ld->getValueType(0);
25094   EVT MemVT = Ld->getMemoryVT();
25095   SDLoc dl(Ld);
25096   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25097
25098   // For chips with slow 32-byte unaligned loads, break the 32-byte operation
25099   // into two 16-byte operations.
25100   ISD::LoadExtType Ext = Ld->getExtensionType();
25101   bool Fast;
25102   unsigned AddressSpace = Ld->getAddressSpace();
25103   unsigned Alignment = Ld->getAlignment();
25104   if (RegVT.is256BitVector() && !DCI.isBeforeLegalizeOps() &&
25105       Ext == ISD::NON_EXTLOAD &&
25106       TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), RegVT,
25107                              AddressSpace, Alignment, &Fast) && !Fast) {
25108     unsigned NumElems = RegVT.getVectorNumElements();
25109     if (NumElems < 2)
25110       return SDValue();
25111
25112     SDValue Ptr = Ld->getBasePtr();
25113     SDValue Increment =
25114         DAG.getConstant(16, dl, TLI.getPointerTy(DAG.getDataLayout()));
25115
25116     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
25117                                   NumElems/2);
25118     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
25119                                 Ld->getPointerInfo(), Ld->isVolatile(),
25120                                 Ld->isNonTemporal(), Ld->isInvariant(),
25121                                 Alignment);
25122     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
25123     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
25124                                 Ld->getPointerInfo(), Ld->isVolatile(),
25125                                 Ld->isNonTemporal(), Ld->isInvariant(),
25126                                 std::min(16U, Alignment));
25127     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
25128                              Load1.getValue(1),
25129                              Load2.getValue(1));
25130
25131     SDValue NewVec = DAG.getUNDEF(RegVT);
25132     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
25133     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
25134     return DCI.CombineTo(N, NewVec, TF, true);
25135   }
25136
25137   return SDValue();
25138 }
25139
25140 /// PerformMLOADCombine - Resolve extending loads
25141 static SDValue PerformMLOADCombine(SDNode *N, SelectionDAG &DAG,
25142                                    TargetLowering::DAGCombinerInfo &DCI,
25143                                    const X86Subtarget *Subtarget) {
25144   MaskedLoadSDNode *Mld = cast<MaskedLoadSDNode>(N);
25145   if (Mld->getExtensionType() != ISD::SEXTLOAD)
25146     return SDValue();
25147
25148   EVT VT = Mld->getValueType(0);
25149   unsigned NumElems = VT.getVectorNumElements();
25150   EVT LdVT = Mld->getMemoryVT();
25151   SDLoc dl(Mld);
25152
25153   assert(LdVT != VT && "Cannot extend to the same type");
25154   unsigned ToSz = VT.getVectorElementType().getSizeInBits();
25155   unsigned FromSz = LdVT.getVectorElementType().getSizeInBits();
25156   // From, To sizes and ElemCount must be pow of two
25157   assert (isPowerOf2_32(NumElems * FromSz * ToSz) &&
25158     "Unexpected size for extending masked load");
25159
25160   unsigned SizeRatio  = ToSz / FromSz;
25161   assert(SizeRatio * NumElems * FromSz == VT.getSizeInBits());
25162
25163   // Create a type on which we perform the shuffle
25164   EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
25165           LdVT.getScalarType(), NumElems*SizeRatio);
25166   assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
25167
25168   // Convert Src0 value
25169   SDValue WideSrc0 = DAG.getBitcast(WideVecVT, Mld->getSrc0());
25170   if (Mld->getSrc0().getOpcode() != ISD::UNDEF) {
25171     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
25172     for (unsigned i = 0; i != NumElems; ++i)
25173       ShuffleVec[i] = i * SizeRatio;
25174
25175     // Can't shuffle using an illegal type.
25176     assert(DAG.getTargetLoweringInfo().isTypeLegal(WideVecVT) &&
25177            "WideVecVT should be legal");
25178     WideSrc0 = DAG.getVectorShuffle(WideVecVT, dl, WideSrc0,
25179                                     DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
25180   }
25181   // Prepare the new mask
25182   SDValue NewMask;
25183   SDValue Mask = Mld->getMask();
25184   if (Mask.getValueType() == VT) {
25185     // Mask and original value have the same type
25186     NewMask = DAG.getBitcast(WideVecVT, Mask);
25187     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
25188     for (unsigned i = 0; i != NumElems; ++i)
25189       ShuffleVec[i] = i * SizeRatio;
25190     for (unsigned i = NumElems; i != NumElems*SizeRatio; ++i)
25191       ShuffleVec[i] = NumElems*SizeRatio;
25192     NewMask = DAG.getVectorShuffle(WideVecVT, dl, NewMask,
25193                                    DAG.getConstant(0, dl, WideVecVT),
25194                                    &ShuffleVec[0]);
25195   }
25196   else {
25197     assert(Mask.getValueType().getVectorElementType() == MVT::i1);
25198     unsigned WidenNumElts = NumElems*SizeRatio;
25199     unsigned MaskNumElts = VT.getVectorNumElements();
25200     EVT NewMaskVT = EVT::getVectorVT(*DAG.getContext(),  MVT::i1,
25201                                      WidenNumElts);
25202
25203     unsigned NumConcat = WidenNumElts / MaskNumElts;
25204     SmallVector<SDValue, 16> Ops(NumConcat);
25205     SDValue ZeroVal = DAG.getConstant(0, dl, Mask.getValueType());
25206     Ops[0] = Mask;
25207     for (unsigned i = 1; i != NumConcat; ++i)
25208       Ops[i] = ZeroVal;
25209
25210     NewMask = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewMaskVT, Ops);
25211   }
25212
25213   SDValue WideLd = DAG.getMaskedLoad(WideVecVT, dl, Mld->getChain(),
25214                                      Mld->getBasePtr(), NewMask, WideSrc0,
25215                                      Mld->getMemoryVT(), Mld->getMemOperand(),
25216                                      ISD::NON_EXTLOAD);
25217   SDValue NewVec = DAG.getNode(X86ISD::VSEXT, dl, VT, WideLd);
25218   return DCI.CombineTo(N, NewVec, WideLd.getValue(1), true);
25219 }
25220 /// PerformMSTORECombine - Resolve truncating stores
25221 static SDValue PerformMSTORECombine(SDNode *N, SelectionDAG &DAG,
25222                                     const X86Subtarget *Subtarget) {
25223   MaskedStoreSDNode *Mst = cast<MaskedStoreSDNode>(N);
25224   if (!Mst->isTruncatingStore())
25225     return SDValue();
25226
25227   EVT VT = Mst->getValue().getValueType();
25228   unsigned NumElems = VT.getVectorNumElements();
25229   EVT StVT = Mst->getMemoryVT();
25230   SDLoc dl(Mst);
25231
25232   assert(StVT != VT && "Cannot truncate to the same type");
25233   unsigned FromSz = VT.getVectorElementType().getSizeInBits();
25234   unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
25235
25236   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25237
25238   // The truncating store is legal in some cases. For example
25239   // vpmovqb, vpmovqw, vpmovqd, vpmovdb, vpmovdw
25240   // are designated for truncate store.
25241   // In this case we don't need any further transformations.
25242   if (TLI.isTruncStoreLegal(VT, StVT))
25243     return SDValue();
25244
25245   // From, To sizes and ElemCount must be pow of two
25246   assert (isPowerOf2_32(NumElems * FromSz * ToSz) &&
25247     "Unexpected size for truncating masked store");
25248   // We are going to use the original vector elt for storing.
25249   // Accumulated smaller vector elements must be a multiple of the store size.
25250   assert (((NumElems * FromSz) % ToSz) == 0 &&
25251           "Unexpected ratio for truncating masked store");
25252
25253   unsigned SizeRatio  = FromSz / ToSz;
25254   assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
25255
25256   // Create a type on which we perform the shuffle
25257   EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
25258           StVT.getScalarType(), NumElems*SizeRatio);
25259
25260   assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
25261
25262   SDValue WideVec = DAG.getBitcast(WideVecVT, Mst->getValue());
25263   SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
25264   for (unsigned i = 0; i != NumElems; ++i)
25265     ShuffleVec[i] = i * SizeRatio;
25266
25267   // Can't shuffle using an illegal type.
25268   assert(DAG.getTargetLoweringInfo().isTypeLegal(WideVecVT) &&
25269          "WideVecVT should be legal");
25270
25271   SDValue TruncatedVal = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
25272                                         DAG.getUNDEF(WideVecVT),
25273                                         &ShuffleVec[0]);
25274
25275   SDValue NewMask;
25276   SDValue Mask = Mst->getMask();
25277   if (Mask.getValueType() == VT) {
25278     // Mask and original value have the same type
25279     NewMask = DAG.getBitcast(WideVecVT, Mask);
25280     for (unsigned i = 0; i != NumElems; ++i)
25281       ShuffleVec[i] = i * SizeRatio;
25282     for (unsigned i = NumElems; i != NumElems*SizeRatio; ++i)
25283       ShuffleVec[i] = NumElems*SizeRatio;
25284     NewMask = DAG.getVectorShuffle(WideVecVT, dl, NewMask,
25285                                    DAG.getConstant(0, dl, WideVecVT),
25286                                    &ShuffleVec[0]);
25287   }
25288   else {
25289     assert(Mask.getValueType().getVectorElementType() == MVT::i1);
25290     unsigned WidenNumElts = NumElems*SizeRatio;
25291     unsigned MaskNumElts = VT.getVectorNumElements();
25292     EVT NewMaskVT = EVT::getVectorVT(*DAG.getContext(),  MVT::i1,
25293                                      WidenNumElts);
25294
25295     unsigned NumConcat = WidenNumElts / MaskNumElts;
25296     SmallVector<SDValue, 16> Ops(NumConcat);
25297     SDValue ZeroVal = DAG.getConstant(0, dl, Mask.getValueType());
25298     Ops[0] = Mask;
25299     for (unsigned i = 1; i != NumConcat; ++i)
25300       Ops[i] = ZeroVal;
25301
25302     NewMask = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewMaskVT, Ops);
25303   }
25304
25305   return DAG.getMaskedStore(Mst->getChain(), dl, TruncatedVal, Mst->getBasePtr(),
25306                             NewMask, StVT, Mst->getMemOperand(), false);
25307 }
25308 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
25309 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
25310                                    const X86Subtarget *Subtarget) {
25311   StoreSDNode *St = cast<StoreSDNode>(N);
25312   EVT VT = St->getValue().getValueType();
25313   EVT StVT = St->getMemoryVT();
25314   SDLoc dl(St);
25315   SDValue StoredVal = St->getOperand(1);
25316   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25317
25318   // If we are saving a concatenation of two XMM registers and 32-byte stores
25319   // are slow, such as on Sandy Bridge, perform two 16-byte stores.
25320   bool Fast;
25321   unsigned AddressSpace = St->getAddressSpace();
25322   unsigned Alignment = St->getAlignment();
25323   if (VT.is256BitVector() && StVT == VT &&
25324       TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), VT,
25325                              AddressSpace, Alignment, &Fast) && !Fast) {
25326     unsigned NumElems = VT.getVectorNumElements();
25327     if (NumElems < 2)
25328       return SDValue();
25329
25330     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
25331     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
25332
25333     SDValue Stride =
25334         DAG.getConstant(16, dl, TLI.getPointerTy(DAG.getDataLayout()));
25335     SDValue Ptr0 = St->getBasePtr();
25336     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
25337
25338     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
25339                                 St->getPointerInfo(), St->isVolatile(),
25340                                 St->isNonTemporal(), Alignment);
25341     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
25342                                 St->getPointerInfo(), St->isVolatile(),
25343                                 St->isNonTemporal(),
25344                                 std::min(16U, Alignment));
25345     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
25346   }
25347
25348   // Optimize trunc store (of multiple scalars) to shuffle and store.
25349   // First, pack all of the elements in one place. Next, store to memory
25350   // in fewer chunks.
25351   if (St->isTruncatingStore() && VT.isVector()) {
25352     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25353     unsigned NumElems = VT.getVectorNumElements();
25354     assert(StVT != VT && "Cannot truncate to the same type");
25355     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
25356     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
25357
25358     // The truncating store is legal in some cases. For example
25359     // vpmovqb, vpmovqw, vpmovqd, vpmovdb, vpmovdw
25360     // are designated for truncate store.
25361     // In this case we don't need any further transformations.
25362     if (TLI.isTruncStoreLegal(VT, StVT))
25363       return SDValue();
25364
25365     // From, To sizes and ElemCount must be pow of two
25366     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
25367     // We are going to use the original vector elt for storing.
25368     // Accumulated smaller vector elements must be a multiple of the store size.
25369     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
25370
25371     unsigned SizeRatio  = FromSz / ToSz;
25372
25373     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
25374
25375     // Create a type on which we perform the shuffle
25376     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
25377             StVT.getScalarType(), NumElems*SizeRatio);
25378
25379     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
25380
25381     SDValue WideVec = DAG.getBitcast(WideVecVT, St->getValue());
25382     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
25383     for (unsigned i = 0; i != NumElems; ++i)
25384       ShuffleVec[i] = i * SizeRatio;
25385
25386     // Can't shuffle using an illegal type.
25387     if (!TLI.isTypeLegal(WideVecVT))
25388       return SDValue();
25389
25390     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
25391                                          DAG.getUNDEF(WideVecVT),
25392                                          &ShuffleVec[0]);
25393     // At this point all of the data is stored at the bottom of the
25394     // register. We now need to save it to mem.
25395
25396     // Find the largest store unit
25397     MVT StoreType = MVT::i8;
25398     for (MVT Tp : MVT::integer_valuetypes()) {
25399       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
25400         StoreType = Tp;
25401     }
25402
25403     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
25404     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
25405         (64 <= NumElems * ToSz))
25406       StoreType = MVT::f64;
25407
25408     // Bitcast the original vector into a vector of store-size units
25409     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
25410             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
25411     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
25412     SDValue ShuffWide = DAG.getBitcast(StoreVecVT, Shuff);
25413     SmallVector<SDValue, 8> Chains;
25414     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits() / 8, dl,
25415                                         TLI.getPointerTy(DAG.getDataLayout()));
25416     SDValue Ptr = St->getBasePtr();
25417
25418     // Perform one or more big stores into memory.
25419     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
25420       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
25421                                    StoreType, ShuffWide,
25422                                    DAG.getIntPtrConstant(i, dl));
25423       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
25424                                 St->getPointerInfo(), St->isVolatile(),
25425                                 St->isNonTemporal(), St->getAlignment());
25426       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
25427       Chains.push_back(Ch);
25428     }
25429
25430     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
25431   }
25432
25433   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
25434   // the FP state in cases where an emms may be missing.
25435   // A preferable solution to the general problem is to figure out the right
25436   // places to insert EMMS.  This qualifies as a quick hack.
25437
25438   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
25439   if (VT.getSizeInBits() != 64)
25440     return SDValue();
25441
25442   const Function *F = DAG.getMachineFunction().getFunction();
25443   bool NoImplicitFloatOps = F->hasFnAttribute(Attribute::NoImplicitFloat);
25444   bool F64IsLegal =
25445       !Subtarget->useSoftFloat() && !NoImplicitFloatOps && Subtarget->hasSSE2();
25446   if ((VT.isVector() ||
25447        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
25448       isa<LoadSDNode>(St->getValue()) &&
25449       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
25450       St->getChain().hasOneUse() && !St->isVolatile()) {
25451     SDNode* LdVal = St->getValue().getNode();
25452     LoadSDNode *Ld = nullptr;
25453     int TokenFactorIndex = -1;
25454     SmallVector<SDValue, 8> Ops;
25455     SDNode* ChainVal = St->getChain().getNode();
25456     // Must be a store of a load.  We currently handle two cases:  the load
25457     // is a direct child, and it's under an intervening TokenFactor.  It is
25458     // possible to dig deeper under nested TokenFactors.
25459     if (ChainVal == LdVal)
25460       Ld = cast<LoadSDNode>(St->getChain());
25461     else if (St->getValue().hasOneUse() &&
25462              ChainVal->getOpcode() == ISD::TokenFactor) {
25463       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
25464         if (ChainVal->getOperand(i).getNode() == LdVal) {
25465           TokenFactorIndex = i;
25466           Ld = cast<LoadSDNode>(St->getValue());
25467         } else
25468           Ops.push_back(ChainVal->getOperand(i));
25469       }
25470     }
25471
25472     if (!Ld || !ISD::isNormalLoad(Ld))
25473       return SDValue();
25474
25475     // If this is not the MMX case, i.e. we are just turning i64 load/store
25476     // into f64 load/store, avoid the transformation if there are multiple
25477     // uses of the loaded value.
25478     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
25479       return SDValue();
25480
25481     SDLoc LdDL(Ld);
25482     SDLoc StDL(N);
25483     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
25484     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
25485     // pair instead.
25486     if (Subtarget->is64Bit() || F64IsLegal) {
25487       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
25488       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
25489                                   Ld->getPointerInfo(), Ld->isVolatile(),
25490                                   Ld->isNonTemporal(), Ld->isInvariant(),
25491                                   Ld->getAlignment());
25492       SDValue NewChain = NewLd.getValue(1);
25493       if (TokenFactorIndex != -1) {
25494         Ops.push_back(NewChain);
25495         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
25496       }
25497       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
25498                           St->getPointerInfo(),
25499                           St->isVolatile(), St->isNonTemporal(),
25500                           St->getAlignment());
25501     }
25502
25503     // Otherwise, lower to two pairs of 32-bit loads / stores.
25504     SDValue LoAddr = Ld->getBasePtr();
25505     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
25506                                  DAG.getConstant(4, LdDL, MVT::i32));
25507
25508     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
25509                                Ld->getPointerInfo(),
25510                                Ld->isVolatile(), Ld->isNonTemporal(),
25511                                Ld->isInvariant(), Ld->getAlignment());
25512     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
25513                                Ld->getPointerInfo().getWithOffset(4),
25514                                Ld->isVolatile(), Ld->isNonTemporal(),
25515                                Ld->isInvariant(),
25516                                MinAlign(Ld->getAlignment(), 4));
25517
25518     SDValue NewChain = LoLd.getValue(1);
25519     if (TokenFactorIndex != -1) {
25520       Ops.push_back(LoLd);
25521       Ops.push_back(HiLd);
25522       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
25523     }
25524
25525     LoAddr = St->getBasePtr();
25526     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
25527                          DAG.getConstant(4, StDL, MVT::i32));
25528
25529     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
25530                                 St->getPointerInfo(),
25531                                 St->isVolatile(), St->isNonTemporal(),
25532                                 St->getAlignment());
25533     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
25534                                 St->getPointerInfo().getWithOffset(4),
25535                                 St->isVolatile(),
25536                                 St->isNonTemporal(),
25537                                 MinAlign(St->getAlignment(), 4));
25538     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
25539   }
25540
25541   // This is similar to the above case, but here we handle a scalar 64-bit
25542   // integer store that is extracted from a vector on a 32-bit target.
25543   // If we have SSE2, then we can treat it like a floating-point double
25544   // to get past legalization. The execution dependencies fixup pass will
25545   // choose the optimal machine instruction for the store if this really is
25546   // an integer or v2f32 rather than an f64.
25547   if (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit() &&
25548       St->getOperand(1).getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
25549     SDValue OldExtract = St->getOperand(1);
25550     SDValue ExtOp0 = OldExtract.getOperand(0);
25551     unsigned VecSize = ExtOp0.getValueSizeInBits();
25552     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, VecSize / 64);
25553     SDValue BitCast = DAG.getBitcast(VecVT, ExtOp0);
25554     SDValue NewExtract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
25555                                      BitCast, OldExtract.getOperand(1));
25556     return DAG.getStore(St->getChain(), dl, NewExtract, St->getBasePtr(),
25557                         St->getPointerInfo(), St->isVolatile(),
25558                         St->isNonTemporal(), St->getAlignment());
25559   }
25560
25561   return SDValue();
25562 }
25563
25564 /// Return 'true' if this vector operation is "horizontal"
25565 /// and return the operands for the horizontal operation in LHS and RHS.  A
25566 /// horizontal operation performs the binary operation on successive elements
25567 /// of its first operand, then on successive elements of its second operand,
25568 /// returning the resulting values in a vector.  For example, if
25569 ///   A = < float a0, float a1, float a2, float a3 >
25570 /// and
25571 ///   B = < float b0, float b1, float b2, float b3 >
25572 /// then the result of doing a horizontal operation on A and B is
25573 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
25574 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
25575 /// A horizontal-op B, for some already available A and B, and if so then LHS is
25576 /// set to A, RHS to B, and the routine returns 'true'.
25577 /// Note that the binary operation should have the property that if one of the
25578 /// operands is UNDEF then the result is UNDEF.
25579 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
25580   // Look for the following pattern: if
25581   //   A = < float a0, float a1, float a2, float a3 >
25582   //   B = < float b0, float b1, float b2, float b3 >
25583   // and
25584   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
25585   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
25586   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
25587   // which is A horizontal-op B.
25588
25589   // At least one of the operands should be a vector shuffle.
25590   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
25591       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
25592     return false;
25593
25594   MVT VT = LHS.getSimpleValueType();
25595
25596   assert((VT.is128BitVector() || VT.is256BitVector()) &&
25597          "Unsupported vector type for horizontal add/sub");
25598
25599   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
25600   // operate independently on 128-bit lanes.
25601   unsigned NumElts = VT.getVectorNumElements();
25602   unsigned NumLanes = VT.getSizeInBits()/128;
25603   unsigned NumLaneElts = NumElts / NumLanes;
25604   assert((NumLaneElts % 2 == 0) &&
25605          "Vector type should have an even number of elements in each lane");
25606   unsigned HalfLaneElts = NumLaneElts/2;
25607
25608   // View LHS in the form
25609   //   LHS = VECTOR_SHUFFLE A, B, LMask
25610   // If LHS is not a shuffle then pretend it is the shuffle
25611   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
25612   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
25613   // type VT.
25614   SDValue A, B;
25615   SmallVector<int, 16> LMask(NumElts);
25616   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
25617     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
25618       A = LHS.getOperand(0);
25619     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
25620       B = LHS.getOperand(1);
25621     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
25622     std::copy(Mask.begin(), Mask.end(), LMask.begin());
25623   } else {
25624     if (LHS.getOpcode() != ISD::UNDEF)
25625       A = LHS;
25626     for (unsigned i = 0; i != NumElts; ++i)
25627       LMask[i] = i;
25628   }
25629
25630   // Likewise, view RHS in the form
25631   //   RHS = VECTOR_SHUFFLE C, D, RMask
25632   SDValue C, D;
25633   SmallVector<int, 16> RMask(NumElts);
25634   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
25635     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
25636       C = RHS.getOperand(0);
25637     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
25638       D = RHS.getOperand(1);
25639     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
25640     std::copy(Mask.begin(), Mask.end(), RMask.begin());
25641   } else {
25642     if (RHS.getOpcode() != ISD::UNDEF)
25643       C = RHS;
25644     for (unsigned i = 0; i != NumElts; ++i)
25645       RMask[i] = i;
25646   }
25647
25648   // Check that the shuffles are both shuffling the same vectors.
25649   if (!(A == C && B == D) && !(A == D && B == C))
25650     return false;
25651
25652   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
25653   if (!A.getNode() && !B.getNode())
25654     return false;
25655
25656   // If A and B occur in reverse order in RHS, then "swap" them (which means
25657   // rewriting the mask).
25658   if (A != C)
25659     ShuffleVectorSDNode::commuteMask(RMask);
25660
25661   // At this point LHS and RHS are equivalent to
25662   //   LHS = VECTOR_SHUFFLE A, B, LMask
25663   //   RHS = VECTOR_SHUFFLE A, B, RMask
25664   // Check that the masks correspond to performing a horizontal operation.
25665   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
25666     for (unsigned i = 0; i != NumLaneElts; ++i) {
25667       int LIdx = LMask[i+l], RIdx = RMask[i+l];
25668
25669       // Ignore any UNDEF components.
25670       if (LIdx < 0 || RIdx < 0 ||
25671           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
25672           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
25673         continue;
25674
25675       // Check that successive elements are being operated on.  If not, this is
25676       // not a horizontal operation.
25677       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
25678       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
25679       if (!(LIdx == Index && RIdx == Index + 1) &&
25680           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
25681         return false;
25682     }
25683   }
25684
25685   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
25686   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
25687   return true;
25688 }
25689
25690 /// Do target-specific dag combines on floating point adds.
25691 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
25692                                   const X86Subtarget *Subtarget) {
25693   EVT VT = N->getValueType(0);
25694   SDValue LHS = N->getOperand(0);
25695   SDValue RHS = N->getOperand(1);
25696
25697   // Try to synthesize horizontal adds from adds of shuffles.
25698   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
25699        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
25700       isHorizontalBinOp(LHS, RHS, true))
25701     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
25702   return SDValue();
25703 }
25704
25705 /// Do target-specific dag combines on floating point subs.
25706 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
25707                                   const X86Subtarget *Subtarget) {
25708   EVT VT = N->getValueType(0);
25709   SDValue LHS = N->getOperand(0);
25710   SDValue RHS = N->getOperand(1);
25711
25712   // Try to synthesize horizontal subs from subs of shuffles.
25713   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
25714        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
25715       isHorizontalBinOp(LHS, RHS, false))
25716     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
25717   return SDValue();
25718 }
25719
25720 /// Do target-specific dag combines on X86ISD::FOR and X86ISD::FXOR nodes.
25721 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG,
25722                                  const X86Subtarget *Subtarget) {
25723   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
25724
25725   // F[X]OR(0.0, x) -> x
25726   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
25727     if (C->getValueAPF().isPosZero())
25728       return N->getOperand(1);
25729
25730   // F[X]OR(x, 0.0) -> x
25731   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
25732     if (C->getValueAPF().isPosZero())
25733       return N->getOperand(0);
25734
25735   EVT VT = N->getValueType(0);
25736   if (VT.is512BitVector() && !Subtarget->hasDQI()) {
25737     SDLoc dl(N);
25738     MVT IntScalar = MVT::getIntegerVT(VT.getScalarSizeInBits());
25739     MVT IntVT = MVT::getVectorVT(IntScalar, VT.getVectorNumElements());
25740
25741     SDValue Op0 = DAG.getNode(ISD::BITCAST, dl, IntVT, N->getOperand(0));
25742     SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, IntVT, N->getOperand(1));
25743     unsigned IntOpcode = (N->getOpcode() == X86ISD::FOR) ? ISD::OR : ISD::XOR;
25744     SDValue IntOp = DAG.getNode(IntOpcode, dl, IntVT, Op0, Op1);
25745     return  DAG.getNode(ISD::BITCAST, dl, VT, IntOp);
25746   }
25747   return SDValue();
25748 }
25749
25750 /// Do target-specific dag combines on X86ISD::FMIN and X86ISD::FMAX nodes.
25751 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
25752   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
25753
25754   // Only perform optimizations if UnsafeMath is used.
25755   if (!DAG.getTarget().Options.UnsafeFPMath)
25756     return SDValue();
25757
25758   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
25759   // into FMINC and FMAXC, which are Commutative operations.
25760   unsigned NewOp = 0;
25761   switch (N->getOpcode()) {
25762     default: llvm_unreachable("unknown opcode");
25763     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
25764     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
25765   }
25766
25767   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
25768                      N->getOperand(0), N->getOperand(1));
25769 }
25770
25771 /// Do target-specific dag combines on X86ISD::FAND nodes.
25772 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
25773   // FAND(0.0, x) -> 0.0
25774   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
25775     if (C->getValueAPF().isPosZero())
25776       return N->getOperand(0);
25777
25778   // FAND(x, 0.0) -> 0.0
25779   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
25780     if (C->getValueAPF().isPosZero())
25781       return N->getOperand(1);
25782
25783   return SDValue();
25784 }
25785
25786 /// Do target-specific dag combines on X86ISD::FANDN nodes
25787 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
25788   // FANDN(0.0, x) -> x
25789   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
25790     if (C->getValueAPF().isPosZero())
25791       return N->getOperand(1);
25792
25793   // FANDN(x, 0.0) -> 0.0
25794   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
25795     if (C->getValueAPF().isPosZero())
25796       return N->getOperand(1);
25797
25798   return SDValue();
25799 }
25800
25801 static SDValue PerformBTCombine(SDNode *N,
25802                                 SelectionDAG &DAG,
25803                                 TargetLowering::DAGCombinerInfo &DCI) {
25804   // BT ignores high bits in the bit index operand.
25805   SDValue Op1 = N->getOperand(1);
25806   if (Op1.hasOneUse()) {
25807     unsigned BitWidth = Op1.getValueSizeInBits();
25808     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
25809     APInt KnownZero, KnownOne;
25810     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
25811                                           !DCI.isBeforeLegalizeOps());
25812     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25813     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
25814         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
25815       DCI.CommitTargetLoweringOpt(TLO);
25816   }
25817   return SDValue();
25818 }
25819
25820 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
25821   SDValue Op = N->getOperand(0);
25822   if (Op.getOpcode() == ISD::BITCAST)
25823     Op = Op.getOperand(0);
25824   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
25825   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
25826       VT.getVectorElementType().getSizeInBits() ==
25827       OpVT.getVectorElementType().getSizeInBits()) {
25828     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
25829   }
25830   return SDValue();
25831 }
25832
25833 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
25834                                                const X86Subtarget *Subtarget) {
25835   EVT VT = N->getValueType(0);
25836   if (!VT.isVector())
25837     return SDValue();
25838
25839   SDValue N0 = N->getOperand(0);
25840   SDValue N1 = N->getOperand(1);
25841   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
25842   SDLoc dl(N);
25843
25844   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
25845   // both SSE and AVX2 since there is no sign-extended shift right
25846   // operation on a vector with 64-bit elements.
25847   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
25848   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
25849   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
25850       N0.getOpcode() == ISD::SIGN_EXTEND)) {
25851     SDValue N00 = N0.getOperand(0);
25852
25853     // EXTLOAD has a better solution on AVX2,
25854     // it may be replaced with X86ISD::VSEXT node.
25855     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
25856       if (!ISD::isNormalLoad(N00.getNode()))
25857         return SDValue();
25858
25859     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
25860         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
25861                                   N00, N1);
25862       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
25863     }
25864   }
25865   return SDValue();
25866 }
25867
25868 /// sext(add_nsw(x, C)) --> add(sext(x), C_sext)
25869 /// Promoting a sign extension ahead of an 'add nsw' exposes opportunities
25870 /// to combine math ops, use an LEA, or use a complex addressing mode. This can
25871 /// eliminate extend, add, and shift instructions.
25872 static SDValue promoteSextBeforeAddNSW(SDNode *Sext, SelectionDAG &DAG,
25873                                        const X86Subtarget *Subtarget) {
25874   // TODO: This should be valid for other integer types.
25875   EVT VT = Sext->getValueType(0);
25876   if (VT != MVT::i64)
25877     return SDValue();
25878
25879   // We need an 'add nsw' feeding into the 'sext'.
25880   SDValue Add = Sext->getOperand(0);
25881   if (Add.getOpcode() != ISD::ADD || !Add->getFlags()->hasNoSignedWrap())
25882     return SDValue();
25883
25884   // Having a constant operand to the 'add' ensures that we are not increasing
25885   // the instruction count because the constant is extended for free below.
25886   // A constant operand can also become the displacement field of an LEA.
25887   auto *AddOp1 = dyn_cast<ConstantSDNode>(Add.getOperand(1));
25888   if (!AddOp1)
25889     return SDValue();
25890
25891   // Don't make the 'add' bigger if there's no hope of combining it with some
25892   // other 'add' or 'shl' instruction.
25893   // TODO: It may be profitable to generate simpler LEA instructions in place
25894   // of single 'add' instructions, but the cost model for selecting an LEA
25895   // currently has a high threshold.
25896   bool HasLEAPotential = false;
25897   for (auto *User : Sext->uses()) {
25898     if (User->getOpcode() == ISD::ADD || User->getOpcode() == ISD::SHL) {
25899       HasLEAPotential = true;
25900       break;
25901     }
25902   }
25903   if (!HasLEAPotential)
25904     return SDValue();
25905
25906   // Everything looks good, so pull the 'sext' ahead of the 'add'.
25907   int64_t AddConstant = AddOp1->getSExtValue();
25908   SDValue AddOp0 = Add.getOperand(0);
25909   SDValue NewSext = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(Sext), VT, AddOp0);
25910   SDValue NewConstant = DAG.getConstant(AddConstant, SDLoc(Add), VT);
25911
25912   // The wider add is guaranteed to not wrap because both operands are
25913   // sign-extended.
25914   SDNodeFlags Flags;
25915   Flags.setNoSignedWrap(true);
25916   return DAG.getNode(ISD::ADD, SDLoc(Add), VT, NewSext, NewConstant, &Flags);
25917 }
25918
25919 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
25920                                   TargetLowering::DAGCombinerInfo &DCI,
25921                                   const X86Subtarget *Subtarget) {
25922   SDValue N0 = N->getOperand(0);
25923   EVT VT = N->getValueType(0);
25924   EVT SVT = VT.getScalarType();
25925   EVT InVT = N0.getValueType();
25926   EVT InSVT = InVT.getScalarType();
25927   SDLoc DL(N);
25928
25929   // (i8,i32 sext (sdivrem (i8 x, i8 y)) ->
25930   // (i8,i32 (sdivrem_sext_hreg (i8 x, i8 y)
25931   // This exposes the sext to the sdivrem lowering, so that it directly extends
25932   // from AH (which we otherwise need to do contortions to access).
25933   if (N0.getOpcode() == ISD::SDIVREM && N0.getResNo() == 1 &&
25934       InVT == MVT::i8 && VT == MVT::i32) {
25935     SDVTList NodeTys = DAG.getVTList(MVT::i8, VT);
25936     SDValue R = DAG.getNode(X86ISD::SDIVREM8_SEXT_HREG, DL, NodeTys,
25937                             N0.getOperand(0), N0.getOperand(1));
25938     DAG.ReplaceAllUsesOfValueWith(N0.getValue(0), R.getValue(0));
25939     return R.getValue(1);
25940   }
25941
25942   if (!DCI.isBeforeLegalizeOps()) {
25943     if (InVT == MVT::i1) {
25944       SDValue Zero = DAG.getConstant(0, DL, VT);
25945       SDValue AllOnes =
25946         DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), DL, VT);
25947       return DAG.getNode(ISD::SELECT, DL, VT, N0, AllOnes, Zero);
25948     }
25949     return SDValue();
25950   }
25951
25952   if (VT.isVector() && Subtarget->hasSSE2()) {
25953     auto ExtendVecSize = [&DAG](SDLoc DL, SDValue N, unsigned Size) {
25954       EVT InVT = N.getValueType();
25955       EVT OutVT = EVT::getVectorVT(*DAG.getContext(), InVT.getScalarType(),
25956                                    Size / InVT.getScalarSizeInBits());
25957       SmallVector<SDValue, 8> Opnds(Size / InVT.getSizeInBits(),
25958                                     DAG.getUNDEF(InVT));
25959       Opnds[0] = N;
25960       return DAG.getNode(ISD::CONCAT_VECTORS, DL, OutVT, Opnds);
25961     };
25962
25963     // If target-size is less than 128-bits, extend to a type that would extend
25964     // to 128 bits, extend that and extract the original target vector.
25965     if (VT.getSizeInBits() < 128 && !(128 % VT.getSizeInBits()) &&
25966         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
25967         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
25968       unsigned Scale = 128 / VT.getSizeInBits();
25969       EVT ExVT =
25970           EVT::getVectorVT(*DAG.getContext(), SVT, 128 / SVT.getSizeInBits());
25971       SDValue Ex = ExtendVecSize(DL, N0, Scale * InVT.getSizeInBits());
25972       SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND, DL, ExVT, Ex);
25973       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, SExt,
25974                          DAG.getIntPtrConstant(0, DL));
25975     }
25976
25977     // If target-size is 128-bits, then convert to ISD::SIGN_EXTEND_VECTOR_INREG
25978     // which ensures lowering to X86ISD::VSEXT (pmovsx*).
25979     if (VT.getSizeInBits() == 128 &&
25980         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
25981         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
25982       SDValue ExOp = ExtendVecSize(DL, N0, 128);
25983       return DAG.getSignExtendVectorInReg(ExOp, DL, VT);
25984     }
25985
25986     // On pre-AVX2 targets, split into 128-bit nodes of
25987     // ISD::SIGN_EXTEND_VECTOR_INREG.
25988     if (!Subtarget->hasInt256() && !(VT.getSizeInBits() % 128) &&
25989         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
25990         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
25991       unsigned NumVecs = VT.getSizeInBits() / 128;
25992       unsigned NumSubElts = 128 / SVT.getSizeInBits();
25993       EVT SubVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumSubElts);
25994       EVT InSubVT = EVT::getVectorVT(*DAG.getContext(), InSVT, NumSubElts);
25995
25996       SmallVector<SDValue, 8> Opnds;
25997       for (unsigned i = 0, Offset = 0; i != NumVecs;
25998            ++i, Offset += NumSubElts) {
25999         SDValue SrcVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InSubVT, N0,
26000                                      DAG.getIntPtrConstant(Offset, DL));
26001         SrcVec = ExtendVecSize(DL, SrcVec, 128);
26002         SrcVec = DAG.getSignExtendVectorInReg(SrcVec, DL, SubVT);
26003         Opnds.push_back(SrcVec);
26004       }
26005       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Opnds);
26006     }
26007   }
26008
26009   if (Subtarget->hasAVX() && VT.isVector() && VT.getSizeInBits() == 256)
26010     if (SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget))
26011       return R;
26012
26013   if (SDValue NewAdd = promoteSextBeforeAddNSW(N, DAG, Subtarget))
26014     return NewAdd;
26015
26016   return SDValue();
26017 }
26018
26019 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
26020                                  const X86Subtarget* Subtarget) {
26021   SDLoc dl(N);
26022   EVT VT = N->getValueType(0);
26023
26024   // Let legalize expand this if it isn't a legal type yet.
26025   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
26026     return SDValue();
26027
26028   EVT ScalarVT = VT.getScalarType();
26029   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
26030       (!Subtarget->hasFMA() && !Subtarget->hasFMA4() &&
26031        !Subtarget->hasAVX512()))
26032     return SDValue();
26033
26034   SDValue A = N->getOperand(0);
26035   SDValue B = N->getOperand(1);
26036   SDValue C = N->getOperand(2);
26037
26038   bool NegA = (A.getOpcode() == ISD::FNEG);
26039   bool NegB = (B.getOpcode() == ISD::FNEG);
26040   bool NegC = (C.getOpcode() == ISD::FNEG);
26041
26042   // Negative multiplication when NegA xor NegB
26043   bool NegMul = (NegA != NegB);
26044   if (NegA)
26045     A = A.getOperand(0);
26046   if (NegB)
26047     B = B.getOperand(0);
26048   if (NegC)
26049     C = C.getOperand(0);
26050
26051   unsigned Opcode;
26052   if (!NegMul)
26053     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
26054   else
26055     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
26056
26057   return DAG.getNode(Opcode, dl, VT, A, B, C);
26058 }
26059
26060 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
26061                                   TargetLowering::DAGCombinerInfo &DCI,
26062                                   const X86Subtarget *Subtarget) {
26063   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
26064   //           (and (i32 x86isd::setcc_carry), 1)
26065   // This eliminates the zext. This transformation is necessary because
26066   // ISD::SETCC is always legalized to i8.
26067   SDLoc dl(N);
26068   SDValue N0 = N->getOperand(0);
26069   EVT VT = N->getValueType(0);
26070
26071   if (N0.getOpcode() == ISD::AND &&
26072       N0.hasOneUse() &&
26073       N0.getOperand(0).hasOneUse()) {
26074     SDValue N00 = N0.getOperand(0);
26075     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
26076       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
26077       if (!C || C->getZExtValue() != 1)
26078         return SDValue();
26079       return DAG.getNode(ISD::AND, dl, VT,
26080                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
26081                                      N00.getOperand(0), N00.getOperand(1)),
26082                          DAG.getConstant(1, dl, VT));
26083     }
26084   }
26085
26086   if (N0.getOpcode() == ISD::TRUNCATE &&
26087       N0.hasOneUse() &&
26088       N0.getOperand(0).hasOneUse()) {
26089     SDValue N00 = N0.getOperand(0);
26090     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
26091       return DAG.getNode(ISD::AND, dl, VT,
26092                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
26093                                      N00.getOperand(0), N00.getOperand(1)),
26094                          DAG.getConstant(1, dl, VT));
26095     }
26096   }
26097
26098   if (VT.is256BitVector())
26099     if (SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget))
26100       return R;
26101
26102   // (i8,i32 zext (udivrem (i8 x, i8 y)) ->
26103   // (i8,i32 (udivrem_zext_hreg (i8 x, i8 y)
26104   // This exposes the zext to the udivrem lowering, so that it directly extends
26105   // from AH (which we otherwise need to do contortions to access).
26106   if (N0.getOpcode() == ISD::UDIVREM &&
26107       N0.getResNo() == 1 && N0.getValueType() == MVT::i8 &&
26108       (VT == MVT::i32 || VT == MVT::i64)) {
26109     SDVTList NodeTys = DAG.getVTList(MVT::i8, VT);
26110     SDValue R = DAG.getNode(X86ISD::UDIVREM8_ZEXT_HREG, dl, NodeTys,
26111                             N0.getOperand(0), N0.getOperand(1));
26112     DAG.ReplaceAllUsesOfValueWith(N0.getValue(0), R.getValue(0));
26113     return R.getValue(1);
26114   }
26115
26116   return SDValue();
26117 }
26118
26119 // Optimize x == -y --> x+y == 0
26120 //          x != -y --> x+y != 0
26121 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
26122                                       const X86Subtarget* Subtarget) {
26123   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
26124   SDValue LHS = N->getOperand(0);
26125   SDValue RHS = N->getOperand(1);
26126   EVT VT = N->getValueType(0);
26127   SDLoc DL(N);
26128
26129   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
26130     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
26131       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
26132         SDValue addV = DAG.getNode(ISD::ADD, DL, LHS.getValueType(), RHS,
26133                                    LHS.getOperand(1));
26134         return DAG.getSetCC(DL, N->getValueType(0), addV,
26135                             DAG.getConstant(0, DL, addV.getValueType()), CC);
26136       }
26137   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
26138     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
26139       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
26140         SDValue addV = DAG.getNode(ISD::ADD, DL, RHS.getValueType(), LHS,
26141                                    RHS.getOperand(1));
26142         return DAG.getSetCC(DL, N->getValueType(0), addV,
26143                             DAG.getConstant(0, DL, addV.getValueType()), CC);
26144       }
26145
26146   if (VT.getScalarType() == MVT::i1 &&
26147       (CC == ISD::SETNE || CC == ISD::SETEQ || ISD::isSignedIntSetCC(CC))) {
26148     bool IsSEXT0 =
26149         (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
26150         (LHS.getOperand(0).getValueType().getScalarType() == MVT::i1);
26151     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
26152
26153     if (!IsSEXT0 || !IsVZero1) {
26154       // Swap the operands and update the condition code.
26155       std::swap(LHS, RHS);
26156       CC = ISD::getSetCCSwappedOperands(CC);
26157
26158       IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
26159                 (LHS.getOperand(0).getValueType().getScalarType() == MVT::i1);
26160       IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
26161     }
26162
26163     if (IsSEXT0 && IsVZero1) {
26164       assert(VT == LHS.getOperand(0).getValueType() &&
26165              "Uexpected operand type");
26166       if (CC == ISD::SETGT)
26167         return DAG.getConstant(0, DL, VT);
26168       if (CC == ISD::SETLE)
26169         return DAG.getConstant(1, DL, VT);
26170       if (CC == ISD::SETEQ || CC == ISD::SETGE)
26171         return DAG.getNOT(DL, LHS.getOperand(0), VT);
26172
26173       assert((CC == ISD::SETNE || CC == ISD::SETLT) &&
26174              "Unexpected condition code!");
26175       return LHS.getOperand(0);
26176     }
26177   }
26178
26179   return SDValue();
26180 }
26181
26182 static SDValue NarrowVectorLoadToElement(LoadSDNode *Load, unsigned Index,
26183                                          SelectionDAG &DAG) {
26184   SDLoc dl(Load);
26185   MVT VT = Load->getSimpleValueType(0);
26186   MVT EVT = VT.getVectorElementType();
26187   SDValue Addr = Load->getOperand(1);
26188   SDValue NewAddr = DAG.getNode(
26189       ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
26190       DAG.getConstant(Index * EVT.getStoreSize(), dl,
26191                       Addr.getSimpleValueType()));
26192
26193   SDValue NewLoad =
26194       DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
26195                   DAG.getMachineFunction().getMachineMemOperand(
26196                       Load->getMemOperand(), 0, EVT.getStoreSize()));
26197   return NewLoad;
26198 }
26199
26200 static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG,
26201                                       const X86Subtarget *Subtarget) {
26202   SDLoc dl(N);
26203   MVT VT = N->getOperand(1)->getSimpleValueType(0);
26204   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
26205          "X86insertps is only defined for v4x32");
26206
26207   SDValue Ld = N->getOperand(1);
26208   if (MayFoldLoad(Ld)) {
26209     // Extract the countS bits from the immediate so we can get the proper
26210     // address when narrowing the vector load to a specific element.
26211     // When the second source op is a memory address, insertps doesn't use
26212     // countS and just gets an f32 from that address.
26213     unsigned DestIndex =
26214         cast<ConstantSDNode>(N->getOperand(2))->getZExtValue() >> 6;
26215
26216     Ld = NarrowVectorLoadToElement(cast<LoadSDNode>(Ld), DestIndex, DAG);
26217
26218     // Create this as a scalar to vector to match the instruction pattern.
26219     SDValue LoadScalarToVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Ld);
26220     // countS bits are ignored when loading from memory on insertps, which
26221     // means we don't need to explicitly set them to 0.
26222     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N->getOperand(0),
26223                        LoadScalarToVector, N->getOperand(2));
26224   }
26225   return SDValue();
26226 }
26227
26228 static SDValue PerformBLENDICombine(SDNode *N, SelectionDAG &DAG) {
26229   SDValue V0 = N->getOperand(0);
26230   SDValue V1 = N->getOperand(1);
26231   SDLoc DL(N);
26232   EVT VT = N->getValueType(0);
26233
26234   // Canonicalize a v2f64 blend with a mask of 2 by swapping the vector
26235   // operands and changing the mask to 1. This saves us a bunch of
26236   // pattern-matching possibilities related to scalar math ops in SSE/AVX.
26237   // x86InstrInfo knows how to commute this back after instruction selection
26238   // if it would help register allocation.
26239
26240   // TODO: If optimizing for size or a processor that doesn't suffer from
26241   // partial register update stalls, this should be transformed into a MOVSD
26242   // instruction because a MOVSD is 1-2 bytes smaller than a BLENDPD.
26243
26244   if (VT == MVT::v2f64)
26245     if (auto *Mask = dyn_cast<ConstantSDNode>(N->getOperand(2)))
26246       if (Mask->getZExtValue() == 2 && !isShuffleFoldableLoad(V0)) {
26247         SDValue NewMask = DAG.getConstant(1, DL, MVT::i8);
26248         return DAG.getNode(X86ISD::BLENDI, DL, VT, V1, V0, NewMask);
26249       }
26250
26251   return SDValue();
26252 }
26253
26254 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
26255 // as "sbb reg,reg", since it can be extended without zext and produces
26256 // an all-ones bit which is more useful than 0/1 in some cases.
26257 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
26258                                MVT VT) {
26259   if (VT == MVT::i8)
26260     return DAG.getNode(ISD::AND, DL, VT,
26261                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
26262                                    DAG.getConstant(X86::COND_B, DL, MVT::i8),
26263                                    EFLAGS),
26264                        DAG.getConstant(1, DL, VT));
26265   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
26266   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
26267                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
26268                                  DAG.getConstant(X86::COND_B, DL, MVT::i8),
26269                                  EFLAGS));
26270 }
26271
26272 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
26273 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
26274                                    TargetLowering::DAGCombinerInfo &DCI,
26275                                    const X86Subtarget *Subtarget) {
26276   SDLoc DL(N);
26277   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
26278   SDValue EFLAGS = N->getOperand(1);
26279
26280   if (CC == X86::COND_A) {
26281     // Try to convert COND_A into COND_B in an attempt to facilitate
26282     // materializing "setb reg".
26283     //
26284     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
26285     // cannot take an immediate as its first operand.
26286     //
26287     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
26288         EFLAGS.getValueType().isInteger() &&
26289         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
26290       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
26291                                    EFLAGS.getNode()->getVTList(),
26292                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
26293       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
26294       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
26295     }
26296   }
26297
26298   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
26299   // a zext and produces an all-ones bit which is more useful than 0/1 in some
26300   // cases.
26301   if (CC == X86::COND_B)
26302     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
26303
26304   if (SDValue Flags = checkBoolTestSetCCCombine(EFLAGS, CC)) {
26305     SDValue Cond = DAG.getConstant(CC, DL, MVT::i8);
26306     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
26307   }
26308
26309   return SDValue();
26310 }
26311
26312 // Optimize branch condition evaluation.
26313 //
26314 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
26315                                     TargetLowering::DAGCombinerInfo &DCI,
26316                                     const X86Subtarget *Subtarget) {
26317   SDLoc DL(N);
26318   SDValue Chain = N->getOperand(0);
26319   SDValue Dest = N->getOperand(1);
26320   SDValue EFLAGS = N->getOperand(3);
26321   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
26322
26323   if (SDValue Flags = checkBoolTestSetCCCombine(EFLAGS, CC)) {
26324     SDValue Cond = DAG.getConstant(CC, DL, MVT::i8);
26325     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
26326                        Flags);
26327   }
26328
26329   return SDValue();
26330 }
26331
26332 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
26333                                                          SelectionDAG &DAG) {
26334   // Take advantage of vector comparisons producing 0 or -1 in each lane to
26335   // optimize away operation when it's from a constant.
26336   //
26337   // The general transformation is:
26338   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
26339   //       AND(VECTOR_CMP(x,y), constant2)
26340   //    constant2 = UNARYOP(constant)
26341
26342   // Early exit if this isn't a vector operation, the operand of the
26343   // unary operation isn't a bitwise AND, or if the sizes of the operations
26344   // aren't the same.
26345   EVT VT = N->getValueType(0);
26346   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
26347       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
26348       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
26349     return SDValue();
26350
26351   // Now check that the other operand of the AND is a constant. We could
26352   // make the transformation for non-constant splats as well, but it's unclear
26353   // that would be a benefit as it would not eliminate any operations, just
26354   // perform one more step in scalar code before moving to the vector unit.
26355   if (BuildVectorSDNode *BV =
26356           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
26357     // Bail out if the vector isn't a constant.
26358     if (!BV->isConstant())
26359       return SDValue();
26360
26361     // Everything checks out. Build up the new and improved node.
26362     SDLoc DL(N);
26363     EVT IntVT = BV->getValueType(0);
26364     // Create a new constant of the appropriate type for the transformed
26365     // DAG.
26366     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
26367     // The AND node needs bitcasts to/from an integer vector type around it.
26368     SDValue MaskConst = DAG.getBitcast(IntVT, SourceConst);
26369     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
26370                                  N->getOperand(0)->getOperand(0), MaskConst);
26371     SDValue Res = DAG.getBitcast(VT, NewAnd);
26372     return Res;
26373   }
26374
26375   return SDValue();
26376 }
26377
26378 static SDValue PerformUINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
26379                                         const X86Subtarget *Subtarget) {
26380   SDValue Op0 = N->getOperand(0);
26381   EVT VT = N->getValueType(0);
26382   EVT InVT = Op0.getValueType();
26383   EVT InSVT = InVT.getScalarType();
26384   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
26385
26386   // UINT_TO_FP(vXi8) -> SINT_TO_FP(ZEXT(vXi8 to vXi32))
26387   // UINT_TO_FP(vXi16) -> SINT_TO_FP(ZEXT(vXi16 to vXi32))
26388   if (InVT.isVector() && (InSVT == MVT::i8 || InSVT == MVT::i16)) {
26389     SDLoc dl(N);
26390     EVT DstVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
26391                                  InVT.getVectorNumElements());
26392     SDValue P = DAG.getNode(ISD::ZERO_EXTEND, dl, DstVT, Op0);
26393
26394     if (TLI.isOperationLegal(ISD::UINT_TO_FP, DstVT))
26395       return DAG.getNode(ISD::UINT_TO_FP, dl, VT, P);
26396
26397     return DAG.getNode(ISD::SINT_TO_FP, dl, VT, P);
26398   }
26399
26400   return SDValue();
26401 }
26402
26403 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
26404                                         const X86Subtarget *Subtarget) {
26405   // First try to optimize away the conversion entirely when it's
26406   // conditionally from a constant. Vectors only.
26407   if (SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG))
26408     return Res;
26409
26410   // Now move on to more general possibilities.
26411   SDValue Op0 = N->getOperand(0);
26412   EVT VT = N->getValueType(0);
26413   EVT InVT = Op0.getValueType();
26414   EVT InSVT = InVT.getScalarType();
26415
26416   // SINT_TO_FP(vXi8) -> SINT_TO_FP(SEXT(vXi8 to vXi32))
26417   // SINT_TO_FP(vXi16) -> SINT_TO_FP(SEXT(vXi16 to vXi32))
26418   if (InVT.isVector() && (InSVT == MVT::i8 || InSVT == MVT::i16)) {
26419     SDLoc dl(N);
26420     EVT DstVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
26421                                  InVT.getVectorNumElements());
26422     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
26423     return DAG.getNode(ISD::SINT_TO_FP, dl, VT, P);
26424   }
26425
26426   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
26427   // a 32-bit target where SSE doesn't support i64->FP operations.
26428   if (Op0.getOpcode() == ISD::LOAD) {
26429     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
26430     EVT LdVT = Ld->getValueType(0);
26431
26432     // This transformation is not supported if the result type is f16
26433     if (VT == MVT::f16)
26434       return SDValue();
26435
26436     if (!Ld->isVolatile() && !VT.isVector() &&
26437         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
26438         !Subtarget->is64Bit() && LdVT == MVT::i64) {
26439       SDValue FILDChain = Subtarget->getTargetLowering()->BuildFILD(
26440           SDValue(N, 0), LdVT, Ld->getChain(), Op0, DAG);
26441       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
26442       return FILDChain;
26443     }
26444   }
26445   return SDValue();
26446 }
26447
26448 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
26449 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
26450                                  X86TargetLowering::DAGCombinerInfo &DCI) {
26451   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
26452   // the result is either zero or one (depending on the input carry bit).
26453   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
26454   if (X86::isZeroNode(N->getOperand(0)) &&
26455       X86::isZeroNode(N->getOperand(1)) &&
26456       // We don't have a good way to replace an EFLAGS use, so only do this when
26457       // dead right now.
26458       SDValue(N, 1).use_empty()) {
26459     SDLoc DL(N);
26460     EVT VT = N->getValueType(0);
26461     SDValue CarryOut = DAG.getConstant(0, DL, N->getValueType(1));
26462     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
26463                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
26464                                            DAG.getConstant(X86::COND_B, DL,
26465                                                            MVT::i8),
26466                                            N->getOperand(2)),
26467                                DAG.getConstant(1, DL, VT));
26468     return DCI.CombineTo(N, Res1, CarryOut);
26469   }
26470
26471   return SDValue();
26472 }
26473
26474 // fold (add Y, (sete  X, 0)) -> adc  0, Y
26475 //      (add Y, (setne X, 0)) -> sbb -1, Y
26476 //      (sub (sete  X, 0), Y) -> sbb  0, Y
26477 //      (sub (setne X, 0), Y) -> adc -1, Y
26478 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
26479   SDLoc DL(N);
26480
26481   // Look through ZExts.
26482   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
26483   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
26484     return SDValue();
26485
26486   SDValue SetCC = Ext.getOperand(0);
26487   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
26488     return SDValue();
26489
26490   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
26491   if (CC != X86::COND_E && CC != X86::COND_NE)
26492     return SDValue();
26493
26494   SDValue Cmp = SetCC.getOperand(1);
26495   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
26496       !X86::isZeroNode(Cmp.getOperand(1)) ||
26497       !Cmp.getOperand(0).getValueType().isInteger())
26498     return SDValue();
26499
26500   SDValue CmpOp0 = Cmp.getOperand(0);
26501   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
26502                                DAG.getConstant(1, DL, CmpOp0.getValueType()));
26503
26504   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
26505   if (CC == X86::COND_NE)
26506     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
26507                        DL, OtherVal.getValueType(), OtherVal,
26508                        DAG.getConstant(-1ULL, DL, OtherVal.getValueType()),
26509                        NewCmp);
26510   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
26511                      DL, OtherVal.getValueType(), OtherVal,
26512                      DAG.getConstant(0, DL, OtherVal.getValueType()), NewCmp);
26513 }
26514
26515 /// PerformADDCombine - Do target-specific dag combines on integer adds.
26516 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
26517                                  const X86Subtarget *Subtarget) {
26518   EVT VT = N->getValueType(0);
26519   SDValue Op0 = N->getOperand(0);
26520   SDValue Op1 = N->getOperand(1);
26521
26522   // Try to synthesize horizontal adds from adds of shuffles.
26523   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
26524        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
26525       isHorizontalBinOp(Op0, Op1, true))
26526     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
26527
26528   return OptimizeConditionalInDecrement(N, DAG);
26529 }
26530
26531 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
26532                                  const X86Subtarget *Subtarget) {
26533   SDValue Op0 = N->getOperand(0);
26534   SDValue Op1 = N->getOperand(1);
26535
26536   // X86 can't encode an immediate LHS of a sub. See if we can push the
26537   // negation into a preceding instruction.
26538   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
26539     // If the RHS of the sub is a XOR with one use and a constant, invert the
26540     // immediate. Then add one to the LHS of the sub so we can turn
26541     // X-Y -> X+~Y+1, saving one register.
26542     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
26543         isa<ConstantSDNode>(Op1.getOperand(1))) {
26544       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
26545       EVT VT = Op0.getValueType();
26546       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
26547                                    Op1.getOperand(0),
26548                                    DAG.getConstant(~XorC, SDLoc(Op1), VT));
26549       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
26550                          DAG.getConstant(C->getAPIntValue() + 1, SDLoc(N), VT));
26551     }
26552   }
26553
26554   // Try to synthesize horizontal adds from adds of shuffles.
26555   EVT VT = N->getValueType(0);
26556   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
26557        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
26558       isHorizontalBinOp(Op0, Op1, true))
26559     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
26560
26561   return OptimizeConditionalInDecrement(N, DAG);
26562 }
26563
26564 /// performVZEXTCombine - Performs build vector combines
26565 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
26566                                    TargetLowering::DAGCombinerInfo &DCI,
26567                                    const X86Subtarget *Subtarget) {
26568   SDLoc DL(N);
26569   MVT VT = N->getSimpleValueType(0);
26570   SDValue Op = N->getOperand(0);
26571   MVT OpVT = Op.getSimpleValueType();
26572   MVT OpEltVT = OpVT.getVectorElementType();
26573   unsigned InputBits = OpEltVT.getSizeInBits() * VT.getVectorNumElements();
26574
26575   // (vzext (bitcast (vzext (x)) -> (vzext x)
26576   SDValue V = Op;
26577   while (V.getOpcode() == ISD::BITCAST)
26578     V = V.getOperand(0);
26579
26580   if (V != Op && V.getOpcode() == X86ISD::VZEXT) {
26581     MVT InnerVT = V.getSimpleValueType();
26582     MVT InnerEltVT = InnerVT.getVectorElementType();
26583
26584     // If the element sizes match exactly, we can just do one larger vzext. This
26585     // is always an exact type match as vzext operates on integer types.
26586     if (OpEltVT == InnerEltVT) {
26587       assert(OpVT == InnerVT && "Types must match for vzext!");
26588       return DAG.getNode(X86ISD::VZEXT, DL, VT, V.getOperand(0));
26589     }
26590
26591     // The only other way we can combine them is if only a single element of the
26592     // inner vzext is used in the input to the outer vzext.
26593     if (InnerEltVT.getSizeInBits() < InputBits)
26594       return SDValue();
26595
26596     // In this case, the inner vzext is completely dead because we're going to
26597     // only look at bits inside of the low element. Just do the outer vzext on
26598     // a bitcast of the input to the inner.
26599     return DAG.getNode(X86ISD::VZEXT, DL, VT, DAG.getBitcast(OpVT, V));
26600   }
26601
26602   // Check if we can bypass extracting and re-inserting an element of an input
26603   // vector. Essentially:
26604   // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
26605   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR &&
26606       V.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
26607       V.getOperand(0).getSimpleValueType().getSizeInBits() == InputBits) {
26608     SDValue ExtractedV = V.getOperand(0);
26609     SDValue OrigV = ExtractedV.getOperand(0);
26610     if (auto *ExtractIdx = dyn_cast<ConstantSDNode>(ExtractedV.getOperand(1)))
26611       if (ExtractIdx->getZExtValue() == 0) {
26612         MVT OrigVT = OrigV.getSimpleValueType();
26613         // Extract a subvector if necessary...
26614         if (OrigVT.getSizeInBits() > OpVT.getSizeInBits()) {
26615           int Ratio = OrigVT.getSizeInBits() / OpVT.getSizeInBits();
26616           OrigVT = MVT::getVectorVT(OrigVT.getVectorElementType(),
26617                                     OrigVT.getVectorNumElements() / Ratio);
26618           OrigV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigVT, OrigV,
26619                               DAG.getIntPtrConstant(0, DL));
26620         }
26621         Op = DAG.getBitcast(OpVT, OrigV);
26622         return DAG.getNode(X86ISD::VZEXT, DL, VT, Op);
26623       }
26624   }
26625
26626   return SDValue();
26627 }
26628
26629 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
26630                                              DAGCombinerInfo &DCI) const {
26631   SelectionDAG &DAG = DCI.DAG;
26632   switch (N->getOpcode()) {
26633   default: break;
26634   case ISD::EXTRACT_VECTOR_ELT:
26635     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
26636   case ISD::VSELECT:
26637   case ISD::SELECT:
26638   case X86ISD::SHRUNKBLEND:
26639     return PerformSELECTCombine(N, DAG, DCI, Subtarget);
26640   case ISD::BITCAST:        return PerformBITCASTCombine(N, DAG);
26641   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
26642   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
26643   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
26644   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
26645   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
26646   case ISD::SHL:
26647   case ISD::SRA:
26648   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
26649   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
26650   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
26651   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
26652   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
26653   case ISD::MLOAD:          return PerformMLOADCombine(N, DAG, DCI, Subtarget);
26654   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
26655   case ISD::MSTORE:         return PerformMSTORECombine(N, DAG, Subtarget);
26656   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, Subtarget);
26657   case ISD::UINT_TO_FP:     return PerformUINT_TO_FPCombine(N, DAG, Subtarget);
26658   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
26659   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
26660   case X86ISD::FXOR:
26661   case X86ISD::FOR:         return PerformFORCombine(N, DAG, Subtarget);
26662   case X86ISD::FMIN:
26663   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
26664   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
26665   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
26666   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
26667   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
26668   case ISD::ANY_EXTEND:
26669   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
26670   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
26671   case ISD::SIGN_EXTEND_INREG:
26672     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
26673   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
26674   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
26675   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
26676   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
26677   case X86ISD::SHUFP:       // Handle all target specific shuffles
26678   case X86ISD::PALIGNR:
26679   case X86ISD::UNPCKH:
26680   case X86ISD::UNPCKL:
26681   case X86ISD::MOVHLPS:
26682   case X86ISD::MOVLHPS:
26683   case X86ISD::PSHUFB:
26684   case X86ISD::PSHUFD:
26685   case X86ISD::PSHUFHW:
26686   case X86ISD::PSHUFLW:
26687   case X86ISD::MOVSS:
26688   case X86ISD::MOVSD:
26689   case X86ISD::VPERMILPI:
26690   case X86ISD::VPERM2X128:
26691   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
26692   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
26693   case X86ISD::INSERTPS: {
26694     if (getTargetMachine().getOptLevel() > CodeGenOpt::None)
26695       return PerformINSERTPSCombine(N, DAG, Subtarget);
26696     break;
26697   }
26698   case X86ISD::BLENDI:    return PerformBLENDICombine(N, DAG);
26699   }
26700
26701   return SDValue();
26702 }
26703
26704 /// isTypeDesirableForOp - Return true if the target has native support for
26705 /// the specified value type and it is 'desirable' to use the type for the
26706 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
26707 /// instruction encodings are longer and some i16 instructions are slow.
26708 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
26709   if (!isTypeLegal(VT))
26710     return false;
26711   if (VT != MVT::i16)
26712     return true;
26713
26714   switch (Opc) {
26715   default:
26716     return true;
26717   case ISD::LOAD:
26718   case ISD::SIGN_EXTEND:
26719   case ISD::ZERO_EXTEND:
26720   case ISD::ANY_EXTEND:
26721   case ISD::SHL:
26722   case ISD::SRL:
26723   case ISD::SUB:
26724   case ISD::ADD:
26725   case ISD::MUL:
26726   case ISD::AND:
26727   case ISD::OR:
26728   case ISD::XOR:
26729     return false;
26730   }
26731 }
26732
26733 /// IsDesirableToPromoteOp - This method query the target whether it is
26734 /// beneficial for dag combiner to promote the specified node. If true, it
26735 /// should return the desired promotion type by reference.
26736 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
26737   EVT VT = Op.getValueType();
26738   if (VT != MVT::i16)
26739     return false;
26740
26741   bool Promote = false;
26742   bool Commute = false;
26743   switch (Op.getOpcode()) {
26744   default: break;
26745   case ISD::LOAD: {
26746     LoadSDNode *LD = cast<LoadSDNode>(Op);
26747     // If the non-extending load has a single use and it's not live out, then it
26748     // might be folded.
26749     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
26750                                                      Op.hasOneUse()*/) {
26751       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
26752              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
26753         // The only case where we'd want to promote LOAD (rather then it being
26754         // promoted as an operand is when it's only use is liveout.
26755         if (UI->getOpcode() != ISD::CopyToReg)
26756           return false;
26757       }
26758     }
26759     Promote = true;
26760     break;
26761   }
26762   case ISD::SIGN_EXTEND:
26763   case ISD::ZERO_EXTEND:
26764   case ISD::ANY_EXTEND:
26765     Promote = true;
26766     break;
26767   case ISD::SHL:
26768   case ISD::SRL: {
26769     SDValue N0 = Op.getOperand(0);
26770     // Look out for (store (shl (load), x)).
26771     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
26772       return false;
26773     Promote = true;
26774     break;
26775   }
26776   case ISD::ADD:
26777   case ISD::MUL:
26778   case ISD::AND:
26779   case ISD::OR:
26780   case ISD::XOR:
26781     Commute = true;
26782     // fallthrough
26783   case ISD::SUB: {
26784     SDValue N0 = Op.getOperand(0);
26785     SDValue N1 = Op.getOperand(1);
26786     if (!Commute && MayFoldLoad(N1))
26787       return false;
26788     // Avoid disabling potential load folding opportunities.
26789     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
26790       return false;
26791     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
26792       return false;
26793     Promote = true;
26794   }
26795   }
26796
26797   PVT = MVT::i32;
26798   return Promote;
26799 }
26800
26801 //===----------------------------------------------------------------------===//
26802 //                           X86 Inline Assembly Support
26803 //===----------------------------------------------------------------------===//
26804
26805 // Helper to match a string separated by whitespace.
26806 static bool matchAsm(StringRef S, ArrayRef<const char *> Pieces) {
26807   S = S.substr(S.find_first_not_of(" \t")); // Skip leading whitespace.
26808
26809   for (StringRef Piece : Pieces) {
26810     if (!S.startswith(Piece)) // Check if the piece matches.
26811       return false;
26812
26813     S = S.substr(Piece.size());
26814     StringRef::size_type Pos = S.find_first_not_of(" \t");
26815     if (Pos == 0) // We matched a prefix.
26816       return false;
26817
26818     S = S.substr(Pos);
26819   }
26820
26821   return S.empty();
26822 }
26823
26824 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
26825
26826   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
26827     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
26828         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
26829         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
26830
26831       if (AsmPieces.size() == 3)
26832         return true;
26833       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
26834         return true;
26835     }
26836   }
26837   return false;
26838 }
26839
26840 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
26841   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
26842
26843   std::string AsmStr = IA->getAsmString();
26844
26845   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
26846   if (!Ty || Ty->getBitWidth() % 16 != 0)
26847     return false;
26848
26849   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
26850   SmallVector<StringRef, 4> AsmPieces;
26851   SplitString(AsmStr, AsmPieces, ";\n");
26852
26853   switch (AsmPieces.size()) {
26854   default: return false;
26855   case 1:
26856     // FIXME: this should verify that we are targeting a 486 or better.  If not,
26857     // we will turn this bswap into something that will be lowered to logical
26858     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
26859     // lower so don't worry about this.
26860     // bswap $0
26861     if (matchAsm(AsmPieces[0], {"bswap", "$0"}) ||
26862         matchAsm(AsmPieces[0], {"bswapl", "$0"}) ||
26863         matchAsm(AsmPieces[0], {"bswapq", "$0"}) ||
26864         matchAsm(AsmPieces[0], {"bswap", "${0:q}"}) ||
26865         matchAsm(AsmPieces[0], {"bswapl", "${0:q}"}) ||
26866         matchAsm(AsmPieces[0], {"bswapq", "${0:q}"})) {
26867       // No need to check constraints, nothing other than the equivalent of
26868       // "=r,0" would be valid here.
26869       return IntrinsicLowering::LowerToByteSwap(CI);
26870     }
26871
26872     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
26873     if (CI->getType()->isIntegerTy(16) &&
26874         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
26875         (matchAsm(AsmPieces[0], {"rorw", "$$8,", "${0:w}"}) ||
26876          matchAsm(AsmPieces[0], {"rolw", "$$8,", "${0:w}"}))) {
26877       AsmPieces.clear();
26878       StringRef ConstraintsStr = IA->getConstraintString();
26879       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
26880       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
26881       if (clobbersFlagRegisters(AsmPieces))
26882         return IntrinsicLowering::LowerToByteSwap(CI);
26883     }
26884     break;
26885   case 3:
26886     if (CI->getType()->isIntegerTy(32) &&
26887         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
26888         matchAsm(AsmPieces[0], {"rorw", "$$8,", "${0:w}"}) &&
26889         matchAsm(AsmPieces[1], {"rorl", "$$16,", "$0"}) &&
26890         matchAsm(AsmPieces[2], {"rorw", "$$8,", "${0:w}"})) {
26891       AsmPieces.clear();
26892       StringRef ConstraintsStr = IA->getConstraintString();
26893       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
26894       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
26895       if (clobbersFlagRegisters(AsmPieces))
26896         return IntrinsicLowering::LowerToByteSwap(CI);
26897     }
26898
26899     if (CI->getType()->isIntegerTy(64)) {
26900       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
26901       if (Constraints.size() >= 2 &&
26902           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
26903           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
26904         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
26905         if (matchAsm(AsmPieces[0], {"bswap", "%eax"}) &&
26906             matchAsm(AsmPieces[1], {"bswap", "%edx"}) &&
26907             matchAsm(AsmPieces[2], {"xchgl", "%eax,", "%edx"}))
26908           return IntrinsicLowering::LowerToByteSwap(CI);
26909       }
26910     }
26911     break;
26912   }
26913   return false;
26914 }
26915
26916 /// getConstraintType - Given a constraint letter, return the type of
26917 /// constraint it is for this target.
26918 X86TargetLowering::ConstraintType
26919 X86TargetLowering::getConstraintType(StringRef Constraint) const {
26920   if (Constraint.size() == 1) {
26921     switch (Constraint[0]) {
26922     case 'R':
26923     case 'q':
26924     case 'Q':
26925     case 'f':
26926     case 't':
26927     case 'u':
26928     case 'y':
26929     case 'x':
26930     case 'Y':
26931     case 'l':
26932       return C_RegisterClass;
26933     case 'a':
26934     case 'b':
26935     case 'c':
26936     case 'd':
26937     case 'S':
26938     case 'D':
26939     case 'A':
26940       return C_Register;
26941     case 'I':
26942     case 'J':
26943     case 'K':
26944     case 'L':
26945     case 'M':
26946     case 'N':
26947     case 'G':
26948     case 'C':
26949     case 'e':
26950     case 'Z':
26951       return C_Other;
26952     default:
26953       break;
26954     }
26955   }
26956   return TargetLowering::getConstraintType(Constraint);
26957 }
26958
26959 /// Examine constraint type and operand type and determine a weight value.
26960 /// This object must already have been set up with the operand type
26961 /// and the current alternative constraint selected.
26962 TargetLowering::ConstraintWeight
26963   X86TargetLowering::getSingleConstraintMatchWeight(
26964     AsmOperandInfo &info, const char *constraint) const {
26965   ConstraintWeight weight = CW_Invalid;
26966   Value *CallOperandVal = info.CallOperandVal;
26967     // If we don't have a value, we can't do a match,
26968     // but allow it at the lowest weight.
26969   if (!CallOperandVal)
26970     return CW_Default;
26971   Type *type = CallOperandVal->getType();
26972   // Look at the constraint type.
26973   switch (*constraint) {
26974   default:
26975     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
26976   case 'R':
26977   case 'q':
26978   case 'Q':
26979   case 'a':
26980   case 'b':
26981   case 'c':
26982   case 'd':
26983   case 'S':
26984   case 'D':
26985   case 'A':
26986     if (CallOperandVal->getType()->isIntegerTy())
26987       weight = CW_SpecificReg;
26988     break;
26989   case 'f':
26990   case 't':
26991   case 'u':
26992     if (type->isFloatingPointTy())
26993       weight = CW_SpecificReg;
26994     break;
26995   case 'y':
26996     if (type->isX86_MMXTy() && Subtarget->hasMMX())
26997       weight = CW_SpecificReg;
26998     break;
26999   case 'x':
27000   case 'Y':
27001     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
27002         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
27003       weight = CW_Register;
27004     break;
27005   case 'I':
27006     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
27007       if (C->getZExtValue() <= 31)
27008         weight = CW_Constant;
27009     }
27010     break;
27011   case 'J':
27012     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27013       if (C->getZExtValue() <= 63)
27014         weight = CW_Constant;
27015     }
27016     break;
27017   case 'K':
27018     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27019       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
27020         weight = CW_Constant;
27021     }
27022     break;
27023   case 'L':
27024     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27025       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
27026         weight = CW_Constant;
27027     }
27028     break;
27029   case 'M':
27030     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27031       if (C->getZExtValue() <= 3)
27032         weight = CW_Constant;
27033     }
27034     break;
27035   case 'N':
27036     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27037       if (C->getZExtValue() <= 0xff)
27038         weight = CW_Constant;
27039     }
27040     break;
27041   case 'G':
27042   case 'C':
27043     if (isa<ConstantFP>(CallOperandVal)) {
27044       weight = CW_Constant;
27045     }
27046     break;
27047   case 'e':
27048     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27049       if ((C->getSExtValue() >= -0x80000000LL) &&
27050           (C->getSExtValue() <= 0x7fffffffLL))
27051         weight = CW_Constant;
27052     }
27053     break;
27054   case 'Z':
27055     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
27056       if (C->getZExtValue() <= 0xffffffff)
27057         weight = CW_Constant;
27058     }
27059     break;
27060   }
27061   return weight;
27062 }
27063
27064 /// LowerXConstraint - try to replace an X constraint, which matches anything,
27065 /// with another that has more specific requirements based on the type of the
27066 /// corresponding operand.
27067 const char *X86TargetLowering::
27068 LowerXConstraint(EVT ConstraintVT) const {
27069   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
27070   // 'f' like normal targets.
27071   if (ConstraintVT.isFloatingPoint()) {
27072     if (Subtarget->hasSSE2())
27073       return "Y";
27074     if (Subtarget->hasSSE1())
27075       return "x";
27076   }
27077
27078   return TargetLowering::LowerXConstraint(ConstraintVT);
27079 }
27080
27081 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
27082 /// vector.  If it is invalid, don't add anything to Ops.
27083 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
27084                                                      std::string &Constraint,
27085                                                      std::vector<SDValue>&Ops,
27086                                                      SelectionDAG &DAG) const {
27087   SDValue Result;
27088
27089   // Only support length 1 constraints for now.
27090   if (Constraint.length() > 1) return;
27091
27092   char ConstraintLetter = Constraint[0];
27093   switch (ConstraintLetter) {
27094   default: break;
27095   case 'I':
27096     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27097       if (C->getZExtValue() <= 31) {
27098         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27099                                        Op.getValueType());
27100         break;
27101       }
27102     }
27103     return;
27104   case 'J':
27105     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27106       if (C->getZExtValue() <= 63) {
27107         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27108                                        Op.getValueType());
27109         break;
27110       }
27111     }
27112     return;
27113   case 'K':
27114     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27115       if (isInt<8>(C->getSExtValue())) {
27116         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27117                                        Op.getValueType());
27118         break;
27119       }
27120     }
27121     return;
27122   case 'L':
27123     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27124       if (C->getZExtValue() == 0xff || C->getZExtValue() == 0xffff ||
27125           (Subtarget->is64Bit() && C->getZExtValue() == 0xffffffff)) {
27126         Result = DAG.getTargetConstant(C->getSExtValue(), SDLoc(Op),
27127                                        Op.getValueType());
27128         break;
27129       }
27130     }
27131     return;
27132   case 'M':
27133     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27134       if (C->getZExtValue() <= 3) {
27135         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27136                                        Op.getValueType());
27137         break;
27138       }
27139     }
27140     return;
27141   case 'N':
27142     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27143       if (C->getZExtValue() <= 255) {
27144         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27145                                        Op.getValueType());
27146         break;
27147       }
27148     }
27149     return;
27150   case 'O':
27151     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27152       if (C->getZExtValue() <= 127) {
27153         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27154                                        Op.getValueType());
27155         break;
27156       }
27157     }
27158     return;
27159   case 'e': {
27160     // 32-bit signed value
27161     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27162       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
27163                                            C->getSExtValue())) {
27164         // Widen to 64 bits here to get it sign extended.
27165         Result = DAG.getTargetConstant(C->getSExtValue(), SDLoc(Op), MVT::i64);
27166         break;
27167       }
27168     // FIXME gcc accepts some relocatable values here too, but only in certain
27169     // memory models; it's complicated.
27170     }
27171     return;
27172   }
27173   case 'Z': {
27174     // 32-bit unsigned value
27175     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
27176       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
27177                                            C->getZExtValue())) {
27178         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
27179                                        Op.getValueType());
27180         break;
27181       }
27182     }
27183     // FIXME gcc accepts some relocatable values here too, but only in certain
27184     // memory models; it's complicated.
27185     return;
27186   }
27187   case 'i': {
27188     // Literal immediates are always ok.
27189     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
27190       // Widen to 64 bits here to get it sign extended.
27191       Result = DAG.getTargetConstant(CST->getSExtValue(), SDLoc(Op), MVT::i64);
27192       break;
27193     }
27194
27195     // In any sort of PIC mode addresses need to be computed at runtime by
27196     // adding in a register or some sort of table lookup.  These can't
27197     // be used as immediates.
27198     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
27199       return;
27200
27201     // If we are in non-pic codegen mode, we allow the address of a global (with
27202     // an optional displacement) to be used with 'i'.
27203     GlobalAddressSDNode *GA = nullptr;
27204     int64_t Offset = 0;
27205
27206     // Match either (GA), (GA+C), (GA+C1+C2), etc.
27207     while (1) {
27208       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
27209         Offset += GA->getOffset();
27210         break;
27211       } else if (Op.getOpcode() == ISD::ADD) {
27212         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
27213           Offset += C->getZExtValue();
27214           Op = Op.getOperand(0);
27215           continue;
27216         }
27217       } else if (Op.getOpcode() == ISD::SUB) {
27218         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
27219           Offset += -C->getZExtValue();
27220           Op = Op.getOperand(0);
27221           continue;
27222         }
27223       }
27224
27225       // Otherwise, this isn't something we can handle, reject it.
27226       return;
27227     }
27228
27229     const GlobalValue *GV = GA->getGlobal();
27230     // If we require an extra load to get this address, as in PIC mode, we
27231     // can't accept it.
27232     if (isGlobalStubReference(
27233             Subtarget->ClassifyGlobalReference(GV, DAG.getTarget())))
27234       return;
27235
27236     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
27237                                         GA->getValueType(0), Offset);
27238     break;
27239   }
27240   }
27241
27242   if (Result.getNode()) {
27243     Ops.push_back(Result);
27244     return;
27245   }
27246   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
27247 }
27248
27249 std::pair<unsigned, const TargetRegisterClass *>
27250 X86TargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
27251                                                 StringRef Constraint,
27252                                                 MVT VT) const {
27253   // First, see if this is a constraint that directly corresponds to an LLVM
27254   // register class.
27255   if (Constraint.size() == 1) {
27256     // GCC Constraint Letters
27257     switch (Constraint[0]) {
27258     default: break;
27259       // TODO: Slight differences here in allocation order and leaving
27260       // RIP in the class. Do they matter any more here than they do
27261       // in the normal allocation?
27262     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
27263       if (Subtarget->is64Bit()) {
27264         if (VT == MVT::i32 || VT == MVT::f32)
27265           return std::make_pair(0U, &X86::GR32RegClass);
27266         if (VT == MVT::i16)
27267           return std::make_pair(0U, &X86::GR16RegClass);
27268         if (VT == MVT::i8 || VT == MVT::i1)
27269           return std::make_pair(0U, &X86::GR8RegClass);
27270         if (VT == MVT::i64 || VT == MVT::f64)
27271           return std::make_pair(0U, &X86::GR64RegClass);
27272         break;
27273       }
27274       // 32-bit fallthrough
27275     case 'Q':   // Q_REGS
27276       if (VT == MVT::i32 || VT == MVT::f32)
27277         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
27278       if (VT == MVT::i16)
27279         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
27280       if (VT == MVT::i8 || VT == MVT::i1)
27281         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
27282       if (VT == MVT::i64)
27283         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
27284       break;
27285     case 'r':   // GENERAL_REGS
27286     case 'l':   // INDEX_REGS
27287       if (VT == MVT::i8 || VT == MVT::i1)
27288         return std::make_pair(0U, &X86::GR8RegClass);
27289       if (VT == MVT::i16)
27290         return std::make_pair(0U, &X86::GR16RegClass);
27291       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
27292         return std::make_pair(0U, &X86::GR32RegClass);
27293       return std::make_pair(0U, &X86::GR64RegClass);
27294     case 'R':   // LEGACY_REGS
27295       if (VT == MVT::i8 || VT == MVT::i1)
27296         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
27297       if (VT == MVT::i16)
27298         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
27299       if (VT == MVT::i32 || !Subtarget->is64Bit())
27300         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
27301       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
27302     case 'f':  // FP Stack registers.
27303       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
27304       // value to the correct fpstack register class.
27305       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
27306         return std::make_pair(0U, &X86::RFP32RegClass);
27307       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
27308         return std::make_pair(0U, &X86::RFP64RegClass);
27309       return std::make_pair(0U, &X86::RFP80RegClass);
27310     case 'y':   // MMX_REGS if MMX allowed.
27311       if (!Subtarget->hasMMX()) break;
27312       return std::make_pair(0U, &X86::VR64RegClass);
27313     case 'Y':   // SSE_REGS if SSE2 allowed
27314       if (!Subtarget->hasSSE2()) break;
27315       // FALL THROUGH.
27316     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
27317       if (!Subtarget->hasSSE1()) break;
27318
27319       switch (VT.SimpleTy) {
27320       default: break;
27321       // Scalar SSE types.
27322       case MVT::f32:
27323       case MVT::i32:
27324         return std::make_pair(0U, &X86::FR32RegClass);
27325       case MVT::f64:
27326       case MVT::i64:
27327         return std::make_pair(0U, &X86::FR64RegClass);
27328       // Vector types.
27329       case MVT::v16i8:
27330       case MVT::v8i16:
27331       case MVT::v4i32:
27332       case MVT::v2i64:
27333       case MVT::v4f32:
27334       case MVT::v2f64:
27335         return std::make_pair(0U, &X86::VR128RegClass);
27336       // AVX types.
27337       case MVT::v32i8:
27338       case MVT::v16i16:
27339       case MVT::v8i32:
27340       case MVT::v4i64:
27341       case MVT::v8f32:
27342       case MVT::v4f64:
27343         return std::make_pair(0U, &X86::VR256RegClass);
27344       case MVT::v8f64:
27345       case MVT::v16f32:
27346       case MVT::v16i32:
27347       case MVT::v8i64:
27348         return std::make_pair(0U, &X86::VR512RegClass);
27349       }
27350       break;
27351     }
27352   }
27353
27354   // Use the default implementation in TargetLowering to convert the register
27355   // constraint into a member of a register class.
27356   std::pair<unsigned, const TargetRegisterClass*> Res;
27357   Res = TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
27358
27359   // Not found as a standard register?
27360   if (!Res.second) {
27361     // Map st(0) -> st(7) -> ST0
27362     if (Constraint.size() == 7 && Constraint[0] == '{' &&
27363         tolower(Constraint[1]) == 's' &&
27364         tolower(Constraint[2]) == 't' &&
27365         Constraint[3] == '(' &&
27366         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
27367         Constraint[5] == ')' &&
27368         Constraint[6] == '}') {
27369
27370       Res.first = X86::FP0+Constraint[4]-'0';
27371       Res.second = &X86::RFP80RegClass;
27372       return Res;
27373     }
27374
27375     // GCC allows "st(0)" to be called just plain "st".
27376     if (StringRef("{st}").equals_lower(Constraint)) {
27377       Res.first = X86::FP0;
27378       Res.second = &X86::RFP80RegClass;
27379       return Res;
27380     }
27381
27382     // flags -> EFLAGS
27383     if (StringRef("{flags}").equals_lower(Constraint)) {
27384       Res.first = X86::EFLAGS;
27385       Res.second = &X86::CCRRegClass;
27386       return Res;
27387     }
27388
27389     // 'A' means EAX + EDX.
27390     if (Constraint == "A") {
27391       Res.first = X86::EAX;
27392       Res.second = &X86::GR32_ADRegClass;
27393       return Res;
27394     }
27395     return Res;
27396   }
27397
27398   // Otherwise, check to see if this is a register class of the wrong value
27399   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
27400   // turn into {ax},{dx}.
27401   // MVT::Other is used to specify clobber names.
27402   if (Res.second->hasType(VT) || VT == MVT::Other)
27403     return Res;   // Correct type already, nothing to do.
27404
27405   // Get a matching integer of the correct size. i.e. "ax" with MVT::32 should
27406   // return "eax". This should even work for things like getting 64bit integer
27407   // registers when given an f64 type.
27408   const TargetRegisterClass *Class = Res.second;
27409   if (Class == &X86::GR8RegClass || Class == &X86::GR16RegClass ||
27410       Class == &X86::GR32RegClass || Class == &X86::GR64RegClass) {
27411     unsigned Size = VT.getSizeInBits();
27412     MVT::SimpleValueType SimpleTy = Size == 1 || Size == 8 ? MVT::i8
27413                                   : Size == 16 ? MVT::i16
27414                                   : Size == 32 ? MVT::i32
27415                                   : Size == 64 ? MVT::i64
27416                                   : MVT::Other;
27417     unsigned DestReg = getX86SubSuperRegisterOrZero(Res.first, SimpleTy);
27418     if (DestReg > 0) {
27419       Res.first = DestReg;
27420       Res.second = SimpleTy == MVT::i8 ? &X86::GR8RegClass
27421                  : SimpleTy == MVT::i16 ? &X86::GR16RegClass
27422                  : SimpleTy == MVT::i32 ? &X86::GR32RegClass
27423                  : &X86::GR64RegClass;
27424       assert(Res.second->contains(Res.first) && "Register in register class");
27425     } else {
27426       // No register found/type mismatch.
27427       Res.first = 0;
27428       Res.second = nullptr;
27429     }
27430   } else if (Class == &X86::FR32RegClass || Class == &X86::FR64RegClass ||
27431              Class == &X86::VR128RegClass || Class == &X86::VR256RegClass ||
27432              Class == &X86::FR32XRegClass || Class == &X86::FR64XRegClass ||
27433              Class == &X86::VR128XRegClass || Class == &X86::VR256XRegClass ||
27434              Class == &X86::VR512RegClass) {
27435     // Handle references to XMM physical registers that got mapped into the
27436     // wrong class.  This can happen with constraints like {xmm0} where the
27437     // target independent register mapper will just pick the first match it can
27438     // find, ignoring the required type.
27439
27440     if (VT == MVT::f32 || VT == MVT::i32)
27441       Res.second = &X86::FR32RegClass;
27442     else if (VT == MVT::f64 || VT == MVT::i64)
27443       Res.second = &X86::FR64RegClass;
27444     else if (X86::VR128RegClass.hasType(VT))
27445       Res.second = &X86::VR128RegClass;
27446     else if (X86::VR256RegClass.hasType(VT))
27447       Res.second = &X86::VR256RegClass;
27448     else if (X86::VR512RegClass.hasType(VT))
27449       Res.second = &X86::VR512RegClass;
27450     else {
27451       // Type mismatch and not a clobber: Return an error;
27452       Res.first = 0;
27453       Res.second = nullptr;
27454     }
27455   }
27456
27457   return Res;
27458 }
27459
27460 int X86TargetLowering::getScalingFactorCost(const DataLayout &DL,
27461                                             const AddrMode &AM, Type *Ty,
27462                                             unsigned AS) const {
27463   // Scaling factors are not free at all.
27464   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
27465   // will take 2 allocations in the out of order engine instead of 1
27466   // for plain addressing mode, i.e. inst (reg1).
27467   // E.g.,
27468   // vaddps (%rsi,%drx), %ymm0, %ymm1
27469   // Requires two allocations (one for the load, one for the computation)
27470   // whereas:
27471   // vaddps (%rsi), %ymm0, %ymm1
27472   // Requires just 1 allocation, i.e., freeing allocations for other operations
27473   // and having less micro operations to execute.
27474   //
27475   // For some X86 architectures, this is even worse because for instance for
27476   // stores, the complex addressing mode forces the instruction to use the
27477   // "load" ports instead of the dedicated "store" port.
27478   // E.g., on Haswell:
27479   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
27480   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.
27481   if (isLegalAddressingMode(DL, AM, Ty, AS))
27482     // Scale represents reg2 * scale, thus account for 1
27483     // as soon as we use a second register.
27484     return AM.Scale != 0;
27485   return -1;
27486 }
27487
27488 bool X86TargetLowering::isIntDivCheap(EVT VT, AttributeSet Attr) const {
27489   // Integer division on x86 is expensive. However, when aggressively optimizing
27490   // for code size, we prefer to use a div instruction, as it is usually smaller
27491   // than the alternative sequence.
27492   // The exception to this is vector division. Since x86 doesn't have vector
27493   // integer division, leaving the division as-is is a loss even in terms of
27494   // size, because it will have to be scalarized, while the alternative code
27495   // sequence can be performed in vector form.
27496   bool OptSize = Attr.hasAttribute(AttributeSet::FunctionIndex,
27497                                    Attribute::MinSize);
27498   return OptSize && !VT.isVector();
27499 }