Removed an old comment, NFC
[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     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
168     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
169   } else if (!Subtarget->useSoftFloat()) {
170     // We have an algorithm for SSE2->double, and we turn this into a
171     // 64-bit FILD followed by conditional FADD for other targets.
172     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
173     // We have an algorithm for SSE2, and we turn this into a 64-bit
174     // FILD for other targets.
175     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
176   }
177
178   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
179   // this operation.
180   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
181   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
182
183   if (!Subtarget->useSoftFloat()) {
184     // SSE has no i16 to fp conversion, only i32
185     if (X86ScalarSSEf32) {
186       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
187       // f32 and f64 cases are Legal, f80 case is not
188       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
189     } else {
190       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
191       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
192     }
193   } else {
194     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
195     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
196   }
197
198   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
199   // are Legal, f80 is custom lowered.
200   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
201   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
202
203   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
204   // this operation.
205   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
206   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
207
208   if (X86ScalarSSEf32) {
209     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
210     // f32 and f64 cases are Legal, f80 case is not
211     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
212   } else {
213     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
214     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
215   }
216
217   // Handle FP_TO_UINT by promoting the destination to a larger signed
218   // conversion.
219   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
220   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
221   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
222
223   if (Subtarget->is64Bit()) {
224     if (!Subtarget->useSoftFloat() && Subtarget->hasAVX512()) {
225       // FP_TO_UINT-i32/i64 is legal for f32/f64, but custom for f80.
226       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
227       setOperationAction(ISD::FP_TO_UINT   , MVT::i64  , Custom);
228     } else {
229       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Promote);
230       setOperationAction(ISD::FP_TO_UINT   , MVT::i64  , Expand);
231     }
232   } else if (!Subtarget->useSoftFloat()) {
233     // Since AVX is a superset of SSE3, only check for SSE here.
234     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
235       // Expand FP_TO_UINT into a select.
236       // FIXME: We would like to use a Custom expander here eventually to do
237       // the optimal thing for SSE vs. the default expansion in the legalizer.
238       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
239     else
240       // With AVX512 we can use vcvts[ds]2usi for f32/f64->i32, f80 is custom.
241       // With SSE3 we can use fisttpll to convert to a signed i64; without
242       // SSE, we're stuck with a fistpll.
243       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
244
245     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
246   }
247
248   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
249   if (!X86ScalarSSEf64) {
250     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
251     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
252     if (Subtarget->is64Bit()) {
253       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
254       // Without SSE, i64->f64 goes through memory.
255       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
256     }
257   }
258
259   // Scalar integer divide and remainder are lowered to use operations that
260   // produce two results, to match the available instructions. This exposes
261   // the two-result form to trivial CSE, which is able to combine x/y and x%y
262   // into a single instruction.
263   //
264   // Scalar integer multiply-high is also lowered to use two-result
265   // operations, to match the available instructions. However, plain multiply
266   // (low) operations are left as Legal, as there are single-result
267   // instructions for this in x86. Using the two-result multiply instructions
268   // when both high and low results are needed must be arranged by dagcombine.
269   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
270     MVT VT = IntVTs[i];
271     setOperationAction(ISD::MULHS, VT, Expand);
272     setOperationAction(ISD::MULHU, VT, Expand);
273     setOperationAction(ISD::SDIV, VT, Expand);
274     setOperationAction(ISD::UDIV, VT, Expand);
275     setOperationAction(ISD::SREM, VT, Expand);
276     setOperationAction(ISD::UREM, VT, Expand);
277
278     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
279     setOperationAction(ISD::ADDC, VT, Custom);
280     setOperationAction(ISD::ADDE, VT, Custom);
281     setOperationAction(ISD::SUBC, VT, Custom);
282     setOperationAction(ISD::SUBE, VT, Custom);
283   }
284
285   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
286   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
287   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
288   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
289   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
290   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
291   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
292   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
293   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
294   setOperationAction(ISD::SELECT_CC        , MVT::f32,   Expand);
295   setOperationAction(ISD::SELECT_CC        , MVT::f64,   Expand);
296   setOperationAction(ISD::SELECT_CC        , MVT::f80,   Expand);
297   setOperationAction(ISD::SELECT_CC        , MVT::i8,    Expand);
298   setOperationAction(ISD::SELECT_CC        , MVT::i16,   Expand);
299   setOperationAction(ISD::SELECT_CC        , MVT::i32,   Expand);
300   setOperationAction(ISD::SELECT_CC        , MVT::i64,   Expand);
301   if (Subtarget->is64Bit())
302     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
303   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
304   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
305   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
306   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
307
308   if (Subtarget->is32Bit() && Subtarget->isTargetKnownWindowsMSVC()) {
309     // On 32 bit MSVC, `fmodf(f32)` is not defined - only `fmod(f64)`
310     // is. We should promote the value to 64-bits to solve this.
311     // This is what the CRT headers do - `fmodf` is an inline header
312     // function casting to f64 and calling `fmod`.
313     setOperationAction(ISD::FREM           , MVT::f32  , Promote);
314   } else {
315     setOperationAction(ISD::FREM           , MVT::f32  , Expand);
316   }
317
318   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
319   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
320   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
321
322   // Promote the i8 variants and force them on up to i32 which has a shorter
323   // encoding.
324   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
325   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
326   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
327   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
328   if (Subtarget->hasBMI()) {
329     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
330     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
331     if (Subtarget->is64Bit())
332       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
333   } else {
334     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
335     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
336     if (Subtarget->is64Bit())
337       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
338   }
339
340   if (Subtarget->hasLZCNT()) {
341     // When promoting the i8 variants, force them to i32 for a shorter
342     // encoding.
343     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
344     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
345     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
346     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
347     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
348     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
349     if (Subtarget->is64Bit())
350       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
351   } else {
352     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
353     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
354     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
355     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
356     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
357     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
358     if (Subtarget->is64Bit()) {
359       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
360       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
361     }
362   }
363
364   // Special handling for half-precision floating point conversions.
365   // If we don't have F16C support, then lower half float conversions
366   // into library calls.
367   if (Subtarget->useSoftFloat() || !Subtarget->hasF16C()) {
368     setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
369     setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
370   }
371
372   // There's never any support for operations beyond MVT::f32.
373   setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
374   setOperationAction(ISD::FP16_TO_FP, MVT::f80, Expand);
375   setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
376   setOperationAction(ISD::FP_TO_FP16, MVT::f80, Expand);
377
378   setLoadExtAction(ISD::EXTLOAD, MVT::f32, MVT::f16, Expand);
379   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f16, Expand);
380   setLoadExtAction(ISD::EXTLOAD, MVT::f80, MVT::f16, Expand);
381   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
382   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
383   setTruncStoreAction(MVT::f80, MVT::f16, Expand);
384
385   if (Subtarget->hasPOPCNT()) {
386     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
387   } else {
388     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
389     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
390     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
391     if (Subtarget->is64Bit())
392       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
393   }
394
395   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
396
397   if (!Subtarget->hasMOVBE())
398     setOperationAction(ISD::BSWAP          , MVT::i16  , Expand);
399
400   // These should be promoted to a larger select which is supported.
401   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
402   // X86 wants to expand cmov itself.
403   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
404   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
405   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
406   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
407   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
408   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
409   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
410   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
411   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
412   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
413   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
414   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
415   if (Subtarget->is64Bit()) {
416     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
417     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
418   }
419   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
420   setOperationAction(ISD::CATCHRET        , MVT::Other, Custom);
421   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
422   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
423   // support continuation, user-level threading, and etc.. As a result, no
424   // other SjLj exception interfaces are implemented and please don't build
425   // your own exception handling based on them.
426   // LLVM/Clang supports zero-cost DWARF exception handling.
427   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
428   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
429
430   // Darwin ABI issue.
431   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
432   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
433   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
434   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
435   if (Subtarget->is64Bit())
436     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
437   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
438   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
439   if (Subtarget->is64Bit()) {
440     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
441     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
442     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
443     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
444     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
445   }
446   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
447   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
448   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
449   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
450   if (Subtarget->is64Bit()) {
451     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
452     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
453     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
454   }
455
456   if (Subtarget->hasSSE1())
457     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
458
459   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
460
461   // Expand certain atomics
462   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
463     MVT VT = IntVTs[i];
464     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, VT, Custom);
465     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
466     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
467   }
468
469   if (Subtarget->hasCmpxchg16b()) {
470     setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i128, Custom);
471   }
472
473   // FIXME - use subtarget debug flags
474   if (!Subtarget->isTargetDarwin() && !Subtarget->isTargetELF() &&
475       !Subtarget->isTargetCygMing() && !Subtarget->isTargetWin64()) {
476     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
477   }
478
479   if (Subtarget->isTarget64BitLP64()) {
480     setExceptionPointerRegister(X86::RAX);
481     setExceptionSelectorRegister(X86::RDX);
482   } else {
483     setExceptionPointerRegister(X86::EAX);
484     setExceptionSelectorRegister(X86::EDX);
485   }
486   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
487   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
488
489   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
490   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
491
492   setOperationAction(ISD::TRAP, MVT::Other, Legal);
493   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
494
495   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
496   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
497   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
498   if (Subtarget->is64Bit()) {
499     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
500     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
501   } else {
502     // TargetInfo::CharPtrBuiltinVaList
503     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
504     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
505   }
506
507   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
508   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
509
510   setOperationAction(ISD::DYNAMIC_STACKALLOC, PtrVT, Custom);
511
512   // GC_TRANSITION_START and GC_TRANSITION_END need custom lowering.
513   setOperationAction(ISD::GC_TRANSITION_START, MVT::Other, Custom);
514   setOperationAction(ISD::GC_TRANSITION_END, MVT::Other, Custom);
515
516   if (!Subtarget->useSoftFloat() && X86ScalarSSEf64) {
517     // f32 and f64 use SSE.
518     // Set up the FP register classes.
519     addRegisterClass(MVT::f32, &X86::FR32RegClass);
520     addRegisterClass(MVT::f64, &X86::FR64RegClass);
521
522     // Use ANDPD to simulate FABS.
523     setOperationAction(ISD::FABS , MVT::f64, Custom);
524     setOperationAction(ISD::FABS , MVT::f32, Custom);
525
526     // Use XORP to simulate FNEG.
527     setOperationAction(ISD::FNEG , MVT::f64, Custom);
528     setOperationAction(ISD::FNEG , MVT::f32, Custom);
529
530     // Use ANDPD and ORPD to simulate FCOPYSIGN.
531     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
532     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
533
534     // Lower this to FGETSIGNx86 plus an AND.
535     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
536     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
537
538     // We don't support sin/cos/fmod
539     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
540     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
541     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
542     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
543     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
544     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
545
546     // Expand FP immediates into loads from the stack, except for the special
547     // cases we handle.
548     addLegalFPImmediate(APFloat(+0.0)); // xorpd
549     addLegalFPImmediate(APFloat(+0.0f)); // xorps
550   } else if (!Subtarget->useSoftFloat() && X86ScalarSSEf32) {
551     // Use SSE for f32, x87 for f64.
552     // Set up the FP register classes.
553     addRegisterClass(MVT::f32, &X86::FR32RegClass);
554     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
555
556     // Use ANDPS to simulate FABS.
557     setOperationAction(ISD::FABS , MVT::f32, Custom);
558
559     // Use XORP to simulate FNEG.
560     setOperationAction(ISD::FNEG , MVT::f32, Custom);
561
562     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
563
564     // Use ANDPS and ORPS to simulate FCOPYSIGN.
565     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
566     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
567
568     // We don't support sin/cos/fmod
569     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
570     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
571     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
572
573     // Special cases we handle for FP constants.
574     addLegalFPImmediate(APFloat(+0.0f)); // xorps
575     addLegalFPImmediate(APFloat(+0.0)); // FLD0
576     addLegalFPImmediate(APFloat(+1.0)); // FLD1
577     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
578     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
579
580     if (!TM.Options.UnsafeFPMath) {
581       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
582       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
583       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
584     }
585   } else if (!Subtarget->useSoftFloat()) {
586     // f32 and f64 in x87.
587     // Set up the FP register classes.
588     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
589     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
590
591     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
592     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
593     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
594     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
595
596     if (!TM.Options.UnsafeFPMath) {
597       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
598       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
599       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
600       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
601       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
602       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
603     }
604     addLegalFPImmediate(APFloat(+0.0)); // FLD0
605     addLegalFPImmediate(APFloat(+1.0)); // FLD1
606     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
607     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
608     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
609     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
610     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
611     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
612   }
613
614   // We don't support FMA.
615   setOperationAction(ISD::FMA, MVT::f64, Expand);
616   setOperationAction(ISD::FMA, MVT::f32, Expand);
617
618   // Long double always uses X87.
619   if (!Subtarget->useSoftFloat()) {
620     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
621     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
622     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
623     {
624       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
625       addLegalFPImmediate(TmpFlt);  // FLD0
626       TmpFlt.changeSign();
627       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
628
629       bool ignored;
630       APFloat TmpFlt2(+1.0);
631       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
632                       &ignored);
633       addLegalFPImmediate(TmpFlt2);  // FLD1
634       TmpFlt2.changeSign();
635       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
636     }
637
638     if (!TM.Options.UnsafeFPMath) {
639       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
640       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
641       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
642     }
643
644     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
645     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
646     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
647     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
648     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
649     setOperationAction(ISD::FMA, MVT::f80, Expand);
650   }
651
652   // Always use a library call for pow.
653   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
654   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
655   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
656
657   setOperationAction(ISD::FLOG, MVT::f80, Expand);
658   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
659   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
660   setOperationAction(ISD::FEXP, MVT::f80, Expand);
661   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
662   setOperationAction(ISD::FMINNUM, MVT::f80, Expand);
663   setOperationAction(ISD::FMAXNUM, MVT::f80, Expand);
664
665   // First set operation action for all vector types to either promote
666   // (for widening) or expand (for scalarization). Then we will selectively
667   // turn on ones that can be effectively codegen'd.
668   for (MVT VT : MVT::vector_valuetypes()) {
669     setOperationAction(ISD::ADD , VT, Expand);
670     setOperationAction(ISD::SUB , VT, Expand);
671     setOperationAction(ISD::FADD, VT, Expand);
672     setOperationAction(ISD::FNEG, VT, Expand);
673     setOperationAction(ISD::FSUB, VT, Expand);
674     setOperationAction(ISD::MUL , VT, Expand);
675     setOperationAction(ISD::FMUL, VT, Expand);
676     setOperationAction(ISD::SDIV, VT, Expand);
677     setOperationAction(ISD::UDIV, VT, Expand);
678     setOperationAction(ISD::FDIV, VT, Expand);
679     setOperationAction(ISD::SREM, VT, Expand);
680     setOperationAction(ISD::UREM, VT, Expand);
681     setOperationAction(ISD::LOAD, VT, Expand);
682     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
683     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
684     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
685     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
686     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
687     setOperationAction(ISD::FABS, VT, Expand);
688     setOperationAction(ISD::FSIN, VT, Expand);
689     setOperationAction(ISD::FSINCOS, VT, Expand);
690     setOperationAction(ISD::FCOS, VT, Expand);
691     setOperationAction(ISD::FSINCOS, VT, Expand);
692     setOperationAction(ISD::FREM, VT, Expand);
693     setOperationAction(ISD::FMA,  VT, Expand);
694     setOperationAction(ISD::FPOWI, VT, Expand);
695     setOperationAction(ISD::FSQRT, VT, Expand);
696     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
697     setOperationAction(ISD::FFLOOR, VT, Expand);
698     setOperationAction(ISD::FCEIL, VT, Expand);
699     setOperationAction(ISD::FTRUNC, VT, Expand);
700     setOperationAction(ISD::FRINT, VT, Expand);
701     setOperationAction(ISD::FNEARBYINT, VT, Expand);
702     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
703     setOperationAction(ISD::MULHS, VT, Expand);
704     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
705     setOperationAction(ISD::MULHU, VT, Expand);
706     setOperationAction(ISD::SDIVREM, VT, Expand);
707     setOperationAction(ISD::UDIVREM, VT, Expand);
708     setOperationAction(ISD::FPOW, VT, Expand);
709     setOperationAction(ISD::CTPOP, VT, Expand);
710     setOperationAction(ISD::CTTZ, VT, Expand);
711     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
712     setOperationAction(ISD::CTLZ, VT, Expand);
713     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
714     setOperationAction(ISD::SHL, VT, Expand);
715     setOperationAction(ISD::SRA, VT, Expand);
716     setOperationAction(ISD::SRL, VT, Expand);
717     setOperationAction(ISD::ROTL, VT, Expand);
718     setOperationAction(ISD::ROTR, VT, Expand);
719     setOperationAction(ISD::BSWAP, VT, Expand);
720     setOperationAction(ISD::SETCC, VT, Expand);
721     setOperationAction(ISD::FLOG, VT, Expand);
722     setOperationAction(ISD::FLOG2, VT, Expand);
723     setOperationAction(ISD::FLOG10, VT, Expand);
724     setOperationAction(ISD::FEXP, VT, Expand);
725     setOperationAction(ISD::FEXP2, VT, Expand);
726     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
727     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
728     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
729     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
730     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
731     setOperationAction(ISD::TRUNCATE, VT, Expand);
732     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
733     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
734     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
735     setOperationAction(ISD::VSELECT, VT, Expand);
736     setOperationAction(ISD::SELECT_CC, VT, Expand);
737     for (MVT InnerVT : MVT::vector_valuetypes()) {
738       setTruncStoreAction(InnerVT, VT, Expand);
739
740       setLoadExtAction(ISD::SEXTLOAD, InnerVT, VT, Expand);
741       setLoadExtAction(ISD::ZEXTLOAD, InnerVT, VT, Expand);
742
743       // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like
744       // types, we have to deal with them whether we ask for Expansion or not.
745       // Setting Expand causes its own optimisation problems though, so leave
746       // them legal.
747       if (VT.getVectorElementType() == MVT::i1)
748         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
749
750       // EXTLOAD for MVT::f16 vectors is not legal because f16 vectors are
751       // split/scalarized right now.
752       if (VT.getVectorElementType() == MVT::f16)
753         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
754     }
755   }
756
757   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
758   // with -msoft-float, disable use of MMX as well.
759   if (!Subtarget->useSoftFloat() && Subtarget->hasMMX()) {
760     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
761     // No operations on x86mmx supported, everything uses intrinsics.
762   }
763
764   // MMX-sized vectors (other than x86mmx) are expected to be expanded
765   // into smaller operations.
766   for (MVT MMXTy : {MVT::v8i8, MVT::v4i16, MVT::v2i32, MVT::v1i64}) {
767     setOperationAction(ISD::MULHS,              MMXTy,      Expand);
768     setOperationAction(ISD::AND,                MMXTy,      Expand);
769     setOperationAction(ISD::OR,                 MMXTy,      Expand);
770     setOperationAction(ISD::XOR,                MMXTy,      Expand);
771     setOperationAction(ISD::SCALAR_TO_VECTOR,   MMXTy,      Expand);
772     setOperationAction(ISD::SELECT,             MMXTy,      Expand);
773     setOperationAction(ISD::BITCAST,            MMXTy,      Expand);
774   }
775   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
776
777   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE1()) {
778     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
779
780     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
781     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
782     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
783     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
784     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
785     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
786     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
787     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
788     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
789     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
790     setOperationAction(ISD::VSELECT,            MVT::v4f32, Custom);
791     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
792     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
793     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Custom);
794   }
795
796   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE2()) {
797     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
798
799     // FIXME: Unfortunately, -soft-float and -no-implicit-float mean XMM
800     // registers cannot be used even for integer operations.
801     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
802     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
803     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
804     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
805
806     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
807     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
808     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
809     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
810     setOperationAction(ISD::MUL,                MVT::v16i8, Custom);
811     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
812     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
813     setOperationAction(ISD::UMUL_LOHI,          MVT::v4i32, Custom);
814     setOperationAction(ISD::SMUL_LOHI,          MVT::v4i32, Custom);
815     setOperationAction(ISD::MULHU,              MVT::v8i16, Legal);
816     setOperationAction(ISD::MULHS,              MVT::v8i16, Legal);
817     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
818     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
819     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
820     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
821     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
822     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
823     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
824     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
825     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
826     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
827     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
828     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
829
830     setOperationAction(ISD::SMAX,               MVT::v8i16, Legal);
831     setOperationAction(ISD::UMAX,               MVT::v16i8, Legal);
832     setOperationAction(ISD::SMIN,               MVT::v8i16, Legal);
833     setOperationAction(ISD::UMIN,               MVT::v16i8, Legal);
834
835     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
836     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
837     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
838     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
839
840     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
841     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
842     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
843     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
844     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
845
846     setOperationAction(ISD::CTPOP,              MVT::v16i8, Custom);
847     setOperationAction(ISD::CTPOP,              MVT::v8i16, Custom);
848     setOperationAction(ISD::CTPOP,              MVT::v4i32, Custom);
849     setOperationAction(ISD::CTPOP,              MVT::v2i64, Custom);
850
851     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
852     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
853       MVT VT = (MVT::SimpleValueType)i;
854       // Do not attempt to custom lower non-power-of-2 vectors
855       if (!isPowerOf2_32(VT.getVectorNumElements()))
856         continue;
857       // Do not attempt to custom lower non-128-bit vectors
858       if (!VT.is128BitVector())
859         continue;
860       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
861       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
862       setOperationAction(ISD::VSELECT,            VT, Custom);
863       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
864     }
865
866     // We support custom legalizing of sext and anyext loads for specific
867     // memory vector types which we can load as a scalar (or sequence of
868     // scalars) and extend in-register to a legal 128-bit vector type. For sext
869     // loads these must work with a single scalar load.
870     for (MVT VT : MVT::integer_vector_valuetypes()) {
871       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i8, Custom);
872       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v4i16, Custom);
873       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v8i8, Custom);
874       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i8, Custom);
875       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i16, Custom);
876       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2i32, Custom);
877       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i8, Custom);
878       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4i16, Custom);
879       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v8i8, Custom);
880     }
881
882     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
883     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
884     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
885     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
886     setOperationAction(ISD::VSELECT,            MVT::v2f64, Custom);
887     setOperationAction(ISD::VSELECT,            MVT::v2i64, Custom);
888     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
889     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
890
891     if (Subtarget->is64Bit()) {
892       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
893       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
894     }
895
896     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
897     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
898       MVT VT = (MVT::SimpleValueType)i;
899
900       // Do not attempt to promote non-128-bit vectors
901       if (!VT.is128BitVector())
902         continue;
903
904       setOperationAction(ISD::AND,    VT, Promote);
905       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
906       setOperationAction(ISD::OR,     VT, Promote);
907       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
908       setOperationAction(ISD::XOR,    VT, Promote);
909       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
910       setOperationAction(ISD::LOAD,   VT, Promote);
911       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
912       setOperationAction(ISD::SELECT, VT, Promote);
913       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
914     }
915
916     // Custom lower v2i64 and v2f64 selects.
917     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
918     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
919     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
920     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
921
922     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
923     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
924
925     setOperationAction(ISD::SINT_TO_FP,         MVT::v2i32, Custom);
926
927     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
928     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
929     // As there is no 64-bit GPR available, we need build a special custom
930     // sequence to convert from v2i32 to v2f32.
931     if (!Subtarget->is64Bit())
932       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
933
934     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
935     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
936
937     for (MVT VT : MVT::fp_vector_valuetypes())
938       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v2f32, Legal);
939
940     setOperationAction(ISD::BITCAST,            MVT::v2i32, Custom);
941     setOperationAction(ISD::BITCAST,            MVT::v4i16, Custom);
942     setOperationAction(ISD::BITCAST,            MVT::v8i8,  Custom);
943   }
944
945   if (!Subtarget->useSoftFloat() && Subtarget->hasSSE41()) {
946     for (MVT RoundedTy : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
947       setOperationAction(ISD::FFLOOR,           RoundedTy,  Legal);
948       setOperationAction(ISD::FCEIL,            RoundedTy,  Legal);
949       setOperationAction(ISD::FTRUNC,           RoundedTy,  Legal);
950       setOperationAction(ISD::FRINT,            RoundedTy,  Legal);
951       setOperationAction(ISD::FNEARBYINT,       RoundedTy,  Legal);
952     }
953
954     setOperationAction(ISD::SMAX,               MVT::v16i8, Legal);
955     setOperationAction(ISD::SMAX,               MVT::v4i32, Legal);
956     setOperationAction(ISD::UMAX,               MVT::v8i16, Legal);
957     setOperationAction(ISD::UMAX,               MVT::v4i32, Legal);
958     setOperationAction(ISD::SMIN,               MVT::v16i8, Legal);
959     setOperationAction(ISD::SMIN,               MVT::v4i32, Legal);
960     setOperationAction(ISD::UMIN,               MVT::v8i16, Legal);
961     setOperationAction(ISD::UMIN,               MVT::v4i32, Legal);
962
963     // FIXME: Do we need to handle scalar-to-vector here?
964     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
965
966     // We directly match byte blends in the backend as they match the VSELECT
967     // condition form.
968     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
969
970     // SSE41 brings specific instructions for doing vector sign extend even in
971     // cases where we don't have SRA.
972     for (MVT VT : MVT::integer_vector_valuetypes()) {
973       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i8, Custom);
974       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i16, Custom);
975       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::v2i32, Custom);
976     }
977
978     // SSE41 also has vector sign/zero extending loads, PMOV[SZ]X
979     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i16, MVT::v8i8,  Legal);
980     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i8,  Legal);
981     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i8,  Legal);
982     setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i16, Legal);
983     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i16, Legal);
984     setLoadExtAction(ISD::SEXTLOAD, MVT::v2i64, MVT::v2i32, Legal);
985
986     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i16, MVT::v8i8,  Legal);
987     setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i8,  Legal);
988     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i8,  Legal);
989     setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i16, Legal);
990     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i16, Legal);
991     setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i64, MVT::v2i32, Legal);
992
993     // i8 and i16 vectors are custom because the source register and source
994     // source memory operand types are not the same width.  f32 vectors are
995     // custom since the immediate controlling the insert encodes additional
996     // information.
997     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
998     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
999     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1000     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1001
1002     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1003     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1004     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1005     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1006
1007     // FIXME: these should be Legal, but that's only for the case where
1008     // the index is constant.  For now custom expand to deal with that.
1009     if (Subtarget->is64Bit()) {
1010       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1011       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1012     }
1013   }
1014
1015   if (Subtarget->hasSSE2()) {
1016     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v2i64, Custom);
1017     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v4i32, Custom);
1018     setOperationAction(ISD::SIGN_EXTEND_VECTOR_INREG, MVT::v8i16, Custom);
1019
1020     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1021     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1022
1023     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1024     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1025
1026     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1027     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1028
1029     // In the customized shift lowering, the legal cases in AVX2 will be
1030     // recognized.
1031     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1032     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1033
1034     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1035     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1036
1037     setOperationAction(ISD::SRA,               MVT::v2i64, Custom);
1038     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1039   }
1040
1041   if (!Subtarget->useSoftFloat() && Subtarget->hasFp256()) {
1042     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1043     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1044     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1045     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1046     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1047     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1048
1049     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1050     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1051     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1052
1053     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1054     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1055     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1056     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1057     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1058     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1059     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1060     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1061     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1062     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1063     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1064     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1065
1066     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1067     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1068     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1069     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1070     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1071     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1072     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1073     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1074     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1075     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1076     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1077     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1078
1079     // (fp_to_int:v8i16 (v8f32 ..)) requires the result type to be promoted
1080     // even though v8i16 is a legal type.
1081     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Promote);
1082     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i16, Promote);
1083     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1084
1085     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1086     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1087     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1088
1089     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1090     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1091
1092     for (MVT VT : MVT::fp_vector_valuetypes())
1093       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v4f32, Legal);
1094
1095     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1096     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1097
1098     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1099     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1100
1101     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1102     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1103
1104     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1105     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1106     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1107     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1108
1109     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1110     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1111     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1112
1113     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1114     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1115     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1116     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1117     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1118     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1119     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1120     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1121     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1122     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1123     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1124     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1125
1126     setOperationAction(ISD::CTPOP,             MVT::v32i8, Custom);
1127     setOperationAction(ISD::CTPOP,             MVT::v16i16, Custom);
1128     setOperationAction(ISD::CTPOP,             MVT::v8i32, Custom);
1129     setOperationAction(ISD::CTPOP,             MVT::v4i64, Custom);
1130
1131     if (Subtarget->hasFMA() || Subtarget->hasFMA4() || Subtarget->hasAVX512()) {
1132       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1133       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1134       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1135       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1136       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1137       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1138     }
1139
1140     if (Subtarget->hasInt256()) {
1141       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1142       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1143       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1144       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1145
1146       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1147       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1148       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1149       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1150
1151       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1152       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1153       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1154       setOperationAction(ISD::MUL,             MVT::v32i8, Custom);
1155
1156       setOperationAction(ISD::UMUL_LOHI,       MVT::v8i32, Custom);
1157       setOperationAction(ISD::SMUL_LOHI,       MVT::v8i32, Custom);
1158       setOperationAction(ISD::MULHU,           MVT::v16i16, Legal);
1159       setOperationAction(ISD::MULHS,           MVT::v16i16, Legal);
1160
1161       setOperationAction(ISD::SMAX,            MVT::v32i8,  Legal);
1162       setOperationAction(ISD::SMAX,            MVT::v16i16, Legal);
1163       setOperationAction(ISD::SMAX,            MVT::v8i32,  Legal);
1164       setOperationAction(ISD::UMAX,            MVT::v32i8,  Legal);
1165       setOperationAction(ISD::UMAX,            MVT::v16i16, Legal);
1166       setOperationAction(ISD::UMAX,            MVT::v8i32,  Legal);
1167       setOperationAction(ISD::SMIN,            MVT::v32i8,  Legal);
1168       setOperationAction(ISD::SMIN,            MVT::v16i16, Legal);
1169       setOperationAction(ISD::SMIN,            MVT::v8i32,  Legal);
1170       setOperationAction(ISD::UMIN,            MVT::v32i8,  Legal);
1171       setOperationAction(ISD::UMIN,            MVT::v16i16, Legal);
1172       setOperationAction(ISD::UMIN,            MVT::v8i32,  Legal);
1173
1174       // The custom lowering for UINT_TO_FP for v8i32 becomes interesting
1175       // when we have a 256bit-wide blend with immediate.
1176       setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Custom);
1177
1178       // AVX2 also has wider vector sign/zero extending loads, VPMOV[SZ]X
1179       setLoadExtAction(ISD::SEXTLOAD, MVT::v16i16, MVT::v16i8, Legal);
1180       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i32,  MVT::v8i8,  Legal);
1181       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i8,  Legal);
1182       setLoadExtAction(ISD::SEXTLOAD, MVT::v8i32,  MVT::v8i16, Legal);
1183       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i16, Legal);
1184       setLoadExtAction(ISD::SEXTLOAD, MVT::v4i64,  MVT::v4i32, Legal);
1185
1186       setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i16, MVT::v16i8, Legal);
1187       setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i32,  MVT::v8i8,  Legal);
1188       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i8,  Legal);
1189       setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i32,  MVT::v8i16, Legal);
1190       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i16, Legal);
1191       setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i64,  MVT::v4i32, Legal);
1192     } else {
1193       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1194       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1195       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1196       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1197
1198       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1199       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1200       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1201       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1202
1203       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1204       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1205       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1206       setOperationAction(ISD::MUL,             MVT::v32i8, Custom);
1207
1208       setOperationAction(ISD::SMAX,            MVT::v32i8,  Custom);
1209       setOperationAction(ISD::SMAX,            MVT::v16i16, Custom);
1210       setOperationAction(ISD::SMAX,            MVT::v8i32,  Custom);
1211       setOperationAction(ISD::UMAX,            MVT::v32i8,  Custom);
1212       setOperationAction(ISD::UMAX,            MVT::v16i16, Custom);
1213       setOperationAction(ISD::UMAX,            MVT::v8i32,  Custom);
1214       setOperationAction(ISD::SMIN,            MVT::v32i8,  Custom);
1215       setOperationAction(ISD::SMIN,            MVT::v16i16, Custom);
1216       setOperationAction(ISD::SMIN,            MVT::v8i32,  Custom);
1217       setOperationAction(ISD::UMIN,            MVT::v32i8,  Custom);
1218       setOperationAction(ISD::UMIN,            MVT::v16i16, Custom);
1219       setOperationAction(ISD::UMIN,            MVT::v8i32,  Custom);
1220     }
1221
1222     // In the customized shift lowering, the legal cases in AVX2 will be
1223     // recognized.
1224     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1225     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1226
1227     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1228     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1229
1230     setOperationAction(ISD::SRA,               MVT::v4i64, Custom);
1231     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1232
1233     // Custom lower several nodes for 256-bit types.
1234     for (MVT VT : MVT::vector_valuetypes()) {
1235       if (VT.getScalarSizeInBits() >= 32) {
1236         setOperationAction(ISD::MLOAD,  VT, Legal);
1237         setOperationAction(ISD::MSTORE, VT, Legal);
1238       }
1239       // Extract subvector is special because the value type
1240       // (result) is 128-bit but the source is 256-bit wide.
1241       if (VT.is128BitVector()) {
1242         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1243       }
1244       // Do not attempt to custom lower other non-256-bit vectors
1245       if (!VT.is256BitVector())
1246         continue;
1247
1248       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1249       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1250       setOperationAction(ISD::VSELECT,            VT, Custom);
1251       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1252       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1253       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1254       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1255       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1256     }
1257
1258     if (Subtarget->hasInt256())
1259       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1260
1261
1262     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1263     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1264       MVT VT = (MVT::SimpleValueType)i;
1265
1266       // Do not attempt to promote non-256-bit vectors
1267       if (!VT.is256BitVector())
1268         continue;
1269
1270       setOperationAction(ISD::AND,    VT, Promote);
1271       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1272       setOperationAction(ISD::OR,     VT, Promote);
1273       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1274       setOperationAction(ISD::XOR,    VT, Promote);
1275       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1276       setOperationAction(ISD::LOAD,   VT, Promote);
1277       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1278       setOperationAction(ISD::SELECT, VT, Promote);
1279       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1280     }
1281   }
1282
1283   if (!Subtarget->useSoftFloat() && Subtarget->hasAVX512()) {
1284     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1285     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1286     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1287     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1288
1289     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1290     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1291     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1292
1293     for (MVT VT : MVT::fp_vector_valuetypes())
1294       setLoadExtAction(ISD::EXTLOAD, VT, MVT::v8f32, Legal);
1295
1296     setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i32, MVT::v16i8, Legal);
1297     setLoadExtAction(ISD::SEXTLOAD, MVT::v16i32, MVT::v16i8, Legal);
1298     setLoadExtAction(ISD::ZEXTLOAD, MVT::v16i32, MVT::v16i16, Legal);
1299     setLoadExtAction(ISD::SEXTLOAD, MVT::v16i32, MVT::v16i16, Legal);
1300     setLoadExtAction(ISD::ZEXTLOAD, MVT::v32i16, MVT::v32i8, Legal);
1301     setLoadExtAction(ISD::SEXTLOAD, MVT::v32i16, MVT::v32i8, Legal);
1302     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i8,  Legal);
1303     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i8,  Legal);
1304     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i16,  Legal);
1305     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i16,  Legal);
1306     setLoadExtAction(ISD::ZEXTLOAD, MVT::v8i64,  MVT::v8i32,  Legal);
1307     setLoadExtAction(ISD::SEXTLOAD, MVT::v8i64,  MVT::v8i32,  Legal);
1308
1309     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1310     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1311     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1312     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1313     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1314     setOperationAction(ISD::SUB,                MVT::i1,    Custom);
1315     setOperationAction(ISD::ADD,                MVT::i1,    Custom);
1316     setOperationAction(ISD::MUL,                MVT::i1,    Custom);
1317     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1318     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1319     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1320     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1321     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1322
1323     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1324     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1325     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1326     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1327     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1328     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1329
1330     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1331     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1332     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1333     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1334     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1335     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1336     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1337     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1338
1339     // FIXME:  [US]INT_TO_FP are not legal for f80.
1340     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1341     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1342     if (Subtarget->is64Bit()) {
1343       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1344       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1345     }
1346     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1347     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1348     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1349     setOperationAction(ISD::FP_TO_UINT,         MVT::v4i32, Legal);
1350     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1351     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i1,   Custom);
1352     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i1,  Custom);
1353     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i8,  Promote);
1354     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i16, Promote);
1355     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1356     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1357     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i32, Legal);
1358     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i8, Custom);
1359     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i16, Custom);
1360     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1361     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1362
1363     setTruncStoreAction(MVT::v8i64,   MVT::v8i8,   Legal);
1364     setTruncStoreAction(MVT::v8i64,   MVT::v8i16,  Legal);
1365     setTruncStoreAction(MVT::v8i64,   MVT::v8i32,  Legal);
1366     setTruncStoreAction(MVT::v16i32,  MVT::v16i8,  Legal);
1367     setTruncStoreAction(MVT::v16i32,  MVT::v16i16, Legal);
1368     if (Subtarget->hasVLX()){
1369       setTruncStoreAction(MVT::v4i64, MVT::v4i8,  Legal);
1370       setTruncStoreAction(MVT::v4i64, MVT::v4i16, Legal);
1371       setTruncStoreAction(MVT::v4i64, MVT::v4i32, Legal);
1372       setTruncStoreAction(MVT::v8i32, MVT::v8i8,  Legal);
1373       setTruncStoreAction(MVT::v8i32, MVT::v8i16, Legal);
1374
1375       setTruncStoreAction(MVT::v2i64, MVT::v2i8,  Legal);
1376       setTruncStoreAction(MVT::v2i64, MVT::v2i16, Legal);
1377       setTruncStoreAction(MVT::v2i64, MVT::v2i32, Legal);
1378       setTruncStoreAction(MVT::v4i32, MVT::v4i8,  Legal);
1379       setTruncStoreAction(MVT::v4i32, MVT::v4i16, Legal);
1380     }
1381     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1382     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1383     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1384     if (Subtarget->hasDQI()) {
1385       setOperationAction(ISD::TRUNCATE,         MVT::v2i1, Custom);
1386       setOperationAction(ISD::TRUNCATE,         MVT::v4i1, Custom);
1387
1388       setOperationAction(ISD::SINT_TO_FP,       MVT::v8i64, Legal);
1389       setOperationAction(ISD::UINT_TO_FP,       MVT::v8i64, Legal);
1390       setOperationAction(ISD::FP_TO_SINT,       MVT::v8i64, Legal);
1391       setOperationAction(ISD::FP_TO_UINT,       MVT::v8i64, Legal);
1392       if (Subtarget->hasVLX()) {
1393         setOperationAction(ISD::SINT_TO_FP,    MVT::v4i64, Legal);
1394         setOperationAction(ISD::SINT_TO_FP,    MVT::v2i64, Legal);
1395         setOperationAction(ISD::UINT_TO_FP,    MVT::v4i64, Legal);
1396         setOperationAction(ISD::UINT_TO_FP,    MVT::v2i64, Legal);
1397         setOperationAction(ISD::FP_TO_SINT,    MVT::v4i64, Legal);
1398         setOperationAction(ISD::FP_TO_SINT,    MVT::v2i64, Legal);
1399         setOperationAction(ISD::FP_TO_UINT,    MVT::v4i64, Legal);
1400         setOperationAction(ISD::FP_TO_UINT,    MVT::v2i64, Legal);
1401       }
1402     }
1403     if (Subtarget->hasVLX()) {
1404       setOperationAction(ISD::SINT_TO_FP,       MVT::v8i32, Legal);
1405       setOperationAction(ISD::UINT_TO_FP,       MVT::v8i32, Legal);
1406       setOperationAction(ISD::FP_TO_SINT,       MVT::v8i32, Legal);
1407       setOperationAction(ISD::FP_TO_UINT,       MVT::v8i32, Legal);
1408       setOperationAction(ISD::SINT_TO_FP,       MVT::v4i32, Legal);
1409       setOperationAction(ISD::UINT_TO_FP,       MVT::v4i32, Legal);
1410       setOperationAction(ISD::FP_TO_SINT,       MVT::v4i32, Legal);
1411       setOperationAction(ISD::FP_TO_UINT,       MVT::v4i32, Legal);
1412     }
1413     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1414     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1415     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1416     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1417     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1418     setOperationAction(ISD::ANY_EXTEND,         MVT::v16i32, Custom);
1419     setOperationAction(ISD::ANY_EXTEND,         MVT::v8i64, Custom);
1420     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1421     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1422     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1423     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1424     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1425     if (Subtarget->hasDQI()) {
1426       setOperationAction(ISD::SIGN_EXTEND,        MVT::v4i32, Custom);
1427       setOperationAction(ISD::SIGN_EXTEND,        MVT::v2i64, Custom);
1428     }
1429     setOperationAction(ISD::FFLOOR,             MVT::v16f32, Legal);
1430     setOperationAction(ISD::FFLOOR,             MVT::v8f64, Legal);
1431     setOperationAction(ISD::FCEIL,              MVT::v16f32, Legal);
1432     setOperationAction(ISD::FCEIL,              MVT::v8f64, Legal);
1433     setOperationAction(ISD::FTRUNC,             MVT::v16f32, Legal);
1434     setOperationAction(ISD::FTRUNC,             MVT::v8f64, Legal);
1435     setOperationAction(ISD::FRINT,              MVT::v16f32, Legal);
1436     setOperationAction(ISD::FRINT,              MVT::v8f64, Legal);
1437     setOperationAction(ISD::FNEARBYINT,         MVT::v16f32, Legal);
1438     setOperationAction(ISD::FNEARBYINT,         MVT::v8f64, Legal);
1439
1440     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1441     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1442     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1443     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1444     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1445
1446     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1447     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1448
1449     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1450
1451     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1452     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1453     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i1, Custom);
1454     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i1, Custom);
1455     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1456     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1457     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1458     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1459     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1460     setOperationAction(ISD::SELECT,             MVT::v16i1, Custom);
1461     setOperationAction(ISD::SELECT,             MVT::v8i1,  Custom);
1462
1463     setOperationAction(ISD::SMAX,               MVT::v16i32, Legal);
1464     setOperationAction(ISD::SMAX,               MVT::v8i64, Legal);
1465     setOperationAction(ISD::UMAX,               MVT::v16i32, Legal);
1466     setOperationAction(ISD::UMAX,               MVT::v8i64, Legal);
1467     setOperationAction(ISD::SMIN,               MVT::v16i32, Legal);
1468     setOperationAction(ISD::SMIN,               MVT::v8i64, Legal);
1469     setOperationAction(ISD::UMIN,               MVT::v16i32, Legal);
1470     setOperationAction(ISD::UMIN,               MVT::v8i64, Legal);
1471
1472     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1473     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1474
1475     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1476     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1477
1478     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1479
1480     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1481     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1482
1483     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1484     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1485
1486     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1487     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1488
1489     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1490     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1491     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1492     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1493     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1494     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1495
1496     if (Subtarget->hasCDI()) {
1497       setOperationAction(ISD::CTLZ,             MVT::v8i64, Legal);
1498       setOperationAction(ISD::CTLZ,             MVT::v16i32, Legal);
1499       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v8i64, Legal);
1500       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v16i32, Legal);
1501     }
1502     if (Subtarget->hasVLX() && Subtarget->hasCDI()) {
1503       setOperationAction(ISD::CTLZ,             MVT::v4i64, Legal);
1504       setOperationAction(ISD::CTLZ,             MVT::v8i32, Legal);
1505       setOperationAction(ISD::CTLZ,             MVT::v2i64, Legal);
1506       setOperationAction(ISD::CTLZ,             MVT::v4i32, Legal);
1507       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v4i64, Legal);
1508       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v8i32, Legal);
1509       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v2i64, Legal);
1510       setOperationAction(ISD::CTLZ_ZERO_UNDEF,  MVT::v4i32, Legal);
1511     }
1512     if (Subtarget->hasDQI()) {
1513       setOperationAction(ISD::MUL,             MVT::v2i64, Legal);
1514       setOperationAction(ISD::MUL,             MVT::v4i64, Legal);
1515       setOperationAction(ISD::MUL,             MVT::v8i64, Legal);
1516     }
1517     // Custom lower several nodes.
1518     for (MVT VT : MVT::vector_valuetypes()) {
1519       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1520       if (EltSize == 1) {
1521         setOperationAction(ISD::AND, VT, Legal);
1522         setOperationAction(ISD::OR,  VT, Legal);
1523         setOperationAction(ISD::XOR,  VT, Legal);
1524       }
1525       if (EltSize >= 32 && VT.getSizeInBits() <= 512) {
1526         setOperationAction(ISD::MGATHER,  VT, Custom);
1527         setOperationAction(ISD::MSCATTER, VT, Custom);
1528       }
1529       // Extract subvector is special because the value type
1530       // (result) is 256/128-bit but the source is 512-bit wide.
1531       if (VT.is128BitVector() || VT.is256BitVector()) {
1532         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1533       }
1534       if (VT.getVectorElementType() == MVT::i1)
1535         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1536
1537       // Do not attempt to custom lower other non-512-bit vectors
1538       if (!VT.is512BitVector())
1539         continue;
1540
1541       if (EltSize >= 32) {
1542         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1543         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1544         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1545         setOperationAction(ISD::VSELECT,             VT, Legal);
1546         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1547         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1548         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1549         setOperationAction(ISD::MLOAD,               VT, Legal);
1550         setOperationAction(ISD::MSTORE,              VT, Legal);
1551       }
1552     }
1553     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1554       MVT VT = (MVT::SimpleValueType)i;
1555
1556       // Do not attempt to promote non-512-bit vectors.
1557       if (!VT.is512BitVector())
1558         continue;
1559
1560       setOperationAction(ISD::SELECT, VT, Promote);
1561       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1562     }
1563   }// has  AVX-512
1564
1565   if (!Subtarget->useSoftFloat() && Subtarget->hasBWI()) {
1566     addRegisterClass(MVT::v32i16, &X86::VR512RegClass);
1567     addRegisterClass(MVT::v64i8,  &X86::VR512RegClass);
1568
1569     addRegisterClass(MVT::v32i1,  &X86::VK32RegClass);
1570     addRegisterClass(MVT::v64i1,  &X86::VK64RegClass);
1571
1572     setOperationAction(ISD::LOAD,               MVT::v32i16, Legal);
1573     setOperationAction(ISD::LOAD,               MVT::v64i8, Legal);
1574     setOperationAction(ISD::SETCC,              MVT::v32i1, Custom);
1575     setOperationAction(ISD::SETCC,              MVT::v64i1, Custom);
1576     setOperationAction(ISD::ADD,                MVT::v32i16, Legal);
1577     setOperationAction(ISD::ADD,                MVT::v64i8, Legal);
1578     setOperationAction(ISD::SUB,                MVT::v32i16, Legal);
1579     setOperationAction(ISD::SUB,                MVT::v64i8, Legal);
1580     setOperationAction(ISD::MUL,                MVT::v32i16, Legal);
1581     setOperationAction(ISD::MULHS,              MVT::v32i16, Legal);
1582     setOperationAction(ISD::MULHU,              MVT::v32i16, Legal);
1583     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v32i1, Custom);
1584     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v64i1, Custom);
1585     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v32i1, Custom);
1586     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v64i1, Custom);
1587     setOperationAction(ISD::SELECT,             MVT::v32i1, Custom);
1588     setOperationAction(ISD::SELECT,             MVT::v64i1, Custom);
1589     setOperationAction(ISD::SIGN_EXTEND,        MVT::v32i8, Custom);
1590     setOperationAction(ISD::ZERO_EXTEND,        MVT::v32i8, Custom);
1591     setOperationAction(ISD::SIGN_EXTEND,        MVT::v32i16, Custom);
1592     setOperationAction(ISD::ZERO_EXTEND,        MVT::v32i16, Custom);
1593     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v32i16, Custom);
1594     setOperationAction(ISD::SIGN_EXTEND,        MVT::v64i8, Custom);
1595     setOperationAction(ISD::ZERO_EXTEND,        MVT::v64i8, Custom);
1596     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v32i1, Custom);
1597     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v64i1, Custom);
1598     setOperationAction(ISD::VSELECT,            MVT::v32i16, Legal);
1599     setOperationAction(ISD::VSELECT,            MVT::v64i8, Legal);
1600     setOperationAction(ISD::TRUNCATE,           MVT::v32i1, Custom);
1601     setOperationAction(ISD::TRUNCATE,           MVT::v64i1, Custom);
1602     setOperationAction(ISD::TRUNCATE,           MVT::v32i8, Custom);
1603
1604     setOperationAction(ISD::SMAX,               MVT::v64i8, Legal);
1605     setOperationAction(ISD::SMAX,               MVT::v32i16, Legal);
1606     setOperationAction(ISD::UMAX,               MVT::v64i8, Legal);
1607     setOperationAction(ISD::UMAX,               MVT::v32i16, Legal);
1608     setOperationAction(ISD::SMIN,               MVT::v64i8, Legal);
1609     setOperationAction(ISD::SMIN,               MVT::v32i16, Legal);
1610     setOperationAction(ISD::UMIN,               MVT::v64i8, Legal);
1611     setOperationAction(ISD::UMIN,               MVT::v32i16, Legal);
1612
1613     setTruncStoreAction(MVT::v32i16,  MVT::v32i8, Legal);
1614     setTruncStoreAction(MVT::v16i16,  MVT::v16i8, Legal);
1615     if (Subtarget->hasVLX())
1616       setTruncStoreAction(MVT::v8i16,   MVT::v8i8,  Legal);
1617
1618     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1619       const MVT VT = (MVT::SimpleValueType)i;
1620
1621       const unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1622
1623       // Do not attempt to promote non-512-bit vectors.
1624       if (!VT.is512BitVector())
1625         continue;
1626
1627       if (EltSize < 32) {
1628         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1629         setOperationAction(ISD::VSELECT,             VT, Legal);
1630       }
1631     }
1632   }
1633
1634   if (!Subtarget->useSoftFloat() && Subtarget->hasVLX()) {
1635     addRegisterClass(MVT::v4i1,   &X86::VK4RegClass);
1636     addRegisterClass(MVT::v2i1,   &X86::VK2RegClass);
1637
1638     setOperationAction(ISD::SETCC,              MVT::v4i1, Custom);
1639     setOperationAction(ISD::SETCC,              MVT::v2i1, Custom);
1640     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4i1, Custom);
1641     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1, Custom);
1642     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v8i1, Custom);
1643     setOperationAction(ISD::INSERT_SUBVECTOR,   MVT::v4i1, Custom);
1644     setOperationAction(ISD::SELECT,             MVT::v4i1, Custom);
1645     setOperationAction(ISD::SELECT,             MVT::v2i1, Custom);
1646     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4i1, Custom);
1647     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i1, Custom);
1648
1649     setOperationAction(ISD::AND,                MVT::v8i32, Legal);
1650     setOperationAction(ISD::OR,                 MVT::v8i32, Legal);
1651     setOperationAction(ISD::XOR,                MVT::v8i32, Legal);
1652     setOperationAction(ISD::AND,                MVT::v4i32, Legal);
1653     setOperationAction(ISD::OR,                 MVT::v4i32, Legal);
1654     setOperationAction(ISD::XOR,                MVT::v4i32, Legal);
1655     setOperationAction(ISD::SRA,                MVT::v2i64, Custom);
1656     setOperationAction(ISD::SRA,                MVT::v4i64, Custom);
1657
1658     setOperationAction(ISD::SMAX,               MVT::v2i64, Legal);
1659     setOperationAction(ISD::SMAX,               MVT::v4i64, Legal);
1660     setOperationAction(ISD::UMAX,               MVT::v2i64, Legal);
1661     setOperationAction(ISD::UMAX,               MVT::v4i64, Legal);
1662     setOperationAction(ISD::SMIN,               MVT::v2i64, Legal);
1663     setOperationAction(ISD::SMIN,               MVT::v4i64, Legal);
1664     setOperationAction(ISD::UMIN,               MVT::v2i64, Legal);
1665     setOperationAction(ISD::UMIN,               MVT::v4i64, Legal);
1666   }
1667
1668   // We want to custom lower some of our intrinsics.
1669   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1670   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1671   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1672   if (!Subtarget->is64Bit())
1673     setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
1674
1675   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1676   // handle type legalization for these operations here.
1677   //
1678   // FIXME: We really should do custom legalization for addition and
1679   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1680   // than generic legalization for 64-bit multiplication-with-overflow, though.
1681   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1682     // Add/Sub/Mul with overflow operations are custom lowered.
1683     MVT VT = IntVTs[i];
1684     setOperationAction(ISD::SADDO, VT, Custom);
1685     setOperationAction(ISD::UADDO, VT, Custom);
1686     setOperationAction(ISD::SSUBO, VT, Custom);
1687     setOperationAction(ISD::USUBO, VT, Custom);
1688     setOperationAction(ISD::SMULO, VT, Custom);
1689     setOperationAction(ISD::UMULO, VT, Custom);
1690   }
1691
1692
1693   if (!Subtarget->is64Bit()) {
1694     // These libcalls are not available in 32-bit.
1695     setLibcallName(RTLIB::SHL_I128, nullptr);
1696     setLibcallName(RTLIB::SRL_I128, nullptr);
1697     setLibcallName(RTLIB::SRA_I128, nullptr);
1698   }
1699
1700   // Combine sin / cos into one node or libcall if possible.
1701   if (Subtarget->hasSinCos()) {
1702     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1703     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1704     if (Subtarget->isTargetDarwin()) {
1705       // For MacOSX, we don't want the normal expansion of a libcall to sincos.
1706       // We want to issue a libcall to __sincos_stret to avoid memory traffic.
1707       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1708       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1709     }
1710   }
1711
1712   if (Subtarget->isTargetWin64()) {
1713     setOperationAction(ISD::SDIV, MVT::i128, Custom);
1714     setOperationAction(ISD::UDIV, MVT::i128, Custom);
1715     setOperationAction(ISD::SREM, MVT::i128, Custom);
1716     setOperationAction(ISD::UREM, MVT::i128, Custom);
1717     setOperationAction(ISD::SDIVREM, MVT::i128, Custom);
1718     setOperationAction(ISD::UDIVREM, MVT::i128, Custom);
1719   }
1720
1721   // We have target-specific dag combine patterns for the following nodes:
1722   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1723   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1724   setTargetDAGCombine(ISD::BITCAST);
1725   setTargetDAGCombine(ISD::VSELECT);
1726   setTargetDAGCombine(ISD::SELECT);
1727   setTargetDAGCombine(ISD::SHL);
1728   setTargetDAGCombine(ISD::SRA);
1729   setTargetDAGCombine(ISD::SRL);
1730   setTargetDAGCombine(ISD::OR);
1731   setTargetDAGCombine(ISD::AND);
1732   setTargetDAGCombine(ISD::ADD);
1733   setTargetDAGCombine(ISD::FADD);
1734   setTargetDAGCombine(ISD::FSUB);
1735   setTargetDAGCombine(ISD::FMA);
1736   setTargetDAGCombine(ISD::SUB);
1737   setTargetDAGCombine(ISD::LOAD);
1738   setTargetDAGCombine(ISD::MLOAD);
1739   setTargetDAGCombine(ISD::STORE);
1740   setTargetDAGCombine(ISD::MSTORE);
1741   setTargetDAGCombine(ISD::ZERO_EXTEND);
1742   setTargetDAGCombine(ISD::ANY_EXTEND);
1743   setTargetDAGCombine(ISD::SIGN_EXTEND);
1744   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1745   setTargetDAGCombine(ISD::SINT_TO_FP);
1746   setTargetDAGCombine(ISD::UINT_TO_FP);
1747   setTargetDAGCombine(ISD::SETCC);
1748   setTargetDAGCombine(ISD::BUILD_VECTOR);
1749   setTargetDAGCombine(ISD::MUL);
1750   setTargetDAGCombine(ISD::XOR);
1751
1752   computeRegisterProperties(Subtarget->getRegisterInfo());
1753
1754   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1755   MaxStoresPerMemsetOptSize = 8;
1756   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1757   MaxStoresPerMemcpyOptSize = 4;
1758   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1759   MaxStoresPerMemmoveOptSize = 4;
1760   setPrefLoopAlignment(4); // 2^4 bytes.
1761
1762   // Predictable cmov don't hurt on atom because it's in-order.
1763   PredictableSelectIsExpensive = !Subtarget->isAtom();
1764   EnableExtLdPromotion = true;
1765   setPrefFunctionAlignment(4); // 2^4 bytes.
1766
1767   verifyIntrinsicTables();
1768 }
1769
1770 // This has so far only been implemented for 64-bit MachO.
1771 bool X86TargetLowering::useLoadStackGuardNode() const {
1772   return Subtarget->isTargetMachO() && Subtarget->is64Bit();
1773 }
1774
1775 TargetLoweringBase::LegalizeTypeAction
1776 X86TargetLowering::getPreferredVectorAction(EVT VT) const {
1777   if (ExperimentalVectorWideningLegalization &&
1778       VT.getVectorNumElements() != 1 &&
1779       VT.getVectorElementType().getSimpleVT() != MVT::i1)
1780     return TypeWidenVector;
1781
1782   return TargetLoweringBase::getPreferredVectorAction(VT);
1783 }
1784
1785 EVT X86TargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1786                                           EVT VT) const {
1787   if (!VT.isVector())
1788     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1789
1790   const unsigned NumElts = VT.getVectorNumElements();
1791   const EVT EltVT = VT.getVectorElementType();
1792   if (VT.is512BitVector()) {
1793     if (Subtarget->hasAVX512())
1794       if (EltVT == MVT::i32 || EltVT == MVT::i64 ||
1795           EltVT == MVT::f32 || EltVT == MVT::f64)
1796         switch(NumElts) {
1797         case  8: return MVT::v8i1;
1798         case 16: return MVT::v16i1;
1799       }
1800     if (Subtarget->hasBWI())
1801       if (EltVT == MVT::i8 || EltVT == MVT::i16)
1802         switch(NumElts) {
1803         case 32: return MVT::v32i1;
1804         case 64: return MVT::v64i1;
1805       }
1806   }
1807
1808   if (VT.is256BitVector() || VT.is128BitVector()) {
1809     if (Subtarget->hasVLX())
1810       if (EltVT == MVT::i32 || EltVT == MVT::i64 ||
1811           EltVT == MVT::f32 || EltVT == MVT::f64)
1812         switch(NumElts) {
1813         case 2: return MVT::v2i1;
1814         case 4: return MVT::v4i1;
1815         case 8: return MVT::v8i1;
1816       }
1817     if (Subtarget->hasBWI() && Subtarget->hasVLX())
1818       if (EltVT == MVT::i8 || EltVT == MVT::i16)
1819         switch(NumElts) {
1820         case  8: return MVT::v8i1;
1821         case 16: return MVT::v16i1;
1822         case 32: return MVT::v32i1;
1823       }
1824   }
1825
1826   return VT.changeVectorElementTypeToInteger();
1827 }
1828
1829 /// Helper for getByValTypeAlignment to determine
1830 /// the desired ByVal argument alignment.
1831 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1832   if (MaxAlign == 16)
1833     return;
1834   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1835     if (VTy->getBitWidth() == 128)
1836       MaxAlign = 16;
1837   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1838     unsigned EltAlign = 0;
1839     getMaxByValAlign(ATy->getElementType(), EltAlign);
1840     if (EltAlign > MaxAlign)
1841       MaxAlign = EltAlign;
1842   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1843     for (auto *EltTy : STy->elements()) {
1844       unsigned EltAlign = 0;
1845       getMaxByValAlign(EltTy, EltAlign);
1846       if (EltAlign > MaxAlign)
1847         MaxAlign = EltAlign;
1848       if (MaxAlign == 16)
1849         break;
1850     }
1851   }
1852 }
1853
1854 /// Return the desired alignment for ByVal aggregate
1855 /// function arguments in the caller parameter area. For X86, aggregates
1856 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1857 /// are at 4-byte boundaries.
1858 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty,
1859                                                   const DataLayout &DL) const {
1860   if (Subtarget->is64Bit()) {
1861     // Max of 8 and alignment of type.
1862     unsigned TyAlign = DL.getABITypeAlignment(Ty);
1863     if (TyAlign > 8)
1864       return TyAlign;
1865     return 8;
1866   }
1867
1868   unsigned Align = 4;
1869   if (Subtarget->hasSSE1())
1870     getMaxByValAlign(Ty, Align);
1871   return Align;
1872 }
1873
1874 /// Returns the target specific optimal type for load
1875 /// and store operations as a result of memset, memcpy, and memmove
1876 /// lowering. If DstAlign is zero that means it's safe to destination
1877 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1878 /// means there isn't a need to check it against alignment requirement,
1879 /// probably because the source does not need to be loaded. If 'IsMemset' is
1880 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1881 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1882 /// source is constant so it does not need to be loaded.
1883 /// It returns EVT::Other if the type should be determined using generic
1884 /// target-independent logic.
1885 EVT
1886 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1887                                        unsigned DstAlign, unsigned SrcAlign,
1888                                        bool IsMemset, bool ZeroMemset,
1889                                        bool MemcpyStrSrc,
1890                                        MachineFunction &MF) const {
1891   const Function *F = MF.getFunction();
1892   if ((!IsMemset || ZeroMemset) &&
1893       !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
1894     if (Size >= 16 &&
1895         (!Subtarget->isUnalignedMem16Slow() ||
1896          ((DstAlign == 0 || DstAlign >= 16) &&
1897           (SrcAlign == 0 || SrcAlign >= 16)))) {
1898       if (Size >= 32) {
1899         // FIXME: Check if unaligned 32-byte accesses are slow.
1900         if (Subtarget->hasInt256())
1901           return MVT::v8i32;
1902         if (Subtarget->hasFp256())
1903           return MVT::v8f32;
1904       }
1905       if (Subtarget->hasSSE2())
1906         return MVT::v4i32;
1907       if (Subtarget->hasSSE1())
1908         return MVT::v4f32;
1909     } else if (!MemcpyStrSrc && Size >= 8 &&
1910                !Subtarget->is64Bit() &&
1911                Subtarget->hasSSE2()) {
1912       // Do not use f64 to lower memcpy if source is string constant. It's
1913       // better to use i32 to avoid the loads.
1914       return MVT::f64;
1915     }
1916   }
1917   // This is a compromise. If we reach here, unaligned accesses may be slow on
1918   // this target. However, creating smaller, aligned accesses could be even
1919   // slower and would certainly be a lot more code.
1920   if (Subtarget->is64Bit() && Size >= 8)
1921     return MVT::i64;
1922   return MVT::i32;
1923 }
1924
1925 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1926   if (VT == MVT::f32)
1927     return X86ScalarSSEf32;
1928   else if (VT == MVT::f64)
1929     return X86ScalarSSEf64;
1930   return true;
1931 }
1932
1933 bool
1934 X86TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
1935                                                   unsigned,
1936                                                   unsigned,
1937                                                   bool *Fast) const {
1938   if (Fast) {
1939     switch (VT.getSizeInBits()) {
1940     default:
1941       // 8-byte and under are always assumed to be fast.
1942       *Fast = true;
1943       break;
1944     case 128:
1945       *Fast = !Subtarget->isUnalignedMem16Slow();
1946       break;
1947     case 256:
1948       *Fast = !Subtarget->isUnalignedMem32Slow();
1949       break;
1950     // TODO: What about AVX-512 (512-bit) accesses?
1951     }
1952   }
1953   // Misaligned accesses of any size are always allowed.
1954   return true;
1955 }
1956
1957 /// Return the entry encoding for a jump table in the
1958 /// current function.  The returned value is a member of the
1959 /// MachineJumpTableInfo::JTEntryKind enum.
1960 unsigned X86TargetLowering::getJumpTableEncoding() const {
1961   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1962   // symbol.
1963   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1964       Subtarget->isPICStyleGOT())
1965     return MachineJumpTableInfo::EK_Custom32;
1966
1967   // Otherwise, use the normal jump table encoding heuristics.
1968   return TargetLowering::getJumpTableEncoding();
1969 }
1970
1971 bool X86TargetLowering::useSoftFloat() const {
1972   return Subtarget->useSoftFloat();
1973 }
1974
1975 const MCExpr *
1976 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1977                                              const MachineBasicBlock *MBB,
1978                                              unsigned uid,MCContext &Ctx) const{
1979   assert(MBB->getParent()->getTarget().getRelocationModel() == Reloc::PIC_ &&
1980          Subtarget->isPICStyleGOT());
1981   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1982   // entries.
1983   return MCSymbolRefExpr::create(MBB->getSymbol(),
1984                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1985 }
1986
1987 /// Returns relocation base for the given PIC jumptable.
1988 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1989                                                     SelectionDAG &DAG) const {
1990   if (!Subtarget->is64Bit())
1991     // This doesn't have SDLoc associated with it, but is not really the
1992     // same as a Register.
1993     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(),
1994                        getPointerTy(DAG.getDataLayout()));
1995   return Table;
1996 }
1997
1998 /// This returns the relocation base for the given PIC jumptable,
1999 /// the same as getPICJumpTableRelocBase, but as an MCExpr.
2000 const MCExpr *X86TargetLowering::
2001 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
2002                              MCContext &Ctx) const {
2003   // X86-64 uses RIP relative addressing based on the jump table label.
2004   if (Subtarget->isPICStyleRIPRel())
2005     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
2006
2007   // Otherwise, the reference is relative to the PIC base.
2008   return MCSymbolRefExpr::create(MF->getPICBaseSymbol(), Ctx);
2009 }
2010
2011 std::pair<const TargetRegisterClass *, uint8_t>
2012 X86TargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
2013                                            MVT VT) const {
2014   const TargetRegisterClass *RRC = nullptr;
2015   uint8_t Cost = 1;
2016   switch (VT.SimpleTy) {
2017   default:
2018     return TargetLowering::findRepresentativeClass(TRI, VT);
2019   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
2020     RRC = Subtarget->is64Bit() ? &X86::GR64RegClass : &X86::GR32RegClass;
2021     break;
2022   case MVT::x86mmx:
2023     RRC = &X86::VR64RegClass;
2024     break;
2025   case MVT::f32: case MVT::f64:
2026   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
2027   case MVT::v4f32: case MVT::v2f64:
2028   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
2029   case MVT::v4f64:
2030     RRC = &X86::VR128RegClass;
2031     break;
2032   }
2033   return std::make_pair(RRC, Cost);
2034 }
2035
2036 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
2037                                                unsigned &Offset) const {
2038   if (!Subtarget->isTargetLinux())
2039     return false;
2040
2041   if (Subtarget->is64Bit()) {
2042     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
2043     Offset = 0x28;
2044     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
2045       AddressSpace = 256;
2046     else
2047       AddressSpace = 257;
2048   } else {
2049     // %gs:0x14 on i386
2050     Offset = 0x14;
2051     AddressSpace = 256;
2052   }
2053   return true;
2054 }
2055
2056 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
2057                                             unsigned DestAS) const {
2058   assert(SrcAS != DestAS && "Expected different address spaces!");
2059
2060   return SrcAS < 256 && DestAS < 256;
2061 }
2062
2063 //===----------------------------------------------------------------------===//
2064 //               Return Value Calling Convention Implementation
2065 //===----------------------------------------------------------------------===//
2066
2067 #include "X86GenCallingConv.inc"
2068
2069 bool
2070 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2071                                   MachineFunction &MF, bool isVarArg,
2072                         const SmallVectorImpl<ISD::OutputArg> &Outs,
2073                         LLVMContext &Context) const {
2074   SmallVector<CCValAssign, 16> RVLocs;
2075   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
2076   return CCInfo.CheckReturn(Outs, RetCC_X86);
2077 }
2078
2079 const MCPhysReg *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
2080   static const MCPhysReg ScratchRegs[] = { X86::R11, 0 };
2081   return ScratchRegs;
2082 }
2083
2084 SDValue
2085 X86TargetLowering::LowerReturn(SDValue Chain,
2086                                CallingConv::ID CallConv, bool isVarArg,
2087                                const SmallVectorImpl<ISD::OutputArg> &Outs,
2088                                const SmallVectorImpl<SDValue> &OutVals,
2089                                SDLoc dl, SelectionDAG &DAG) const {
2090   MachineFunction &MF = DAG.getMachineFunction();
2091   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2092
2093   SmallVector<CCValAssign, 16> RVLocs;
2094   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, *DAG.getContext());
2095   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
2096
2097   SDValue Flag;
2098   SmallVector<SDValue, 6> RetOps;
2099   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
2100   // Operand #1 = Bytes To Pop
2101   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(), dl,
2102                    MVT::i16));
2103
2104   // Copy the result values into the output registers.
2105   for (unsigned i = 0; i != RVLocs.size(); ++i) {
2106     CCValAssign &VA = RVLocs[i];
2107     assert(VA.isRegLoc() && "Can only return in registers!");
2108     SDValue ValToCopy = OutVals[i];
2109     EVT ValVT = ValToCopy.getValueType();
2110
2111     // Promote values to the appropriate types.
2112     if (VA.getLocInfo() == CCValAssign::SExt)
2113       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
2114     else if (VA.getLocInfo() == CCValAssign::ZExt)
2115       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
2116     else if (VA.getLocInfo() == CCValAssign::AExt) {
2117       if (ValVT.isVector() && ValVT.getScalarType() == MVT::i1)
2118         ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
2119       else
2120         ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
2121     }
2122     else if (VA.getLocInfo() == CCValAssign::BCvt)
2123       ValToCopy = DAG.getBitcast(VA.getLocVT(), ValToCopy);
2124
2125     assert(VA.getLocInfo() != CCValAssign::FPExt &&
2126            "Unexpected FP-extend for return value.");
2127
2128     // If this is x86-64, and we disabled SSE, we can't return FP values,
2129     // or SSE or MMX vectors.
2130     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
2131          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
2132           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
2133       report_fatal_error("SSE register return with SSE disabled");
2134     }
2135     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
2136     // llvm-gcc has never done it right and no one has noticed, so this
2137     // should be OK for now.
2138     if (ValVT == MVT::f64 &&
2139         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
2140       report_fatal_error("SSE2 register return with SSE2 disabled");
2141
2142     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
2143     // the RET instruction and handled by the FP Stackifier.
2144     if (VA.getLocReg() == X86::FP0 ||
2145         VA.getLocReg() == X86::FP1) {
2146       // If this is a copy from an xmm register to ST(0), use an FPExtend to
2147       // change the value to the FP stack register class.
2148       if (isScalarFPTypeInSSEReg(VA.getValVT()))
2149         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
2150       RetOps.push_back(ValToCopy);
2151       // Don't emit a copytoreg.
2152       continue;
2153     }
2154
2155     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
2156     // which is returned in RAX / RDX.
2157     if (Subtarget->is64Bit()) {
2158       if (ValVT == MVT::x86mmx) {
2159         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
2160           ValToCopy = DAG.getBitcast(MVT::i64, ValToCopy);
2161           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
2162                                   ValToCopy);
2163           // If we don't have SSE2 available, convert to v4f32 so the generated
2164           // register is legal.
2165           if (!Subtarget->hasSSE2())
2166             ValToCopy = DAG.getBitcast(MVT::v4f32, ValToCopy);
2167         }
2168       }
2169     }
2170
2171     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
2172     Flag = Chain.getValue(1);
2173     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2174   }
2175
2176   // All x86 ABIs require that for returning structs by value we copy
2177   // the sret argument into %rax/%eax (depending on ABI) for the return.
2178   // We saved the argument into a virtual register in the entry block,
2179   // so now we copy the value out and into %rax/%eax.
2180   //
2181   // Checking Function.hasStructRetAttr() here is insufficient because the IR
2182   // may not have an explicit sret argument. If FuncInfo.CanLowerReturn is
2183   // false, then an sret argument may be implicitly inserted in the SelDAG. In
2184   // either case FuncInfo->setSRetReturnReg() will have been called.
2185   if (unsigned SRetReg = FuncInfo->getSRetReturnReg()) {
2186     SDValue Val = DAG.getCopyFromReg(Chain, dl, SRetReg,
2187                                      getPointerTy(MF.getDataLayout()));
2188
2189     unsigned RetValReg
2190         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
2191           X86::RAX : X86::EAX;
2192     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
2193     Flag = Chain.getValue(1);
2194
2195     // RAX/EAX now acts like a return value.
2196     RetOps.push_back(
2197         DAG.getRegister(RetValReg, getPointerTy(DAG.getDataLayout())));
2198   }
2199
2200   RetOps[0] = Chain;  // Update chain.
2201
2202   // Add the flag if we have it.
2203   if (Flag.getNode())
2204     RetOps.push_back(Flag);
2205
2206   return DAG.getNode(X86ISD::RET_FLAG, dl, MVT::Other, RetOps);
2207 }
2208
2209 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2210   if (N->getNumValues() != 1)
2211     return false;
2212   if (!N->hasNUsesOfValue(1, 0))
2213     return false;
2214
2215   SDValue TCChain = Chain;
2216   SDNode *Copy = *N->use_begin();
2217   if (Copy->getOpcode() == ISD::CopyToReg) {
2218     // If the copy has a glue operand, we conservatively assume it isn't safe to
2219     // perform a tail call.
2220     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2221       return false;
2222     TCChain = Copy->getOperand(0);
2223   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
2224     return false;
2225
2226   bool HasRet = false;
2227   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2228        UI != UE; ++UI) {
2229     if (UI->getOpcode() != X86ISD::RET_FLAG)
2230       return false;
2231     // If we are returning more than one value, we can definitely
2232     // not make a tail call see PR19530
2233     if (UI->getNumOperands() > 4)
2234       return false;
2235     if (UI->getNumOperands() == 4 &&
2236         UI->getOperand(UI->getNumOperands()-1).getValueType() != MVT::Glue)
2237       return false;
2238     HasRet = true;
2239   }
2240
2241   if (!HasRet)
2242     return false;
2243
2244   Chain = TCChain;
2245   return true;
2246 }
2247
2248 EVT
2249 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
2250                                             ISD::NodeType ExtendKind) const {
2251   MVT ReturnMVT;
2252   // TODO: Is this also valid on 32-bit?
2253   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
2254     ReturnMVT = MVT::i8;
2255   else
2256     ReturnMVT = MVT::i32;
2257
2258   EVT MinVT = getRegisterType(Context, ReturnMVT);
2259   return VT.bitsLT(MinVT) ? MinVT : VT;
2260 }
2261
2262 /// Lower the result values of a call into the
2263 /// appropriate copies out of appropriate physical registers.
2264 ///
2265 SDValue
2266 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2267                                    CallingConv::ID CallConv, bool isVarArg,
2268                                    const SmallVectorImpl<ISD::InputArg> &Ins,
2269                                    SDLoc dl, SelectionDAG &DAG,
2270                                    SmallVectorImpl<SDValue> &InVals) const {
2271
2272   // Assign locations to each value returned by this call.
2273   SmallVector<CCValAssign, 16> RVLocs;
2274   bool Is64Bit = Subtarget->is64Bit();
2275   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2276                  *DAG.getContext());
2277   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2278
2279   // Copy all of the result registers out of their specified physreg.
2280   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2281     CCValAssign &VA = RVLocs[i];
2282     EVT CopyVT = VA.getLocVT();
2283
2284     // If this is x86-64, and we disabled SSE, we can't return FP values
2285     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2286         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2287       report_fatal_error("SSE register return with SSE disabled");
2288     }
2289
2290     // If we prefer to use the value in xmm registers, copy it out as f80 and
2291     // use a truncate to move it from fp stack reg to xmm reg.
2292     bool RoundAfterCopy = false;
2293     if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) &&
2294         isScalarFPTypeInSSEReg(VA.getValVT())) {
2295       CopyVT = MVT::f80;
2296       RoundAfterCopy = (CopyVT != VA.getLocVT());
2297     }
2298
2299     Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2300                                CopyVT, InFlag).getValue(1);
2301     SDValue Val = Chain.getValue(0);
2302
2303     if (RoundAfterCopy)
2304       Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2305                         // This truncation won't change the value.
2306                         DAG.getIntPtrConstant(1, dl));
2307
2308     if (VA.isExtInLoc() && VA.getValVT().getScalarType() == MVT::i1)
2309       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
2310
2311     InFlag = Chain.getValue(2);
2312     InVals.push_back(Val);
2313   }
2314
2315   return Chain;
2316 }
2317
2318 //===----------------------------------------------------------------------===//
2319 //                C & StdCall & Fast Calling Convention implementation
2320 //===----------------------------------------------------------------------===//
2321 //  StdCall calling convention seems to be standard for many Windows' API
2322 //  routines and around. It differs from C calling convention just a little:
2323 //  callee should clean up the stack, not caller. Symbols should be also
2324 //  decorated in some fancy way :) It doesn't support any vector arguments.
2325 //  For info on fast calling convention see Fast Calling Convention (tail call)
2326 //  implementation LowerX86_32FastCCCallTo.
2327
2328 /// CallIsStructReturn - Determines whether a call uses struct return
2329 /// semantics.
2330 enum StructReturnType {
2331   NotStructReturn,
2332   RegStructReturn,
2333   StackStructReturn
2334 };
2335 static StructReturnType
2336 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2337   if (Outs.empty())
2338     return NotStructReturn;
2339
2340   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2341   if (!Flags.isSRet())
2342     return NotStructReturn;
2343   if (Flags.isInReg())
2344     return RegStructReturn;
2345   return StackStructReturn;
2346 }
2347
2348 /// Determines whether a function uses struct return semantics.
2349 static StructReturnType
2350 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2351   if (Ins.empty())
2352     return NotStructReturn;
2353
2354   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2355   if (!Flags.isSRet())
2356     return NotStructReturn;
2357   if (Flags.isInReg())
2358     return RegStructReturn;
2359   return StackStructReturn;
2360 }
2361
2362 /// Make a copy of an aggregate at address specified by "Src" to address
2363 /// "Dst" with size and alignment information specified by the specific
2364 /// parameter attribute. The copy will be passed as a byval function parameter.
2365 static SDValue
2366 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2367                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2368                           SDLoc dl) {
2369   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
2370
2371   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2372                        /*isVolatile*/false, /*AlwaysInline=*/true,
2373                        /*isTailCall*/false,
2374                        MachinePointerInfo(), MachinePointerInfo());
2375 }
2376
2377 /// Return true if the calling convention is one that
2378 /// supports tail call optimization.
2379 static bool IsTailCallConvention(CallingConv::ID CC) {
2380   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2381           CC == CallingConv::HiPE);
2382 }
2383
2384 /// \brief Return true if the calling convention is a C calling convention.
2385 static bool IsCCallConvention(CallingConv::ID CC) {
2386   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2387           CC == CallingConv::X86_64_SysV);
2388 }
2389
2390 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2391   auto Attr =
2392       CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
2393   if (!CI->isTailCall() || Attr.getValueAsString() == "true")
2394     return false;
2395
2396   CallSite CS(CI);
2397   CallingConv::ID CalleeCC = CS.getCallingConv();
2398   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2399     return false;
2400
2401   return true;
2402 }
2403
2404 /// Return true if the function is being made into
2405 /// a tailcall target by changing its ABI.
2406 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2407                                    bool GuaranteedTailCallOpt) {
2408   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2409 }
2410
2411 SDValue
2412 X86TargetLowering::LowerMemArgument(SDValue Chain,
2413                                     CallingConv::ID CallConv,
2414                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2415                                     SDLoc dl, SelectionDAG &DAG,
2416                                     const CCValAssign &VA,
2417                                     MachineFrameInfo *MFI,
2418                                     unsigned i) const {
2419   // Create the nodes corresponding to a load from this parameter slot.
2420   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2421   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(
2422       CallConv, DAG.getTarget().Options.GuaranteedTailCallOpt);
2423   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2424   EVT ValVT;
2425
2426   // If value is passed by pointer we have address passed instead of the value
2427   // itself.
2428   bool ExtendedInMem = VA.isExtInLoc() &&
2429     VA.getValVT().getScalarType() == MVT::i1;
2430
2431   if (VA.getLocInfo() == CCValAssign::Indirect || ExtendedInMem)
2432     ValVT = VA.getLocVT();
2433   else
2434     ValVT = VA.getValVT();
2435
2436   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2437   // changed with more analysis.
2438   // In case of tail call optimization mark all arguments mutable. Since they
2439   // could be overwritten by lowering of arguments in case of a tail call.
2440   if (Flags.isByVal()) {
2441     unsigned Bytes = Flags.getByValSize();
2442     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2443     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2444     return DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2445   } else {
2446     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2447                                     VA.getLocMemOffset(), isImmutable);
2448     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2449     SDValue Val = DAG.getLoad(
2450         ValVT, dl, Chain, FIN,
2451         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), false,
2452         false, false, 0);
2453     return ExtendedInMem ?
2454       DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val) : Val;
2455   }
2456 }
2457
2458 // FIXME: Get this from tablegen.
2459 static ArrayRef<MCPhysReg> get64BitArgumentGPRs(CallingConv::ID CallConv,
2460                                                 const X86Subtarget *Subtarget) {
2461   assert(Subtarget->is64Bit());
2462
2463   if (Subtarget->isCallingConvWin64(CallConv)) {
2464     static const MCPhysReg GPR64ArgRegsWin64[] = {
2465       X86::RCX, X86::RDX, X86::R8,  X86::R9
2466     };
2467     return makeArrayRef(std::begin(GPR64ArgRegsWin64), std::end(GPR64ArgRegsWin64));
2468   }
2469
2470   static const MCPhysReg GPR64ArgRegs64Bit[] = {
2471     X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2472   };
2473   return makeArrayRef(std::begin(GPR64ArgRegs64Bit), std::end(GPR64ArgRegs64Bit));
2474 }
2475
2476 // FIXME: Get this from tablegen.
2477 static ArrayRef<MCPhysReg> get64BitArgumentXMMs(MachineFunction &MF,
2478                                                 CallingConv::ID CallConv,
2479                                                 const X86Subtarget *Subtarget) {
2480   assert(Subtarget->is64Bit());
2481   if (Subtarget->isCallingConvWin64(CallConv)) {
2482     // The XMM registers which might contain var arg parameters are shadowed
2483     // in their paired GPR.  So we only need to save the GPR to their home
2484     // slots.
2485     // TODO: __vectorcall will change this.
2486     return None;
2487   }
2488
2489   const Function *Fn = MF.getFunction();
2490   bool NoImplicitFloatOps = Fn->hasFnAttribute(Attribute::NoImplicitFloat);
2491   bool isSoftFloat = Subtarget->useSoftFloat();
2492   assert(!(isSoftFloat && NoImplicitFloatOps) &&
2493          "SSE register cannot be used when SSE is disabled!");
2494   if (isSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
2495     // Kernel mode asks for SSE to be disabled, so there are no XMM argument
2496     // registers.
2497     return None;
2498
2499   static const MCPhysReg XMMArgRegs64Bit[] = {
2500     X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2501     X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2502   };
2503   return makeArrayRef(std::begin(XMMArgRegs64Bit), std::end(XMMArgRegs64Bit));
2504 }
2505
2506 SDValue
2507 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2508                                         CallingConv::ID CallConv,
2509                                         bool isVarArg,
2510                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2511                                         SDLoc dl,
2512                                         SelectionDAG &DAG,
2513                                         SmallVectorImpl<SDValue> &InVals)
2514                                           const {
2515   MachineFunction &MF = DAG.getMachineFunction();
2516   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2517   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
2518
2519   const Function* Fn = MF.getFunction();
2520   if (Fn->hasExternalLinkage() &&
2521       Subtarget->isTargetCygMing() &&
2522       Fn->getName() == "main")
2523     FuncInfo->setForceFramePointer(true);
2524
2525   MachineFrameInfo *MFI = MF.getFrameInfo();
2526   bool Is64Bit = Subtarget->is64Bit();
2527   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2528
2529   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2530          "Var args not supported with calling convention fastcc, ghc or hipe");
2531
2532   // Assign locations to all of the incoming arguments.
2533   SmallVector<CCValAssign, 16> ArgLocs;
2534   CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext());
2535
2536   // Allocate shadow area for Win64
2537   if (IsWin64)
2538     CCInfo.AllocateStack(32, 8);
2539
2540   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2541
2542   unsigned LastVal = ~0U;
2543   SDValue ArgValue;
2544   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2545     CCValAssign &VA = ArgLocs[i];
2546     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2547     // places.
2548     assert(VA.getValNo() != LastVal &&
2549            "Don't support value assigned to multiple locs yet");
2550     (void)LastVal;
2551     LastVal = VA.getValNo();
2552
2553     if (VA.isRegLoc()) {
2554       EVT RegVT = VA.getLocVT();
2555       const TargetRegisterClass *RC;
2556       if (RegVT == MVT::i32)
2557         RC = &X86::GR32RegClass;
2558       else if (Is64Bit && RegVT == MVT::i64)
2559         RC = &X86::GR64RegClass;
2560       else if (RegVT == MVT::f32)
2561         RC = &X86::FR32RegClass;
2562       else if (RegVT == MVT::f64)
2563         RC = &X86::FR64RegClass;
2564       else if (RegVT.is512BitVector())
2565         RC = &X86::VR512RegClass;
2566       else if (RegVT.is256BitVector())
2567         RC = &X86::VR256RegClass;
2568       else if (RegVT.is128BitVector())
2569         RC = &X86::VR128RegClass;
2570       else if (RegVT == MVT::x86mmx)
2571         RC = &X86::VR64RegClass;
2572       else if (RegVT == MVT::i1)
2573         RC = &X86::VK1RegClass;
2574       else if (RegVT == MVT::v8i1)
2575         RC = &X86::VK8RegClass;
2576       else if (RegVT == MVT::v16i1)
2577         RC = &X86::VK16RegClass;
2578       else if (RegVT == MVT::v32i1)
2579         RC = &X86::VK32RegClass;
2580       else if (RegVT == MVT::v64i1)
2581         RC = &X86::VK64RegClass;
2582       else
2583         llvm_unreachable("Unknown argument type!");
2584
2585       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2586       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2587
2588       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2589       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2590       // right size.
2591       if (VA.getLocInfo() == CCValAssign::SExt)
2592         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2593                                DAG.getValueType(VA.getValVT()));
2594       else if (VA.getLocInfo() == CCValAssign::ZExt)
2595         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2596                                DAG.getValueType(VA.getValVT()));
2597       else if (VA.getLocInfo() == CCValAssign::BCvt)
2598         ArgValue = DAG.getBitcast(VA.getValVT(), ArgValue);
2599
2600       if (VA.isExtInLoc()) {
2601         // Handle MMX values passed in XMM regs.
2602         if (RegVT.isVector() && VA.getValVT().getScalarType() != MVT::i1)
2603           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2604         else
2605           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2606       }
2607     } else {
2608       assert(VA.isMemLoc());
2609       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2610     }
2611
2612     // If value is passed via pointer - do a load.
2613     if (VA.getLocInfo() == CCValAssign::Indirect)
2614       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2615                              MachinePointerInfo(), false, false, false, 0);
2616
2617     InVals.push_back(ArgValue);
2618   }
2619
2620   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2621     // All x86 ABIs require that for returning structs by value we copy the
2622     // sret argument into %rax/%eax (depending on ABI) for the return. Save
2623     // the argument into a virtual register so that we can access it from the
2624     // return points.
2625     if (Ins[i].Flags.isSRet()) {
2626       unsigned Reg = FuncInfo->getSRetReturnReg();
2627       if (!Reg) {
2628         MVT PtrTy = getPointerTy(DAG.getDataLayout());
2629         Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2630         FuncInfo->setSRetReturnReg(Reg);
2631       }
2632       SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[i]);
2633       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2634       break;
2635     }
2636   }
2637
2638   unsigned StackSize = CCInfo.getNextStackOffset();
2639   // Align stack specially for tail calls.
2640   if (FuncIsMadeTailCallSafe(CallConv,
2641                              MF.getTarget().Options.GuaranteedTailCallOpt))
2642     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2643
2644   // If the function takes variable number of arguments, make a frame index for
2645   // the start of the first vararg value... for expansion of llvm.va_start. We
2646   // can skip this if there are no va_start calls.
2647   if (MFI->hasVAStart() &&
2648       (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2649                    CallConv != CallingConv::X86_ThisCall))) {
2650     FuncInfo->setVarArgsFrameIndex(
2651         MFI->CreateFixedObject(1, StackSize, true));
2652   }
2653
2654   MachineModuleInfo &MMI = MF.getMMI();
2655   const Function *WinEHParent = nullptr;
2656   if (MMI.hasWinEHFuncInfo(Fn))
2657     WinEHParent = MMI.getWinEHParent(Fn);
2658   bool IsWinEHOutlined = WinEHParent && WinEHParent != Fn;
2659   bool IsWinEHParent = WinEHParent && WinEHParent == Fn;
2660
2661   // Figure out if XMM registers are in use.
2662   assert(!(Subtarget->useSoftFloat() &&
2663            Fn->hasFnAttribute(Attribute::NoImplicitFloat)) &&
2664          "SSE register cannot be used when SSE is disabled!");
2665
2666   // 64-bit calling conventions support varargs and register parameters, so we
2667   // have to do extra work to spill them in the prologue.
2668   if (Is64Bit && isVarArg && MFI->hasVAStart()) {
2669     // Find the first unallocated argument registers.
2670     ArrayRef<MCPhysReg> ArgGPRs = get64BitArgumentGPRs(CallConv, Subtarget);
2671     ArrayRef<MCPhysReg> ArgXMMs = get64BitArgumentXMMs(MF, CallConv, Subtarget);
2672     unsigned NumIntRegs = CCInfo.getFirstUnallocated(ArgGPRs);
2673     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(ArgXMMs);
2674     assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2675            "SSE register cannot be used when SSE is disabled!");
2676
2677     // Gather all the live in physical registers.
2678     SmallVector<SDValue, 6> LiveGPRs;
2679     SmallVector<SDValue, 8> LiveXMMRegs;
2680     SDValue ALVal;
2681     for (MCPhysReg Reg : ArgGPRs.slice(NumIntRegs)) {
2682       unsigned GPR = MF.addLiveIn(Reg, &X86::GR64RegClass);
2683       LiveGPRs.push_back(
2684           DAG.getCopyFromReg(Chain, dl, GPR, MVT::i64));
2685     }
2686     if (!ArgXMMs.empty()) {
2687       unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2688       ALVal = DAG.getCopyFromReg(Chain, dl, AL, MVT::i8);
2689       for (MCPhysReg Reg : ArgXMMs.slice(NumXMMRegs)) {
2690         unsigned XMMReg = MF.addLiveIn(Reg, &X86::VR128RegClass);
2691         LiveXMMRegs.push_back(
2692             DAG.getCopyFromReg(Chain, dl, XMMReg, MVT::v4f32));
2693       }
2694     }
2695
2696     if (IsWin64) {
2697       // Get to the caller-allocated home save location.  Add 8 to account
2698       // for the return address.
2699       int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2700       FuncInfo->setRegSaveFrameIndex(
2701           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2702       // Fixup to set vararg frame on shadow area (4 x i64).
2703       if (NumIntRegs < 4)
2704         FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2705     } else {
2706       // For X86-64, if there are vararg parameters that are passed via
2707       // registers, then we must store them to their spots on the stack so
2708       // they may be loaded by deferencing the result of va_next.
2709       FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2710       FuncInfo->setVarArgsFPOffset(ArgGPRs.size() * 8 + NumXMMRegs * 16);
2711       FuncInfo->setRegSaveFrameIndex(MFI->CreateStackObject(
2712           ArgGPRs.size() * 8 + ArgXMMs.size() * 16, 16, false));
2713     }
2714
2715     // Store the integer parameter registers.
2716     SmallVector<SDValue, 8> MemOps;
2717     SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2718                                       getPointerTy(DAG.getDataLayout()));
2719     unsigned Offset = FuncInfo->getVarArgsGPOffset();
2720     for (SDValue Val : LiveGPRs) {
2721       SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
2722                                 RSFIN, DAG.getIntPtrConstant(Offset, dl));
2723       SDValue Store =
2724           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2725                        MachinePointerInfo::getFixedStack(
2726                            DAG.getMachineFunction(),
2727                            FuncInfo->getRegSaveFrameIndex(), Offset),
2728                        false, false, 0);
2729       MemOps.push_back(Store);
2730       Offset += 8;
2731     }
2732
2733     if (!ArgXMMs.empty() && NumXMMRegs != ArgXMMs.size()) {
2734       // Now store the XMM (fp + vector) parameter registers.
2735       SmallVector<SDValue, 12> SaveXMMOps;
2736       SaveXMMOps.push_back(Chain);
2737       SaveXMMOps.push_back(ALVal);
2738       SaveXMMOps.push_back(DAG.getIntPtrConstant(
2739                              FuncInfo->getRegSaveFrameIndex(), dl));
2740       SaveXMMOps.push_back(DAG.getIntPtrConstant(
2741                              FuncInfo->getVarArgsFPOffset(), dl));
2742       SaveXMMOps.insert(SaveXMMOps.end(), LiveXMMRegs.begin(),
2743                         LiveXMMRegs.end());
2744       MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2745                                    MVT::Other, SaveXMMOps));
2746     }
2747
2748     if (!MemOps.empty())
2749       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2750   } else if (IsWin64 && IsWinEHOutlined) {
2751     // Get to the caller-allocated home save location.  Add 8 to account
2752     // for the return address.
2753     int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2754     FuncInfo->setRegSaveFrameIndex(MFI->CreateFixedObject(
2755         /*Size=*/1, /*SPOffset=*/HomeOffset + 8, /*Immutable=*/false));
2756
2757     MMI.getWinEHFuncInfo(Fn)
2758         .CatchHandlerParentFrameObjIdx[const_cast<Function *>(Fn)] =
2759         FuncInfo->getRegSaveFrameIndex();
2760
2761     // Store the second integer parameter (rdx) into rsp+16 relative to the
2762     // stack pointer at the entry of the function.
2763     SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2764                                       getPointerTy(DAG.getDataLayout()));
2765     unsigned GPR = MF.addLiveIn(X86::RDX, &X86::GR64RegClass);
2766     SDValue Val = DAG.getCopyFromReg(Chain, dl, GPR, MVT::i64);
2767     Chain = DAG.getStore(
2768         Val.getValue(1), dl, Val, RSFIN,
2769         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(),
2770                                           FuncInfo->getRegSaveFrameIndex()),
2771         /*isVolatile=*/true, /*isNonTemporal=*/false, /*Alignment=*/0);
2772   }
2773
2774   if (isVarArg && MFI->hasMustTailInVarArgFunc()) {
2775     // Find the largest legal vector type.
2776     MVT VecVT = MVT::Other;
2777     // FIXME: Only some x86_32 calling conventions support AVX512.
2778     if (Subtarget->hasAVX512() &&
2779         (Is64Bit || (CallConv == CallingConv::X86_VectorCall ||
2780                      CallConv == CallingConv::Intel_OCL_BI)))
2781       VecVT = MVT::v16f32;
2782     else if (Subtarget->hasAVX())
2783       VecVT = MVT::v8f32;
2784     else if (Subtarget->hasSSE2())
2785       VecVT = MVT::v4f32;
2786
2787     // We forward some GPRs and some vector types.
2788     SmallVector<MVT, 2> RegParmTypes;
2789     MVT IntVT = Is64Bit ? MVT::i64 : MVT::i32;
2790     RegParmTypes.push_back(IntVT);
2791     if (VecVT != MVT::Other)
2792       RegParmTypes.push_back(VecVT);
2793
2794     // Compute the set of forwarded registers. The rest are scratch.
2795     SmallVectorImpl<ForwardedRegister> &Forwards =
2796         FuncInfo->getForwardedMustTailRegParms();
2797     CCInfo.analyzeMustTailForwardedRegisters(Forwards, RegParmTypes, CC_X86);
2798
2799     // Conservatively forward AL on x86_64, since it might be used for varargs.
2800     if (Is64Bit && !CCInfo.isAllocated(X86::AL)) {
2801       unsigned ALVReg = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2802       Forwards.push_back(ForwardedRegister(ALVReg, X86::AL, MVT::i8));
2803     }
2804
2805     // Copy all forwards from physical to virtual registers.
2806     for (ForwardedRegister &F : Forwards) {
2807       // FIXME: Can we use a less constrained schedule?
2808       SDValue RegVal = DAG.getCopyFromReg(Chain, dl, F.VReg, F.VT);
2809       F.VReg = MF.getRegInfo().createVirtualRegister(getRegClassFor(F.VT));
2810       Chain = DAG.getCopyToReg(Chain, dl, F.VReg, RegVal);
2811     }
2812   }
2813
2814   // Some CCs need callee pop.
2815   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2816                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2817     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2818   } else {
2819     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2820     // If this is an sret function, the return should pop the hidden pointer.
2821     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2822         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2823         argsAreStructReturn(Ins) == StackStructReturn)
2824       FuncInfo->setBytesToPopOnReturn(4);
2825   }
2826
2827   if (!Is64Bit) {
2828     // RegSaveFrameIndex is X86-64 only.
2829     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2830     if (CallConv == CallingConv::X86_FastCall ||
2831         CallConv == CallingConv::X86_ThisCall)
2832       // fastcc functions can't have varargs.
2833       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2834   }
2835
2836   FuncInfo->setArgumentStackSize(StackSize);
2837
2838   if (IsWinEHParent) {
2839     if (Is64Bit) {
2840       int UnwindHelpFI = MFI->CreateStackObject(8, 8, /*isSS=*/false);
2841       SDValue StackSlot = DAG.getFrameIndex(UnwindHelpFI, MVT::i64);
2842       MMI.getWinEHFuncInfo(MF.getFunction()).UnwindHelpFrameIdx = UnwindHelpFI;
2843       SDValue Neg2 = DAG.getConstant(-2, dl, MVT::i64);
2844       Chain = DAG.getStore(Chain, dl, Neg2, StackSlot,
2845                            MachinePointerInfo::getFixedStack(
2846                                DAG.getMachineFunction(), UnwindHelpFI),
2847                            /*isVolatile=*/true,
2848                            /*isNonTemporal=*/false, /*Alignment=*/0);
2849     } else {
2850       // Functions using Win32 EH are considered to have opaque SP adjustments
2851       // to force local variables to be addressed from the frame or base
2852       // pointers.
2853       MFI->setHasOpaqueSPAdjustment(true);
2854     }
2855   }
2856
2857   return Chain;
2858 }
2859
2860 SDValue
2861 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2862                                     SDValue StackPtr, SDValue Arg,
2863                                     SDLoc dl, SelectionDAG &DAG,
2864                                     const CCValAssign &VA,
2865                                     ISD::ArgFlagsTy Flags) const {
2866   unsigned LocMemOffset = VA.getLocMemOffset();
2867   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
2868   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
2869                        StackPtr, PtrOff);
2870   if (Flags.isByVal())
2871     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2872
2873   return DAG.getStore(
2874       Chain, dl, Arg, PtrOff,
2875       MachinePointerInfo::getStack(DAG.getMachineFunction(), LocMemOffset),
2876       false, false, 0);
2877 }
2878
2879 /// Emit a load of return address if tail call
2880 /// optimization is performed and it is required.
2881 SDValue
2882 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2883                                            SDValue &OutRetAddr, SDValue Chain,
2884                                            bool IsTailCall, bool Is64Bit,
2885                                            int FPDiff, SDLoc dl) const {
2886   // Adjust the Return address stack slot.
2887   EVT VT = getPointerTy(DAG.getDataLayout());
2888   OutRetAddr = getReturnAddressFrameIndex(DAG);
2889
2890   // Load the "old" Return address.
2891   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2892                            false, false, false, 0);
2893   return SDValue(OutRetAddr.getNode(), 1);
2894 }
2895
2896 /// Emit a store of the return address if tail call
2897 /// optimization is performed and it is required (FPDiff!=0).
2898 static SDValue EmitTailCallStoreRetAddr(SelectionDAG &DAG, MachineFunction &MF,
2899                                         SDValue Chain, SDValue RetAddrFrIdx,
2900                                         EVT PtrVT, unsigned SlotSize,
2901                                         int FPDiff, SDLoc dl) {
2902   // Store the return address to the appropriate stack slot.
2903   if (!FPDiff) return Chain;
2904   // Calculate the new stack slot for the return address.
2905   int NewReturnAddrFI =
2906     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2907                                          false);
2908   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2909   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2910                        MachinePointerInfo::getFixedStack(
2911                            DAG.getMachineFunction(), NewReturnAddrFI),
2912                        false, false, 0);
2913   return Chain;
2914 }
2915
2916 /// Returns a vector_shuffle mask for an movs{s|d}, movd
2917 /// operation of specified width.
2918 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
2919                        SDValue V2) {
2920   unsigned NumElems = VT.getVectorNumElements();
2921   SmallVector<int, 8> Mask;
2922   Mask.push_back(NumElems);
2923   for (unsigned i = 1; i != NumElems; ++i)
2924     Mask.push_back(i);
2925   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
2926 }
2927
2928 SDValue
2929 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2930                              SmallVectorImpl<SDValue> &InVals) const {
2931   SelectionDAG &DAG                     = CLI.DAG;
2932   SDLoc &dl                             = CLI.DL;
2933   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2934   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2935   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2936   SDValue Chain                         = CLI.Chain;
2937   SDValue Callee                        = CLI.Callee;
2938   CallingConv::ID CallConv              = CLI.CallConv;
2939   bool &isTailCall                      = CLI.IsTailCall;
2940   bool isVarArg                         = CLI.IsVarArg;
2941
2942   MachineFunction &MF = DAG.getMachineFunction();
2943   bool Is64Bit        = Subtarget->is64Bit();
2944   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2945   StructReturnType SR = callIsStructReturn(Outs);
2946   bool IsSibcall      = false;
2947   X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2948   auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
2949
2950   if (Attr.getValueAsString() == "true")
2951     isTailCall = false;
2952
2953   if (Subtarget->isPICStyleGOT() &&
2954       !MF.getTarget().Options.GuaranteedTailCallOpt) {
2955     // If we are using a GOT, disable tail calls to external symbols with
2956     // default visibility. Tail calling such a symbol requires using a GOT
2957     // relocation, which forces early binding of the symbol. This breaks code
2958     // that require lazy function symbol resolution. Using musttail or
2959     // GuaranteedTailCallOpt will override this.
2960     GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2961     if (!G || (!G->getGlobal()->hasLocalLinkage() &&
2962                G->getGlobal()->hasDefaultVisibility()))
2963       isTailCall = false;
2964   }
2965
2966   bool IsMustTail = CLI.CS && CLI.CS->isMustTailCall();
2967   if (IsMustTail) {
2968     // Force this to be a tail call.  The verifier rules are enough to ensure
2969     // that we can lower this successfully without moving the return address
2970     // around.
2971     isTailCall = true;
2972   } else if (isTailCall) {
2973     // Check if it's really possible to do a tail call.
2974     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2975                     isVarArg, SR != NotStructReturn,
2976                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2977                     Outs, OutVals, Ins, DAG);
2978
2979     // Sibcalls are automatically detected tailcalls which do not require
2980     // ABI changes.
2981     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2982       IsSibcall = true;
2983
2984     if (isTailCall)
2985       ++NumTailCalls;
2986   }
2987
2988   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2989          "Var args not supported with calling convention fastcc, ghc or hipe");
2990
2991   // Analyze operands of the call, assigning locations to each operand.
2992   SmallVector<CCValAssign, 16> ArgLocs;
2993   CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext());
2994
2995   // Allocate shadow area for Win64
2996   if (IsWin64)
2997     CCInfo.AllocateStack(32, 8);
2998
2999   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3000
3001   // Get a count of how many bytes are to be pushed on the stack.
3002   unsigned NumBytes = CCInfo.getNextStackOffset();
3003   if (IsSibcall)
3004     // This is a sibcall. The memory operands are available in caller's
3005     // own caller's stack.
3006     NumBytes = 0;
3007   else if (MF.getTarget().Options.GuaranteedTailCallOpt &&
3008            IsTailCallConvention(CallConv))
3009     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
3010
3011   int FPDiff = 0;
3012   if (isTailCall && !IsSibcall && !IsMustTail) {
3013     // Lower arguments at fp - stackoffset + fpdiff.
3014     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
3015
3016     FPDiff = NumBytesCallerPushed - NumBytes;
3017
3018     // Set the delta of movement of the returnaddr stackslot.
3019     // But only set if delta is greater than previous delta.
3020     if (FPDiff < X86Info->getTCReturnAddrDelta())
3021       X86Info->setTCReturnAddrDelta(FPDiff);
3022   }
3023
3024   unsigned NumBytesToPush = NumBytes;
3025   unsigned NumBytesToPop = NumBytes;
3026
3027   // If we have an inalloca argument, all stack space has already been allocated
3028   // for us and be right at the top of the stack.  We don't support multiple
3029   // arguments passed in memory when using inalloca.
3030   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
3031     NumBytesToPush = 0;
3032     if (!ArgLocs.back().isMemLoc())
3033       report_fatal_error("cannot use inalloca attribute on a register "
3034                          "parameter");
3035     if (ArgLocs.back().getLocMemOffset() != 0)
3036       report_fatal_error("any parameter with the inalloca attribute must be "
3037                          "the only memory argument");
3038   }
3039
3040   if (!IsSibcall)
3041     Chain = DAG.getCALLSEQ_START(
3042         Chain, DAG.getIntPtrConstant(NumBytesToPush, dl, true), dl);
3043
3044   SDValue RetAddrFrIdx;
3045   // Load return address for tail calls.
3046   if (isTailCall && FPDiff)
3047     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
3048                                     Is64Bit, FPDiff, dl);
3049
3050   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3051   SmallVector<SDValue, 8> MemOpChains;
3052   SDValue StackPtr;
3053
3054   // Walk the register/memloc assignments, inserting copies/loads.  In the case
3055   // of tail call optimization arguments are handle later.
3056   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3057   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3058     // Skip inalloca arguments, they have already been written.
3059     ISD::ArgFlagsTy Flags = Outs[i].Flags;
3060     if (Flags.isInAlloca())
3061       continue;
3062
3063     CCValAssign &VA = ArgLocs[i];
3064     EVT RegVT = VA.getLocVT();
3065     SDValue Arg = OutVals[i];
3066     bool isByVal = Flags.isByVal();
3067
3068     // Promote the value if needed.
3069     switch (VA.getLocInfo()) {
3070     default: llvm_unreachable("Unknown loc info!");
3071     case CCValAssign::Full: break;
3072     case CCValAssign::SExt:
3073       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
3074       break;
3075     case CCValAssign::ZExt:
3076       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
3077       break;
3078     case CCValAssign::AExt:
3079       if (Arg.getValueType().isVector() &&
3080           Arg.getValueType().getScalarType() == MVT::i1)
3081         Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
3082       else if (RegVT.is128BitVector()) {
3083         // Special case: passing MMX values in XMM registers.
3084         Arg = DAG.getBitcast(MVT::i64, Arg);
3085         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
3086         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
3087       } else
3088         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
3089       break;
3090     case CCValAssign::BCvt:
3091       Arg = DAG.getBitcast(RegVT, Arg);
3092       break;
3093     case CCValAssign::Indirect: {
3094       // Store the argument.
3095       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
3096       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
3097       Chain = DAG.getStore(
3098           Chain, dl, Arg, SpillSlot,
3099           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
3100           false, false, 0);
3101       Arg = SpillSlot;
3102       break;
3103     }
3104     }
3105
3106     if (VA.isRegLoc()) {
3107       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3108       if (isVarArg && IsWin64) {
3109         // Win64 ABI requires argument XMM reg to be copied to the corresponding
3110         // shadow reg if callee is a varargs function.
3111         unsigned ShadowReg = 0;
3112         switch (VA.getLocReg()) {
3113         case X86::XMM0: ShadowReg = X86::RCX; break;
3114         case X86::XMM1: ShadowReg = X86::RDX; break;
3115         case X86::XMM2: ShadowReg = X86::R8; break;
3116         case X86::XMM3: ShadowReg = X86::R9; break;
3117         }
3118         if (ShadowReg)
3119           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
3120       }
3121     } else if (!IsSibcall && (!isTailCall || isByVal)) {
3122       assert(VA.isMemLoc());
3123       if (!StackPtr.getNode())
3124         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
3125                                       getPointerTy(DAG.getDataLayout()));
3126       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
3127                                              dl, DAG, VA, Flags));
3128     }
3129   }
3130
3131   if (!MemOpChains.empty())
3132     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
3133
3134   if (Subtarget->isPICStyleGOT()) {
3135     // ELF / PIC requires GOT in the EBX register before function calls via PLT
3136     // GOT pointer.
3137     if (!isTailCall) {
3138       RegsToPass.push_back(std::make_pair(
3139           unsigned(X86::EBX), DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(),
3140                                           getPointerTy(DAG.getDataLayout()))));
3141     } else {
3142       // If we are tail calling and generating PIC/GOT style code load the
3143       // address of the callee into ECX. The value in ecx is used as target of
3144       // the tail jump. This is done to circumvent the ebx/callee-saved problem
3145       // for tail calls on PIC/GOT architectures. Normally we would just put the
3146       // address of GOT into ebx and then call target@PLT. But for tail calls
3147       // ebx would be restored (since ebx is callee saved) before jumping to the
3148       // target@PLT.
3149
3150       // Note: The actual moving to ECX is done further down.
3151       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
3152       if (G && !G->getGlobal()->hasLocalLinkage() &&
3153           G->getGlobal()->hasDefaultVisibility())
3154         Callee = LowerGlobalAddress(Callee, DAG);
3155       else if (isa<ExternalSymbolSDNode>(Callee))
3156         Callee = LowerExternalSymbol(Callee, DAG);
3157     }
3158   }
3159
3160   if (Is64Bit && isVarArg && !IsWin64 && !IsMustTail) {
3161     // From AMD64 ABI document:
3162     // For calls that may call functions that use varargs or stdargs
3163     // (prototype-less calls or calls to functions containing ellipsis (...) in
3164     // the declaration) %al is used as hidden argument to specify the number
3165     // of SSE registers used. The contents of %al do not need to match exactly
3166     // the number of registers, but must be an ubound on the number of SSE
3167     // registers used and is in the range 0 - 8 inclusive.
3168
3169     // Count the number of XMM registers allocated.
3170     static const MCPhysReg XMMArgRegs[] = {
3171       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
3172       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
3173     };
3174     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs);
3175     assert((Subtarget->hasSSE1() || !NumXMMRegs)
3176            && "SSE registers cannot be used when SSE is disabled");
3177
3178     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
3179                                         DAG.getConstant(NumXMMRegs, dl,
3180                                                         MVT::i8)));
3181   }
3182
3183   if (isVarArg && IsMustTail) {
3184     const auto &Forwards = X86Info->getForwardedMustTailRegParms();
3185     for (const auto &F : Forwards) {
3186       SDValue Val = DAG.getCopyFromReg(Chain, dl, F.VReg, F.VT);
3187       RegsToPass.push_back(std::make_pair(unsigned(F.PReg), Val));
3188     }
3189   }
3190
3191   // For tail calls lower the arguments to the 'real' stack slots.  Sibcalls
3192   // don't need this because the eligibility check rejects calls that require
3193   // shuffling arguments passed in memory.
3194   if (!IsSibcall && isTailCall) {
3195     // Force all the incoming stack arguments to be loaded from the stack
3196     // before any new outgoing arguments are stored to the stack, because the
3197     // outgoing stack slots may alias the incoming argument stack slots, and
3198     // the alias isn't otherwise explicit. This is slightly more conservative
3199     // than necessary, because it means that each store effectively depends
3200     // on every argument instead of just those arguments it would clobber.
3201     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
3202
3203     SmallVector<SDValue, 8> MemOpChains2;
3204     SDValue FIN;
3205     int FI = 0;
3206     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3207       CCValAssign &VA = ArgLocs[i];
3208       if (VA.isRegLoc())
3209         continue;
3210       assert(VA.isMemLoc());
3211       SDValue Arg = OutVals[i];
3212       ISD::ArgFlagsTy Flags = Outs[i].Flags;
3213       // Skip inalloca arguments.  They don't require any work.
3214       if (Flags.isInAlloca())
3215         continue;
3216       // Create frame index.
3217       int32_t Offset = VA.getLocMemOffset()+FPDiff;
3218       uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
3219       FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3220       FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
3221
3222       if (Flags.isByVal()) {
3223         // Copy relative to framepointer.
3224         SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset(), dl);
3225         if (!StackPtr.getNode())
3226           StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
3227                                         getPointerTy(DAG.getDataLayout()));
3228         Source = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
3229                              StackPtr, Source);
3230
3231         MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
3232                                                          ArgChain,
3233                                                          Flags, DAG, dl));
3234       } else {
3235         // Store relative to framepointer.
3236         MemOpChains2.push_back(DAG.getStore(
3237             ArgChain, dl, Arg, FIN,
3238             MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
3239             false, false, 0));
3240       }
3241     }
3242
3243     if (!MemOpChains2.empty())
3244       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
3245
3246     // Store the return address to the appropriate stack slot.
3247     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
3248                                      getPointerTy(DAG.getDataLayout()),
3249                                      RegInfo->getSlotSize(), FPDiff, dl);
3250   }
3251
3252   // Build a sequence of copy-to-reg nodes chained together with token chain
3253   // and flag operands which copy the outgoing args into registers.
3254   SDValue InFlag;
3255   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3256     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3257                              RegsToPass[i].second, InFlag);
3258     InFlag = Chain.getValue(1);
3259   }
3260
3261   if (DAG.getTarget().getCodeModel() == CodeModel::Large) {
3262     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
3263     // In the 64-bit large code model, we have to make all calls
3264     // through a register, since the call instruction's 32-bit
3265     // pc-relative offset may not be large enough to hold the whole
3266     // address.
3267   } else if (Callee->getOpcode() == ISD::GlobalAddress) {
3268     // If the callee is a GlobalAddress node (quite common, every direct call
3269     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
3270     // it.
3271     GlobalAddressSDNode* G = cast<GlobalAddressSDNode>(Callee);
3272
3273     // We should use extra load for direct calls to dllimported functions in
3274     // non-JIT mode.
3275     const GlobalValue *GV = G->getGlobal();
3276     if (!GV->hasDLLImportStorageClass()) {
3277       unsigned char OpFlags = 0;
3278       bool ExtraLoad = false;
3279       unsigned WrapperKind = ISD::DELETED_NODE;
3280
3281       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
3282       // external symbols most go through the PLT in PIC mode.  If the symbol
3283       // has hidden or protected visibility, or if it is static or local, then
3284       // we don't need to use the PLT - we can directly call it.
3285       if (Subtarget->isTargetELF() &&
3286           DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
3287           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
3288         OpFlags = X86II::MO_PLT;
3289       } else if (Subtarget->isPICStyleStubAny() &&
3290                  !GV->isStrongDefinitionForLinker() &&
3291                  (!Subtarget->getTargetTriple().isMacOSX() ||
3292                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
3293         // PC-relative references to external symbols should go through $stub,
3294         // unless we're building with the leopard linker or later, which
3295         // automatically synthesizes these stubs.
3296         OpFlags = X86II::MO_DARWIN_STUB;
3297       } else if (Subtarget->isPICStyleRIPRel() && isa<Function>(GV) &&
3298                  cast<Function>(GV)->hasFnAttribute(Attribute::NonLazyBind)) {
3299         // If the function is marked as non-lazy, generate an indirect call
3300         // which loads from the GOT directly. This avoids runtime overhead
3301         // at the cost of eager binding (and one extra byte of encoding).
3302         OpFlags = X86II::MO_GOTPCREL;
3303         WrapperKind = X86ISD::WrapperRIP;
3304         ExtraLoad = true;
3305       }
3306
3307       Callee = DAG.getTargetGlobalAddress(
3308           GV, dl, getPointerTy(DAG.getDataLayout()), G->getOffset(), OpFlags);
3309
3310       // Add a wrapper if needed.
3311       if (WrapperKind != ISD::DELETED_NODE)
3312         Callee = DAG.getNode(X86ISD::WrapperRIP, dl,
3313                              getPointerTy(DAG.getDataLayout()), Callee);
3314       // Add extra indirection if needed.
3315       if (ExtraLoad)
3316         Callee = DAG.getLoad(
3317             getPointerTy(DAG.getDataLayout()), dl, DAG.getEntryNode(), Callee,
3318             MachinePointerInfo::getGOT(DAG.getMachineFunction()), false, false,
3319             false, 0);
3320     }
3321   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3322     unsigned char OpFlags = 0;
3323
3324     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
3325     // external symbols should go through the PLT.
3326     if (Subtarget->isTargetELF() &&
3327         DAG.getTarget().getRelocationModel() == Reloc::PIC_) {
3328       OpFlags = X86II::MO_PLT;
3329     } else if (Subtarget->isPICStyleStubAny() &&
3330                (!Subtarget->getTargetTriple().isMacOSX() ||
3331                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
3332       // PC-relative references to external symbols should go through $stub,
3333       // unless we're building with the leopard linker or later, which
3334       // automatically synthesizes these stubs.
3335       OpFlags = X86II::MO_DARWIN_STUB;
3336     }
3337
3338     Callee = DAG.getTargetExternalSymbol(
3339         S->getSymbol(), getPointerTy(DAG.getDataLayout()), OpFlags);
3340   } else if (Subtarget->isTarget64BitILP32() &&
3341              Callee->getValueType(0) == MVT::i32) {
3342     // Zero-extend the 32-bit Callee address into a 64-bit according to x32 ABI
3343     Callee = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, Callee);
3344   }
3345
3346   // Returns a chain & a flag for retval copy to use.
3347   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3348   SmallVector<SDValue, 8> Ops;
3349
3350   if (!IsSibcall && isTailCall) {
3351     Chain = DAG.getCALLSEQ_END(Chain,
3352                                DAG.getIntPtrConstant(NumBytesToPop, dl, true),
3353                                DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
3354     InFlag = Chain.getValue(1);
3355   }
3356
3357   Ops.push_back(Chain);
3358   Ops.push_back(Callee);
3359
3360   if (isTailCall)
3361     Ops.push_back(DAG.getConstant(FPDiff, dl, MVT::i32));
3362
3363   // Add argument registers to the end of the list so that they are known live
3364   // into the call.
3365   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3366     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3367                                   RegsToPass[i].second.getValueType()));
3368
3369   // Add a register mask operand representing the call-preserved registers.
3370   const uint32_t *Mask = RegInfo->getCallPreservedMask(MF, CallConv);
3371   assert(Mask && "Missing call preserved mask for calling convention");
3372
3373   // If this is an invoke in a 32-bit function using an MSVC personality, assume
3374   // the function clobbers all registers. If an exception is thrown, the runtime
3375   // will not restore CSRs.
3376   // FIXME: Model this more precisely so that we can register allocate across
3377   // the normal edge and spill and fill across the exceptional edge.
3378   if (!Is64Bit && CLI.CS && CLI.CS->isInvoke()) {
3379     const Function *CallerFn = MF.getFunction();
3380     EHPersonality Pers =
3381         CallerFn->hasPersonalityFn()
3382             ? classifyEHPersonality(CallerFn->getPersonalityFn())
3383             : EHPersonality::Unknown;
3384     if (isMSVCEHPersonality(Pers))
3385       Mask = RegInfo->getNoPreservedMask();
3386   }
3387
3388   Ops.push_back(DAG.getRegisterMask(Mask));
3389
3390   if (InFlag.getNode())
3391     Ops.push_back(InFlag);
3392
3393   if (isTailCall) {
3394     // We used to do:
3395     //// If this is the first return lowered for this function, add the regs
3396     //// to the liveout set for the function.
3397     // This isn't right, although it's probably harmless on x86; liveouts
3398     // should be computed from returns not tail calls.  Consider a void
3399     // function making a tail call to a function returning int.
3400     MF.getFrameInfo()->setHasTailCall();
3401     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, Ops);
3402   }
3403
3404   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops);
3405   InFlag = Chain.getValue(1);
3406
3407   // Create the CALLSEQ_END node.
3408   unsigned NumBytesForCalleeToPop;
3409   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
3410                        DAG.getTarget().Options.GuaranteedTailCallOpt))
3411     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
3412   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
3413            !Subtarget->getTargetTriple().isOSMSVCRT() &&
3414            SR == StackStructReturn)
3415     // If this is a call to a struct-return function, the callee
3416     // pops the hidden struct pointer, so we have to push it back.
3417     // This is common for Darwin/X86, Linux & Mingw32 targets.
3418     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
3419     NumBytesForCalleeToPop = 4;
3420   else
3421     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
3422
3423   // Returns a flag for retval copy to use.
3424   if (!IsSibcall) {
3425     Chain = DAG.getCALLSEQ_END(Chain,
3426                                DAG.getIntPtrConstant(NumBytesToPop, dl, true),
3427                                DAG.getIntPtrConstant(NumBytesForCalleeToPop, dl,
3428                                                      true),
3429                                InFlag, dl);
3430     InFlag = Chain.getValue(1);
3431   }
3432
3433   // Handle result values, copying them out of physregs into vregs that we
3434   // return.
3435   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3436                          Ins, dl, DAG, InVals);
3437 }
3438
3439 //===----------------------------------------------------------------------===//
3440 //                Fast Calling Convention (tail call) implementation
3441 //===----------------------------------------------------------------------===//
3442
3443 //  Like std call, callee cleans arguments, convention except that ECX is
3444 //  reserved for storing the tail called function address. Only 2 registers are
3445 //  free for argument passing (inreg). Tail call optimization is performed
3446 //  provided:
3447 //                * tailcallopt is enabled
3448 //                * caller/callee are fastcc
3449 //  On X86_64 architecture with GOT-style position independent code only local
3450 //  (within module) calls are supported at the moment.
3451 //  To keep the stack aligned according to platform abi the function
3452 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
3453 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
3454 //  If a tail called function callee has more arguments than the caller the
3455 //  caller needs to make sure that there is room to move the RETADDR to. This is
3456 //  achieved by reserving an area the size of the argument delta right after the
3457 //  original RETADDR, but before the saved framepointer or the spilled registers
3458 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
3459 //  stack layout:
3460 //    arg1
3461 //    arg2
3462 //    RETADDR
3463 //    [ new RETADDR
3464 //      move area ]
3465 //    (possible EBP)
3466 //    ESI
3467 //    EDI
3468 //    local1 ..
3469
3470 /// Make the stack size align e.g 16n + 12 aligned for a 16-byte align
3471 /// requirement.
3472 unsigned
3473 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3474                                                SelectionDAG& DAG) const {
3475   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3476   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
3477   unsigned StackAlignment = TFI.getStackAlignment();
3478   uint64_t AlignMask = StackAlignment - 1;
3479   int64_t Offset = StackSize;
3480   unsigned SlotSize = RegInfo->getSlotSize();
3481   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3482     // Number smaller than 12 so just add the difference.
3483     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3484   } else {
3485     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3486     Offset = ((~AlignMask) & Offset) + StackAlignment +
3487       (StackAlignment-SlotSize);
3488   }
3489   return Offset;
3490 }
3491
3492 /// Return true if the given stack call argument is already available in the
3493 /// same position (relatively) of the caller's incoming argument stack.
3494 static
3495 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3496                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3497                          const X86InstrInfo *TII) {
3498   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3499   int FI = INT_MAX;
3500   if (Arg.getOpcode() == ISD::CopyFromReg) {
3501     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3502     if (!TargetRegisterInfo::isVirtualRegister(VR))
3503       return false;
3504     MachineInstr *Def = MRI->getVRegDef(VR);
3505     if (!Def)
3506       return false;
3507     if (!Flags.isByVal()) {
3508       if (!TII->isLoadFromStackSlot(Def, FI))
3509         return false;
3510     } else {
3511       unsigned Opcode = Def->getOpcode();
3512       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r ||
3513            Opcode == X86::LEA64_32r) &&
3514           Def->getOperand(1).isFI()) {
3515         FI = Def->getOperand(1).getIndex();
3516         Bytes = Flags.getByValSize();
3517       } else
3518         return false;
3519     }
3520   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3521     if (Flags.isByVal())
3522       // ByVal argument is passed in as a pointer but it's now being
3523       // dereferenced. e.g.
3524       // define @foo(%struct.X* %A) {
3525       //   tail call @bar(%struct.X* byval %A)
3526       // }
3527       return false;
3528     SDValue Ptr = Ld->getBasePtr();
3529     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3530     if (!FINode)
3531       return false;
3532     FI = FINode->getIndex();
3533   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3534     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3535     FI = FINode->getIndex();
3536     Bytes = Flags.getByValSize();
3537   } else
3538     return false;
3539
3540   assert(FI != INT_MAX);
3541   if (!MFI->isFixedObjectIndex(FI))
3542     return false;
3543   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3544 }
3545
3546 /// Check whether the call is eligible for tail call optimization. Targets
3547 /// that want to do tail call optimization should implement this function.
3548 bool
3549 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3550                                                      CallingConv::ID CalleeCC,
3551                                                      bool isVarArg,
3552                                                      bool isCalleeStructRet,
3553                                                      bool isCallerStructRet,
3554                                                      Type *RetTy,
3555                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3556                                     const SmallVectorImpl<SDValue> &OutVals,
3557                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3558                                                      SelectionDAG &DAG) const {
3559   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3560     return false;
3561
3562   // If -tailcallopt is specified, make fastcc functions tail-callable.
3563   const MachineFunction &MF = DAG.getMachineFunction();
3564   const Function *CallerF = MF.getFunction();
3565
3566   // If the function return type is x86_fp80 and the callee return type is not,
3567   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3568   // perform a tailcall optimization here.
3569   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3570     return false;
3571
3572   CallingConv::ID CallerCC = CallerF->getCallingConv();
3573   bool CCMatch = CallerCC == CalleeCC;
3574   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3575   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3576
3577   // Win64 functions have extra shadow space for argument homing. Don't do the
3578   // sibcall if the caller and callee have mismatched expectations for this
3579   // space.
3580   if (IsCalleeWin64 != IsCallerWin64)
3581     return false;
3582
3583   if (DAG.getTarget().Options.GuaranteedTailCallOpt) {
3584     if (IsTailCallConvention(CalleeCC) && CCMatch)
3585       return true;
3586     return false;
3587   }
3588
3589   // Look for obvious safe cases to perform tail call optimization that do not
3590   // require ABI changes. This is what gcc calls sibcall.
3591
3592   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3593   // emit a special epilogue.
3594   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3595   if (RegInfo->needsStackRealignment(MF))
3596     return false;
3597
3598   // Also avoid sibcall optimization if either caller or callee uses struct
3599   // return semantics.
3600   if (isCalleeStructRet || isCallerStructRet)
3601     return false;
3602
3603   // An stdcall/thiscall caller is expected to clean up its arguments; the
3604   // callee isn't going to do that.
3605   // FIXME: this is more restrictive than needed. We could produce a tailcall
3606   // when the stack adjustment matches. For example, with a thiscall that takes
3607   // only one argument.
3608   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3609                    CallerCC == CallingConv::X86_ThisCall))
3610     return false;
3611
3612   // Do not sibcall optimize vararg calls unless all arguments are passed via
3613   // registers.
3614   if (isVarArg && !Outs.empty()) {
3615
3616     // Optimizing for varargs on Win64 is unlikely to be safe without
3617     // additional testing.
3618     if (IsCalleeWin64 || IsCallerWin64)
3619       return false;
3620
3621     SmallVector<CCValAssign, 16> ArgLocs;
3622     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
3623                    *DAG.getContext());
3624
3625     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3626     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3627       if (!ArgLocs[i].isRegLoc())
3628         return false;
3629   }
3630
3631   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3632   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3633   // this into a sibcall.
3634   bool Unused = false;
3635   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3636     if (!Ins[i].Used) {
3637       Unused = true;
3638       break;
3639     }
3640   }
3641   if (Unused) {
3642     SmallVector<CCValAssign, 16> RVLocs;
3643     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(), RVLocs,
3644                    *DAG.getContext());
3645     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3646     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3647       CCValAssign &VA = RVLocs[i];
3648       if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1)
3649         return false;
3650     }
3651   }
3652
3653   // If the calling conventions do not match, then we'd better make sure the
3654   // results are returned in the same way as what the caller expects.
3655   if (!CCMatch) {
3656     SmallVector<CCValAssign, 16> RVLocs1;
3657     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
3658                     *DAG.getContext());
3659     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3660
3661     SmallVector<CCValAssign, 16> RVLocs2;
3662     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
3663                     *DAG.getContext());
3664     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3665
3666     if (RVLocs1.size() != RVLocs2.size())
3667       return false;
3668     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3669       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3670         return false;
3671       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3672         return false;
3673       if (RVLocs1[i].isRegLoc()) {
3674         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3675           return false;
3676       } else {
3677         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3678           return false;
3679       }
3680     }
3681   }
3682
3683   // If the callee takes no arguments then go on to check the results of the
3684   // call.
3685   if (!Outs.empty()) {
3686     // Check if stack adjustment is needed. For now, do not do this if any
3687     // argument is passed on the stack.
3688     SmallVector<CCValAssign, 16> ArgLocs;
3689     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
3690                    *DAG.getContext());
3691
3692     // Allocate shadow area for Win64
3693     if (IsCalleeWin64)
3694       CCInfo.AllocateStack(32, 8);
3695
3696     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3697     if (CCInfo.getNextStackOffset()) {
3698       MachineFunction &MF = DAG.getMachineFunction();
3699       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3700         return false;
3701
3702       // Check if the arguments are already laid out in the right way as
3703       // the caller's fixed stack objects.
3704       MachineFrameInfo *MFI = MF.getFrameInfo();
3705       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3706       const X86InstrInfo *TII = Subtarget->getInstrInfo();
3707       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3708         CCValAssign &VA = ArgLocs[i];
3709         SDValue Arg = OutVals[i];
3710         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3711         if (VA.getLocInfo() == CCValAssign::Indirect)
3712           return false;
3713         if (!VA.isRegLoc()) {
3714           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3715                                    MFI, MRI, TII))
3716             return false;
3717         }
3718       }
3719     }
3720
3721     // If the tailcall address may be in a register, then make sure it's
3722     // possible to register allocate for it. In 32-bit, the call address can
3723     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3724     // callee-saved registers are restored. These happen to be the same
3725     // registers used to pass 'inreg' arguments so watch out for those.
3726     if (!Subtarget->is64Bit() &&
3727         ((!isa<GlobalAddressSDNode>(Callee) &&
3728           !isa<ExternalSymbolSDNode>(Callee)) ||
3729          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3730       unsigned NumInRegs = 0;
3731       // In PIC we need an extra register to formulate the address computation
3732       // for the callee.
3733       unsigned MaxInRegs =
3734         (DAG.getTarget().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3735
3736       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3737         CCValAssign &VA = ArgLocs[i];
3738         if (!VA.isRegLoc())
3739           continue;
3740         unsigned Reg = VA.getLocReg();
3741         switch (Reg) {
3742         default: break;
3743         case X86::EAX: case X86::EDX: case X86::ECX:
3744           if (++NumInRegs == MaxInRegs)
3745             return false;
3746           break;
3747         }
3748       }
3749     }
3750   }
3751
3752   return true;
3753 }
3754
3755 FastISel *
3756 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3757                                   const TargetLibraryInfo *libInfo) const {
3758   return X86::createFastISel(funcInfo, libInfo);
3759 }
3760
3761 //===----------------------------------------------------------------------===//
3762 //                           Other Lowering Hooks
3763 //===----------------------------------------------------------------------===//
3764
3765 static bool MayFoldLoad(SDValue Op) {
3766   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3767 }
3768
3769 static bool MayFoldIntoStore(SDValue Op) {
3770   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3771 }
3772
3773 static bool isTargetShuffle(unsigned Opcode) {
3774   switch(Opcode) {
3775   default: return false;
3776   case X86ISD::BLENDI:
3777   case X86ISD::PSHUFB:
3778   case X86ISD::PSHUFD:
3779   case X86ISD::PSHUFHW:
3780   case X86ISD::PSHUFLW:
3781   case X86ISD::SHUFP:
3782   case X86ISD::PALIGNR:
3783   case X86ISD::MOVLHPS:
3784   case X86ISD::MOVLHPD:
3785   case X86ISD::MOVHLPS:
3786   case X86ISD::MOVLPS:
3787   case X86ISD::MOVLPD:
3788   case X86ISD::MOVSHDUP:
3789   case X86ISD::MOVSLDUP:
3790   case X86ISD::MOVDDUP:
3791   case X86ISD::MOVSS:
3792   case X86ISD::MOVSD:
3793   case X86ISD::UNPCKL:
3794   case X86ISD::UNPCKH:
3795   case X86ISD::VPERMILPI:
3796   case X86ISD::VPERM2X128:
3797   case X86ISD::VPERMI:
3798   case X86ISD::VPERMV:
3799   case X86ISD::VPERMV3:
3800     return true;
3801   }
3802 }
3803
3804 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3805                                     SDValue V1, unsigned TargetMask,
3806                                     SelectionDAG &DAG) {
3807   switch(Opc) {
3808   default: llvm_unreachable("Unknown x86 shuffle node");
3809   case X86ISD::PSHUFD:
3810   case X86ISD::PSHUFHW:
3811   case X86ISD::PSHUFLW:
3812   case X86ISD::VPERMILPI:
3813   case X86ISD::VPERMI:
3814     return DAG.getNode(Opc, dl, VT, V1,
3815                        DAG.getConstant(TargetMask, dl, MVT::i8));
3816   }
3817 }
3818
3819 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3820                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3821   switch(Opc) {
3822   default: llvm_unreachable("Unknown x86 shuffle node");
3823   case X86ISD::MOVLHPS:
3824   case X86ISD::MOVLHPD:
3825   case X86ISD::MOVHLPS:
3826   case X86ISD::MOVLPS:
3827   case X86ISD::MOVLPD:
3828   case X86ISD::MOVSS:
3829   case X86ISD::MOVSD:
3830   case X86ISD::UNPCKL:
3831   case X86ISD::UNPCKH:
3832     return DAG.getNode(Opc, dl, VT, V1, V2);
3833   }
3834 }
3835
3836 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3837   MachineFunction &MF = DAG.getMachineFunction();
3838   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
3839   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3840   int ReturnAddrIndex = FuncInfo->getRAIndex();
3841
3842   if (ReturnAddrIndex == 0) {
3843     // Set up a frame object for the return address.
3844     unsigned SlotSize = RegInfo->getSlotSize();
3845     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3846                                                            -(int64_t)SlotSize,
3847                                                            false);
3848     FuncInfo->setRAIndex(ReturnAddrIndex);
3849   }
3850
3851   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy(DAG.getDataLayout()));
3852 }
3853
3854 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3855                                        bool hasSymbolicDisplacement) {
3856   // Offset should fit into 32 bit immediate field.
3857   if (!isInt<32>(Offset))
3858     return false;
3859
3860   // If we don't have a symbolic displacement - we don't have any extra
3861   // restrictions.
3862   if (!hasSymbolicDisplacement)
3863     return true;
3864
3865   // FIXME: Some tweaks might be needed for medium code model.
3866   if (M != CodeModel::Small && M != CodeModel::Kernel)
3867     return false;
3868
3869   // For small code model we assume that latest object is 16MB before end of 31
3870   // bits boundary. We may also accept pretty large negative constants knowing
3871   // that all objects are in the positive half of address space.
3872   if (M == CodeModel::Small && Offset < 16*1024*1024)
3873     return true;
3874
3875   // For kernel code model we know that all object resist in the negative half
3876   // of 32bits address space. We may not accept negative offsets, since they may
3877   // be just off and we may accept pretty large positive ones.
3878   if (M == CodeModel::Kernel && Offset >= 0)
3879     return true;
3880
3881   return false;
3882 }
3883
3884 /// Determines whether the callee is required to pop its own arguments.
3885 /// Callee pop is necessary to support tail calls.
3886 bool X86::isCalleePop(CallingConv::ID CallingConv,
3887                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3888   switch (CallingConv) {
3889   default:
3890     return false;
3891   case CallingConv::X86_StdCall:
3892   case CallingConv::X86_FastCall:
3893   case CallingConv::X86_ThisCall:
3894     return !is64Bit;
3895   case CallingConv::Fast:
3896   case CallingConv::GHC:
3897   case CallingConv::HiPE:
3898     if (IsVarArg)
3899       return false;
3900     return TailCallOpt;
3901   }
3902 }
3903
3904 /// \brief Return true if the condition is an unsigned comparison operation.
3905 static bool isX86CCUnsigned(unsigned X86CC) {
3906   switch (X86CC) {
3907   default: llvm_unreachable("Invalid integer condition!");
3908   case X86::COND_E:     return true;
3909   case X86::COND_G:     return false;
3910   case X86::COND_GE:    return false;
3911   case X86::COND_L:     return false;
3912   case X86::COND_LE:    return false;
3913   case X86::COND_NE:    return true;
3914   case X86::COND_B:     return true;
3915   case X86::COND_A:     return true;
3916   case X86::COND_BE:    return true;
3917   case X86::COND_AE:    return true;
3918   }
3919   llvm_unreachable("covered switch fell through?!");
3920 }
3921
3922 /// Do a one-to-one translation of a ISD::CondCode to the X86-specific
3923 /// condition code, returning the condition code and the LHS/RHS of the
3924 /// comparison to make.
3925 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, SDLoc DL, bool isFP,
3926                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3927   if (!isFP) {
3928     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3929       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3930         // X > -1   -> X == 0, jump !sign.
3931         RHS = DAG.getConstant(0, DL, RHS.getValueType());
3932         return X86::COND_NS;
3933       }
3934       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3935         // X < 0   -> X == 0, jump on sign.
3936         return X86::COND_S;
3937       }
3938       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3939         // X < 1   -> X <= 0
3940         RHS = DAG.getConstant(0, DL, RHS.getValueType());
3941         return X86::COND_LE;
3942       }
3943     }
3944
3945     switch (SetCCOpcode) {
3946     default: llvm_unreachable("Invalid integer condition!");
3947     case ISD::SETEQ:  return X86::COND_E;
3948     case ISD::SETGT:  return X86::COND_G;
3949     case ISD::SETGE:  return X86::COND_GE;
3950     case ISD::SETLT:  return X86::COND_L;
3951     case ISD::SETLE:  return X86::COND_LE;
3952     case ISD::SETNE:  return X86::COND_NE;
3953     case ISD::SETULT: return X86::COND_B;
3954     case ISD::SETUGT: return X86::COND_A;
3955     case ISD::SETULE: return X86::COND_BE;
3956     case ISD::SETUGE: return X86::COND_AE;
3957     }
3958   }
3959
3960   // First determine if it is required or is profitable to flip the operands.
3961
3962   // If LHS is a foldable load, but RHS is not, flip the condition.
3963   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3964       !ISD::isNON_EXTLoad(RHS.getNode())) {
3965     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3966     std::swap(LHS, RHS);
3967   }
3968
3969   switch (SetCCOpcode) {
3970   default: break;
3971   case ISD::SETOLT:
3972   case ISD::SETOLE:
3973   case ISD::SETUGT:
3974   case ISD::SETUGE:
3975     std::swap(LHS, RHS);
3976     break;
3977   }
3978
3979   // On a floating point condition, the flags are set as follows:
3980   // ZF  PF  CF   op
3981   //  0 | 0 | 0 | X > Y
3982   //  0 | 0 | 1 | X < Y
3983   //  1 | 0 | 0 | X == Y
3984   //  1 | 1 | 1 | unordered
3985   switch (SetCCOpcode) {
3986   default: llvm_unreachable("Condcode should be pre-legalized away");
3987   case ISD::SETUEQ:
3988   case ISD::SETEQ:   return X86::COND_E;
3989   case ISD::SETOLT:              // flipped
3990   case ISD::SETOGT:
3991   case ISD::SETGT:   return X86::COND_A;
3992   case ISD::SETOLE:              // flipped
3993   case ISD::SETOGE:
3994   case ISD::SETGE:   return X86::COND_AE;
3995   case ISD::SETUGT:              // flipped
3996   case ISD::SETULT:
3997   case ISD::SETLT:   return X86::COND_B;
3998   case ISD::SETUGE:              // flipped
3999   case ISD::SETULE:
4000   case ISD::SETLE:   return X86::COND_BE;
4001   case ISD::SETONE:
4002   case ISD::SETNE:   return X86::COND_NE;
4003   case ISD::SETUO:   return X86::COND_P;
4004   case ISD::SETO:    return X86::COND_NP;
4005   case ISD::SETOEQ:
4006   case ISD::SETUNE:  return X86::COND_INVALID;
4007   }
4008 }
4009
4010 /// Is there a floating point cmov for the specific X86 condition code?
4011 /// Current x86 isa includes the following FP cmov instructions:
4012 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
4013 static bool hasFPCMov(unsigned X86CC) {
4014   switch (X86CC) {
4015   default:
4016     return false;
4017   case X86::COND_B:
4018   case X86::COND_BE:
4019   case X86::COND_E:
4020   case X86::COND_P:
4021   case X86::COND_A:
4022   case X86::COND_AE:
4023   case X86::COND_NE:
4024   case X86::COND_NP:
4025     return true;
4026   }
4027 }
4028
4029 /// Returns true if the target can instruction select the
4030 /// specified FP immediate natively. If false, the legalizer will
4031 /// materialize the FP immediate as a load from a constant pool.
4032 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
4033   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
4034     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
4035       return true;
4036   }
4037   return false;
4038 }
4039
4040 bool X86TargetLowering::shouldReduceLoadWidth(SDNode *Load,
4041                                               ISD::LoadExtType ExtTy,
4042                                               EVT NewVT) const {
4043   // "ELF Handling for Thread-Local Storage" specifies that R_X86_64_GOTTPOFF
4044   // relocation target a movq or addq instruction: don't let the load shrink.
4045   SDValue BasePtr = cast<LoadSDNode>(Load)->getBasePtr();
4046   if (BasePtr.getOpcode() == X86ISD::WrapperRIP)
4047     if (const auto *GA = dyn_cast<GlobalAddressSDNode>(BasePtr.getOperand(0)))
4048       return GA->getTargetFlags() != X86II::MO_GOTTPOFF;
4049   return true;
4050 }
4051
4052 /// \brief Returns true if it is beneficial to convert a load of a constant
4053 /// to just the constant itself.
4054 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
4055                                                           Type *Ty) const {
4056   assert(Ty->isIntegerTy());
4057
4058   unsigned BitSize = Ty->getPrimitiveSizeInBits();
4059   if (BitSize == 0 || BitSize > 64)
4060     return false;
4061   return true;
4062 }
4063
4064 bool X86TargetLowering::isExtractSubvectorCheap(EVT ResVT,
4065                                                 unsigned Index) const {
4066   if (!isOperationLegalOrCustom(ISD::EXTRACT_SUBVECTOR, ResVT))
4067     return false;
4068
4069   return (Index == 0 || Index == ResVT.getVectorNumElements());
4070 }
4071
4072 bool X86TargetLowering::isCheapToSpeculateCttz() const {
4073   // Speculate cttz only if we can directly use TZCNT.
4074   return Subtarget->hasBMI();
4075 }
4076
4077 bool X86TargetLowering::isCheapToSpeculateCtlz() const {
4078   // Speculate ctlz only if we can directly use LZCNT.
4079   return Subtarget->hasLZCNT();
4080 }
4081
4082 /// Return true if every element in Mask, beginning
4083 /// from position Pos and ending in Pos+Size is undef.
4084 static bool isUndefInRange(ArrayRef<int> Mask, unsigned Pos, unsigned Size) {
4085   for (unsigned i = Pos, e = Pos + Size; i != e; ++i)
4086     if (0 <= Mask[i])
4087       return false;
4088   return true;
4089 }
4090
4091 /// Return true if Val is undef or if its value falls within the
4092 /// specified range (L, H].
4093 static bool isUndefOrInRange(int Val, int Low, int Hi) {
4094   return (Val < 0) || (Val >= Low && Val < Hi);
4095 }
4096
4097 /// Val is either less than zero (undef) or equal to the specified value.
4098 static bool isUndefOrEqual(int Val, int CmpVal) {
4099   return (Val < 0 || Val == CmpVal);
4100 }
4101
4102 /// Return true if every element in Mask, beginning
4103 /// from position Pos and ending in Pos+Size, falls within the specified
4104 /// sequential range (Low, Low+Size]. or is undef.
4105 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
4106                                        unsigned Pos, unsigned Size, int Low) {
4107   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
4108     if (!isUndefOrEqual(Mask[i], Low))
4109       return false;
4110   return true;
4111 }
4112
4113 /// Return true if the specified EXTRACT_SUBVECTOR operand specifies a vector
4114 /// extract that is suitable for instruction that extract 128 or 256 bit vectors
4115 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4116   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4117   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4118     return false;
4119
4120   // The index should be aligned on a vecWidth-bit boundary.
4121   uint64_t Index =
4122     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4123
4124   MVT VT = N->getSimpleValueType(0);
4125   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4126   bool Result = (Index * ElSize) % vecWidth == 0;
4127
4128   return Result;
4129 }
4130
4131 /// Return true if the specified INSERT_SUBVECTOR
4132 /// operand specifies a subvector insert that is suitable for input to
4133 /// insertion of 128 or 256-bit subvectors
4134 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4135   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4136   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4137     return false;
4138   // The index should be aligned on a vecWidth-bit boundary.
4139   uint64_t Index =
4140     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4141
4142   MVT VT = N->getSimpleValueType(0);
4143   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4144   bool Result = (Index * ElSize) % vecWidth == 0;
4145
4146   return Result;
4147 }
4148
4149 bool X86::isVINSERT128Index(SDNode *N) {
4150   return isVINSERTIndex(N, 128);
4151 }
4152
4153 bool X86::isVINSERT256Index(SDNode *N) {
4154   return isVINSERTIndex(N, 256);
4155 }
4156
4157 bool X86::isVEXTRACT128Index(SDNode *N) {
4158   return isVEXTRACTIndex(N, 128);
4159 }
4160
4161 bool X86::isVEXTRACT256Index(SDNode *N) {
4162   return isVEXTRACTIndex(N, 256);
4163 }
4164
4165 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4166   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4167   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4168     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4169
4170   uint64_t Index =
4171     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4172
4173   MVT VecVT = N->getOperand(0).getSimpleValueType();
4174   MVT ElVT = VecVT.getVectorElementType();
4175
4176   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4177   return Index / NumElemsPerChunk;
4178 }
4179
4180 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4181   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4182   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4183     llvm_unreachable("Illegal insert subvector for VINSERT");
4184
4185   uint64_t Index =
4186     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4187
4188   MVT VecVT = N->getSimpleValueType(0);
4189   MVT ElVT = VecVT.getVectorElementType();
4190
4191   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4192   return Index / NumElemsPerChunk;
4193 }
4194
4195 /// Return the appropriate immediate to extract the specified
4196 /// EXTRACT_SUBVECTOR index with VEXTRACTF128 and VINSERTI128 instructions.
4197 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4198   return getExtractVEXTRACTImmediate(N, 128);
4199 }
4200
4201 /// Return the appropriate immediate to extract the specified
4202 /// EXTRACT_SUBVECTOR index with VEXTRACTF64x4 and VINSERTI64x4 instructions.
4203 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4204   return getExtractVEXTRACTImmediate(N, 256);
4205 }
4206
4207 /// Return the appropriate immediate to insert at the specified
4208 /// INSERT_SUBVECTOR index with VINSERTF128 and VINSERTI128 instructions.
4209 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4210   return getInsertVINSERTImmediate(N, 128);
4211 }
4212
4213 /// Return the appropriate immediate to insert at the specified
4214 /// INSERT_SUBVECTOR index with VINSERTF46x4 and VINSERTI64x4 instructions.
4215 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4216   return getInsertVINSERTImmediate(N, 256);
4217 }
4218
4219 /// Returns true if Elt is a constant integer zero
4220 static bool isZero(SDValue V) {
4221   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
4222   return C && C->isNullValue();
4223 }
4224
4225 /// Returns true if Elt is a constant zero or a floating point constant +0.0.
4226 bool X86::isZeroNode(SDValue Elt) {
4227   if (isZero(Elt))
4228     return true;
4229   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4230     return CFP->getValueAPF().isPosZero();
4231   return false;
4232 }
4233
4234 /// Returns a vector of specified type with all zero elements.
4235 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4236                              SelectionDAG &DAG, SDLoc dl) {
4237   assert(VT.isVector() && "Expected a vector type");
4238
4239   // Always build SSE zero vectors as <4 x i32> bitcasted
4240   // to their dest type. This ensures they get CSE'd.
4241   SDValue Vec;
4242   if (VT.is128BitVector()) {  // SSE
4243     if (Subtarget->hasSSE2()) {  // SSE2
4244       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4245       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4246     } else { // SSE1
4247       SDValue Cst = DAG.getConstantFP(+0.0, dl, MVT::f32);
4248       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4249     }
4250   } else if (VT.is256BitVector()) { // AVX
4251     if (Subtarget->hasInt256()) { // AVX2
4252       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4253       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4254       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4255     } else {
4256       // 256-bit logic and arithmetic instructions in AVX are all
4257       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4258       SDValue Cst = DAG.getConstantFP(+0.0, dl, MVT::f32);
4259       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4260       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops);
4261     }
4262   } else if (VT.is512BitVector()) { // AVX-512
4263       SDValue Cst = DAG.getConstant(0, dl, MVT::i32);
4264       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4265                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4266       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops);
4267   } else if (VT.getScalarType() == MVT::i1) {
4268
4269     assert((Subtarget->hasBWI() || VT.getVectorNumElements() <= 16)
4270             && "Unexpected vector type");
4271     assert((Subtarget->hasVLX() || VT.getVectorNumElements() >= 8)
4272             && "Unexpected vector type");
4273     SDValue Cst = DAG.getConstant(0, dl, MVT::i1);
4274     SmallVector<SDValue, 64> Ops(VT.getVectorNumElements(), Cst);
4275     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
4276   } else
4277     llvm_unreachable("Unexpected vector type");
4278
4279   return DAG.getBitcast(VT, Vec);
4280 }
4281
4282 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
4283                                 SelectionDAG &DAG, SDLoc dl,
4284                                 unsigned vectorWidth) {
4285   assert((vectorWidth == 128 || vectorWidth == 256) &&
4286          "Unsupported vector width");
4287   EVT VT = Vec.getValueType();
4288   EVT ElVT = VT.getVectorElementType();
4289   unsigned Factor = VT.getSizeInBits()/vectorWidth;
4290   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
4291                                   VT.getVectorNumElements()/Factor);
4292
4293   // Extract from UNDEF is UNDEF.
4294   if (Vec.getOpcode() == ISD::UNDEF)
4295     return DAG.getUNDEF(ResultVT);
4296
4297   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
4298   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
4299
4300   // This is the index of the first element of the vectorWidth-bit chunk
4301   // we want.
4302   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
4303                                * ElemsPerChunk);
4304
4305   // If the input is a buildvector just emit a smaller one.
4306   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
4307     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
4308                        makeArrayRef(Vec->op_begin() + NormalizedIdxVal,
4309                                     ElemsPerChunk));
4310
4311   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal, dl);
4312   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec, VecIdx);
4313 }
4314
4315 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
4316 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
4317 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
4318 /// instructions or a simple subregister reference. Idx is an index in the
4319 /// 128 bits we want.  It need not be aligned to a 128-bit boundary.  That makes
4320 /// lowering EXTRACT_VECTOR_ELT operations easier.
4321 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
4322                                    SelectionDAG &DAG, SDLoc dl) {
4323   assert((Vec.getValueType().is256BitVector() ||
4324           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
4325   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
4326 }
4327
4328 /// Generate a DAG to grab 256-bits from a 512-bit vector.
4329 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
4330                                    SelectionDAG &DAG, SDLoc dl) {
4331   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
4332   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
4333 }
4334
4335 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
4336                                unsigned IdxVal, SelectionDAG &DAG,
4337                                SDLoc dl, unsigned vectorWidth) {
4338   assert((vectorWidth == 128 || vectorWidth == 256) &&
4339          "Unsupported vector width");
4340   // Inserting UNDEF is Result
4341   if (Vec.getOpcode() == ISD::UNDEF)
4342     return Result;
4343   EVT VT = Vec.getValueType();
4344   EVT ElVT = VT.getVectorElementType();
4345   EVT ResultVT = Result.getValueType();
4346
4347   // Insert the relevant vectorWidth bits.
4348   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
4349
4350   // This is the index of the first element of the vectorWidth-bit chunk
4351   // we want.
4352   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
4353                                * ElemsPerChunk);
4354
4355   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal, dl);
4356   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec, VecIdx);
4357 }
4358
4359 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
4360 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
4361 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
4362 /// simple superregister reference.  Idx is an index in the 128 bits
4363 /// we want.  It need not be aligned to a 128-bit boundary.  That makes
4364 /// lowering INSERT_VECTOR_ELT operations easier.
4365 static SDValue Insert128BitVector(SDValue Result, SDValue Vec, unsigned IdxVal,
4366                                   SelectionDAG &DAG, SDLoc dl) {
4367   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
4368
4369   // For insertion into the zero index (low half) of a 256-bit vector, it is
4370   // more efficient to generate a blend with immediate instead of an insert*128.
4371   // We are still creating an INSERT_SUBVECTOR below with an undef node to
4372   // extend the subvector to the size of the result vector. Make sure that
4373   // we are not recursing on that node by checking for undef here.
4374   if (IdxVal == 0 && Result.getValueType().is256BitVector() &&
4375       Result.getOpcode() != ISD::UNDEF) {
4376     EVT ResultVT = Result.getValueType();
4377     SDValue ZeroIndex = DAG.getIntPtrConstant(0, dl);
4378     SDValue Undef = DAG.getUNDEF(ResultVT);
4379     SDValue Vec256 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Undef,
4380                                  Vec, ZeroIndex);
4381
4382     // The blend instruction, and therefore its mask, depend on the data type.
4383     MVT ScalarType = ResultVT.getScalarType().getSimpleVT();
4384     if (ScalarType.isFloatingPoint()) {
4385       // Choose either vblendps (float) or vblendpd (double).
4386       unsigned ScalarSize = ScalarType.getSizeInBits();
4387       assert((ScalarSize == 64 || ScalarSize == 32) && "Unknown float type");
4388       unsigned MaskVal = (ScalarSize == 64) ? 0x03 : 0x0f;
4389       SDValue Mask = DAG.getConstant(MaskVal, dl, MVT::i8);
4390       return DAG.getNode(X86ISD::BLENDI, dl, ResultVT, Result, Vec256, Mask);
4391     }
4392
4393     const X86Subtarget &Subtarget =
4394     static_cast<const X86Subtarget &>(DAG.getSubtarget());
4395
4396     // AVX2 is needed for 256-bit integer blend support.
4397     // Integers must be cast to 32-bit because there is only vpblendd;
4398     // vpblendw can't be used for this because it has a handicapped mask.
4399
4400     // If we don't have AVX2, then cast to float. Using a wrong domain blend
4401     // is still more efficient than using the wrong domain vinsertf128 that
4402     // will be created by InsertSubVector().
4403     MVT CastVT = Subtarget.hasAVX2() ? MVT::v8i32 : MVT::v8f32;
4404
4405     SDValue Mask = DAG.getConstant(0x0f, dl, MVT::i8);
4406     Vec256 = DAG.getBitcast(CastVT, Vec256);
4407     Vec256 = DAG.getNode(X86ISD::BLENDI, dl, CastVT, Result, Vec256, Mask);
4408     return DAG.getBitcast(ResultVT, Vec256);
4409   }
4410
4411   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
4412 }
4413
4414 static SDValue Insert256BitVector(SDValue Result, SDValue Vec, unsigned IdxVal,
4415                                   SelectionDAG &DAG, SDLoc dl) {
4416   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
4417   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
4418 }
4419
4420 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
4421 /// instructions. This is used because creating CONCAT_VECTOR nodes of
4422 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
4423 /// large BUILD_VECTORS.
4424 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
4425                                    unsigned NumElems, SelectionDAG &DAG,
4426                                    SDLoc dl) {
4427   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4428   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
4429 }
4430
4431 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
4432                                    unsigned NumElems, SelectionDAG &DAG,
4433                                    SDLoc dl) {
4434   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4435   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
4436 }
4437
4438 /// Returns a vector of specified type with all bits set.
4439 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4440 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4441 /// Then bitcast to their original type, ensuring they get CSE'd.
4442 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4443                              SDLoc dl) {
4444   assert(VT.isVector() && "Expected a vector type");
4445
4446   SDValue Cst = DAG.getConstant(~0U, dl, MVT::i32);
4447   SDValue Vec;
4448   if (VT.is256BitVector()) {
4449     if (HasInt256) { // AVX2
4450       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4451       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops);
4452     } else { // AVX
4453       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4454       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4455     }
4456   } else if (VT.is128BitVector()) {
4457     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4458   } else
4459     llvm_unreachable("Unexpected vector type");
4460
4461   return DAG.getBitcast(VT, Vec);
4462 }
4463
4464 /// Returns a vector_shuffle node for an unpackl operation.
4465 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4466                           SDValue V2) {
4467   unsigned NumElems = VT.getVectorNumElements();
4468   SmallVector<int, 8> Mask;
4469   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4470     Mask.push_back(i);
4471     Mask.push_back(i + NumElems);
4472   }
4473   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4474 }
4475
4476 /// Returns a vector_shuffle node for an unpackh operation.
4477 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4478                           SDValue V2) {
4479   unsigned NumElems = VT.getVectorNumElements();
4480   SmallVector<int, 8> Mask;
4481   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4482     Mask.push_back(i + Half);
4483     Mask.push_back(i + NumElems + Half);
4484   }
4485   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4486 }
4487
4488 /// Return a vector_shuffle of the specified vector of zero or undef vector.
4489 /// This produces a shuffle where the low element of V2 is swizzled into the
4490 /// zero/undef vector, landing at element Idx.
4491 /// This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4492 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4493                                            bool IsZero,
4494                                            const X86Subtarget *Subtarget,
4495                                            SelectionDAG &DAG) {
4496   MVT VT = V2.getSimpleValueType();
4497   SDValue V1 = IsZero
4498     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4499   unsigned NumElems = VT.getVectorNumElements();
4500   SmallVector<int, 16> MaskVec;
4501   for (unsigned i = 0; i != NumElems; ++i)
4502     // If this is the insertion idx, put the low elt of V2 here.
4503     MaskVec.push_back(i == Idx ? NumElems : i);
4504   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4505 }
4506
4507 /// Calculates the shuffle mask corresponding to the target-specific opcode.
4508 /// Returns true if the Mask could be calculated. Sets IsUnary to true if only
4509 /// uses one source. Note that this will set IsUnary for shuffles which use a
4510 /// single input multiple times, and in those cases it will
4511 /// adjust the mask to only have indices within that single input.
4512 /// FIXME: Add support for Decode*Mask functions that return SM_SentinelZero.
4513 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4514                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4515   unsigned NumElems = VT.getVectorNumElements();
4516   SDValue ImmN;
4517
4518   IsUnary = false;
4519   bool IsFakeUnary = false;
4520   switch(N->getOpcode()) {
4521   case X86ISD::BLENDI:
4522     ImmN = N->getOperand(N->getNumOperands()-1);
4523     DecodeBLENDMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4524     break;
4525   case X86ISD::SHUFP:
4526     ImmN = N->getOperand(N->getNumOperands()-1);
4527     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4528     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4529     break;
4530   case X86ISD::UNPCKH:
4531     DecodeUNPCKHMask(VT, Mask);
4532     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4533     break;
4534   case X86ISD::UNPCKL:
4535     DecodeUNPCKLMask(VT, Mask);
4536     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4537     break;
4538   case X86ISD::MOVHLPS:
4539     DecodeMOVHLPSMask(NumElems, Mask);
4540     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4541     break;
4542   case X86ISD::MOVLHPS:
4543     DecodeMOVLHPSMask(NumElems, Mask);
4544     IsUnary = IsFakeUnary = N->getOperand(0) == N->getOperand(1);
4545     break;
4546   case X86ISD::PALIGNR:
4547     ImmN = N->getOperand(N->getNumOperands()-1);
4548     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4549     break;
4550   case X86ISD::PSHUFD:
4551   case X86ISD::VPERMILPI:
4552     ImmN = N->getOperand(N->getNumOperands()-1);
4553     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4554     IsUnary = true;
4555     break;
4556   case X86ISD::PSHUFHW:
4557     ImmN = N->getOperand(N->getNumOperands()-1);
4558     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4559     IsUnary = true;
4560     break;
4561   case X86ISD::PSHUFLW:
4562     ImmN = N->getOperand(N->getNumOperands()-1);
4563     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4564     IsUnary = true;
4565     break;
4566   case X86ISD::PSHUFB: {
4567     IsUnary = true;
4568     SDValue MaskNode = N->getOperand(1);
4569     while (MaskNode->getOpcode() == ISD::BITCAST)
4570       MaskNode = MaskNode->getOperand(0);
4571
4572     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4573       // If we have a build-vector, then things are easy.
4574       EVT VT = MaskNode.getValueType();
4575       assert(VT.isVector() &&
4576              "Can't produce a non-vector with a build_vector!");
4577       if (!VT.isInteger())
4578         return false;
4579
4580       int NumBytesPerElement = VT.getVectorElementType().getSizeInBits() / 8;
4581
4582       SmallVector<uint64_t, 32> RawMask;
4583       for (int i = 0, e = MaskNode->getNumOperands(); i < e; ++i) {
4584         SDValue Op = MaskNode->getOperand(i);
4585         if (Op->getOpcode() == ISD::UNDEF) {
4586           RawMask.push_back((uint64_t)SM_SentinelUndef);
4587           continue;
4588         }
4589         auto *CN = dyn_cast<ConstantSDNode>(Op.getNode());
4590         if (!CN)
4591           return false;
4592         APInt MaskElement = CN->getAPIntValue();
4593
4594         // We now have to decode the element which could be any integer size and
4595         // extract each byte of it.
4596         for (int j = 0; j < NumBytesPerElement; ++j) {
4597           // Note that this is x86 and so always little endian: the low byte is
4598           // the first byte of the mask.
4599           RawMask.push_back(MaskElement.getLoBits(8).getZExtValue());
4600           MaskElement = MaskElement.lshr(8);
4601         }
4602       }
4603       DecodePSHUFBMask(RawMask, Mask);
4604       break;
4605     }
4606
4607     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4608     if (!MaskLoad)
4609       return false;
4610
4611     SDValue Ptr = MaskLoad->getBasePtr();
4612     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4613         Ptr->getOpcode() == X86ISD::WrapperRIP)
4614       Ptr = Ptr->getOperand(0);
4615
4616     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4617     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4618       return false;
4619
4620     if (auto *C = dyn_cast<Constant>(MaskCP->getConstVal())) {
4621       DecodePSHUFBMask(C, Mask);
4622       if (Mask.empty())
4623         return false;
4624       break;
4625     }
4626
4627     return false;
4628   }
4629   case X86ISD::VPERMI:
4630     ImmN = N->getOperand(N->getNumOperands()-1);
4631     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4632     IsUnary = true;
4633     break;
4634   case X86ISD::MOVSS:
4635   case X86ISD::MOVSD:
4636     DecodeScalarMoveMask(VT, /* IsLoad */ false, Mask);
4637     break;
4638   case X86ISD::VPERM2X128:
4639     ImmN = N->getOperand(N->getNumOperands()-1);
4640     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4641     if (Mask.empty()) return false;
4642     // Mask only contains negative index if an element is zero.
4643     if (std::any_of(Mask.begin(), Mask.end(),
4644                     [](int M){ return M == SM_SentinelZero; }))
4645       return false;
4646     break;
4647   case X86ISD::MOVSLDUP:
4648     DecodeMOVSLDUPMask(VT, Mask);
4649     IsUnary = true;
4650     break;
4651   case X86ISD::MOVSHDUP:
4652     DecodeMOVSHDUPMask(VT, Mask);
4653     IsUnary = true;
4654     break;
4655   case X86ISD::MOVDDUP:
4656     DecodeMOVDDUPMask(VT, Mask);
4657     IsUnary = true;
4658     break;
4659   case X86ISD::MOVLHPD:
4660   case X86ISD::MOVLPD:
4661   case X86ISD::MOVLPS:
4662     // Not yet implemented
4663     return false;
4664   case X86ISD::VPERMV: {
4665     IsUnary = true;
4666     SDValue MaskNode = N->getOperand(0);
4667     while (MaskNode->getOpcode() == ISD::BITCAST)
4668       MaskNode = MaskNode->getOperand(0);
4669
4670     unsigned MaskLoBits = Log2_64(VT.getVectorNumElements());
4671     SmallVector<uint64_t, 32> RawMask;
4672     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4673       // If we have a build-vector, then things are easy.
4674       assert(MaskNode.getValueType().isInteger() &&
4675              MaskNode.getValueType().getVectorNumElements() ==
4676              VT.getVectorNumElements());
4677
4678       for (unsigned i = 0; i < MaskNode->getNumOperands(); ++i) {
4679         SDValue Op = MaskNode->getOperand(i);
4680         if (Op->getOpcode() == ISD::UNDEF)
4681           RawMask.push_back((uint64_t)SM_SentinelUndef);
4682         else if (isa<ConstantSDNode>(Op)) {
4683           APInt MaskElement = cast<ConstantSDNode>(Op)->getAPIntValue();
4684           RawMask.push_back(MaskElement.getLoBits(MaskLoBits).getZExtValue());
4685         } else
4686           return false;
4687       }
4688       DecodeVPERMVMask(RawMask, Mask);
4689       break;
4690     }
4691     if (MaskNode->getOpcode() == X86ISD::VBROADCAST) {
4692       unsigned NumEltsInMask = MaskNode->getNumOperands();
4693       MaskNode = MaskNode->getOperand(0);
4694       auto *CN = dyn_cast<ConstantSDNode>(MaskNode);
4695       if (CN) {
4696         APInt MaskEltValue = CN->getAPIntValue();
4697         for (unsigned i = 0; i < NumEltsInMask; ++i)
4698           RawMask.push_back(MaskEltValue.getLoBits(MaskLoBits).getZExtValue());
4699         DecodeVPERMVMask(RawMask, Mask);
4700         break;
4701       }
4702       // It may be a scalar load
4703     }
4704
4705     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4706     if (!MaskLoad)
4707       return false;
4708
4709     SDValue Ptr = MaskLoad->getBasePtr();
4710     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4711         Ptr->getOpcode() == X86ISD::WrapperRIP)
4712       Ptr = Ptr->getOperand(0);
4713
4714     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4715     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4716       return false;
4717
4718     auto *C = dyn_cast<Constant>(MaskCP->getConstVal());
4719     if (C) {
4720       DecodeVPERMVMask(C, VT, Mask);
4721       if (Mask.empty())
4722         return false;
4723       break;
4724     }
4725     return false;
4726   }
4727   case X86ISD::VPERMV3: {
4728     IsUnary = false;
4729     SDValue MaskNode = N->getOperand(1);
4730     while (MaskNode->getOpcode() == ISD::BITCAST)
4731       MaskNode = MaskNode->getOperand(1);
4732
4733     if (MaskNode->getOpcode() == ISD::BUILD_VECTOR) {
4734       // If we have a build-vector, then things are easy.
4735       assert(MaskNode.getValueType().isInteger() &&
4736              MaskNode.getValueType().getVectorNumElements() ==
4737              VT.getVectorNumElements());
4738
4739       SmallVector<uint64_t, 32> RawMask;
4740       unsigned MaskLoBits = Log2_64(VT.getVectorNumElements()*2);
4741
4742       for (unsigned i = 0; i < MaskNode->getNumOperands(); ++i) {
4743         SDValue Op = MaskNode->getOperand(i);
4744         if (Op->getOpcode() == ISD::UNDEF)
4745           RawMask.push_back((uint64_t)SM_SentinelUndef);
4746         else {
4747           auto *CN = dyn_cast<ConstantSDNode>(Op.getNode());
4748           if (!CN)
4749             return false;
4750           APInt MaskElement = CN->getAPIntValue();
4751           RawMask.push_back(MaskElement.getLoBits(MaskLoBits).getZExtValue());
4752         }
4753       }
4754       DecodeVPERMV3Mask(RawMask, Mask);
4755       break;
4756     }
4757
4758     auto *MaskLoad = dyn_cast<LoadSDNode>(MaskNode);
4759     if (!MaskLoad)
4760       return false;
4761
4762     SDValue Ptr = MaskLoad->getBasePtr();
4763     if (Ptr->getOpcode() == X86ISD::Wrapper ||
4764         Ptr->getOpcode() == X86ISD::WrapperRIP)
4765       Ptr = Ptr->getOperand(0);
4766
4767     auto *MaskCP = dyn_cast<ConstantPoolSDNode>(Ptr);
4768     if (!MaskCP || MaskCP->isMachineConstantPoolEntry())
4769       return false;
4770
4771     auto *C = dyn_cast<Constant>(MaskCP->getConstVal());
4772     if (C) {
4773       DecodeVPERMV3Mask(C, VT, Mask);
4774       if (Mask.empty())
4775         return false;
4776       break;
4777     }
4778     return false;
4779   }
4780   default: llvm_unreachable("unknown target shuffle node");
4781   }
4782
4783   // If we have a fake unary shuffle, the shuffle mask is spread across two
4784   // inputs that are actually the same node. Re-map the mask to always point
4785   // into the first input.
4786   if (IsFakeUnary)
4787     for (int &M : Mask)
4788       if (M >= (int)Mask.size())
4789         M -= Mask.size();
4790
4791   return true;
4792 }
4793
4794 /// Returns the scalar element that will make up the ith
4795 /// element of the result of the vector shuffle.
4796 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4797                                    unsigned Depth) {
4798   if (Depth == 6)
4799     return SDValue();  // Limit search depth.
4800
4801   SDValue V = SDValue(N, 0);
4802   EVT VT = V.getValueType();
4803   unsigned Opcode = V.getOpcode();
4804
4805   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4806   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4807     int Elt = SV->getMaskElt(Index);
4808
4809     if (Elt < 0)
4810       return DAG.getUNDEF(VT.getVectorElementType());
4811
4812     unsigned NumElems = VT.getVectorNumElements();
4813     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4814                                          : SV->getOperand(1);
4815     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
4816   }
4817
4818   // Recurse into target specific vector shuffles to find scalars.
4819   if (isTargetShuffle(Opcode)) {
4820     MVT ShufVT = V.getSimpleValueType();
4821     unsigned NumElems = ShufVT.getVectorNumElements();
4822     SmallVector<int, 16> ShuffleMask;
4823     bool IsUnary;
4824
4825     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
4826       return SDValue();
4827
4828     int Elt = ShuffleMask[Index];
4829     if (Elt < 0)
4830       return DAG.getUNDEF(ShufVT.getVectorElementType());
4831
4832     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
4833                                          : N->getOperand(1);
4834     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
4835                                Depth+1);
4836   }
4837
4838   // Actual nodes that may contain scalar elements
4839   if (Opcode == ISD::BITCAST) {
4840     V = V.getOperand(0);
4841     EVT SrcVT = V.getValueType();
4842     unsigned NumElems = VT.getVectorNumElements();
4843
4844     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4845       return SDValue();
4846   }
4847
4848   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4849     return (Index == 0) ? V.getOperand(0)
4850                         : DAG.getUNDEF(VT.getVectorElementType());
4851
4852   if (V.getOpcode() == ISD::BUILD_VECTOR)
4853     return V.getOperand(Index);
4854
4855   return SDValue();
4856 }
4857
4858 /// Custom lower build_vector of v16i8.
4859 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4860                                        unsigned NumNonZero, unsigned NumZero,
4861                                        SelectionDAG &DAG,
4862                                        const X86Subtarget* Subtarget,
4863                                        const TargetLowering &TLI) {
4864   if (NumNonZero > 8)
4865     return SDValue();
4866
4867   SDLoc dl(Op);
4868   SDValue V;
4869   bool First = true;
4870
4871   // SSE4.1 - use PINSRB to insert each byte directly.
4872   if (Subtarget->hasSSE41()) {
4873     for (unsigned i = 0; i < 16; ++i) {
4874       bool isNonZero = (NonZeros & (1 << i)) != 0;
4875       if (isNonZero) {
4876         if (First) {
4877           if (NumZero)
4878             V = getZeroVector(MVT::v16i8, Subtarget, DAG, dl);
4879           else
4880             V = DAG.getUNDEF(MVT::v16i8);
4881           First = false;
4882         }
4883         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4884                         MVT::v16i8, V, Op.getOperand(i),
4885                         DAG.getIntPtrConstant(i, dl));
4886       }
4887     }
4888
4889     return V;
4890   }
4891
4892   // Pre-SSE4.1 - merge byte pairs and insert with PINSRW.
4893   for (unsigned i = 0; i < 16; ++i) {
4894     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4895     if (ThisIsNonZero && First) {
4896       if (NumZero)
4897         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4898       else
4899         V = DAG.getUNDEF(MVT::v8i16);
4900       First = false;
4901     }
4902
4903     if ((i & 1) != 0) {
4904       SDValue ThisElt, LastElt;
4905       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4906       if (LastIsNonZero) {
4907         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4908                               MVT::i16, Op.getOperand(i-1));
4909       }
4910       if (ThisIsNonZero) {
4911         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4912         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4913                               ThisElt, DAG.getConstant(8, dl, MVT::i8));
4914         if (LastIsNonZero)
4915           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4916       } else
4917         ThisElt = LastElt;
4918
4919       if (ThisElt.getNode())
4920         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
4921                         DAG.getIntPtrConstant(i/2, dl));
4922     }
4923   }
4924
4925   return DAG.getBitcast(MVT::v16i8, V);
4926 }
4927
4928 /// Custom lower build_vector of v8i16.
4929 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
4930                                      unsigned NumNonZero, unsigned NumZero,
4931                                      SelectionDAG &DAG,
4932                                      const X86Subtarget* Subtarget,
4933                                      const TargetLowering &TLI) {
4934   if (NumNonZero > 4)
4935     return SDValue();
4936
4937   SDLoc dl(Op);
4938   SDValue V;
4939   bool First = true;
4940   for (unsigned i = 0; i < 8; ++i) {
4941     bool isNonZero = (NonZeros & (1 << i)) != 0;
4942     if (isNonZero) {
4943       if (First) {
4944         if (NumZero)
4945           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4946         else
4947           V = DAG.getUNDEF(MVT::v8i16);
4948         First = false;
4949       }
4950       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4951                       MVT::v8i16, V, Op.getOperand(i),
4952                       DAG.getIntPtrConstant(i, dl));
4953     }
4954   }
4955
4956   return V;
4957 }
4958
4959 /// Custom lower build_vector of v4i32 or v4f32.
4960 static SDValue LowerBuildVectorv4x32(SDValue Op, SelectionDAG &DAG,
4961                                      const X86Subtarget *Subtarget,
4962                                      const TargetLowering &TLI) {
4963   // Find all zeroable elements.
4964   std::bitset<4> Zeroable;
4965   for (int i=0; i < 4; ++i) {
4966     SDValue Elt = Op->getOperand(i);
4967     Zeroable[i] = (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt));
4968   }
4969   assert(Zeroable.size() - Zeroable.count() > 1 &&
4970          "We expect at least two non-zero elements!");
4971
4972   // We only know how to deal with build_vector nodes where elements are either
4973   // zeroable or extract_vector_elt with constant index.
4974   SDValue FirstNonZero;
4975   unsigned FirstNonZeroIdx;
4976   for (unsigned i=0; i < 4; ++i) {
4977     if (Zeroable[i])
4978       continue;
4979     SDValue Elt = Op->getOperand(i);
4980     if (Elt.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
4981         !isa<ConstantSDNode>(Elt.getOperand(1)))
4982       return SDValue();
4983     // Make sure that this node is extracting from a 128-bit vector.
4984     MVT VT = Elt.getOperand(0).getSimpleValueType();
4985     if (!VT.is128BitVector())
4986       return SDValue();
4987     if (!FirstNonZero.getNode()) {
4988       FirstNonZero = Elt;
4989       FirstNonZeroIdx = i;
4990     }
4991   }
4992
4993   assert(FirstNonZero.getNode() && "Unexpected build vector of all zeros!");
4994   SDValue V1 = FirstNonZero.getOperand(0);
4995   MVT VT = V1.getSimpleValueType();
4996
4997   // See if this build_vector can be lowered as a blend with zero.
4998   SDValue Elt;
4999   unsigned EltMaskIdx, EltIdx;
5000   int Mask[4];
5001   for (EltIdx = 0; EltIdx < 4; ++EltIdx) {
5002     if (Zeroable[EltIdx]) {
5003       // The zero vector will be on the right hand side.
5004       Mask[EltIdx] = EltIdx+4;
5005       continue;
5006     }
5007
5008     Elt = Op->getOperand(EltIdx);
5009     // By construction, Elt is a EXTRACT_VECTOR_ELT with constant index.
5010     EltMaskIdx = cast<ConstantSDNode>(Elt.getOperand(1))->getZExtValue();
5011     if (Elt.getOperand(0) != V1 || EltMaskIdx != EltIdx)
5012       break;
5013     Mask[EltIdx] = EltIdx;
5014   }
5015
5016   if (EltIdx == 4) {
5017     // Let the shuffle legalizer deal with blend operations.
5018     SDValue VZero = getZeroVector(VT, Subtarget, DAG, SDLoc(Op));
5019     if (V1.getSimpleValueType() != VT)
5020       V1 = DAG.getNode(ISD::BITCAST, SDLoc(V1), VT, V1);
5021     return DAG.getVectorShuffle(VT, SDLoc(V1), V1, VZero, &Mask[0]);
5022   }
5023
5024   // See if we can lower this build_vector to a INSERTPS.
5025   if (!Subtarget->hasSSE41())
5026     return SDValue();
5027
5028   SDValue V2 = Elt.getOperand(0);
5029   if (Elt == FirstNonZero && EltIdx == FirstNonZeroIdx)
5030     V1 = SDValue();
5031
5032   bool CanFold = true;
5033   for (unsigned i = EltIdx + 1; i < 4 && CanFold; ++i) {
5034     if (Zeroable[i])
5035       continue;
5036
5037     SDValue Current = Op->getOperand(i);
5038     SDValue SrcVector = Current->getOperand(0);
5039     if (!V1.getNode())
5040       V1 = SrcVector;
5041     CanFold = SrcVector == V1 &&
5042       cast<ConstantSDNode>(Current.getOperand(1))->getZExtValue() == i;
5043   }
5044
5045   if (!CanFold)
5046     return SDValue();
5047
5048   assert(V1.getNode() && "Expected at least two non-zero elements!");
5049   if (V1.getSimpleValueType() != MVT::v4f32)
5050     V1 = DAG.getNode(ISD::BITCAST, SDLoc(V1), MVT::v4f32, V1);
5051   if (V2.getSimpleValueType() != MVT::v4f32)
5052     V2 = DAG.getNode(ISD::BITCAST, SDLoc(V2), MVT::v4f32, V2);
5053
5054   // Ok, we can emit an INSERTPS instruction.
5055   unsigned ZMask = Zeroable.to_ulong();
5056
5057   unsigned InsertPSMask = EltMaskIdx << 6 | EltIdx << 4 | ZMask;
5058   assert((InsertPSMask & ~0xFFu) == 0 && "Invalid mask!");
5059   SDLoc DL(Op);
5060   SDValue Result = DAG.getNode(X86ISD::INSERTPS, DL, MVT::v4f32, V1, V2,
5061                                DAG.getIntPtrConstant(InsertPSMask, DL));
5062   return DAG.getBitcast(VT, Result);
5063 }
5064
5065 /// Return a vector logical shift node.
5066 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5067                          unsigned NumBits, SelectionDAG &DAG,
5068                          const TargetLowering &TLI, SDLoc dl) {
5069   assert(VT.is128BitVector() && "Unknown type for VShift");
5070   MVT ShVT = MVT::v2i64;
5071   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5072   SrcOp = DAG.getBitcast(ShVT, SrcOp);
5073   MVT ScalarShiftTy = TLI.getScalarShiftAmountTy(DAG.getDataLayout(), VT);
5074   assert(NumBits % 8 == 0 && "Only support byte sized shifts");
5075   SDValue ShiftVal = DAG.getConstant(NumBits/8, dl, ScalarShiftTy);
5076   return DAG.getBitcast(VT, DAG.getNode(Opc, dl, ShVT, SrcOp, ShiftVal));
5077 }
5078
5079 static SDValue
5080 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5081
5082   // Check if the scalar load can be widened into a vector load. And if
5083   // the address is "base + cst" see if the cst can be "absorbed" into
5084   // the shuffle mask.
5085   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5086     SDValue Ptr = LD->getBasePtr();
5087     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5088       return SDValue();
5089     EVT PVT = LD->getValueType(0);
5090     if (PVT != MVT::i32 && PVT != MVT::f32)
5091       return SDValue();
5092
5093     int FI = -1;
5094     int64_t Offset = 0;
5095     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5096       FI = FINode->getIndex();
5097       Offset = 0;
5098     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5099                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5100       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5101       Offset = Ptr.getConstantOperandVal(1);
5102       Ptr = Ptr.getOperand(0);
5103     } else {
5104       return SDValue();
5105     }
5106
5107     // FIXME: 256-bit vector instructions don't require a strict alignment,
5108     // improve this code to support it better.
5109     unsigned RequiredAlign = VT.getSizeInBits()/8;
5110     SDValue Chain = LD->getChain();
5111     // Make sure the stack object alignment is at least 16 or 32.
5112     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5113     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5114       if (MFI->isFixedObjectIndex(FI)) {
5115         // Can't change the alignment. FIXME: It's possible to compute
5116         // the exact stack offset and reference FI + adjust offset instead.
5117         // If someone *really* cares about this. That's the way to implement it.
5118         return SDValue();
5119       } else {
5120         MFI->setObjectAlignment(FI, RequiredAlign);
5121       }
5122     }
5123
5124     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5125     // Ptr + (Offset & ~15).
5126     if (Offset < 0)
5127       return SDValue();
5128     if ((Offset % RequiredAlign) & 3)
5129       return SDValue();
5130     int64_t StartOffset = Offset & ~int64_t(RequiredAlign - 1);
5131     if (StartOffset) {
5132       SDLoc DL(Ptr);
5133       Ptr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr,
5134                         DAG.getConstant(StartOffset, DL, Ptr.getValueType()));
5135     }
5136
5137     int EltNo = (Offset - StartOffset) >> 2;
5138     unsigned NumElems = VT.getVectorNumElements();
5139
5140     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5141     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5142                              LD->getPointerInfo().getWithOffset(StartOffset),
5143                              false, false, false, 0);
5144
5145     SmallVector<int, 8> Mask(NumElems, EltNo);
5146
5147     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5148   }
5149
5150   return SDValue();
5151 }
5152
5153 /// Given the initializing elements 'Elts' of a vector of type 'VT', see if the
5154 /// elements can be replaced by a single large load which has the same value as
5155 /// a build_vector or insert_subvector whose loaded operands are 'Elts'.
5156 ///
5157 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5158 ///
5159 /// FIXME: we'd also like to handle the case where the last elements are zero
5160 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5161 /// There's even a handy isZeroNode for that purpose.
5162 static SDValue EltsFromConsecutiveLoads(EVT VT, ArrayRef<SDValue> Elts,
5163                                         SDLoc &DL, SelectionDAG &DAG,
5164                                         bool isAfterLegalize) {
5165   unsigned NumElems = Elts.size();
5166
5167   LoadSDNode *LDBase = nullptr;
5168   unsigned LastLoadedElt = -1U;
5169
5170   // For each element in the initializer, see if we've found a load or an undef.
5171   // If we don't find an initial load element, or later load elements are
5172   // non-consecutive, bail out.
5173   for (unsigned i = 0; i < NumElems; ++i) {
5174     SDValue Elt = Elts[i];
5175     // Look through a bitcast.
5176     if (Elt.getNode() && Elt.getOpcode() == ISD::BITCAST)
5177       Elt = Elt.getOperand(0);
5178     if (!Elt.getNode() ||
5179         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5180       return SDValue();
5181     if (!LDBase) {
5182       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5183         return SDValue();
5184       LDBase = cast<LoadSDNode>(Elt.getNode());
5185       LastLoadedElt = i;
5186       continue;
5187     }
5188     if (Elt.getOpcode() == ISD::UNDEF)
5189       continue;
5190
5191     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5192     EVT LdVT = Elt.getValueType();
5193     // Each loaded element must be the correct fractional portion of the
5194     // requested vector load.
5195     if (LdVT.getSizeInBits() != VT.getSizeInBits() / NumElems)
5196       return SDValue();
5197     if (!DAG.isConsecutiveLoad(LD, LDBase, LdVT.getSizeInBits() / 8, i))
5198       return SDValue();
5199     LastLoadedElt = i;
5200   }
5201
5202   // If we have found an entire vector of loads and undefs, then return a large
5203   // load of the entire vector width starting at the base pointer.  If we found
5204   // consecutive loads for the low half, generate a vzext_load node.
5205   if (LastLoadedElt == NumElems - 1) {
5206     assert(LDBase && "Did not find base load for merging consecutive loads");
5207     EVT EltVT = LDBase->getValueType(0);
5208     // Ensure that the input vector size for the merged loads matches the
5209     // cumulative size of the input elements.
5210     if (VT.getSizeInBits() != EltVT.getSizeInBits() * NumElems)
5211       return SDValue();
5212
5213     if (isAfterLegalize &&
5214         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5215       return SDValue();
5216
5217     SDValue NewLd = SDValue();
5218
5219     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5220                         LDBase->getPointerInfo(), LDBase->isVolatile(),
5221                         LDBase->isNonTemporal(), LDBase->isInvariant(),
5222                         LDBase->getAlignment());
5223
5224     if (LDBase->hasAnyUseOfValue(1)) {
5225       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5226                                      SDValue(LDBase, 1),
5227                                      SDValue(NewLd.getNode(), 1));
5228       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5229       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5230                              SDValue(NewLd.getNode(), 1));
5231     }
5232
5233     return NewLd;
5234   }
5235
5236   //TODO: The code below fires only for for loading the low v2i32 / v2f32
5237   //of a v4i32 / v4f32. It's probably worth generalizing.
5238   EVT EltVT = VT.getVectorElementType();
5239   if (NumElems == 4 && LastLoadedElt == 1 && (EltVT.getSizeInBits() == 32) &&
5240       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5241     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5242     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5243     SDValue ResNode =
5244         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, MVT::i64,
5245                                 LDBase->getPointerInfo(),
5246                                 LDBase->getAlignment(),
5247                                 false/*isVolatile*/, true/*ReadMem*/,
5248                                 false/*WriteMem*/);
5249
5250     // Make sure the newly-created LOAD is in the same position as LDBase in
5251     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5252     // update uses of LDBase's output chain to use the TokenFactor.
5253     if (LDBase->hasAnyUseOfValue(1)) {
5254       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5255                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5256       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5257       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5258                              SDValue(ResNode.getNode(), 1));
5259     }
5260
5261     return DAG.getBitcast(VT, ResNode);
5262   }
5263   return SDValue();
5264 }
5265
5266 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5267 /// to generate a splat value for the following cases:
5268 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5269 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5270 /// a scalar load, or a constant.
5271 /// The VBROADCAST node is returned when a pattern is found,
5272 /// or SDValue() otherwise.
5273 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5274                                     SelectionDAG &DAG) {
5275   // VBROADCAST requires AVX.
5276   // TODO: Splats could be generated for non-AVX CPUs using SSE
5277   // instructions, but there's less potential gain for only 128-bit vectors.
5278   if (!Subtarget->hasAVX())
5279     return SDValue();
5280
5281   MVT VT = Op.getSimpleValueType();
5282   SDLoc dl(Op);
5283
5284   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5285          "Unsupported vector type for broadcast.");
5286
5287   SDValue Ld;
5288   bool ConstSplatVal;
5289
5290   switch (Op.getOpcode()) {
5291     default:
5292       // Unknown pattern found.
5293       return SDValue();
5294
5295     case ISD::BUILD_VECTOR: {
5296       auto *BVOp = cast<BuildVectorSDNode>(Op.getNode());
5297       BitVector UndefElements;
5298       SDValue Splat = BVOp->getSplatValue(&UndefElements);
5299
5300       // We need a splat of a single value to use broadcast, and it doesn't
5301       // make any sense if the value is only in one element of the vector.
5302       if (!Splat || (VT.getVectorNumElements() - UndefElements.count()) <= 1)
5303         return SDValue();
5304
5305       Ld = Splat;
5306       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5307                        Ld.getOpcode() == ISD::ConstantFP);
5308
5309       // Make sure that all of the users of a non-constant load are from the
5310       // BUILD_VECTOR node.
5311       if (!ConstSplatVal && !BVOp->isOnlyUserOf(Ld.getNode()))
5312         return SDValue();
5313       break;
5314     }
5315
5316     case ISD::VECTOR_SHUFFLE: {
5317       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5318
5319       // Shuffles must have a splat mask where the first element is
5320       // broadcasted.
5321       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5322         return SDValue();
5323
5324       SDValue Sc = Op.getOperand(0);
5325       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5326           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5327
5328         if (!Subtarget->hasInt256())
5329           return SDValue();
5330
5331         // Use the register form of the broadcast instruction available on AVX2.
5332         if (VT.getSizeInBits() >= 256)
5333           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5334         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5335       }
5336
5337       Ld = Sc.getOperand(0);
5338       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5339                        Ld.getOpcode() == ISD::ConstantFP);
5340
5341       // The scalar_to_vector node and the suspected
5342       // load node must have exactly one user.
5343       // Constants may have multiple users.
5344
5345       // AVX-512 has register version of the broadcast
5346       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5347         Ld.getValueType().getSizeInBits() >= 32;
5348       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5349           !hasRegVer))
5350         return SDValue();
5351       break;
5352     }
5353   }
5354
5355   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5356   bool IsGE256 = (VT.getSizeInBits() >= 256);
5357
5358   // When optimizing for size, generate up to 5 extra bytes for a broadcast
5359   // instruction to save 8 or more bytes of constant pool data.
5360   // TODO: If multiple splats are generated to load the same constant,
5361   // it may be detrimental to overall size. There needs to be a way to detect
5362   // that condition to know if this is truly a size win.
5363   bool OptForSize = DAG.getMachineFunction().getFunction()->optForSize();
5364
5365   // Handle broadcasting a single constant scalar from the constant pool
5366   // into a vector.
5367   // On Sandybridge (no AVX2), it is still better to load a constant vector
5368   // from the constant pool and not to broadcast it from a scalar.
5369   // But override that restriction when optimizing for size.
5370   // TODO: Check if splatting is recommended for other AVX-capable CPUs.
5371   if (ConstSplatVal && (Subtarget->hasAVX2() || OptForSize)) {
5372     EVT CVT = Ld.getValueType();
5373     assert(!CVT.isVector() && "Must not broadcast a vector type");
5374
5375     // Splat f32, i32, v4f64, v4i64 in all cases with AVX2.
5376     // For size optimization, also splat v2f64 and v2i64, and for size opt
5377     // with AVX2, also splat i8 and i16.
5378     // With pattern matching, the VBROADCAST node may become a VMOVDDUP.
5379     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64) ||
5380         (OptForSize && (ScalarSize == 64 || Subtarget->hasAVX2()))) {
5381       const Constant *C = nullptr;
5382       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5383         C = CI->getConstantIntValue();
5384       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5385         C = CF->getConstantFPValue();
5386
5387       assert(C && "Invalid constant type");
5388
5389       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5390       SDValue CP =
5391           DAG.getConstantPool(C, TLI.getPointerTy(DAG.getDataLayout()));
5392       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5393       Ld = DAG.getLoad(
5394           CVT, dl, DAG.getEntryNode(), CP,
5395           MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
5396           false, false, Alignment);
5397
5398       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5399     }
5400   }
5401
5402   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5403
5404   // Handle AVX2 in-register broadcasts.
5405   if (!IsLoad && Subtarget->hasInt256() &&
5406       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5407     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5408
5409   // The scalar source must be a normal load.
5410   if (!IsLoad)
5411     return SDValue();
5412
5413   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64) ||
5414       (Subtarget->hasVLX() && ScalarSize == 64))
5415     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5416
5417   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5418   // double since there is no vbroadcastsd xmm
5419   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5420     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5421       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5422   }
5423
5424   // Unsupported broadcast.
5425   return SDValue();
5426 }
5427
5428 /// \brief For an EXTRACT_VECTOR_ELT with a constant index return the real
5429 /// underlying vector and index.
5430 ///
5431 /// Modifies \p ExtractedFromVec to the real vector and returns the real
5432 /// index.
5433 static int getUnderlyingExtractedFromVec(SDValue &ExtractedFromVec,
5434                                          SDValue ExtIdx) {
5435   int Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5436   if (!isa<ShuffleVectorSDNode>(ExtractedFromVec))
5437     return Idx;
5438
5439   // For 256-bit vectors, LowerEXTRACT_VECTOR_ELT_SSE4 may have already
5440   // lowered this:
5441   //   (extract_vector_elt (v8f32 %vreg1), Constant<6>)
5442   // to:
5443   //   (extract_vector_elt (vector_shuffle<2,u,u,u>
5444   //                           (extract_subvector (v8f32 %vreg0), Constant<4>),
5445   //                           undef)
5446   //                       Constant<0>)
5447   // In this case the vector is the extract_subvector expression and the index
5448   // is 2, as specified by the shuffle.
5449   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(ExtractedFromVec);
5450   SDValue ShuffleVec = SVOp->getOperand(0);
5451   MVT ShuffleVecVT = ShuffleVec.getSimpleValueType();
5452   assert(ShuffleVecVT.getVectorElementType() ==
5453          ExtractedFromVec.getSimpleValueType().getVectorElementType());
5454
5455   int ShuffleIdx = SVOp->getMaskElt(Idx);
5456   if (isUndefOrInRange(ShuffleIdx, 0, ShuffleVecVT.getVectorNumElements())) {
5457     ExtractedFromVec = ShuffleVec;
5458     return ShuffleIdx;
5459   }
5460   return Idx;
5461 }
5462
5463 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5464   MVT VT = Op.getSimpleValueType();
5465
5466   // Skip if insert_vec_elt is not supported.
5467   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5468   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5469     return SDValue();
5470
5471   SDLoc DL(Op);
5472   unsigned NumElems = Op.getNumOperands();
5473
5474   SDValue VecIn1;
5475   SDValue VecIn2;
5476   SmallVector<unsigned, 4> InsertIndices;
5477   SmallVector<int, 8> Mask(NumElems, -1);
5478
5479   for (unsigned i = 0; i != NumElems; ++i) {
5480     unsigned Opc = Op.getOperand(i).getOpcode();
5481
5482     if (Opc == ISD::UNDEF)
5483       continue;
5484
5485     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5486       // Quit if more than 1 elements need inserting.
5487       if (InsertIndices.size() > 1)
5488         return SDValue();
5489
5490       InsertIndices.push_back(i);
5491       continue;
5492     }
5493
5494     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5495     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5496     // Quit if non-constant index.
5497     if (!isa<ConstantSDNode>(ExtIdx))
5498       return SDValue();
5499     int Idx = getUnderlyingExtractedFromVec(ExtractedFromVec, ExtIdx);
5500
5501     // Quit if extracted from vector of different type.
5502     if (ExtractedFromVec.getValueType() != VT)
5503       return SDValue();
5504
5505     if (!VecIn1.getNode())
5506       VecIn1 = ExtractedFromVec;
5507     else if (VecIn1 != ExtractedFromVec) {
5508       if (!VecIn2.getNode())
5509         VecIn2 = ExtractedFromVec;
5510       else if (VecIn2 != ExtractedFromVec)
5511         // Quit if more than 2 vectors to shuffle
5512         return SDValue();
5513     }
5514
5515     if (ExtractedFromVec == VecIn1)
5516       Mask[i] = Idx;
5517     else if (ExtractedFromVec == VecIn2)
5518       Mask[i] = Idx + NumElems;
5519   }
5520
5521   if (!VecIn1.getNode())
5522     return SDValue();
5523
5524   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5525   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5526   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5527     unsigned Idx = InsertIndices[i];
5528     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5529                      DAG.getIntPtrConstant(Idx, DL));
5530   }
5531
5532   return NV;
5533 }
5534
5535 static SDValue ConvertI1VectorToInteger(SDValue Op, SelectionDAG &DAG) {
5536   assert(ISD::isBuildVectorOfConstantSDNodes(Op.getNode()) &&
5537          Op.getScalarValueSizeInBits() == 1 &&
5538          "Can not convert non-constant vector");
5539   uint64_t Immediate = 0;
5540   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5541     SDValue In = Op.getOperand(idx);
5542     if (In.getOpcode() != ISD::UNDEF)
5543       Immediate |= cast<ConstantSDNode>(In)->getZExtValue() << idx;
5544   }
5545   SDLoc dl(Op);
5546   MVT VT =
5547    MVT::getIntegerVT(std::max((int)Op.getValueType().getSizeInBits(), 8));
5548   return DAG.getConstant(Immediate, dl, VT);
5549 }
5550 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5551 SDValue
5552 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5553
5554   MVT VT = Op.getSimpleValueType();
5555   assert((VT.getVectorElementType() == MVT::i1) &&
5556          "Unexpected type in LowerBUILD_VECTORvXi1!");
5557
5558   SDLoc dl(Op);
5559   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5560     SDValue Cst = DAG.getTargetConstant(0, dl, MVT::i1);
5561     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5562     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5563   }
5564
5565   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5566     SDValue Cst = DAG.getTargetConstant(1, dl, MVT::i1);
5567     SmallVector<SDValue, 16> Ops(VT.getVectorNumElements(), Cst);
5568     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5569   }
5570
5571   if (ISD::isBuildVectorOfConstantSDNodes(Op.getNode())) {
5572     SDValue Imm = ConvertI1VectorToInteger(Op, DAG);
5573     if (Imm.getValueSizeInBits() == VT.getSizeInBits())
5574       return DAG.getBitcast(VT, Imm);
5575     SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
5576     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, ExtVec,
5577                         DAG.getIntPtrConstant(0, dl));
5578   }
5579
5580   // Vector has one or more non-const elements
5581   uint64_t Immediate = 0;
5582   SmallVector<unsigned, 16> NonConstIdx;
5583   bool IsSplat = true;
5584   bool HasConstElts = false;
5585   int SplatIdx = -1;
5586   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5587     SDValue In = Op.getOperand(idx);
5588     if (In.getOpcode() == ISD::UNDEF)
5589       continue;
5590     if (!isa<ConstantSDNode>(In))
5591       NonConstIdx.push_back(idx);
5592     else {
5593       Immediate |= cast<ConstantSDNode>(In)->getZExtValue() << idx;
5594       HasConstElts = true;
5595     }
5596     if (SplatIdx == -1)
5597       SplatIdx = idx;
5598     else if (In != Op.getOperand(SplatIdx))
5599       IsSplat = false;
5600   }
5601
5602   // for splat use " (select i1 splat_elt, all-ones, all-zeroes)"
5603   if (IsSplat)
5604     return DAG.getNode(ISD::SELECT, dl, VT, Op.getOperand(SplatIdx),
5605                        DAG.getConstant(1, dl, VT),
5606                        DAG.getConstant(0, dl, VT));
5607
5608   // insert elements one by one
5609   SDValue DstVec;
5610   SDValue Imm;
5611   if (Immediate) {
5612     MVT ImmVT = MVT::getIntegerVT(std::max((int)VT.getSizeInBits(), 8));
5613     Imm = DAG.getConstant(Immediate, dl, ImmVT);
5614   }
5615   else if (HasConstElts)
5616     Imm = DAG.getConstant(0, dl, VT);
5617   else
5618     Imm = DAG.getUNDEF(VT);
5619   if (Imm.getValueSizeInBits() == VT.getSizeInBits())
5620     DstVec = DAG.getBitcast(VT, Imm);
5621   else {
5622     SDValue ExtVec = DAG.getBitcast(MVT::v8i1, Imm);
5623     DstVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, ExtVec,
5624                          DAG.getIntPtrConstant(0, dl));
5625   }
5626
5627   for (unsigned i = 0; i < NonConstIdx.size(); ++i) {
5628     unsigned InsertIdx = NonConstIdx[i];
5629     DstVec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
5630                          Op.getOperand(InsertIdx),
5631                          DAG.getIntPtrConstant(InsertIdx, dl));
5632   }
5633   return DstVec;
5634 }
5635
5636 /// \brief Return true if \p N implements a horizontal binop and return the
5637 /// operands for the horizontal binop into V0 and V1.
5638 ///
5639 /// This is a helper function of LowerToHorizontalOp().
5640 /// This function checks that the build_vector \p N in input implements a
5641 /// horizontal operation. Parameter \p Opcode defines the kind of horizontal
5642 /// operation to match.
5643 /// For example, if \p Opcode is equal to ISD::ADD, then this function
5644 /// checks if \p N implements a horizontal arithmetic add; if instead \p Opcode
5645 /// is equal to ISD::SUB, then this function checks if this is a horizontal
5646 /// arithmetic sub.
5647 ///
5648 /// This function only analyzes elements of \p N whose indices are
5649 /// in range [BaseIdx, LastIdx).
5650 static bool isHorizontalBinOp(const BuildVectorSDNode *N, unsigned Opcode,
5651                               SelectionDAG &DAG,
5652                               unsigned BaseIdx, unsigned LastIdx,
5653                               SDValue &V0, SDValue &V1) {
5654   EVT VT = N->getValueType(0);
5655
5656   assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!");
5657   assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx &&
5658          "Invalid Vector in input!");
5659
5660   bool IsCommutable = (Opcode == ISD::ADD || Opcode == ISD::FADD);
5661   bool CanFold = true;
5662   unsigned ExpectedVExtractIdx = BaseIdx;
5663   unsigned NumElts = LastIdx - BaseIdx;
5664   V0 = DAG.getUNDEF(VT);
5665   V1 = DAG.getUNDEF(VT);
5666
5667   // Check if N implements a horizontal binop.
5668   for (unsigned i = 0, e = NumElts; i != e && CanFold; ++i) {
5669     SDValue Op = N->getOperand(i + BaseIdx);
5670
5671     // Skip UNDEFs.
5672     if (Op->getOpcode() == ISD::UNDEF) {
5673       // Update the expected vector extract index.
5674       if (i * 2 == NumElts)
5675         ExpectedVExtractIdx = BaseIdx;
5676       ExpectedVExtractIdx += 2;
5677       continue;
5678     }
5679
5680     CanFold = Op->getOpcode() == Opcode && Op->hasOneUse();
5681
5682     if (!CanFold)
5683       break;
5684
5685     SDValue Op0 = Op.getOperand(0);
5686     SDValue Op1 = Op.getOperand(1);
5687
5688     // Try to match the following pattern:
5689     // (BINOP (extract_vector_elt A, I), (extract_vector_elt A, I+1))
5690     CanFold = (Op0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5691         Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5692         Op0.getOperand(0) == Op1.getOperand(0) &&
5693         isa<ConstantSDNode>(Op0.getOperand(1)) &&
5694         isa<ConstantSDNode>(Op1.getOperand(1)));
5695     if (!CanFold)
5696       break;
5697
5698     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
5699     unsigned I1 = cast<ConstantSDNode>(Op1.getOperand(1))->getZExtValue();
5700
5701     if (i * 2 < NumElts) {
5702       if (V0.getOpcode() == ISD::UNDEF) {
5703         V0 = Op0.getOperand(0);
5704         if (V0.getValueType() != VT)
5705           return false;
5706       }
5707     } else {
5708       if (V1.getOpcode() == ISD::UNDEF) {
5709         V1 = Op0.getOperand(0);
5710         if (V1.getValueType() != VT)
5711           return false;
5712       }
5713       if (i * 2 == NumElts)
5714         ExpectedVExtractIdx = BaseIdx;
5715     }
5716
5717     SDValue Expected = (i * 2 < NumElts) ? V0 : V1;
5718     if (I0 == ExpectedVExtractIdx)
5719       CanFold = I1 == I0 + 1 && Op0.getOperand(0) == Expected;
5720     else if (IsCommutable && I1 == ExpectedVExtractIdx) {
5721       // Try to match the following dag sequence:
5722       // (BINOP (extract_vector_elt A, I+1), (extract_vector_elt A, I))
5723       CanFold = I0 == I1 + 1 && Op1.getOperand(0) == Expected;
5724     } else
5725       CanFold = false;
5726
5727     ExpectedVExtractIdx += 2;
5728   }
5729
5730   return CanFold;
5731 }
5732
5733 /// \brief Emit a sequence of two 128-bit horizontal add/sub followed by
5734 /// a concat_vector.
5735 ///
5736 /// This is a helper function of LowerToHorizontalOp().
5737 /// This function expects two 256-bit vectors called V0 and V1.
5738 /// At first, each vector is split into two separate 128-bit vectors.
5739 /// Then, the resulting 128-bit vectors are used to implement two
5740 /// horizontal binary operations.
5741 ///
5742 /// The kind of horizontal binary operation is defined by \p X86Opcode.
5743 ///
5744 /// \p Mode specifies how the 128-bit parts of V0 and V1 are passed in input to
5745 /// the two new horizontal binop.
5746 /// When Mode is set, the first horizontal binop dag node would take as input
5747 /// the lower 128-bit of V0 and the upper 128-bit of V0. The second
5748 /// horizontal binop dag node would take as input the lower 128-bit of V1
5749 /// and the upper 128-bit of V1.
5750 ///   Example:
5751 ///     HADD V0_LO, V0_HI
5752 ///     HADD V1_LO, V1_HI
5753 ///
5754 /// Otherwise, the first horizontal binop dag node takes as input the lower
5755 /// 128-bit of V0 and the lower 128-bit of V1, and the second horizontal binop
5756 /// dag node takes the upper 128-bit of V0 and the upper 128-bit of V1.
5757 ///   Example:
5758 ///     HADD V0_LO, V1_LO
5759 ///     HADD V0_HI, V1_HI
5760 ///
5761 /// If \p isUndefLO is set, then the algorithm propagates UNDEF to the lower
5762 /// 128-bits of the result. If \p isUndefHI is set, then UNDEF is propagated to
5763 /// the upper 128-bits of the result.
5764 static SDValue ExpandHorizontalBinOp(const SDValue &V0, const SDValue &V1,
5765                                      SDLoc DL, SelectionDAG &DAG,
5766                                      unsigned X86Opcode, bool Mode,
5767                                      bool isUndefLO, bool isUndefHI) {
5768   EVT VT = V0.getValueType();
5769   assert(VT.is256BitVector() && VT == V1.getValueType() &&
5770          "Invalid nodes in input!");
5771
5772   unsigned NumElts = VT.getVectorNumElements();
5773   SDValue V0_LO = Extract128BitVector(V0, 0, DAG, DL);
5774   SDValue V0_HI = Extract128BitVector(V0, NumElts/2, DAG, DL);
5775   SDValue V1_LO = Extract128BitVector(V1, 0, DAG, DL);
5776   SDValue V1_HI = Extract128BitVector(V1, NumElts/2, DAG, DL);
5777   EVT NewVT = V0_LO.getValueType();
5778
5779   SDValue LO = DAG.getUNDEF(NewVT);
5780   SDValue HI = DAG.getUNDEF(NewVT);
5781
5782   if (Mode) {
5783     // Don't emit a horizontal binop if the result is expected to be UNDEF.
5784     if (!isUndefLO && V0->getOpcode() != ISD::UNDEF)
5785       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V0_HI);
5786     if (!isUndefHI && V1->getOpcode() != ISD::UNDEF)
5787       HI = DAG.getNode(X86Opcode, DL, NewVT, V1_LO, V1_HI);
5788   } else {
5789     // Don't emit a horizontal binop if the result is expected to be UNDEF.
5790     if (!isUndefLO && (V0_LO->getOpcode() != ISD::UNDEF ||
5791                        V1_LO->getOpcode() != ISD::UNDEF))
5792       LO = DAG.getNode(X86Opcode, DL, NewVT, V0_LO, V1_LO);
5793
5794     if (!isUndefHI && (V0_HI->getOpcode() != ISD::UNDEF ||
5795                        V1_HI->getOpcode() != ISD::UNDEF))
5796       HI = DAG.getNode(X86Opcode, DL, NewVT, V0_HI, V1_HI);
5797   }
5798
5799   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LO, HI);
5800 }
5801
5802 /// Try to fold a build_vector that performs an 'addsub' to an X86ISD::ADDSUB
5803 /// node.
5804 static SDValue LowerToAddSub(const BuildVectorSDNode *BV,
5805                              const X86Subtarget *Subtarget, SelectionDAG &DAG) {
5806   EVT VT = BV->getValueType(0);
5807   if ((!Subtarget->hasSSE3() || (VT != MVT::v4f32 && VT != MVT::v2f64)) &&
5808       (!Subtarget->hasAVX() || (VT != MVT::v8f32 && VT != MVT::v4f64)))
5809     return SDValue();
5810
5811   SDLoc DL(BV);
5812   unsigned NumElts = VT.getVectorNumElements();
5813   SDValue InVec0 = DAG.getUNDEF(VT);
5814   SDValue InVec1 = DAG.getUNDEF(VT);
5815
5816   assert((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v4f32 ||
5817           VT == MVT::v2f64) && "build_vector with an invalid type found!");
5818
5819   // Odd-numbered elements in the input build vector are obtained from
5820   // adding two integer/float elements.
5821   // Even-numbered elements in the input build vector are obtained from
5822   // subtracting two integer/float elements.
5823   unsigned ExpectedOpcode = ISD::FSUB;
5824   unsigned NextExpectedOpcode = ISD::FADD;
5825   bool AddFound = false;
5826   bool SubFound = false;
5827
5828   for (unsigned i = 0, e = NumElts; i != e; ++i) {
5829     SDValue Op = BV->getOperand(i);
5830
5831     // Skip 'undef' values.
5832     unsigned Opcode = Op.getOpcode();
5833     if (Opcode == ISD::UNDEF) {
5834       std::swap(ExpectedOpcode, NextExpectedOpcode);
5835       continue;
5836     }
5837
5838     // Early exit if we found an unexpected opcode.
5839     if (Opcode != ExpectedOpcode)
5840       return SDValue();
5841
5842     SDValue Op0 = Op.getOperand(0);
5843     SDValue Op1 = Op.getOperand(1);
5844
5845     // Try to match the following pattern:
5846     // (BINOP (extract_vector_elt A, i), (extract_vector_elt B, i))
5847     // Early exit if we cannot match that sequence.
5848     if (Op0.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5849         Op1.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5850         !isa<ConstantSDNode>(Op0.getOperand(1)) ||
5851         !isa<ConstantSDNode>(Op1.getOperand(1)) ||
5852         Op0.getOperand(1) != Op1.getOperand(1))
5853       return SDValue();
5854
5855     unsigned I0 = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue();
5856     if (I0 != i)
5857       return SDValue();
5858
5859     // We found a valid add/sub node. Update the information accordingly.
5860     if (i & 1)
5861       AddFound = true;
5862     else
5863       SubFound = true;
5864
5865     // Update InVec0 and InVec1.
5866     if (InVec0.getOpcode() == ISD::UNDEF) {
5867       InVec0 = Op0.getOperand(0);
5868       if (InVec0.getValueType() != VT)
5869         return SDValue();
5870     }
5871     if (InVec1.getOpcode() == ISD::UNDEF) {
5872       InVec1 = Op1.getOperand(0);
5873       if (InVec1.getValueType() != VT)
5874         return SDValue();
5875     }
5876
5877     // Make sure that operands in input to each add/sub node always
5878     // come from a same pair of vectors.
5879     if (InVec0 != Op0.getOperand(0)) {
5880       if (ExpectedOpcode == ISD::FSUB)
5881         return SDValue();
5882
5883       // FADD is commutable. Try to commute the operands
5884       // and then test again.
5885       std::swap(Op0, Op1);
5886       if (InVec0 != Op0.getOperand(0))
5887         return SDValue();
5888     }
5889
5890     if (InVec1 != Op1.getOperand(0))
5891       return SDValue();
5892
5893     // Update the pair of expected opcodes.
5894     std::swap(ExpectedOpcode, NextExpectedOpcode);
5895   }
5896
5897   // Don't try to fold this build_vector into an ADDSUB if the inputs are undef.
5898   if (AddFound && SubFound && InVec0.getOpcode() != ISD::UNDEF &&
5899       InVec1.getOpcode() != ISD::UNDEF)
5900     return DAG.getNode(X86ISD::ADDSUB, DL, VT, InVec0, InVec1);
5901
5902   return SDValue();
5903 }
5904
5905 /// Lower BUILD_VECTOR to a horizontal add/sub operation if possible.
5906 static SDValue LowerToHorizontalOp(const BuildVectorSDNode *BV,
5907                                    const X86Subtarget *Subtarget,
5908                                    SelectionDAG &DAG) {
5909   EVT VT = BV->getValueType(0);
5910   unsigned NumElts = VT.getVectorNumElements();
5911   unsigned NumUndefsLO = 0;
5912   unsigned NumUndefsHI = 0;
5913   unsigned Half = NumElts/2;
5914
5915   // Count the number of UNDEF operands in the build_vector in input.
5916   for (unsigned i = 0, e = Half; i != e; ++i)
5917     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
5918       NumUndefsLO++;
5919
5920   for (unsigned i = Half, e = NumElts; i != e; ++i)
5921     if (BV->getOperand(i)->getOpcode() == ISD::UNDEF)
5922       NumUndefsHI++;
5923
5924   // Early exit if this is either a build_vector of all UNDEFs or all the
5925   // operands but one are UNDEF.
5926   if (NumUndefsLO + NumUndefsHI + 1 >= NumElts)
5927     return SDValue();
5928
5929   SDLoc DL(BV);
5930   SDValue InVec0, InVec1;
5931   if ((VT == MVT::v4f32 || VT == MVT::v2f64) && Subtarget->hasSSE3()) {
5932     // Try to match an SSE3 float HADD/HSUB.
5933     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
5934       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
5935
5936     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
5937       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
5938   } else if ((VT == MVT::v4i32 || VT == MVT::v8i16) && Subtarget->hasSSSE3()) {
5939     // Try to match an SSSE3 integer HADD/HSUB.
5940     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
5941       return DAG.getNode(X86ISD::HADD, DL, VT, InVec0, InVec1);
5942
5943     if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
5944       return DAG.getNode(X86ISD::HSUB, DL, VT, InVec0, InVec1);
5945   }
5946
5947   if (!Subtarget->hasAVX())
5948     return SDValue();
5949
5950   if ((VT == MVT::v8f32 || VT == MVT::v4f64)) {
5951     // Try to match an AVX horizontal add/sub of packed single/double
5952     // precision floating point values from 256-bit vectors.
5953     SDValue InVec2, InVec3;
5954     if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, Half, InVec0, InVec1) &&
5955         isHorizontalBinOp(BV, ISD::FADD, DAG, Half, NumElts, InVec2, InVec3) &&
5956         ((InVec0.getOpcode() == ISD::UNDEF ||
5957           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5958         ((InVec1.getOpcode() == ISD::UNDEF ||
5959           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5960       return DAG.getNode(X86ISD::FHADD, DL, VT, InVec0, InVec1);
5961
5962     if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, Half, InVec0, InVec1) &&
5963         isHorizontalBinOp(BV, ISD::FSUB, DAG, Half, NumElts, InVec2, InVec3) &&
5964         ((InVec0.getOpcode() == ISD::UNDEF ||
5965           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5966         ((InVec1.getOpcode() == ISD::UNDEF ||
5967           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5968       return DAG.getNode(X86ISD::FHSUB, DL, VT, InVec0, InVec1);
5969   } else if (VT == MVT::v8i32 || VT == MVT::v16i16) {
5970     // Try to match an AVX2 horizontal add/sub of signed integers.
5971     SDValue InVec2, InVec3;
5972     unsigned X86Opcode;
5973     bool CanFold = true;
5974
5975     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, Half, InVec0, InVec1) &&
5976         isHorizontalBinOp(BV, ISD::ADD, DAG, Half, NumElts, InVec2, InVec3) &&
5977         ((InVec0.getOpcode() == ISD::UNDEF ||
5978           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5979         ((InVec1.getOpcode() == ISD::UNDEF ||
5980           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5981       X86Opcode = X86ISD::HADD;
5982     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, Half, InVec0, InVec1) &&
5983         isHorizontalBinOp(BV, ISD::SUB, DAG, Half, NumElts, InVec2, InVec3) &&
5984         ((InVec0.getOpcode() == ISD::UNDEF ||
5985           InVec2.getOpcode() == ISD::UNDEF) || InVec0 == InVec2) &&
5986         ((InVec1.getOpcode() == ISD::UNDEF ||
5987           InVec3.getOpcode() == ISD::UNDEF) || InVec1 == InVec3))
5988       X86Opcode = X86ISD::HSUB;
5989     else
5990       CanFold = false;
5991
5992     if (CanFold) {
5993       // Fold this build_vector into a single horizontal add/sub.
5994       // Do this only if the target has AVX2.
5995       if (Subtarget->hasAVX2())
5996         return DAG.getNode(X86Opcode, DL, VT, InVec0, InVec1);
5997
5998       // Do not try to expand this build_vector into a pair of horizontal
5999       // add/sub if we can emit a pair of scalar add/sub.
6000       if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6001         return SDValue();
6002
6003       // Convert this build_vector into a pair of horizontal binop followed by
6004       // a concat vector.
6005       bool isUndefLO = NumUndefsLO == Half;
6006       bool isUndefHI = NumUndefsHI == Half;
6007       return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, false,
6008                                    isUndefLO, isUndefHI);
6009     }
6010   }
6011
6012   if ((VT == MVT::v8f32 || VT == MVT::v4f64 || VT == MVT::v8i32 ||
6013        VT == MVT::v16i16) && Subtarget->hasAVX()) {
6014     unsigned X86Opcode;
6015     if (isHorizontalBinOp(BV, ISD::ADD, DAG, 0, NumElts, InVec0, InVec1))
6016       X86Opcode = X86ISD::HADD;
6017     else if (isHorizontalBinOp(BV, ISD::SUB, DAG, 0, NumElts, InVec0, InVec1))
6018       X86Opcode = X86ISD::HSUB;
6019     else if (isHorizontalBinOp(BV, ISD::FADD, DAG, 0, NumElts, InVec0, InVec1))
6020       X86Opcode = X86ISD::FHADD;
6021     else if (isHorizontalBinOp(BV, ISD::FSUB, DAG, 0, NumElts, InVec0, InVec1))
6022       X86Opcode = X86ISD::FHSUB;
6023     else
6024       return SDValue();
6025
6026     // Don't try to expand this build_vector into a pair of horizontal add/sub
6027     // if we can simply emit a pair of scalar add/sub.
6028     if (NumUndefsLO + 1 == Half || NumUndefsHI + 1 == Half)
6029       return SDValue();
6030
6031     // Convert this build_vector into two horizontal add/sub followed by
6032     // a concat vector.
6033     bool isUndefLO = NumUndefsLO == Half;
6034     bool isUndefHI = NumUndefsHI == Half;
6035     return ExpandHorizontalBinOp(InVec0, InVec1, DL, DAG, X86Opcode, true,
6036                                  isUndefLO, isUndefHI);
6037   }
6038
6039   return SDValue();
6040 }
6041
6042 SDValue
6043 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6044   SDLoc dl(Op);
6045
6046   MVT VT = Op.getSimpleValueType();
6047   MVT ExtVT = VT.getVectorElementType();
6048   unsigned NumElems = Op.getNumOperands();
6049
6050   // Generate vectors for predicate vectors.
6051   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
6052     return LowerBUILD_VECTORvXi1(Op, DAG);
6053
6054   // Vectors containing all zeros can be matched by pxor and xorps later
6055   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
6056     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
6057     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
6058     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
6059       return Op;
6060
6061     return getZeroVector(VT, Subtarget, DAG, dl);
6062   }
6063
6064   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
6065   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
6066   // vpcmpeqd on 256-bit vectors.
6067   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
6068     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
6069       return Op;
6070
6071     if (!VT.is512BitVector())
6072       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
6073   }
6074
6075   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(Op.getNode());
6076   if (SDValue AddSub = LowerToAddSub(BV, Subtarget, DAG))
6077     return AddSub;
6078   if (SDValue HorizontalOp = LowerToHorizontalOp(BV, Subtarget, DAG))
6079     return HorizontalOp;
6080   if (SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG))
6081     return Broadcast;
6082
6083   unsigned EVTBits = ExtVT.getSizeInBits();
6084
6085   unsigned NumZero  = 0;
6086   unsigned NumNonZero = 0;
6087   unsigned NonZeros = 0;
6088   bool IsAllConstants = true;
6089   SmallSet<SDValue, 8> Values;
6090   for (unsigned i = 0; i < NumElems; ++i) {
6091     SDValue Elt = Op.getOperand(i);
6092     if (Elt.getOpcode() == ISD::UNDEF)
6093       continue;
6094     Values.insert(Elt);
6095     if (Elt.getOpcode() != ISD::Constant &&
6096         Elt.getOpcode() != ISD::ConstantFP)
6097       IsAllConstants = false;
6098     if (X86::isZeroNode(Elt))
6099       NumZero++;
6100     else {
6101       NonZeros |= (1 << i);
6102       NumNonZero++;
6103     }
6104   }
6105
6106   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
6107   if (NumNonZero == 0)
6108     return DAG.getUNDEF(VT);
6109
6110   // Special case for single non-zero, non-undef, element.
6111   if (NumNonZero == 1) {
6112     unsigned Idx = countTrailingZeros(NonZeros);
6113     SDValue Item = Op.getOperand(Idx);
6114
6115     // If this is an insertion of an i64 value on x86-32, and if the top bits of
6116     // the value are obviously zero, truncate the value to i32 and do the
6117     // insertion that way.  Only do this if the value is non-constant or if the
6118     // value is a constant being inserted into element 0.  It is cheaper to do
6119     // a constant pool load than it is to do a movd + shuffle.
6120     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
6121         (!IsAllConstants || Idx == 0)) {
6122       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
6123         // Handle SSE only.
6124         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
6125         EVT VecVT = MVT::v4i32;
6126
6127         // Truncate the value (which may itself be a constant) to i32, and
6128         // convert it to a vector with movd (S2V+shuffle to zero extend).
6129         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
6130         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
6131         return DAG.getBitcast(VT, getShuffleVectorZeroOrUndef(
6132                                       Item, Idx * 2, true, Subtarget, DAG));
6133       }
6134     }
6135
6136     // If we have a constant or non-constant insertion into the low element of
6137     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
6138     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
6139     // depending on what the source datatype is.
6140     if (Idx == 0) {
6141       if (NumZero == 0)
6142         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6143
6144       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
6145           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
6146         if (VT.is512BitVector()) {
6147           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
6148           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
6149                              Item, DAG.getIntPtrConstant(0, dl));
6150         }
6151         assert((VT.is128BitVector() || VT.is256BitVector()) &&
6152                "Expected an SSE value type!");
6153         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6154         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6155         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6156       }
6157
6158       // We can't directly insert an i8 or i16 into a vector, so zero extend
6159       // it to i32 first.
6160       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6161         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6162         if (VT.is256BitVector()) {
6163           if (Subtarget->hasAVX()) {
6164             Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v8i32, Item);
6165             Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6166           } else {
6167             // Without AVX, we need to extend to a 128-bit vector and then
6168             // insert into the 256-bit vector.
6169             Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6170             SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6171             Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6172           }
6173         } else {
6174           assert(VT.is128BitVector() && "Expected an SSE value type!");
6175           Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6176           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6177         }
6178         return DAG.getBitcast(VT, Item);
6179       }
6180     }
6181
6182     // Is it a vector logical left shift?
6183     if (NumElems == 2 && Idx == 1 &&
6184         X86::isZeroNode(Op.getOperand(0)) &&
6185         !X86::isZeroNode(Op.getOperand(1))) {
6186       unsigned NumBits = VT.getSizeInBits();
6187       return getVShift(true, VT,
6188                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6189                                    VT, Op.getOperand(1)),
6190                        NumBits/2, DAG, *this, dl);
6191     }
6192
6193     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6194       return SDValue();
6195
6196     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6197     // is a non-constant being inserted into an element other than the low one,
6198     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6199     // movd/movss) to move this into the low element, then shuffle it into
6200     // place.
6201     if (EVTBits == 32) {
6202       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6203       return getShuffleVectorZeroOrUndef(Item, Idx, NumZero > 0, Subtarget, DAG);
6204     }
6205   }
6206
6207   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6208   if (Values.size() == 1) {
6209     if (EVTBits == 32) {
6210       // Instead of a shuffle like this:
6211       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6212       // Check if it's possible to issue this instead.
6213       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6214       unsigned Idx = countTrailingZeros(NonZeros);
6215       SDValue Item = Op.getOperand(Idx);
6216       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6217         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6218     }
6219     return SDValue();
6220   }
6221
6222   // A vector full of immediates; various special cases are already
6223   // handled, so this is best done with a single constant-pool load.
6224   if (IsAllConstants)
6225     return SDValue();
6226
6227   // For AVX-length vectors, see if we can use a vector load to get all of the
6228   // elements, otherwise build the individual 128-bit pieces and use
6229   // shuffles to put them in place.
6230   if (VT.is256BitVector() || VT.is512BitVector()) {
6231     SmallVector<SDValue, 64> V(Op->op_begin(), Op->op_begin() + NumElems);
6232
6233     // Check for a build vector of consecutive loads.
6234     if (SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false))
6235       return LD;
6236
6237     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6238
6239     // Build both the lower and upper subvector.
6240     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6241                                 makeArrayRef(&V[0], NumElems/2));
6242     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT,
6243                                 makeArrayRef(&V[NumElems / 2], NumElems/2));
6244
6245     // Recreate the wider vector with the lower and upper part.
6246     if (VT.is256BitVector())
6247       return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6248     return Concat256BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6249   }
6250
6251   // Let legalizer expand 2-wide build_vectors.
6252   if (EVTBits == 64) {
6253     if (NumNonZero == 1) {
6254       // One half is zero or undef.
6255       unsigned Idx = countTrailingZeros(NonZeros);
6256       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6257                                  Op.getOperand(Idx));
6258       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6259     }
6260     return SDValue();
6261   }
6262
6263   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6264   if (EVTBits == 8 && NumElems == 16)
6265     if (SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6266                                         Subtarget, *this))
6267       return V;
6268
6269   if (EVTBits == 16 && NumElems == 8)
6270     if (SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6271                                       Subtarget, *this))
6272       return V;
6273
6274   // If element VT is == 32 bits and has 4 elems, try to generate an INSERTPS
6275   if (EVTBits == 32 && NumElems == 4)
6276     if (SDValue V = LowerBuildVectorv4x32(Op, DAG, Subtarget, *this))
6277       return V;
6278
6279   // If element VT is == 32 bits, turn it into a number of shuffles.
6280   SmallVector<SDValue, 8> V(NumElems);
6281   if (NumElems == 4 && NumZero > 0) {
6282     for (unsigned i = 0; i < 4; ++i) {
6283       bool isZero = !(NonZeros & (1 << i));
6284       if (isZero)
6285         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6286       else
6287         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6288     }
6289
6290     for (unsigned i = 0; i < 2; ++i) {
6291       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6292         default: break;
6293         case 0:
6294           V[i] = V[i*2];  // Must be a zero vector.
6295           break;
6296         case 1:
6297           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6298           break;
6299         case 2:
6300           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6301           break;
6302         case 3:
6303           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6304           break;
6305       }
6306     }
6307
6308     bool Reverse1 = (NonZeros & 0x3) == 2;
6309     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6310     int MaskVec[] = {
6311       Reverse1 ? 1 : 0,
6312       Reverse1 ? 0 : 1,
6313       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6314       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6315     };
6316     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6317   }
6318
6319   if (Values.size() > 1 && VT.is128BitVector()) {
6320     // Check for a build vector of consecutive loads.
6321     for (unsigned i = 0; i < NumElems; ++i)
6322       V[i] = Op.getOperand(i);
6323
6324     // Check for elements which are consecutive loads.
6325     if (SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false))
6326       return LD;
6327
6328     // Check for a build vector from mostly shuffle plus few inserting.
6329     if (SDValue Sh = buildFromShuffleMostly(Op, DAG))
6330       return Sh;
6331
6332     // For SSE 4.1, use insertps to put the high elements into the low element.
6333     if (Subtarget->hasSSE41()) {
6334       SDValue Result;
6335       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6336         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6337       else
6338         Result = DAG.getUNDEF(VT);
6339
6340       for (unsigned i = 1; i < NumElems; ++i) {
6341         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6342         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6343                              Op.getOperand(i), DAG.getIntPtrConstant(i, dl));
6344       }
6345       return Result;
6346     }
6347
6348     // Otherwise, expand into a number of unpckl*, start by extending each of
6349     // our (non-undef) elements to the full vector width with the element in the
6350     // bottom slot of the vector (which generates no code for SSE).
6351     for (unsigned i = 0; i < NumElems; ++i) {
6352       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6353         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6354       else
6355         V[i] = DAG.getUNDEF(VT);
6356     }
6357
6358     // Next, we iteratively mix elements, e.g. for v4f32:
6359     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6360     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6361     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6362     unsigned EltStride = NumElems >> 1;
6363     while (EltStride != 0) {
6364       for (unsigned i = 0; i < EltStride; ++i) {
6365         // If V[i+EltStride] is undef and this is the first round of mixing,
6366         // then it is safe to just drop this shuffle: V[i] is already in the
6367         // right place, the one element (since it's the first round) being
6368         // inserted as undef can be dropped.  This isn't safe for successive
6369         // rounds because they will permute elements within both vectors.
6370         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6371             EltStride == NumElems/2)
6372           continue;
6373
6374         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6375       }
6376       EltStride >>= 1;
6377     }
6378     return V[0];
6379   }
6380   return SDValue();
6381 }
6382
6383 // 256-bit AVX can use the vinsertf128 instruction
6384 // to create 256-bit vectors from two other 128-bit ones.
6385 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6386   SDLoc dl(Op);
6387   MVT ResVT = Op.getSimpleValueType();
6388
6389   assert((ResVT.is256BitVector() ||
6390           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6391
6392   SDValue V1 = Op.getOperand(0);
6393   SDValue V2 = Op.getOperand(1);
6394   unsigned NumElems = ResVT.getVectorNumElements();
6395   if (ResVT.is256BitVector())
6396     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6397
6398   if (Op.getNumOperands() == 4) {
6399     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6400                                 ResVT.getVectorNumElements()/2);
6401     SDValue V3 = Op.getOperand(2);
6402     SDValue V4 = Op.getOperand(3);
6403     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6404       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6405   }
6406   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6407 }
6408
6409 static SDValue LowerCONCAT_VECTORSvXi1(SDValue Op,
6410                                        const X86Subtarget *Subtarget,
6411                                        SelectionDAG & DAG) {
6412   SDLoc dl(Op);
6413   MVT ResVT = Op.getSimpleValueType();
6414   unsigned NumOfOperands = Op.getNumOperands();
6415
6416   assert(isPowerOf2_32(NumOfOperands) &&
6417          "Unexpected number of operands in CONCAT_VECTORS");
6418
6419   if (NumOfOperands > 2) {
6420     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6421                                   ResVT.getVectorNumElements()/2);
6422     SmallVector<SDValue, 2> Ops;
6423     for (unsigned i = 0; i < NumOfOperands/2; i++)
6424       Ops.push_back(Op.getOperand(i));
6425     SDValue Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT, Ops);
6426     Ops.clear();
6427     for (unsigned i = NumOfOperands/2; i < NumOfOperands; i++)
6428       Ops.push_back(Op.getOperand(i));
6429     SDValue Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, HalfVT, Ops);
6430     return DAG.getNode(ISD::CONCAT_VECTORS, dl, ResVT, Lo, Hi);
6431   }
6432
6433   SDValue V1 = Op.getOperand(0);
6434   SDValue V2 = Op.getOperand(1);
6435   bool IsZeroV1 = ISD::isBuildVectorAllZeros(V1.getNode());
6436   bool IsZeroV2 = ISD::isBuildVectorAllZeros(V2.getNode());
6437
6438   if (IsZeroV1 && IsZeroV2)
6439     return getZeroVector(ResVT, Subtarget, DAG, dl);
6440
6441   SDValue ZeroIdx = DAG.getIntPtrConstant(0, dl);
6442   SDValue Undef = DAG.getUNDEF(ResVT);
6443   unsigned NumElems = ResVT.getVectorNumElements();
6444   SDValue ShiftBits = DAG.getConstant(NumElems/2, dl, MVT::i8);
6445
6446   V2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V2, ZeroIdx);
6447   V2 = DAG.getNode(X86ISD::VSHLI, dl, ResVT, V2, ShiftBits);
6448   if (IsZeroV1)
6449     return V2;
6450
6451   V1 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V1, ZeroIdx);
6452   // Zero the upper bits of V1
6453   V1 = DAG.getNode(X86ISD::VSHLI, dl, ResVT, V1, ShiftBits);
6454   V1 = DAG.getNode(X86ISD::VSRLI, dl, ResVT, V1, ShiftBits);
6455   if (IsZeroV2)
6456     return V1;
6457   return DAG.getNode(ISD::OR, dl, ResVT, V1, V2);
6458 }
6459
6460 static SDValue LowerCONCAT_VECTORS(SDValue Op,
6461                                    const X86Subtarget *Subtarget,
6462                                    SelectionDAG &DAG) {
6463   MVT VT = Op.getSimpleValueType();
6464   if (VT.getVectorElementType() == MVT::i1)
6465     return LowerCONCAT_VECTORSvXi1(Op, Subtarget, DAG);
6466
6467   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6468          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6469           Op.getNumOperands() == 4)));
6470
6471   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6472   // from two other 128-bit ones.
6473
6474   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6475   return LowerAVXCONCAT_VECTORS(Op, DAG);
6476 }
6477
6478
6479 //===----------------------------------------------------------------------===//
6480 // Vector shuffle lowering
6481 //
6482 // This is an experimental code path for lowering vector shuffles on x86. It is
6483 // designed to handle arbitrary vector shuffles and blends, gracefully
6484 // degrading performance as necessary. It works hard to recognize idiomatic
6485 // shuffles and lower them to optimal instruction patterns without leaving
6486 // a framework that allows reasonably efficient handling of all vector shuffle
6487 // patterns.
6488 //===----------------------------------------------------------------------===//
6489
6490 /// \brief Tiny helper function to identify a no-op mask.
6491 ///
6492 /// This is a somewhat boring predicate function. It checks whether the mask
6493 /// array input, which is assumed to be a single-input shuffle mask of the kind
6494 /// used by the X86 shuffle instructions (not a fully general
6495 /// ShuffleVectorSDNode mask) requires any shuffles to occur. Both undef and an
6496 /// in-place shuffle are 'no-op's.
6497 static bool isNoopShuffleMask(ArrayRef<int> Mask) {
6498   for (int i = 0, Size = Mask.size(); i < Size; ++i)
6499     if (Mask[i] != -1 && Mask[i] != i)
6500       return false;
6501   return true;
6502 }
6503
6504 /// \brief Helper function to classify a mask as a single-input mask.
6505 ///
6506 /// This isn't a generic single-input test because in the vector shuffle
6507 /// lowering we canonicalize single inputs to be the first input operand. This
6508 /// means we can more quickly test for a single input by only checking whether
6509 /// an input from the second operand exists. We also assume that the size of
6510 /// mask corresponds to the size of the input vectors which isn't true in the
6511 /// fully general case.
6512 static bool isSingleInputShuffleMask(ArrayRef<int> Mask) {
6513   for (int M : Mask)
6514     if (M >= (int)Mask.size())
6515       return false;
6516   return true;
6517 }
6518
6519 /// \brief Test whether there are elements crossing 128-bit lanes in this
6520 /// shuffle mask.
6521 ///
6522 /// X86 divides up its shuffles into in-lane and cross-lane shuffle operations
6523 /// and we routinely test for these.
6524 static bool is128BitLaneCrossingShuffleMask(MVT VT, ArrayRef<int> Mask) {
6525   int LaneSize = 128 / VT.getScalarSizeInBits();
6526   int Size = Mask.size();
6527   for (int i = 0; i < Size; ++i)
6528     if (Mask[i] >= 0 && (Mask[i] % Size) / LaneSize != i / LaneSize)
6529       return true;
6530   return false;
6531 }
6532
6533 /// \brief Test whether a shuffle mask is equivalent within each 128-bit lane.
6534 ///
6535 /// This checks a shuffle mask to see if it is performing the same
6536 /// 128-bit lane-relative shuffle in each 128-bit lane. This trivially implies
6537 /// that it is also not lane-crossing. It may however involve a blend from the
6538 /// same lane of a second vector.
6539 ///
6540 /// The specific repeated shuffle mask is populated in \p RepeatedMask, as it is
6541 /// non-trivial to compute in the face of undef lanes. The representation is
6542 /// *not* suitable for use with existing 128-bit shuffles as it will contain
6543 /// entries from both V1 and V2 inputs to the wider mask.
6544 static bool
6545 is128BitLaneRepeatedShuffleMask(MVT VT, ArrayRef<int> Mask,
6546                                 SmallVectorImpl<int> &RepeatedMask) {
6547   int LaneSize = 128 / VT.getScalarSizeInBits();
6548   RepeatedMask.resize(LaneSize, -1);
6549   int Size = Mask.size();
6550   for (int i = 0; i < Size; ++i) {
6551     if (Mask[i] < 0)
6552       continue;
6553     if ((Mask[i] % Size) / LaneSize != i / LaneSize)
6554       // This entry crosses lanes, so there is no way to model this shuffle.
6555       return false;
6556
6557     // Ok, handle the in-lane shuffles by detecting if and when they repeat.
6558     if (RepeatedMask[i % LaneSize] == -1)
6559       // This is the first non-undef entry in this slot of a 128-bit lane.
6560       RepeatedMask[i % LaneSize] =
6561           Mask[i] < Size ? Mask[i] % LaneSize : Mask[i] % LaneSize + Size;
6562     else if (RepeatedMask[i % LaneSize] + (i / LaneSize) * LaneSize != Mask[i])
6563       // Found a mismatch with the repeated mask.
6564       return false;
6565   }
6566   return true;
6567 }
6568
6569 /// \brief Checks whether a shuffle mask is equivalent to an explicit list of
6570 /// arguments.
6571 ///
6572 /// This is a fast way to test a shuffle mask against a fixed pattern:
6573 ///
6574 ///   if (isShuffleEquivalent(Mask, 3, 2, {1, 0})) { ... }
6575 ///
6576 /// It returns true if the mask is exactly as wide as the argument list, and
6577 /// each element of the mask is either -1 (signifying undef) or the value given
6578 /// in the argument.
6579 static bool isShuffleEquivalent(SDValue V1, SDValue V2, ArrayRef<int> Mask,
6580                                 ArrayRef<int> ExpectedMask) {
6581   if (Mask.size() != ExpectedMask.size())
6582     return false;
6583
6584   int Size = Mask.size();
6585
6586   // If the values are build vectors, we can look through them to find
6587   // equivalent inputs that make the shuffles equivalent.
6588   auto *BV1 = dyn_cast<BuildVectorSDNode>(V1);
6589   auto *BV2 = dyn_cast<BuildVectorSDNode>(V2);
6590
6591   for (int i = 0; i < Size; ++i)
6592     if (Mask[i] != -1 && Mask[i] != ExpectedMask[i]) {
6593       auto *MaskBV = Mask[i] < Size ? BV1 : BV2;
6594       auto *ExpectedBV = ExpectedMask[i] < Size ? BV1 : BV2;
6595       if (!MaskBV || !ExpectedBV ||
6596           MaskBV->getOperand(Mask[i] % Size) !=
6597               ExpectedBV->getOperand(ExpectedMask[i] % Size))
6598         return false;
6599     }
6600
6601   return true;
6602 }
6603
6604 /// \brief Get a 4-lane 8-bit shuffle immediate for a mask.
6605 ///
6606 /// This helper function produces an 8-bit shuffle immediate corresponding to
6607 /// the ubiquitous shuffle encoding scheme used in x86 instructions for
6608 /// shuffling 4 lanes. It can be used with most of the PSHUF instructions for
6609 /// example.
6610 ///
6611 /// NB: We rely heavily on "undef" masks preserving the input lane.
6612 static SDValue getV4X86ShuffleImm8ForMask(ArrayRef<int> Mask, SDLoc DL,
6613                                           SelectionDAG &DAG) {
6614   assert(Mask.size() == 4 && "Only 4-lane shuffle masks");
6615   assert(Mask[0] >= -1 && Mask[0] < 4 && "Out of bound mask element!");
6616   assert(Mask[1] >= -1 && Mask[1] < 4 && "Out of bound mask element!");
6617   assert(Mask[2] >= -1 && Mask[2] < 4 && "Out of bound mask element!");
6618   assert(Mask[3] >= -1 && Mask[3] < 4 && "Out of bound mask element!");
6619
6620   unsigned Imm = 0;
6621   Imm |= (Mask[0] == -1 ? 0 : Mask[0]) << 0;
6622   Imm |= (Mask[1] == -1 ? 1 : Mask[1]) << 2;
6623   Imm |= (Mask[2] == -1 ? 2 : Mask[2]) << 4;
6624   Imm |= (Mask[3] == -1 ? 3 : Mask[3]) << 6;
6625   return DAG.getConstant(Imm, DL, MVT::i8);
6626 }
6627
6628 /// \brief Compute whether each element of a shuffle is zeroable.
6629 ///
6630 /// A "zeroable" vector shuffle element is one which can be lowered to zero.
6631 /// Either it is an undef element in the shuffle mask, the element of the input
6632 /// referenced is undef, or the element of the input referenced is known to be
6633 /// zero. Many x86 shuffles can zero lanes cheaply and we often want to handle
6634 /// as many lanes with this technique as possible to simplify the remaining
6635 /// shuffle.
6636 static SmallBitVector computeZeroableShuffleElements(ArrayRef<int> Mask,
6637                                                      SDValue V1, SDValue V2) {
6638   SmallBitVector Zeroable(Mask.size(), false);
6639
6640   while (V1.getOpcode() == ISD::BITCAST)
6641     V1 = V1->getOperand(0);
6642   while (V2.getOpcode() == ISD::BITCAST)
6643     V2 = V2->getOperand(0);
6644
6645   bool V1IsZero = ISD::isBuildVectorAllZeros(V1.getNode());
6646   bool V2IsZero = ISD::isBuildVectorAllZeros(V2.getNode());
6647
6648   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6649     int M = Mask[i];
6650     // Handle the easy cases.
6651     if (M < 0 || (M >= 0 && M < Size && V1IsZero) || (M >= Size && V2IsZero)) {
6652       Zeroable[i] = true;
6653       continue;
6654     }
6655
6656     // If this is an index into a build_vector node (which has the same number
6657     // of elements), dig out the input value and use it.
6658     SDValue V = M < Size ? V1 : V2;
6659     if (V.getOpcode() != ISD::BUILD_VECTOR || Size != (int)V.getNumOperands())
6660       continue;
6661
6662     SDValue Input = V.getOperand(M % Size);
6663     // The UNDEF opcode check really should be dead code here, but not quite
6664     // worth asserting on (it isn't invalid, just unexpected).
6665     if (Input.getOpcode() == ISD::UNDEF || X86::isZeroNode(Input))
6666       Zeroable[i] = true;
6667   }
6668
6669   return Zeroable;
6670 }
6671
6672 /// \brief Try to emit a bitmask instruction for a shuffle.
6673 ///
6674 /// This handles cases where we can model a blend exactly as a bitmask due to
6675 /// one of the inputs being zeroable.
6676 static SDValue lowerVectorShuffleAsBitMask(SDLoc DL, MVT VT, SDValue V1,
6677                                            SDValue V2, ArrayRef<int> Mask,
6678                                            SelectionDAG &DAG) {
6679   MVT EltVT = VT.getScalarType();
6680   int NumEltBits = EltVT.getSizeInBits();
6681   MVT IntEltVT = MVT::getIntegerVT(NumEltBits);
6682   SDValue Zero = DAG.getConstant(0, DL, IntEltVT);
6683   SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL,
6684                                     IntEltVT);
6685   if (EltVT.isFloatingPoint()) {
6686     Zero = DAG.getBitcast(EltVT, Zero);
6687     AllOnes = DAG.getBitcast(EltVT, AllOnes);
6688   }
6689   SmallVector<SDValue, 16> VMaskOps(Mask.size(), Zero);
6690   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
6691   SDValue V;
6692   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6693     if (Zeroable[i])
6694       continue;
6695     if (Mask[i] % Size != i)
6696       return SDValue(); // Not a blend.
6697     if (!V)
6698       V = Mask[i] < Size ? V1 : V2;
6699     else if (V != (Mask[i] < Size ? V1 : V2))
6700       return SDValue(); // Can only let one input through the mask.
6701
6702     VMaskOps[i] = AllOnes;
6703   }
6704   if (!V)
6705     return SDValue(); // No non-zeroable elements!
6706
6707   SDValue VMask = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, VMaskOps);
6708   V = DAG.getNode(VT.isFloatingPoint()
6709                   ? (unsigned) X86ISD::FAND : (unsigned) ISD::AND,
6710                   DL, VT, V, VMask);
6711   return V;
6712 }
6713
6714 /// \brief Try to emit a blend instruction for a shuffle using bit math.
6715 ///
6716 /// This is used as a fallback approach when first class blend instructions are
6717 /// unavailable. Currently it is only suitable for integer vectors, but could
6718 /// be generalized for floating point vectors if desirable.
6719 static SDValue lowerVectorShuffleAsBitBlend(SDLoc DL, MVT VT, SDValue V1,
6720                                             SDValue V2, ArrayRef<int> Mask,
6721                                             SelectionDAG &DAG) {
6722   assert(VT.isInteger() && "Only supports integer vector types!");
6723   MVT EltVT = VT.getScalarType();
6724   int NumEltBits = EltVT.getSizeInBits();
6725   SDValue Zero = DAG.getConstant(0, DL, EltVT);
6726   SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL,
6727                                     EltVT);
6728   SmallVector<SDValue, 16> MaskOps;
6729   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6730     if (Mask[i] != -1 && Mask[i] != i && Mask[i] != i + Size)
6731       return SDValue(); // Shuffled input!
6732     MaskOps.push_back(Mask[i] < Size ? AllOnes : Zero);
6733   }
6734
6735   SDValue V1Mask = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, MaskOps);
6736   V1 = DAG.getNode(ISD::AND, DL, VT, V1, V1Mask);
6737   // We have to cast V2 around.
6738   MVT MaskVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits() / 64);
6739   V2 = DAG.getBitcast(VT, DAG.getNode(X86ISD::ANDNP, DL, MaskVT,
6740                                       DAG.getBitcast(MaskVT, V1Mask),
6741                                       DAG.getBitcast(MaskVT, V2)));
6742   return DAG.getNode(ISD::OR, DL, VT, V1, V2);
6743 }
6744
6745 /// \brief Try to emit a blend instruction for a shuffle.
6746 ///
6747 /// This doesn't do any checks for the availability of instructions for blending
6748 /// these values. It relies on the availability of the X86ISD::BLENDI pattern to
6749 /// be matched in the backend with the type given. What it does check for is
6750 /// that the shuffle mask is in fact a blend.
6751 static SDValue lowerVectorShuffleAsBlend(SDLoc DL, MVT VT, SDValue V1,
6752                                          SDValue V2, ArrayRef<int> Mask,
6753                                          const X86Subtarget *Subtarget,
6754                                          SelectionDAG &DAG) {
6755   unsigned BlendMask = 0;
6756   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6757     if (Mask[i] >= Size) {
6758       if (Mask[i] != i + Size)
6759         return SDValue(); // Shuffled V2 input!
6760       BlendMask |= 1u << i;
6761       continue;
6762     }
6763     if (Mask[i] >= 0 && Mask[i] != i)
6764       return SDValue(); // Shuffled V1 input!
6765   }
6766   switch (VT.SimpleTy) {
6767   case MVT::v2f64:
6768   case MVT::v4f32:
6769   case MVT::v4f64:
6770   case MVT::v8f32:
6771     return DAG.getNode(X86ISD::BLENDI, DL, VT, V1, V2,
6772                        DAG.getConstant(BlendMask, DL, MVT::i8));
6773
6774   case MVT::v4i64:
6775   case MVT::v8i32:
6776     assert(Subtarget->hasAVX2() && "256-bit integer blends require AVX2!");
6777     // FALLTHROUGH
6778   case MVT::v2i64:
6779   case MVT::v4i32:
6780     // If we have AVX2 it is faster to use VPBLENDD when the shuffle fits into
6781     // that instruction.
6782     if (Subtarget->hasAVX2()) {
6783       // Scale the blend by the number of 32-bit dwords per element.
6784       int Scale =  VT.getScalarSizeInBits() / 32;
6785       BlendMask = 0;
6786       for (int i = 0, Size = Mask.size(); i < Size; ++i)
6787         if (Mask[i] >= Size)
6788           for (int j = 0; j < Scale; ++j)
6789             BlendMask |= 1u << (i * Scale + j);
6790
6791       MVT BlendVT = VT.getSizeInBits() > 128 ? MVT::v8i32 : MVT::v4i32;
6792       V1 = DAG.getBitcast(BlendVT, V1);
6793       V2 = DAG.getBitcast(BlendVT, V2);
6794       return DAG.getBitcast(
6795           VT, DAG.getNode(X86ISD::BLENDI, DL, BlendVT, V1, V2,
6796                           DAG.getConstant(BlendMask, DL, MVT::i8)));
6797     }
6798     // FALLTHROUGH
6799   case MVT::v8i16: {
6800     // For integer shuffles we need to expand the mask and cast the inputs to
6801     // v8i16s prior to blending.
6802     int Scale = 8 / VT.getVectorNumElements();
6803     BlendMask = 0;
6804     for (int i = 0, Size = Mask.size(); i < Size; ++i)
6805       if (Mask[i] >= Size)
6806         for (int j = 0; j < Scale; ++j)
6807           BlendMask |= 1u << (i * Scale + j);
6808
6809     V1 = DAG.getBitcast(MVT::v8i16, V1);
6810     V2 = DAG.getBitcast(MVT::v8i16, V2);
6811     return DAG.getBitcast(VT,
6812                           DAG.getNode(X86ISD::BLENDI, DL, MVT::v8i16, V1, V2,
6813                                       DAG.getConstant(BlendMask, DL, MVT::i8)));
6814   }
6815
6816   case MVT::v16i16: {
6817     assert(Subtarget->hasAVX2() && "256-bit integer blends require AVX2!");
6818     SmallVector<int, 8> RepeatedMask;
6819     if (is128BitLaneRepeatedShuffleMask(MVT::v16i16, Mask, RepeatedMask)) {
6820       // We can lower these with PBLENDW which is mirrored across 128-bit lanes.
6821       assert(RepeatedMask.size() == 8 && "Repeated mask size doesn't match!");
6822       BlendMask = 0;
6823       for (int i = 0; i < 8; ++i)
6824         if (RepeatedMask[i] >= 16)
6825           BlendMask |= 1u << i;
6826       return DAG.getNode(X86ISD::BLENDI, DL, MVT::v16i16, V1, V2,
6827                          DAG.getConstant(BlendMask, DL, MVT::i8));
6828     }
6829   }
6830     // FALLTHROUGH
6831   case MVT::v16i8:
6832   case MVT::v32i8: {
6833     assert((VT.getSizeInBits() == 128 || Subtarget->hasAVX2()) &&
6834            "256-bit byte-blends require AVX2 support!");
6835
6836     // Attempt to lower to a bitmask if we can. VPAND is faster than VPBLENDVB.
6837     if (SDValue Masked = lowerVectorShuffleAsBitMask(DL, VT, V1, V2, Mask, DAG))
6838       return Masked;
6839
6840     // Scale the blend by the number of bytes per element.
6841     int Scale = VT.getScalarSizeInBits() / 8;
6842
6843     // This form of blend is always done on bytes. Compute the byte vector
6844     // type.
6845     MVT BlendVT = MVT::getVectorVT(MVT::i8, VT.getSizeInBits() / 8);
6846
6847     // Compute the VSELECT mask. Note that VSELECT is really confusing in the
6848     // mix of LLVM's code generator and the x86 backend. We tell the code
6849     // generator that boolean values in the elements of an x86 vector register
6850     // are -1 for true and 0 for false. We then use the LLVM semantics of 'true'
6851     // mapping a select to operand #1, and 'false' mapping to operand #2. The
6852     // reality in x86 is that vector masks (pre-AVX-512) use only the high bit
6853     // of the element (the remaining are ignored) and 0 in that high bit would
6854     // mean operand #1 while 1 in the high bit would mean operand #2. So while
6855     // the LLVM model for boolean values in vector elements gets the relevant
6856     // bit set, it is set backwards and over constrained relative to x86's
6857     // actual model.
6858     SmallVector<SDValue, 32> VSELECTMask;
6859     for (int i = 0, Size = Mask.size(); i < Size; ++i)
6860       for (int j = 0; j < Scale; ++j)
6861         VSELECTMask.push_back(
6862             Mask[i] < 0 ? DAG.getUNDEF(MVT::i8)
6863                         : DAG.getConstant(Mask[i] < Size ? -1 : 0, DL,
6864                                           MVT::i8));
6865
6866     V1 = DAG.getBitcast(BlendVT, V1);
6867     V2 = DAG.getBitcast(BlendVT, V2);
6868     return DAG.getBitcast(VT, DAG.getNode(ISD::VSELECT, DL, BlendVT,
6869                                           DAG.getNode(ISD::BUILD_VECTOR, DL,
6870                                                       BlendVT, VSELECTMask),
6871                                           V1, V2));
6872   }
6873
6874   default:
6875     llvm_unreachable("Not a supported integer vector type!");
6876   }
6877 }
6878
6879 /// \brief Try to lower as a blend of elements from two inputs followed by
6880 /// a single-input permutation.
6881 ///
6882 /// This matches the pattern where we can blend elements from two inputs and
6883 /// then reduce the shuffle to a single-input permutation.
6884 static SDValue lowerVectorShuffleAsBlendAndPermute(SDLoc DL, MVT VT, SDValue V1,
6885                                                    SDValue V2,
6886                                                    ArrayRef<int> Mask,
6887                                                    SelectionDAG &DAG) {
6888   // We build up the blend mask while checking whether a blend is a viable way
6889   // to reduce the shuffle.
6890   SmallVector<int, 32> BlendMask(Mask.size(), -1);
6891   SmallVector<int, 32> PermuteMask(Mask.size(), -1);
6892
6893   for (int i = 0, Size = Mask.size(); i < Size; ++i) {
6894     if (Mask[i] < 0)
6895       continue;
6896
6897     assert(Mask[i] < Size * 2 && "Shuffle input is out of bounds.");
6898
6899     if (BlendMask[Mask[i] % Size] == -1)
6900       BlendMask[Mask[i] % Size] = Mask[i];
6901     else if (BlendMask[Mask[i] % Size] != Mask[i])
6902       return SDValue(); // Can't blend in the needed input!
6903
6904     PermuteMask[i] = Mask[i] % Size;
6905   }
6906
6907   SDValue V = DAG.getVectorShuffle(VT, DL, V1, V2, BlendMask);
6908   return DAG.getVectorShuffle(VT, DL, V, DAG.getUNDEF(VT), PermuteMask);
6909 }
6910
6911 /// \brief Generic routine to decompose a shuffle and blend into indepndent
6912 /// blends and permutes.
6913 ///
6914 /// This matches the extremely common pattern for handling combined
6915 /// shuffle+blend operations on newer X86 ISAs where we have very fast blend
6916 /// operations. It will try to pick the best arrangement of shuffles and
6917 /// blends.
6918 static SDValue lowerVectorShuffleAsDecomposedShuffleBlend(SDLoc DL, MVT VT,
6919                                                           SDValue V1,
6920                                                           SDValue V2,
6921                                                           ArrayRef<int> Mask,
6922                                                           SelectionDAG &DAG) {
6923   // Shuffle the input elements into the desired positions in V1 and V2 and
6924   // blend them together.
6925   SmallVector<int, 32> V1Mask(Mask.size(), -1);
6926   SmallVector<int, 32> V2Mask(Mask.size(), -1);
6927   SmallVector<int, 32> BlendMask(Mask.size(), -1);
6928   for (int i = 0, Size = Mask.size(); i < Size; ++i)
6929     if (Mask[i] >= 0 && Mask[i] < Size) {
6930       V1Mask[i] = Mask[i];
6931       BlendMask[i] = i;
6932     } else if (Mask[i] >= Size) {
6933       V2Mask[i] = Mask[i] - Size;
6934       BlendMask[i] = i + Size;
6935     }
6936
6937   // Try to lower with the simpler initial blend strategy unless one of the
6938   // input shuffles would be a no-op. We prefer to shuffle inputs as the
6939   // shuffle may be able to fold with a load or other benefit. However, when
6940   // we'll have to do 2x as many shuffles in order to achieve this, blending
6941   // first is a better strategy.
6942   if (!isNoopShuffleMask(V1Mask) && !isNoopShuffleMask(V2Mask))
6943     if (SDValue BlendPerm =
6944             lowerVectorShuffleAsBlendAndPermute(DL, VT, V1, V2, Mask, DAG))
6945       return BlendPerm;
6946
6947   V1 = DAG.getVectorShuffle(VT, DL, V1, DAG.getUNDEF(VT), V1Mask);
6948   V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Mask);
6949   return DAG.getVectorShuffle(VT, DL, V1, V2, BlendMask);
6950 }
6951
6952 /// \brief Try to lower a vector shuffle as a byte rotation.
6953 ///
6954 /// SSSE3 has a generic PALIGNR instruction in x86 that will do an arbitrary
6955 /// byte-rotation of the concatenation of two vectors; pre-SSSE3 can use
6956 /// a PSRLDQ/PSLLDQ/POR pattern to get a similar effect. This routine will
6957 /// try to generically lower a vector shuffle through such an pattern. It
6958 /// does not check for the profitability of lowering either as PALIGNR or
6959 /// PSRLDQ/PSLLDQ/POR, only whether the mask is valid to lower in that form.
6960 /// This matches shuffle vectors that look like:
6961 ///
6962 ///   v8i16 [11, 12, 13, 14, 15, 0, 1, 2]
6963 ///
6964 /// Essentially it concatenates V1 and V2, shifts right by some number of
6965 /// elements, and takes the low elements as the result. Note that while this is
6966 /// specified as a *right shift* because x86 is little-endian, it is a *left
6967 /// rotate* of the vector lanes.
6968 static SDValue lowerVectorShuffleAsByteRotate(SDLoc DL, MVT VT, SDValue V1,
6969                                               SDValue V2,
6970                                               ArrayRef<int> Mask,
6971                                               const X86Subtarget *Subtarget,
6972                                               SelectionDAG &DAG) {
6973   assert(!isNoopShuffleMask(Mask) && "We shouldn't lower no-op shuffles!");
6974
6975   int NumElts = Mask.size();
6976   int NumLanes = VT.getSizeInBits() / 128;
6977   int NumLaneElts = NumElts / NumLanes;
6978
6979   // We need to detect various ways of spelling a rotation:
6980   //   [11, 12, 13, 14, 15,  0,  1,  2]
6981   //   [-1, 12, 13, 14, -1, -1,  1, -1]
6982   //   [-1, -1, -1, -1, -1, -1,  1,  2]
6983   //   [ 3,  4,  5,  6,  7,  8,  9, 10]
6984   //   [-1,  4,  5,  6, -1, -1,  9, -1]
6985   //   [-1,  4,  5,  6, -1, -1, -1, -1]
6986   int Rotation = 0;
6987   SDValue Lo, Hi;
6988   for (int l = 0; l < NumElts; l += NumLaneElts) {
6989     for (int i = 0; i < NumLaneElts; ++i) {
6990       if (Mask[l + i] == -1)
6991         continue;
6992       assert(Mask[l + i] >= 0 && "Only -1 is a valid negative mask element!");
6993
6994       // Get the mod-Size index and lane correct it.
6995       int LaneIdx = (Mask[l + i] % NumElts) - l;
6996       // Make sure it was in this lane.
6997       if (LaneIdx < 0 || LaneIdx >= NumLaneElts)
6998         return SDValue();
6999
7000       // Determine where a rotated vector would have started.
7001       int StartIdx = i - LaneIdx;
7002       if (StartIdx == 0)
7003         // The identity rotation isn't interesting, stop.
7004         return SDValue();
7005
7006       // If we found the tail of a vector the rotation must be the missing
7007       // front. If we found the head of a vector, it must be how much of the
7008       // head.
7009       int CandidateRotation = StartIdx < 0 ? -StartIdx : NumLaneElts - StartIdx;
7010
7011       if (Rotation == 0)
7012         Rotation = CandidateRotation;
7013       else if (Rotation != CandidateRotation)
7014         // The rotations don't match, so we can't match this mask.
7015         return SDValue();
7016
7017       // Compute which value this mask is pointing at.
7018       SDValue MaskV = Mask[l + i] < NumElts ? V1 : V2;
7019
7020       // Compute which of the two target values this index should be assigned
7021       // to. This reflects whether the high elements are remaining or the low
7022       // elements are remaining.
7023       SDValue &TargetV = StartIdx < 0 ? Hi : Lo;
7024
7025       // Either set up this value if we've not encountered it before, or check
7026       // that it remains consistent.
7027       if (!TargetV)
7028         TargetV = MaskV;
7029       else if (TargetV != MaskV)
7030         // This may be a rotation, but it pulls from the inputs in some
7031         // unsupported interleaving.
7032         return SDValue();
7033     }
7034   }
7035
7036   // Check that we successfully analyzed the mask, and normalize the results.
7037   assert(Rotation != 0 && "Failed to locate a viable rotation!");
7038   assert((Lo || Hi) && "Failed to find a rotated input vector!");
7039   if (!Lo)
7040     Lo = Hi;
7041   else if (!Hi)
7042     Hi = Lo;
7043
7044   // The actual rotate instruction rotates bytes, so we need to scale the
7045   // rotation based on how many bytes are in the vector lane.
7046   int Scale = 16 / NumLaneElts;
7047
7048   // SSSE3 targets can use the palignr instruction.
7049   if (Subtarget->hasSSSE3()) {
7050     // Cast the inputs to i8 vector of correct length to match PALIGNR.
7051     MVT AlignVT = MVT::getVectorVT(MVT::i8, 16 * NumLanes);
7052     Lo = DAG.getBitcast(AlignVT, Lo);
7053     Hi = DAG.getBitcast(AlignVT, Hi);
7054
7055     return DAG.getBitcast(
7056         VT, DAG.getNode(X86ISD::PALIGNR, DL, AlignVT, Lo, Hi,
7057                         DAG.getConstant(Rotation * Scale, DL, MVT::i8)));
7058   }
7059
7060   assert(VT.getSizeInBits() == 128 &&
7061          "Rotate-based lowering only supports 128-bit lowering!");
7062   assert(Mask.size() <= 16 &&
7063          "Can shuffle at most 16 bytes in a 128-bit vector!");
7064
7065   // Default SSE2 implementation
7066   int LoByteShift = 16 - Rotation * Scale;
7067   int HiByteShift = Rotation * Scale;
7068
7069   // Cast the inputs to v2i64 to match PSLLDQ/PSRLDQ.
7070   Lo = DAG.getBitcast(MVT::v2i64, Lo);
7071   Hi = DAG.getBitcast(MVT::v2i64, Hi);
7072
7073   SDValue LoShift = DAG.getNode(X86ISD::VSHLDQ, DL, MVT::v2i64, Lo,
7074                                 DAG.getConstant(LoByteShift, DL, MVT::i8));
7075   SDValue HiShift = DAG.getNode(X86ISD::VSRLDQ, DL, MVT::v2i64, Hi,
7076                                 DAG.getConstant(HiByteShift, DL, MVT::i8));
7077   return DAG.getBitcast(VT,
7078                         DAG.getNode(ISD::OR, DL, MVT::v2i64, LoShift, HiShift));
7079 }
7080
7081 /// \brief Try to lower a vector shuffle as a bit shift (shifts in zeros).
7082 ///
7083 /// Attempts to match a shuffle mask against the PSLL(W/D/Q/DQ) and
7084 /// PSRL(W/D/Q/DQ) SSE2 and AVX2 logical bit-shift instructions. The function
7085 /// matches elements from one of the input vectors shuffled to the left or
7086 /// right with zeroable elements 'shifted in'. It handles both the strictly
7087 /// bit-wise element shifts and the byte shift across an entire 128-bit double
7088 /// quad word lane.
7089 ///
7090 /// PSHL : (little-endian) left bit shift.
7091 /// [ zz, 0, zz,  2 ]
7092 /// [ -1, 4, zz, -1 ]
7093 /// PSRL : (little-endian) right bit shift.
7094 /// [  1, zz,  3, zz]
7095 /// [ -1, -1,  7, zz]
7096 /// PSLLDQ : (little-endian) left byte shift
7097 /// [ zz,  0,  1,  2,  3,  4,  5,  6]
7098 /// [ zz, zz, -1, -1,  2,  3,  4, -1]
7099 /// [ zz, zz, zz, zz, zz, zz, -1,  1]
7100 /// PSRLDQ : (little-endian) right byte shift
7101 /// [  5, 6,  7, zz, zz, zz, zz, zz]
7102 /// [ -1, 5,  6,  7, zz, zz, zz, zz]
7103 /// [  1, 2, -1, -1, -1, -1, zz, zz]
7104 static SDValue lowerVectorShuffleAsShift(SDLoc DL, MVT VT, SDValue V1,
7105                                          SDValue V2, ArrayRef<int> Mask,
7106                                          SelectionDAG &DAG) {
7107   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7108
7109   int Size = Mask.size();
7110   assert(Size == (int)VT.getVectorNumElements() && "Unexpected mask size");
7111
7112   auto CheckZeros = [&](int Shift, int Scale, bool Left) {
7113     for (int i = 0; i < Size; i += Scale)
7114       for (int j = 0; j < Shift; ++j)
7115         if (!Zeroable[i + j + (Left ? 0 : (Scale - Shift))])
7116           return false;
7117
7118     return true;
7119   };
7120
7121   auto MatchShift = [&](int Shift, int Scale, bool Left, SDValue V) {
7122     for (int i = 0; i != Size; i += Scale) {
7123       unsigned Pos = Left ? i + Shift : i;
7124       unsigned Low = Left ? i : i + Shift;
7125       unsigned Len = Scale - Shift;
7126       if (!isSequentialOrUndefInRange(Mask, Pos, Len,
7127                                       Low + (V == V1 ? 0 : Size)))
7128         return SDValue();
7129     }
7130
7131     int ShiftEltBits = VT.getScalarSizeInBits() * Scale;
7132     bool ByteShift = ShiftEltBits > 64;
7133     unsigned OpCode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI)
7134                            : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI);
7135     int ShiftAmt = Shift * VT.getScalarSizeInBits() / (ByteShift ? 8 : 1);
7136
7137     // Normalize the scale for byte shifts to still produce an i64 element
7138     // type.
7139     Scale = ByteShift ? Scale / 2 : Scale;
7140
7141     // We need to round trip through the appropriate type for the shift.
7142     MVT ShiftSVT = MVT::getIntegerVT(VT.getScalarSizeInBits() * Scale);
7143     MVT ShiftVT = MVT::getVectorVT(ShiftSVT, Size / Scale);
7144     assert(DAG.getTargetLoweringInfo().isTypeLegal(ShiftVT) &&
7145            "Illegal integer vector type");
7146     V = DAG.getBitcast(ShiftVT, V);
7147
7148     V = DAG.getNode(OpCode, DL, ShiftVT, V,
7149                     DAG.getConstant(ShiftAmt, DL, MVT::i8));
7150     return DAG.getBitcast(VT, V);
7151   };
7152
7153   // SSE/AVX supports logical shifts up to 64-bit integers - so we can just
7154   // keep doubling the size of the integer elements up to that. We can
7155   // then shift the elements of the integer vector by whole multiples of
7156   // their width within the elements of the larger integer vector. Test each
7157   // multiple to see if we can find a match with the moved element indices
7158   // and that the shifted in elements are all zeroable.
7159   for (int Scale = 2; Scale * VT.getScalarSizeInBits() <= 128; Scale *= 2)
7160     for (int Shift = 1; Shift != Scale; ++Shift)
7161       for (bool Left : {true, false})
7162         if (CheckZeros(Shift, Scale, Left))
7163           for (SDValue V : {V1, V2})
7164             if (SDValue Match = MatchShift(Shift, Scale, Left, V))
7165               return Match;
7166
7167   // no match
7168   return SDValue();
7169 }
7170
7171 /// \brief Try to lower a vector shuffle using SSE4a EXTRQ/INSERTQ.
7172 static SDValue lowerVectorShuffleWithSSE4A(SDLoc DL, MVT VT, SDValue V1,
7173                                            SDValue V2, ArrayRef<int> Mask,
7174                                            SelectionDAG &DAG) {
7175   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7176   assert(!Zeroable.all() && "Fully zeroable shuffle mask");
7177
7178   int Size = Mask.size();
7179   int HalfSize = Size / 2;
7180   assert(Size == (int)VT.getVectorNumElements() && "Unexpected mask size");
7181
7182   // Upper half must be undefined.
7183   if (!isUndefInRange(Mask, HalfSize, HalfSize))
7184     return SDValue();
7185
7186   // EXTRQ: Extract Len elements from lower half of source, starting at Idx.
7187   // Remainder of lower half result is zero and upper half is all undef.
7188   auto LowerAsEXTRQ = [&]() {
7189     // Determine the extraction length from the part of the
7190     // lower half that isn't zeroable.
7191     int Len = HalfSize;
7192     for (; Len >= 0; --Len)
7193       if (!Zeroable[Len - 1])
7194         break;
7195     assert(Len > 0 && "Zeroable shuffle mask");
7196
7197     // Attempt to match first Len sequential elements from the lower half.
7198     SDValue Src;
7199     int Idx = -1;
7200     for (int i = 0; i != Len; ++i) {
7201       int M = Mask[i];
7202       if (M < 0)
7203         continue;
7204       SDValue &V = (M < Size ? V1 : V2);
7205       M = M % Size;
7206
7207       // All mask elements must be in the lower half.
7208       if (M > HalfSize)
7209         return SDValue();
7210
7211       if (Idx < 0 || (Src == V && Idx == (M - i))) {
7212         Src = V;
7213         Idx = M - i;
7214         continue;
7215       }
7216       return SDValue();
7217     }
7218
7219     if (Idx < 0)
7220       return SDValue();
7221
7222     assert((Idx + Len) <= HalfSize && "Illegal extraction mask");
7223     int BitLen = (Len * VT.getScalarSizeInBits()) & 0x3f;
7224     int BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f;
7225     return DAG.getNode(X86ISD::EXTRQI, DL, VT, Src,
7226                        DAG.getConstant(BitLen, DL, MVT::i8),
7227                        DAG.getConstant(BitIdx, DL, MVT::i8));
7228   };
7229
7230   if (SDValue ExtrQ = LowerAsEXTRQ())
7231     return ExtrQ;
7232
7233   // INSERTQ: Extract lowest Len elements from lower half of second source and
7234   // insert over first source, starting at Idx.
7235   // { A[0], .., A[Idx-1], B[0], .., B[Len-1], A[Idx+Len], .., UNDEF, ... }
7236   auto LowerAsInsertQ = [&]() {
7237     for (int Idx = 0; Idx != HalfSize; ++Idx) {
7238       SDValue Base;
7239
7240       // Attempt to match first source from mask before insertion point.
7241       if (isUndefInRange(Mask, 0, Idx)) {
7242         /* EMPTY */
7243       } else if (isSequentialOrUndefInRange(Mask, 0, Idx, 0)) {
7244         Base = V1;
7245       } else if (isSequentialOrUndefInRange(Mask, 0, Idx, Size)) {
7246         Base = V2;
7247       } else {
7248         continue;
7249       }
7250
7251       // Extend the extraction length looking to match both the insertion of
7252       // the second source and the remaining elements of the first.
7253       for (int Hi = Idx + 1; Hi <= HalfSize; ++Hi) {
7254         SDValue Insert;
7255         int Len = Hi - Idx;
7256
7257         // Match insertion.
7258         if (isSequentialOrUndefInRange(Mask, Idx, Len, 0)) {
7259           Insert = V1;
7260         } else if (isSequentialOrUndefInRange(Mask, Idx, Len, Size)) {
7261           Insert = V2;
7262         } else {
7263           continue;
7264         }
7265
7266         // Match the remaining elements of the lower half.
7267         if (isUndefInRange(Mask, Hi, HalfSize - Hi)) {
7268           /* EMPTY */
7269         } else if ((!Base || (Base == V1)) &&
7270                    isSequentialOrUndefInRange(Mask, Hi, HalfSize - Hi, Hi)) {
7271           Base = V1;
7272         } else if ((!Base || (Base == V2)) &&
7273                    isSequentialOrUndefInRange(Mask, Hi, HalfSize - Hi,
7274                                               Size + Hi)) {
7275           Base = V2;
7276         } else {
7277           continue;
7278         }
7279
7280         // We may not have a base (first source) - this can safely be undefined.
7281         if (!Base)
7282           Base = DAG.getUNDEF(VT);
7283
7284         int BitLen = (Len * VT.getScalarSizeInBits()) & 0x3f;
7285         int BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f;
7286         return DAG.getNode(X86ISD::INSERTQI, DL, VT, Base, Insert,
7287                            DAG.getConstant(BitLen, DL, MVT::i8),
7288                            DAG.getConstant(BitIdx, DL, MVT::i8));
7289       }
7290     }
7291
7292     return SDValue();
7293   };
7294
7295   if (SDValue InsertQ = LowerAsInsertQ())
7296     return InsertQ;
7297
7298   return SDValue();
7299 }
7300
7301 /// \brief Lower a vector shuffle as a zero or any extension.
7302 ///
7303 /// Given a specific number of elements, element bit width, and extension
7304 /// stride, produce either a zero or any extension based on the available
7305 /// features of the subtarget.
7306 static SDValue lowerVectorShuffleAsSpecificZeroOrAnyExtend(
7307     SDLoc DL, MVT VT, int Scale, bool AnyExt, SDValue InputV,
7308     ArrayRef<int> Mask, const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7309   assert(Scale > 1 && "Need a scale to extend.");
7310   int NumElements = VT.getVectorNumElements();
7311   int EltBits = VT.getScalarSizeInBits();
7312   assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
7313          "Only 8, 16, and 32 bit elements can be extended.");
7314   assert(Scale * EltBits <= 64 && "Cannot zero extend past 64 bits.");
7315
7316   // Found a valid zext mask! Try various lowering strategies based on the
7317   // input type and available ISA extensions.
7318   if (Subtarget->hasSSE41()) {
7319     MVT ExtVT = MVT::getVectorVT(MVT::getIntegerVT(EltBits * Scale),
7320                                  NumElements / Scale);
7321     return DAG.getBitcast(VT, DAG.getNode(X86ISD::VZEXT, DL, ExtVT, InputV));
7322   }
7323
7324   // For any extends we can cheat for larger element sizes and use shuffle
7325   // instructions that can fold with a load and/or copy.
7326   if (AnyExt && EltBits == 32) {
7327     int PSHUFDMask[4] = {0, -1, 1, -1};
7328     return DAG.getBitcast(
7329         VT, DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7330                         DAG.getBitcast(MVT::v4i32, InputV),
7331                         getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
7332   }
7333   if (AnyExt && EltBits == 16 && Scale > 2) {
7334     int PSHUFDMask[4] = {0, -1, 0, -1};
7335     InputV = DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32,
7336                          DAG.getBitcast(MVT::v4i32, InputV),
7337                          getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG));
7338     int PSHUFHWMask[4] = {1, -1, -1, -1};
7339     return DAG.getBitcast(
7340         VT, DAG.getNode(X86ISD::PSHUFHW, DL, MVT::v8i16,
7341                         DAG.getBitcast(MVT::v8i16, InputV),
7342                         getV4X86ShuffleImm8ForMask(PSHUFHWMask, DL, DAG)));
7343   }
7344
7345   // The SSE4A EXTRQ instruction can efficiently extend the first 2 lanes
7346   // to 64-bits.
7347   if ((Scale * EltBits) == 64 && EltBits < 32 && Subtarget->hasSSE4A()) {
7348     assert(NumElements == (int)Mask.size() && "Unexpected shuffle mask size!");
7349     assert(VT.getSizeInBits() == 128 && "Unexpected vector width!");
7350
7351     SDValue Lo = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
7352                              DAG.getNode(X86ISD::EXTRQI, DL, VT, InputV,
7353                                          DAG.getConstant(EltBits, DL, MVT::i8),
7354                                          DAG.getConstant(0, DL, MVT::i8)));
7355     if (isUndefInRange(Mask, NumElements/2, NumElements/2))
7356       return DAG.getNode(ISD::BITCAST, DL, VT, Lo);
7357
7358     SDValue Hi =
7359         DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
7360                     DAG.getNode(X86ISD::EXTRQI, DL, VT, InputV,
7361                                 DAG.getConstant(EltBits, DL, MVT::i8),
7362                                 DAG.getConstant(EltBits, DL, MVT::i8)));
7363     return DAG.getNode(ISD::BITCAST, DL, VT,
7364                        DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, Lo, Hi));
7365   }
7366
7367   // If this would require more than 2 unpack instructions to expand, use
7368   // pshufb when available. We can only use more than 2 unpack instructions
7369   // when zero extending i8 elements which also makes it easier to use pshufb.
7370   if (Scale > 4 && EltBits == 8 && Subtarget->hasSSSE3()) {
7371     assert(NumElements == 16 && "Unexpected byte vector width!");
7372     SDValue PSHUFBMask[16];
7373     for (int i = 0; i < 16; ++i)
7374       PSHUFBMask[i] =
7375           DAG.getConstant((i % Scale == 0) ? i / Scale : 0x80, DL, MVT::i8);
7376     InputV = DAG.getBitcast(MVT::v16i8, InputV);
7377     return DAG.getBitcast(VT,
7378                           DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8, InputV,
7379                                       DAG.getNode(ISD::BUILD_VECTOR, DL,
7380                                                   MVT::v16i8, PSHUFBMask)));
7381   }
7382
7383   // Otherwise emit a sequence of unpacks.
7384   do {
7385     MVT InputVT = MVT::getVectorVT(MVT::getIntegerVT(EltBits), NumElements);
7386     SDValue Ext = AnyExt ? DAG.getUNDEF(InputVT)
7387                          : getZeroVector(InputVT, Subtarget, DAG, DL);
7388     InputV = DAG.getBitcast(InputVT, InputV);
7389     InputV = DAG.getNode(X86ISD::UNPCKL, DL, InputVT, InputV, Ext);
7390     Scale /= 2;
7391     EltBits *= 2;
7392     NumElements /= 2;
7393   } while (Scale > 1);
7394   return DAG.getBitcast(VT, InputV);
7395 }
7396
7397 /// \brief Try to lower a vector shuffle as a zero extension on any microarch.
7398 ///
7399 /// This routine will try to do everything in its power to cleverly lower
7400 /// a shuffle which happens to match the pattern of a zero extend. It doesn't
7401 /// check for the profitability of this lowering,  it tries to aggressively
7402 /// match this pattern. It will use all of the micro-architectural details it
7403 /// can to emit an efficient lowering. It handles both blends with all-zero
7404 /// inputs to explicitly zero-extend and undef-lanes (sometimes undef due to
7405 /// masking out later).
7406 ///
7407 /// The reason we have dedicated lowering for zext-style shuffles is that they
7408 /// are both incredibly common and often quite performance sensitive.
7409 static SDValue lowerVectorShuffleAsZeroOrAnyExtend(
7410     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
7411     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7412   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7413
7414   int Bits = VT.getSizeInBits();
7415   int NumElements = VT.getVectorNumElements();
7416   assert(VT.getScalarSizeInBits() <= 32 &&
7417          "Exceeds 32-bit integer zero extension limit");
7418   assert((int)Mask.size() == NumElements && "Unexpected shuffle mask size");
7419
7420   // Define a helper function to check a particular ext-scale and lower to it if
7421   // valid.
7422   auto Lower = [&](int Scale) -> SDValue {
7423     SDValue InputV;
7424     bool AnyExt = true;
7425     for (int i = 0; i < NumElements; ++i) {
7426       if (Mask[i] == -1)
7427         continue; // Valid anywhere but doesn't tell us anything.
7428       if (i % Scale != 0) {
7429         // Each of the extended elements need to be zeroable.
7430         if (!Zeroable[i])
7431           return SDValue();
7432
7433         // We no longer are in the anyext case.
7434         AnyExt = false;
7435         continue;
7436       }
7437
7438       // Each of the base elements needs to be consecutive indices into the
7439       // same input vector.
7440       SDValue V = Mask[i] < NumElements ? V1 : V2;
7441       if (!InputV)
7442         InputV = V;
7443       else if (InputV != V)
7444         return SDValue(); // Flip-flopping inputs.
7445
7446       if (Mask[i] % NumElements != i / Scale)
7447         return SDValue(); // Non-consecutive strided elements.
7448     }
7449
7450     // If we fail to find an input, we have a zero-shuffle which should always
7451     // have already been handled.
7452     // FIXME: Maybe handle this here in case during blending we end up with one?
7453     if (!InputV)
7454       return SDValue();
7455
7456     return lowerVectorShuffleAsSpecificZeroOrAnyExtend(
7457         DL, VT, Scale, AnyExt, InputV, Mask, Subtarget, DAG);
7458   };
7459
7460   // The widest scale possible for extending is to a 64-bit integer.
7461   assert(Bits % 64 == 0 &&
7462          "The number of bits in a vector must be divisible by 64 on x86!");
7463   int NumExtElements = Bits / 64;
7464
7465   // Each iteration, try extending the elements half as much, but into twice as
7466   // many elements.
7467   for (; NumExtElements < NumElements; NumExtElements *= 2) {
7468     assert(NumElements % NumExtElements == 0 &&
7469            "The input vector size must be divisible by the extended size.");
7470     if (SDValue V = Lower(NumElements / NumExtElements))
7471       return V;
7472   }
7473
7474   // General extends failed, but 128-bit vectors may be able to use MOVQ.
7475   if (Bits != 128)
7476     return SDValue();
7477
7478   // Returns one of the source operands if the shuffle can be reduced to a
7479   // MOVQ, copying the lower 64-bits and zero-extending to the upper 64-bits.
7480   auto CanZExtLowHalf = [&]() {
7481     for (int i = NumElements / 2; i != NumElements; ++i)
7482       if (!Zeroable[i])
7483         return SDValue();
7484     if (isSequentialOrUndefInRange(Mask, 0, NumElements / 2, 0))
7485       return V1;
7486     if (isSequentialOrUndefInRange(Mask, 0, NumElements / 2, NumElements))
7487       return V2;
7488     return SDValue();
7489   };
7490
7491   if (SDValue V = CanZExtLowHalf()) {
7492     V = DAG.getBitcast(MVT::v2i64, V);
7493     V = DAG.getNode(X86ISD::VZEXT_MOVL, DL, MVT::v2i64, V);
7494     return DAG.getBitcast(VT, V);
7495   }
7496
7497   // No viable ext lowering found.
7498   return SDValue();
7499 }
7500
7501 /// \brief Try to get a scalar value for a specific element of a vector.
7502 ///
7503 /// Looks through BUILD_VECTOR and SCALAR_TO_VECTOR nodes to find a scalar.
7504 static SDValue getScalarValueForVectorElement(SDValue V, int Idx,
7505                                               SelectionDAG &DAG) {
7506   MVT VT = V.getSimpleValueType();
7507   MVT EltVT = VT.getVectorElementType();
7508   while (V.getOpcode() == ISD::BITCAST)
7509     V = V.getOperand(0);
7510   // If the bitcasts shift the element size, we can't extract an equivalent
7511   // element from it.
7512   MVT NewVT = V.getSimpleValueType();
7513   if (!NewVT.isVector() || NewVT.getScalarSizeInBits() != VT.getScalarSizeInBits())
7514     return SDValue();
7515
7516   if (V.getOpcode() == ISD::BUILD_VECTOR ||
7517       (Idx == 0 && V.getOpcode() == ISD::SCALAR_TO_VECTOR)) {
7518     // Ensure the scalar operand is the same size as the destination.
7519     // FIXME: Add support for scalar truncation where possible.
7520     SDValue S = V.getOperand(Idx);
7521     if (EltVT.getSizeInBits() == S.getSimpleValueType().getSizeInBits())
7522       return DAG.getNode(ISD::BITCAST, SDLoc(V), EltVT, S);
7523   }
7524
7525   return SDValue();
7526 }
7527
7528 /// \brief Helper to test for a load that can be folded with x86 shuffles.
7529 ///
7530 /// This is particularly important because the set of instructions varies
7531 /// significantly based on whether the operand is a load or not.
7532 static bool isShuffleFoldableLoad(SDValue V) {
7533   while (V.getOpcode() == ISD::BITCAST)
7534     V = V.getOperand(0);
7535
7536   return ISD::isNON_EXTLoad(V.getNode());
7537 }
7538
7539 /// \brief Try to lower insertion of a single element into a zero vector.
7540 ///
7541 /// This is a common pattern that we have especially efficient patterns to lower
7542 /// across all subtarget feature sets.
7543 static SDValue lowerVectorShuffleAsElementInsertion(
7544     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
7545     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
7546   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7547   MVT ExtVT = VT;
7548   MVT EltVT = VT.getVectorElementType();
7549
7550   int V2Index = std::find_if(Mask.begin(), Mask.end(),
7551                              [&Mask](int M) { return M >= (int)Mask.size(); }) -
7552                 Mask.begin();
7553   bool IsV1Zeroable = true;
7554   for (int i = 0, Size = Mask.size(); i < Size; ++i)
7555     if (i != V2Index && !Zeroable[i]) {
7556       IsV1Zeroable = false;
7557       break;
7558     }
7559
7560   // Check for a single input from a SCALAR_TO_VECTOR node.
7561   // FIXME: All of this should be canonicalized into INSERT_VECTOR_ELT and
7562   // all the smarts here sunk into that routine. However, the current
7563   // lowering of BUILD_VECTOR makes that nearly impossible until the old
7564   // vector shuffle lowering is dead.
7565   SDValue V2S = getScalarValueForVectorElement(V2, Mask[V2Index] - Mask.size(),
7566                                                DAG);
7567   if (V2S && DAG.getTargetLoweringInfo().isTypeLegal(V2S.getValueType())) {
7568     // We need to zext the scalar if it is smaller than an i32.
7569     V2S = DAG.getBitcast(EltVT, V2S);
7570     if (EltVT == MVT::i8 || EltVT == MVT::i16) {
7571       // Using zext to expand a narrow element won't work for non-zero
7572       // insertions.
7573       if (!IsV1Zeroable)
7574         return SDValue();
7575
7576       // Zero-extend directly to i32.
7577       ExtVT = MVT::v4i32;
7578       V2S = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, V2S);
7579     }
7580     V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, ExtVT, V2S);
7581   } else if (Mask[V2Index] != (int)Mask.size() || EltVT == MVT::i8 ||
7582              EltVT == MVT::i16) {
7583     // Either not inserting from the low element of the input or the input
7584     // element size is too small to use VZEXT_MOVL to clear the high bits.
7585     return SDValue();
7586   }
7587
7588   if (!IsV1Zeroable) {
7589     // If V1 can't be treated as a zero vector we have fewer options to lower
7590     // this. We can't support integer vectors or non-zero targets cheaply, and
7591     // the V1 elements can't be permuted in any way.
7592     assert(VT == ExtVT && "Cannot change extended type when non-zeroable!");
7593     if (!VT.isFloatingPoint() || V2Index != 0)
7594       return SDValue();
7595     SmallVector<int, 8> V1Mask(Mask.begin(), Mask.end());
7596     V1Mask[V2Index] = -1;
7597     if (!isNoopShuffleMask(V1Mask))
7598       return SDValue();
7599     // This is essentially a special case blend operation, but if we have
7600     // general purpose blend operations, they are always faster. Bail and let
7601     // the rest of the lowering handle these as blends.
7602     if (Subtarget->hasSSE41())
7603       return SDValue();
7604
7605     // Otherwise, use MOVSD or MOVSS.
7606     assert((EltVT == MVT::f32 || EltVT == MVT::f64) &&
7607            "Only two types of floating point element types to handle!");
7608     return DAG.getNode(EltVT == MVT::f32 ? X86ISD::MOVSS : X86ISD::MOVSD, DL,
7609                        ExtVT, V1, V2);
7610   }
7611
7612   // This lowering only works for the low element with floating point vectors.
7613   if (VT.isFloatingPoint() && V2Index != 0)
7614     return SDValue();
7615
7616   V2 = DAG.getNode(X86ISD::VZEXT_MOVL, DL, ExtVT, V2);
7617   if (ExtVT != VT)
7618     V2 = DAG.getBitcast(VT, V2);
7619
7620   if (V2Index != 0) {
7621     // If we have 4 or fewer lanes we can cheaply shuffle the element into
7622     // the desired position. Otherwise it is more efficient to do a vector
7623     // shift left. We know that we can do a vector shift left because all
7624     // the inputs are zero.
7625     if (VT.isFloatingPoint() || VT.getVectorNumElements() <= 4) {
7626       SmallVector<int, 4> V2Shuffle(Mask.size(), 1);
7627       V2Shuffle[V2Index] = 0;
7628       V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Shuffle);
7629     } else {
7630       V2 = DAG.getBitcast(MVT::v2i64, V2);
7631       V2 = DAG.getNode(
7632           X86ISD::VSHLDQ, DL, MVT::v2i64, V2,
7633           DAG.getConstant(V2Index * EltVT.getSizeInBits() / 8, DL,
7634                           DAG.getTargetLoweringInfo().getScalarShiftAmountTy(
7635                               DAG.getDataLayout(), VT)));
7636       V2 = DAG.getBitcast(VT, V2);
7637     }
7638   }
7639   return V2;
7640 }
7641
7642 /// \brief Try to lower broadcast of a single element.
7643 ///
7644 /// For convenience, this code also bundles all of the subtarget feature set
7645 /// filtering. While a little annoying to re-dispatch on type here, there isn't
7646 /// a convenient way to factor it out.
7647 static SDValue lowerVectorShuffleAsBroadcast(SDLoc DL, MVT VT, SDValue V,
7648                                              ArrayRef<int> Mask,
7649                                              const X86Subtarget *Subtarget,
7650                                              SelectionDAG &DAG) {
7651   if (!Subtarget->hasAVX())
7652     return SDValue();
7653   if (VT.isInteger() && !Subtarget->hasAVX2())
7654     return SDValue();
7655
7656   // Check that the mask is a broadcast.
7657   int BroadcastIdx = -1;
7658   for (int M : Mask)
7659     if (M >= 0 && BroadcastIdx == -1)
7660       BroadcastIdx = M;
7661     else if (M >= 0 && M != BroadcastIdx)
7662       return SDValue();
7663
7664   assert(BroadcastIdx < (int)Mask.size() && "We only expect to be called with "
7665                                             "a sorted mask where the broadcast "
7666                                             "comes from V1.");
7667
7668   // Go up the chain of (vector) values to find a scalar load that we can
7669   // combine with the broadcast.
7670   for (;;) {
7671     switch (V.getOpcode()) {
7672     case ISD::CONCAT_VECTORS: {
7673       int OperandSize = Mask.size() / V.getNumOperands();
7674       V = V.getOperand(BroadcastIdx / OperandSize);
7675       BroadcastIdx %= OperandSize;
7676       continue;
7677     }
7678
7679     case ISD::INSERT_SUBVECTOR: {
7680       SDValue VOuter = V.getOperand(0), VInner = V.getOperand(1);
7681       auto ConstantIdx = dyn_cast<ConstantSDNode>(V.getOperand(2));
7682       if (!ConstantIdx)
7683         break;
7684
7685       int BeginIdx = (int)ConstantIdx->getZExtValue();
7686       int EndIdx =
7687           BeginIdx + (int)VInner.getValueType().getVectorNumElements();
7688       if (BroadcastIdx >= BeginIdx && BroadcastIdx < EndIdx) {
7689         BroadcastIdx -= BeginIdx;
7690         V = VInner;
7691       } else {
7692         V = VOuter;
7693       }
7694       continue;
7695     }
7696     }
7697     break;
7698   }
7699
7700   // Check if this is a broadcast of a scalar. We special case lowering
7701   // for scalars so that we can more effectively fold with loads.
7702   // First, look through bitcast: if the original value has a larger element
7703   // type than the shuffle, the broadcast element is in essence truncated.
7704   // Make that explicit to ease folding.
7705   if (V.getOpcode() == ISD::BITCAST && VT.isInteger()) {
7706     EVT EltVT = VT.getVectorElementType();
7707     SDValue V0 = V.getOperand(0);
7708     EVT V0VT = V0.getValueType();
7709
7710     if (V0VT.isInteger() && V0VT.getVectorElementType().bitsGT(EltVT) &&
7711         ((V0.getOpcode() == ISD::BUILD_VECTOR ||
7712          (V0.getOpcode() == ISD::SCALAR_TO_VECTOR && BroadcastIdx == 0)))) {
7713       V = DAG.getNode(ISD::TRUNCATE, DL, EltVT, V0.getOperand(BroadcastIdx));
7714       BroadcastIdx = 0;
7715     }
7716   }
7717
7718   // Also check the simpler case, where we can directly reuse the scalar.
7719   if (V.getOpcode() == ISD::BUILD_VECTOR ||
7720       (V.getOpcode() == ISD::SCALAR_TO_VECTOR && BroadcastIdx == 0)) {
7721     V = V.getOperand(BroadcastIdx);
7722
7723     // If the scalar isn't a load, we can't broadcast from it in AVX1.
7724     // Only AVX2 has register broadcasts.
7725     if (!Subtarget->hasAVX2() && !isShuffleFoldableLoad(V))
7726       return SDValue();
7727   } else if (BroadcastIdx != 0 || !Subtarget->hasAVX2()) {
7728     // We can't broadcast from a vector register without AVX2, and we can only
7729     // broadcast from the zero-element of a vector register.
7730     return SDValue();
7731   }
7732
7733   return DAG.getNode(X86ISD::VBROADCAST, DL, VT, V);
7734 }
7735
7736 // Check for whether we can use INSERTPS to perform the shuffle. We only use
7737 // INSERTPS when the V1 elements are already in the correct locations
7738 // because otherwise we can just always use two SHUFPS instructions which
7739 // are much smaller to encode than a SHUFPS and an INSERTPS. We can also
7740 // perform INSERTPS if a single V1 element is out of place and all V2
7741 // elements are zeroable.
7742 static SDValue lowerVectorShuffleAsInsertPS(SDValue Op, SDValue V1, SDValue V2,
7743                                             ArrayRef<int> Mask,
7744                                             SelectionDAG &DAG) {
7745   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
7746   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7747   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
7748   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
7749
7750   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
7751
7752   unsigned ZMask = 0;
7753   int V1DstIndex = -1;
7754   int V2DstIndex = -1;
7755   bool V1UsedInPlace = false;
7756
7757   for (int i = 0; i < 4; ++i) {
7758     // Synthesize a zero mask from the zeroable elements (includes undefs).
7759     if (Zeroable[i]) {
7760       ZMask |= 1 << i;
7761       continue;
7762     }
7763
7764     // Flag if we use any V1 inputs in place.
7765     if (i == Mask[i]) {
7766       V1UsedInPlace = true;
7767       continue;
7768     }
7769
7770     // We can only insert a single non-zeroable element.
7771     if (V1DstIndex != -1 || V2DstIndex != -1)
7772       return SDValue();
7773
7774     if (Mask[i] < 4) {
7775       // V1 input out of place for insertion.
7776       V1DstIndex = i;
7777     } else {
7778       // V2 input for insertion.
7779       V2DstIndex = i;
7780     }
7781   }
7782
7783   // Don't bother if we have no (non-zeroable) element for insertion.
7784   if (V1DstIndex == -1 && V2DstIndex == -1)
7785     return SDValue();
7786
7787   // Determine element insertion src/dst indices. The src index is from the
7788   // start of the inserted vector, not the start of the concatenated vector.
7789   unsigned V2SrcIndex = 0;
7790   if (V1DstIndex != -1) {
7791     // If we have a V1 input out of place, we use V1 as the V2 element insertion
7792     // and don't use the original V2 at all.
7793     V2SrcIndex = Mask[V1DstIndex];
7794     V2DstIndex = V1DstIndex;
7795     V2 = V1;
7796   } else {
7797     V2SrcIndex = Mask[V2DstIndex] - 4;
7798   }
7799
7800   // If no V1 inputs are used in place, then the result is created only from
7801   // the zero mask and the V2 insertion - so remove V1 dependency.
7802   if (!V1UsedInPlace)
7803     V1 = DAG.getUNDEF(MVT::v4f32);
7804
7805   unsigned InsertPSMask = V2SrcIndex << 6 | V2DstIndex << 4 | ZMask;
7806   assert((InsertPSMask & ~0xFFu) == 0 && "Invalid mask!");
7807
7808   // Insert the V2 element into the desired position.
7809   SDLoc DL(Op);
7810   return DAG.getNode(X86ISD::INSERTPS, DL, MVT::v4f32, V1, V2,
7811                      DAG.getConstant(InsertPSMask, DL, MVT::i8));
7812 }
7813
7814 /// \brief Try to lower a shuffle as a permute of the inputs followed by an
7815 /// UNPCK instruction.
7816 ///
7817 /// This specifically targets cases where we end up with alternating between
7818 /// the two inputs, and so can permute them into something that feeds a single
7819 /// UNPCK instruction. Note that this routine only targets integer vectors
7820 /// because for floating point vectors we have a generalized SHUFPS lowering
7821 /// strategy that handles everything that doesn't *exactly* match an unpack,
7822 /// making this clever lowering unnecessary.
7823 static SDValue lowerVectorShuffleAsUnpack(SDLoc DL, MVT VT, SDValue V1,
7824                                           SDValue V2, ArrayRef<int> Mask,
7825                                           SelectionDAG &DAG) {
7826   assert(!VT.isFloatingPoint() &&
7827          "This routine only supports integer vectors.");
7828   assert(!isSingleInputShuffleMask(Mask) &&
7829          "This routine should only be used when blending two inputs.");
7830   assert(Mask.size() >= 2 && "Single element masks are invalid.");
7831
7832   int Size = Mask.size();
7833
7834   int NumLoInputs = std::count_if(Mask.begin(), Mask.end(), [Size](int M) {
7835     return M >= 0 && M % Size < Size / 2;
7836   });
7837   int NumHiInputs = std::count_if(
7838       Mask.begin(), Mask.end(), [Size](int M) { return M % Size >= Size / 2; });
7839
7840   bool UnpackLo = NumLoInputs >= NumHiInputs;
7841
7842   auto TryUnpack = [&](MVT UnpackVT, int Scale) {
7843     SmallVector<int, 32> V1Mask(Mask.size(), -1);
7844     SmallVector<int, 32> V2Mask(Mask.size(), -1);
7845
7846     for (int i = 0; i < Size; ++i) {
7847       if (Mask[i] < 0)
7848         continue;
7849
7850       // Each element of the unpack contains Scale elements from this mask.
7851       int UnpackIdx = i / Scale;
7852
7853       // We only handle the case where V1 feeds the first slots of the unpack.
7854       // We rely on canonicalization to ensure this is the case.
7855       if ((UnpackIdx % 2 == 0) != (Mask[i] < Size))
7856         return SDValue();
7857
7858       // Setup the mask for this input. The indexing is tricky as we have to
7859       // handle the unpack stride.
7860       SmallVectorImpl<int> &VMask = (UnpackIdx % 2 == 0) ? V1Mask : V2Mask;
7861       VMask[(UnpackIdx / 2) * Scale + i % Scale + (UnpackLo ? 0 : Size / 2)] =
7862           Mask[i] % Size;
7863     }
7864
7865     // If we will have to shuffle both inputs to use the unpack, check whether
7866     // we can just unpack first and shuffle the result. If so, skip this unpack.
7867     if ((NumLoInputs == 0 || NumHiInputs == 0) && !isNoopShuffleMask(V1Mask) &&
7868         !isNoopShuffleMask(V2Mask))
7869       return SDValue();
7870
7871     // Shuffle the inputs into place.
7872     V1 = DAG.getVectorShuffle(VT, DL, V1, DAG.getUNDEF(VT), V1Mask);
7873     V2 = DAG.getVectorShuffle(VT, DL, V2, DAG.getUNDEF(VT), V2Mask);
7874
7875     // Cast the inputs to the type we will use to unpack them.
7876     V1 = DAG.getBitcast(UnpackVT, V1);
7877     V2 = DAG.getBitcast(UnpackVT, V2);
7878
7879     // Unpack the inputs and cast the result back to the desired type.
7880     return DAG.getBitcast(
7881         VT, DAG.getNode(UnpackLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
7882                         UnpackVT, V1, V2));
7883   };
7884
7885   // We try each unpack from the largest to the smallest to try and find one
7886   // that fits this mask.
7887   int OrigNumElements = VT.getVectorNumElements();
7888   int OrigScalarSize = VT.getScalarSizeInBits();
7889   for (int ScalarSize = 64; ScalarSize >= OrigScalarSize; ScalarSize /= 2) {
7890     int Scale = ScalarSize / OrigScalarSize;
7891     int NumElements = OrigNumElements / Scale;
7892     MVT UnpackVT = MVT::getVectorVT(MVT::getIntegerVT(ScalarSize), NumElements);
7893     if (SDValue Unpack = TryUnpack(UnpackVT, Scale))
7894       return Unpack;
7895   }
7896
7897   // If none of the unpack-rooted lowerings worked (or were profitable) try an
7898   // initial unpack.
7899   if (NumLoInputs == 0 || NumHiInputs == 0) {
7900     assert((NumLoInputs > 0 || NumHiInputs > 0) &&
7901            "We have to have *some* inputs!");
7902     int HalfOffset = NumLoInputs == 0 ? Size / 2 : 0;
7903
7904     // FIXME: We could consider the total complexity of the permute of each
7905     // possible unpacking. Or at the least we should consider how many
7906     // half-crossings are created.
7907     // FIXME: We could consider commuting the unpacks.
7908
7909     SmallVector<int, 32> PermMask;
7910     PermMask.assign(Size, -1);
7911     for (int i = 0; i < Size; ++i) {
7912       if (Mask[i] < 0)
7913         continue;
7914
7915       assert(Mask[i] % Size >= HalfOffset && "Found input from wrong half!");
7916
7917       PermMask[i] =
7918           2 * ((Mask[i] % Size) - HalfOffset) + (Mask[i] < Size ? 0 : 1);
7919     }
7920     return DAG.getVectorShuffle(
7921         VT, DL, DAG.getNode(NumLoInputs == 0 ? X86ISD::UNPCKH : X86ISD::UNPCKL,
7922                             DL, VT, V1, V2),
7923         DAG.getUNDEF(VT), PermMask);
7924   }
7925
7926   return SDValue();
7927 }
7928
7929 /// \brief Handle lowering of 2-lane 64-bit floating point shuffles.
7930 ///
7931 /// This is the basis function for the 2-lane 64-bit shuffles as we have full
7932 /// support for floating point shuffles but not integer shuffles. These
7933 /// instructions will incur a domain crossing penalty on some chips though so
7934 /// it is better to avoid lowering through this for integer vectors where
7935 /// possible.
7936 static SDValue lowerV2F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
7937                                        const X86Subtarget *Subtarget,
7938                                        SelectionDAG &DAG) {
7939   SDLoc DL(Op);
7940   assert(Op.getSimpleValueType() == MVT::v2f64 && "Bad shuffle type!");
7941   assert(V1.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
7942   assert(V2.getSimpleValueType() == MVT::v2f64 && "Bad operand type!");
7943   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7944   ArrayRef<int> Mask = SVOp->getMask();
7945   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
7946
7947   if (isSingleInputShuffleMask(Mask)) {
7948     // Use low duplicate instructions for masks that match their pattern.
7949     if (Subtarget->hasSSE3())
7950       if (isShuffleEquivalent(V1, V2, Mask, {0, 0}))
7951         return DAG.getNode(X86ISD::MOVDDUP, DL, MVT::v2f64, V1);
7952
7953     // Straight shuffle of a single input vector. Simulate this by using the
7954     // single input as both of the "inputs" to this instruction..
7955     unsigned SHUFPDMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1);
7956
7957     if (Subtarget->hasAVX()) {
7958       // If we have AVX, we can use VPERMILPS which will allow folding a load
7959       // into the shuffle.
7960       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v2f64, V1,
7961                          DAG.getConstant(SHUFPDMask, DL, MVT::i8));
7962     }
7963
7964     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v2f64, V1, V1,
7965                        DAG.getConstant(SHUFPDMask, DL, MVT::i8));
7966   }
7967   assert(Mask[0] >= 0 && Mask[0] < 2 && "Non-canonicalized blend!");
7968   assert(Mask[1] >= 2 && "Non-canonicalized blend!");
7969
7970   // If we have a single input, insert that into V1 if we can do so cheaply.
7971   if ((Mask[0] >= 2) + (Mask[1] >= 2) == 1) {
7972     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
7973             DL, MVT::v2f64, V1, V2, Mask, Subtarget, DAG))
7974       return Insertion;
7975     // Try inverting the insertion since for v2 masks it is easy to do and we
7976     // can't reliably sort the mask one way or the other.
7977     int InverseMask[2] = {Mask[0] < 0 ? -1 : (Mask[0] ^ 2),
7978                           Mask[1] < 0 ? -1 : (Mask[1] ^ 2)};
7979     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
7980             DL, MVT::v2f64, V2, V1, InverseMask, Subtarget, DAG))
7981       return Insertion;
7982   }
7983
7984   // Try to use one of the special instruction patterns to handle two common
7985   // blend patterns if a zero-blend above didn't work.
7986   if (isShuffleEquivalent(V1, V2, Mask, {0, 3}) ||
7987       isShuffleEquivalent(V1, V2, Mask, {1, 3}))
7988     if (SDValue V1S = getScalarValueForVectorElement(V1, Mask[0], DAG))
7989       // We can either use a special instruction to load over the low double or
7990       // to move just the low double.
7991       return DAG.getNode(
7992           isShuffleFoldableLoad(V1S) ? X86ISD::MOVLPD : X86ISD::MOVSD,
7993           DL, MVT::v2f64, V2,
7994           DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64, V1S));
7995
7996   if (Subtarget->hasSSE41())
7997     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v2f64, V1, V2, Mask,
7998                                                   Subtarget, DAG))
7999       return Blend;
8000
8001   // Use dedicated unpack instructions for masks that match their pattern.
8002   if (isShuffleEquivalent(V1, V2, Mask, {0, 2}))
8003     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2f64, V1, V2);
8004   if (isShuffleEquivalent(V1, V2, Mask, {1, 3}))
8005     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v2f64, V1, V2);
8006
8007   unsigned SHUFPDMask = (Mask[0] == 1) | (((Mask[1] - 2) == 1) << 1);
8008   return DAG.getNode(X86ISD::SHUFP, DL, MVT::v2f64, V1, V2,
8009                      DAG.getConstant(SHUFPDMask, DL, MVT::i8));
8010 }
8011
8012 /// \brief Handle lowering of 2-lane 64-bit integer shuffles.
8013 ///
8014 /// Tries to lower a 2-lane 64-bit shuffle using shuffle operations provided by
8015 /// the integer unit to minimize domain crossing penalties. However, for blends
8016 /// it falls back to the floating point shuffle operation with appropriate bit
8017 /// casting.
8018 static SDValue lowerV2I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8019                                        const X86Subtarget *Subtarget,
8020                                        SelectionDAG &DAG) {
8021   SDLoc DL(Op);
8022   assert(Op.getSimpleValueType() == MVT::v2i64 && "Bad shuffle type!");
8023   assert(V1.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
8024   assert(V2.getSimpleValueType() == MVT::v2i64 && "Bad operand type!");
8025   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8026   ArrayRef<int> Mask = SVOp->getMask();
8027   assert(Mask.size() == 2 && "Unexpected mask size for v2 shuffle!");
8028
8029   if (isSingleInputShuffleMask(Mask)) {
8030     // Check for being able to broadcast a single element.
8031     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v2i64, V1,
8032                                                           Mask, Subtarget, DAG))
8033       return Broadcast;
8034
8035     // Straight shuffle of a single input vector. For everything from SSE2
8036     // onward this has a single fast instruction with no scary immediates.
8037     // We have to map the mask as it is actually a v4i32 shuffle instruction.
8038     V1 = DAG.getBitcast(MVT::v4i32, V1);
8039     int WidenedMask[4] = {
8040         std::max(Mask[0], 0) * 2, std::max(Mask[0], 0) * 2 + 1,
8041         std::max(Mask[1], 0) * 2, std::max(Mask[1], 0) * 2 + 1};
8042     return DAG.getBitcast(
8043         MVT::v2i64,
8044         DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
8045                     getV4X86ShuffleImm8ForMask(WidenedMask, DL, DAG)));
8046   }
8047   assert(Mask[0] != -1 && "No undef lanes in multi-input v2 shuffles!");
8048   assert(Mask[1] != -1 && "No undef lanes in multi-input v2 shuffles!");
8049   assert(Mask[0] < 2 && "We sort V1 to be the first input.");
8050   assert(Mask[1] >= 2 && "We sort V2 to be the second input.");
8051
8052   // If we have a blend of two PACKUS operations an the blend aligns with the
8053   // low and half halves, we can just merge the PACKUS operations. This is
8054   // particularly important as it lets us merge shuffles that this routine itself
8055   // creates.
8056   auto GetPackNode = [](SDValue V) {
8057     while (V.getOpcode() == ISD::BITCAST)
8058       V = V.getOperand(0);
8059
8060     return V.getOpcode() == X86ISD::PACKUS ? V : SDValue();
8061   };
8062   if (SDValue V1Pack = GetPackNode(V1))
8063     if (SDValue V2Pack = GetPackNode(V2))
8064       return DAG.getBitcast(MVT::v2i64,
8065                             DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8,
8066                                         Mask[0] == 0 ? V1Pack.getOperand(0)
8067                                                      : V1Pack.getOperand(1),
8068                                         Mask[1] == 2 ? V2Pack.getOperand(0)
8069                                                      : V2Pack.getOperand(1)));
8070
8071   // Try to use shift instructions.
8072   if (SDValue Shift =
8073           lowerVectorShuffleAsShift(DL, MVT::v2i64, V1, V2, Mask, DAG))
8074     return Shift;
8075
8076   // When loading a scalar and then shuffling it into a vector we can often do
8077   // the insertion cheaply.
8078   if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
8079           DL, MVT::v2i64, V1, V2, Mask, Subtarget, DAG))
8080     return Insertion;
8081   // Try inverting the insertion since for v2 masks it is easy to do and we
8082   // can't reliably sort the mask one way or the other.
8083   int InverseMask[2] = {Mask[0] ^ 2, Mask[1] ^ 2};
8084   if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
8085           DL, MVT::v2i64, V2, V1, InverseMask, Subtarget, DAG))
8086     return Insertion;
8087
8088   // We have different paths for blend lowering, but they all must use the
8089   // *exact* same predicate.
8090   bool IsBlendSupported = Subtarget->hasSSE41();
8091   if (IsBlendSupported)
8092     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v2i64, V1, V2, Mask,
8093                                                   Subtarget, DAG))
8094       return Blend;
8095
8096   // Use dedicated unpack instructions for masks that match their pattern.
8097   if (isShuffleEquivalent(V1, V2, Mask, {0, 2}))
8098     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v2i64, V1, V2);
8099   if (isShuffleEquivalent(V1, V2, Mask, {1, 3}))
8100     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v2i64, V1, V2);
8101
8102   // Try to use byte rotation instructions.
8103   // Its more profitable for pre-SSSE3 to use shuffles/unpacks.
8104   if (Subtarget->hasSSSE3())
8105     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
8106             DL, MVT::v2i64, V1, V2, Mask, Subtarget, DAG))
8107       return Rotate;
8108
8109   // If we have direct support for blends, we should lower by decomposing into
8110   // a permute. That will be faster than the domain cross.
8111   if (IsBlendSupported)
8112     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v2i64, V1, V2,
8113                                                       Mask, DAG);
8114
8115   // We implement this with SHUFPD which is pretty lame because it will likely
8116   // incur 2 cycles of stall for integer vectors on Nehalem and older chips.
8117   // However, all the alternatives are still more cycles and newer chips don't
8118   // have this problem. It would be really nice if x86 had better shuffles here.
8119   V1 = DAG.getBitcast(MVT::v2f64, V1);
8120   V2 = DAG.getBitcast(MVT::v2f64, V2);
8121   return DAG.getBitcast(MVT::v2i64,
8122                         DAG.getVectorShuffle(MVT::v2f64, DL, V1, V2, Mask));
8123 }
8124
8125 /// \brief Test whether this can be lowered with a single SHUFPS instruction.
8126 ///
8127 /// This is used to disable more specialized lowerings when the shufps lowering
8128 /// will happen to be efficient.
8129 static bool isSingleSHUFPSMask(ArrayRef<int> Mask) {
8130   // This routine only handles 128-bit shufps.
8131   assert(Mask.size() == 4 && "Unsupported mask size!");
8132
8133   // To lower with a single SHUFPS we need to have the low half and high half
8134   // each requiring a single input.
8135   if (Mask[0] != -1 && Mask[1] != -1 && (Mask[0] < 4) != (Mask[1] < 4))
8136     return false;
8137   if (Mask[2] != -1 && Mask[3] != -1 && (Mask[2] < 4) != (Mask[3] < 4))
8138     return false;
8139
8140   return true;
8141 }
8142
8143 /// \brief Lower a vector shuffle using the SHUFPS instruction.
8144 ///
8145 /// This is a helper routine dedicated to lowering vector shuffles using SHUFPS.
8146 /// It makes no assumptions about whether this is the *best* lowering, it simply
8147 /// uses it.
8148 static SDValue lowerVectorShuffleWithSHUFPS(SDLoc DL, MVT VT,
8149                                             ArrayRef<int> Mask, SDValue V1,
8150                                             SDValue V2, SelectionDAG &DAG) {
8151   SDValue LowV = V1, HighV = V2;
8152   int NewMask[4] = {Mask[0], Mask[1], Mask[2], Mask[3]};
8153
8154   int NumV2Elements =
8155       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
8156
8157   if (NumV2Elements == 1) {
8158     int V2Index =
8159         std::find_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; }) -
8160         Mask.begin();
8161
8162     // Compute the index adjacent to V2Index and in the same half by toggling
8163     // the low bit.
8164     int V2AdjIndex = V2Index ^ 1;
8165
8166     if (Mask[V2AdjIndex] == -1) {
8167       // Handles all the cases where we have a single V2 element and an undef.
8168       // This will only ever happen in the high lanes because we commute the
8169       // vector otherwise.
8170       if (V2Index < 2)
8171         std::swap(LowV, HighV);
8172       NewMask[V2Index] -= 4;
8173     } else {
8174       // Handle the case where the V2 element ends up adjacent to a V1 element.
8175       // To make this work, blend them together as the first step.
8176       int V1Index = V2AdjIndex;
8177       int BlendMask[4] = {Mask[V2Index] - 4, 0, Mask[V1Index], 0};
8178       V2 = DAG.getNode(X86ISD::SHUFP, DL, VT, V2, V1,
8179                        getV4X86ShuffleImm8ForMask(BlendMask, DL, DAG));
8180
8181       // Now proceed to reconstruct the final blend as we have the necessary
8182       // high or low half formed.
8183       if (V2Index < 2) {
8184         LowV = V2;
8185         HighV = V1;
8186       } else {
8187         HighV = V2;
8188       }
8189       NewMask[V1Index] = 2; // We put the V1 element in V2[2].
8190       NewMask[V2Index] = 0; // We shifted the V2 element into V2[0].
8191     }
8192   } else if (NumV2Elements == 2) {
8193     if (Mask[0] < 4 && Mask[1] < 4) {
8194       // Handle the easy case where we have V1 in the low lanes and V2 in the
8195       // high lanes.
8196       NewMask[2] -= 4;
8197       NewMask[3] -= 4;
8198     } else if (Mask[2] < 4 && Mask[3] < 4) {
8199       // We also handle the reversed case because this utility may get called
8200       // when we detect a SHUFPS pattern but can't easily commute the shuffle to
8201       // arrange things in the right direction.
8202       NewMask[0] -= 4;
8203       NewMask[1] -= 4;
8204       HighV = V1;
8205       LowV = V2;
8206     } else {
8207       // We have a mixture of V1 and V2 in both low and high lanes. Rather than
8208       // trying to place elements directly, just blend them and set up the final
8209       // shuffle to place them.
8210
8211       // The first two blend mask elements are for V1, the second two are for
8212       // V2.
8213       int BlendMask[4] = {Mask[0] < 4 ? Mask[0] : Mask[1],
8214                           Mask[2] < 4 ? Mask[2] : Mask[3],
8215                           (Mask[0] >= 4 ? Mask[0] : Mask[1]) - 4,
8216                           (Mask[2] >= 4 ? Mask[2] : Mask[3]) - 4};
8217       V1 = DAG.getNode(X86ISD::SHUFP, DL, VT, V1, V2,
8218                        getV4X86ShuffleImm8ForMask(BlendMask, DL, DAG));
8219
8220       // Now we do a normal shuffle of V1 by giving V1 as both operands to
8221       // a blend.
8222       LowV = HighV = V1;
8223       NewMask[0] = Mask[0] < 4 ? 0 : 2;
8224       NewMask[1] = Mask[0] < 4 ? 2 : 0;
8225       NewMask[2] = Mask[2] < 4 ? 1 : 3;
8226       NewMask[3] = Mask[2] < 4 ? 3 : 1;
8227     }
8228   }
8229   return DAG.getNode(X86ISD::SHUFP, DL, VT, LowV, HighV,
8230                      getV4X86ShuffleImm8ForMask(NewMask, DL, DAG));
8231 }
8232
8233 /// \brief Lower 4-lane 32-bit floating point shuffles.
8234 ///
8235 /// Uses instructions exclusively from the floating point unit to minimize
8236 /// domain crossing penalties, as these are sufficient to implement all v4f32
8237 /// shuffles.
8238 static SDValue lowerV4F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8239                                        const X86Subtarget *Subtarget,
8240                                        SelectionDAG &DAG) {
8241   SDLoc DL(Op);
8242   assert(Op.getSimpleValueType() == MVT::v4f32 && "Bad shuffle type!");
8243   assert(V1.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
8244   assert(V2.getSimpleValueType() == MVT::v4f32 && "Bad operand type!");
8245   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8246   ArrayRef<int> Mask = SVOp->getMask();
8247   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
8248
8249   int NumV2Elements =
8250       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
8251
8252   if (NumV2Elements == 0) {
8253     // Check for being able to broadcast a single element.
8254     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4f32, V1,
8255                                                           Mask, Subtarget, DAG))
8256       return Broadcast;
8257
8258     // Use even/odd duplicate instructions for masks that match their pattern.
8259     if (Subtarget->hasSSE3()) {
8260       if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2}))
8261         return DAG.getNode(X86ISD::MOVSLDUP, DL, MVT::v4f32, V1);
8262       if (isShuffleEquivalent(V1, V2, Mask, {1, 1, 3, 3}))
8263         return DAG.getNode(X86ISD::MOVSHDUP, DL, MVT::v4f32, V1);
8264     }
8265
8266     if (Subtarget->hasAVX()) {
8267       // If we have AVX, we can use VPERMILPS which will allow folding a load
8268       // into the shuffle.
8269       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v4f32, V1,
8270                          getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
8271     }
8272
8273     // Otherwise, use a straight shuffle of a single input vector. We pass the
8274     // input vector to both operands to simulate this with a SHUFPS.
8275     return DAG.getNode(X86ISD::SHUFP, DL, MVT::v4f32, V1, V1,
8276                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
8277   }
8278
8279   // There are special ways we can lower some single-element blends. However, we
8280   // have custom ways we can lower more complex single-element blends below that
8281   // we defer to if both this and BLENDPS fail to match, so restrict this to
8282   // when the V2 input is targeting element 0 of the mask -- that is the fast
8283   // case here.
8284   if (NumV2Elements == 1 && Mask[0] >= 4)
8285     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v4f32, V1, V2,
8286                                                          Mask, Subtarget, DAG))
8287       return V;
8288
8289   if (Subtarget->hasSSE41()) {
8290     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4f32, V1, V2, Mask,
8291                                                   Subtarget, DAG))
8292       return Blend;
8293
8294     // Use INSERTPS if we can complete the shuffle efficiently.
8295     if (SDValue V = lowerVectorShuffleAsInsertPS(Op, V1, V2, Mask, DAG))
8296       return V;
8297
8298     if (!isSingleSHUFPSMask(Mask))
8299       if (SDValue BlendPerm = lowerVectorShuffleAsBlendAndPermute(
8300               DL, MVT::v4f32, V1, V2, Mask, DAG))
8301         return BlendPerm;
8302   }
8303
8304   // Use dedicated unpack instructions for masks that match their pattern.
8305   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 1, 5}))
8306     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f32, V1, V2);
8307   if (isShuffleEquivalent(V1, V2, Mask, {2, 6, 3, 7}))
8308     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f32, V1, V2);
8309   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 5, 1}))
8310     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f32, V2, V1);
8311   if (isShuffleEquivalent(V1, V2, Mask, {6, 2, 7, 3}))
8312     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f32, V2, V1);
8313
8314   // Otherwise fall back to a SHUFPS lowering strategy.
8315   return lowerVectorShuffleWithSHUFPS(DL, MVT::v4f32, Mask, V1, V2, DAG);
8316 }
8317
8318 /// \brief Lower 4-lane i32 vector shuffles.
8319 ///
8320 /// We try to handle these with integer-domain shuffles where we can, but for
8321 /// blends we use the floating point domain blend instructions.
8322 static SDValue lowerV4I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8323                                        const X86Subtarget *Subtarget,
8324                                        SelectionDAG &DAG) {
8325   SDLoc DL(Op);
8326   assert(Op.getSimpleValueType() == MVT::v4i32 && "Bad shuffle type!");
8327   assert(V1.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
8328   assert(V2.getSimpleValueType() == MVT::v4i32 && "Bad operand type!");
8329   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8330   ArrayRef<int> Mask = SVOp->getMask();
8331   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
8332
8333   // Whenever we can lower this as a zext, that instruction is strictly faster
8334   // than any alternative. It also allows us to fold memory operands into the
8335   // shuffle in many cases.
8336   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v4i32, V1, V2,
8337                                                          Mask, Subtarget, DAG))
8338     return ZExt;
8339
8340   int NumV2Elements =
8341       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 4; });
8342
8343   if (NumV2Elements == 0) {
8344     // Check for being able to broadcast a single element.
8345     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4i32, V1,
8346                                                           Mask, Subtarget, DAG))
8347       return Broadcast;
8348
8349     // Straight shuffle of a single input vector. For everything from SSE2
8350     // onward this has a single fast instruction with no scary immediates.
8351     // We coerce the shuffle pattern to be compatible with UNPCK instructions
8352     // but we aren't actually going to use the UNPCK instruction because doing
8353     // so prevents folding a load into this instruction or making a copy.
8354     const int UnpackLoMask[] = {0, 0, 1, 1};
8355     const int UnpackHiMask[] = {2, 2, 3, 3};
8356     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 1, 1}))
8357       Mask = UnpackLoMask;
8358     else if (isShuffleEquivalent(V1, V2, Mask, {2, 2, 3, 3}))
8359       Mask = UnpackHiMask;
8360
8361     return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v4i32, V1,
8362                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
8363   }
8364
8365   // Try to use shift instructions.
8366   if (SDValue Shift =
8367           lowerVectorShuffleAsShift(DL, MVT::v4i32, V1, V2, Mask, DAG))
8368     return Shift;
8369
8370   // There are special ways we can lower some single-element blends.
8371   if (NumV2Elements == 1)
8372     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v4i32, V1, V2,
8373                                                          Mask, Subtarget, DAG))
8374       return V;
8375
8376   // We have different paths for blend lowering, but they all must use the
8377   // *exact* same predicate.
8378   bool IsBlendSupported = Subtarget->hasSSE41();
8379   if (IsBlendSupported)
8380     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4i32, V1, V2, Mask,
8381                                                   Subtarget, DAG))
8382       return Blend;
8383
8384   if (SDValue Masked =
8385           lowerVectorShuffleAsBitMask(DL, MVT::v4i32, V1, V2, Mask, DAG))
8386     return Masked;
8387
8388   // Use dedicated unpack instructions for masks that match their pattern.
8389   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 1, 5}))
8390     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i32, V1, V2);
8391   if (isShuffleEquivalent(V1, V2, Mask, {2, 6, 3, 7}))
8392     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i32, V1, V2);
8393   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 5, 1}))
8394     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i32, V2, V1);
8395   if (isShuffleEquivalent(V1, V2, Mask, {6, 2, 7, 3}))
8396     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i32, V2, V1);
8397
8398   // Try to use byte rotation instructions.
8399   // Its more profitable for pre-SSSE3 to use shuffles/unpacks.
8400   if (Subtarget->hasSSSE3())
8401     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
8402             DL, MVT::v4i32, V1, V2, Mask, Subtarget, DAG))
8403       return Rotate;
8404
8405   // If we have direct support for blends, we should lower by decomposing into
8406   // a permute. That will be faster than the domain cross.
8407   if (IsBlendSupported)
8408     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4i32, V1, V2,
8409                                                       Mask, DAG);
8410
8411   // Try to lower by permuting the inputs into an unpack instruction.
8412   if (SDValue Unpack =
8413           lowerVectorShuffleAsUnpack(DL, MVT::v4i32, V1, V2, Mask, DAG))
8414     return Unpack;
8415
8416   // We implement this with SHUFPS because it can blend from two vectors.
8417   // Because we're going to eventually use SHUFPS, we use SHUFPS even to build
8418   // up the inputs, bypassing domain shift penalties that we would encur if we
8419   // directly used PSHUFD on Nehalem and older. For newer chips, this isn't
8420   // relevant.
8421   return DAG.getBitcast(
8422       MVT::v4i32,
8423       DAG.getVectorShuffle(MVT::v4f32, DL, DAG.getBitcast(MVT::v4f32, V1),
8424                            DAG.getBitcast(MVT::v4f32, V2), Mask));
8425 }
8426
8427 /// \brief Lowering of single-input v8i16 shuffles is the cornerstone of SSE2
8428 /// shuffle lowering, and the most complex part.
8429 ///
8430 /// The lowering strategy is to try to form pairs of input lanes which are
8431 /// targeted at the same half of the final vector, and then use a dword shuffle
8432 /// to place them onto the right half, and finally unpack the paired lanes into
8433 /// their final position.
8434 ///
8435 /// The exact breakdown of how to form these dword pairs and align them on the
8436 /// correct sides is really tricky. See the comments within the function for
8437 /// more of the details.
8438 ///
8439 /// This code also handles repeated 128-bit lanes of v8i16 shuffles, but each
8440 /// lane must shuffle the *exact* same way. In fact, you must pass a v8 Mask to
8441 /// this routine for it to work correctly. To shuffle a 256-bit or 512-bit i16
8442 /// vector, form the analogous 128-bit 8-element Mask.
8443 static SDValue lowerV8I16GeneralSingleInputVectorShuffle(
8444     SDLoc DL, MVT VT, SDValue V, MutableArrayRef<int> Mask,
8445     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
8446   assert(VT.getScalarType() == MVT::i16 && "Bad input type!");
8447   MVT PSHUFDVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() / 2);
8448
8449   assert(Mask.size() == 8 && "Shuffle mask length doen't match!");
8450   MutableArrayRef<int> LoMask = Mask.slice(0, 4);
8451   MutableArrayRef<int> HiMask = Mask.slice(4, 4);
8452
8453   SmallVector<int, 4> LoInputs;
8454   std::copy_if(LoMask.begin(), LoMask.end(), std::back_inserter(LoInputs),
8455                [](int M) { return M >= 0; });
8456   std::sort(LoInputs.begin(), LoInputs.end());
8457   LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()), LoInputs.end());
8458   SmallVector<int, 4> HiInputs;
8459   std::copy_if(HiMask.begin(), HiMask.end(), std::back_inserter(HiInputs),
8460                [](int M) { return M >= 0; });
8461   std::sort(HiInputs.begin(), HiInputs.end());
8462   HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()), HiInputs.end());
8463   int NumLToL =
8464       std::lower_bound(LoInputs.begin(), LoInputs.end(), 4) - LoInputs.begin();
8465   int NumHToL = LoInputs.size() - NumLToL;
8466   int NumLToH =
8467       std::lower_bound(HiInputs.begin(), HiInputs.end(), 4) - HiInputs.begin();
8468   int NumHToH = HiInputs.size() - NumLToH;
8469   MutableArrayRef<int> LToLInputs(LoInputs.data(), NumLToL);
8470   MutableArrayRef<int> LToHInputs(HiInputs.data(), NumLToH);
8471   MutableArrayRef<int> HToLInputs(LoInputs.data() + NumLToL, NumHToL);
8472   MutableArrayRef<int> HToHInputs(HiInputs.data() + NumLToH, NumHToH);
8473
8474   // Simplify the 1-into-3 and 3-into-1 cases with a single pshufd. For all
8475   // such inputs we can swap two of the dwords across the half mark and end up
8476   // with <=2 inputs to each half in each half. Once there, we can fall through
8477   // to the generic code below. For example:
8478   //
8479   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
8480   // Mask:  [0, 1, 2, 7, 4, 5, 6, 3] -----------------> [0, 1, 4, 7, 2, 3, 6, 5]
8481   //
8482   // However in some very rare cases we have a 1-into-3 or 3-into-1 on one half
8483   // and an existing 2-into-2 on the other half. In this case we may have to
8484   // pre-shuffle the 2-into-2 half to avoid turning it into a 3-into-1 or
8485   // 1-into-3 which could cause us to cycle endlessly fixing each side in turn.
8486   // Fortunately, we don't have to handle anything but a 2-into-2 pattern
8487   // because any other situation (including a 3-into-1 or 1-into-3 in the other
8488   // half than the one we target for fixing) will be fixed when we re-enter this
8489   // path. We will also combine away any sequence of PSHUFD instructions that
8490   // result into a single instruction. Here is an example of the tricky case:
8491   //
8492   // Input: [a, b, c, d, e, f, g, h] -PSHUFD[0,2,1,3]-> [a, b, e, f, c, d, g, h]
8493   // Mask:  [3, 7, 1, 0, 2, 7, 3, 5] -THIS-IS-BAD!!!!-> [5, 7, 1, 0, 4, 7, 5, 3]
8494   //
8495   // This now has a 1-into-3 in the high half! Instead, we do two shuffles:
8496   //
8497   // Input: [a, b, c, d, e, f, g, h] PSHUFHW[0,2,1,3]-> [a, b, c, d, e, g, f, h]
8498   // Mask:  [3, 7, 1, 0, 2, 7, 3, 5] -----------------> [3, 7, 1, 0, 2, 7, 3, 6]
8499   //
8500   // Input: [a, b, c, d, e, g, f, h] -PSHUFD[0,2,1,3]-> [a, b, e, g, c, d, f, h]
8501   // Mask:  [3, 7, 1, 0, 2, 7, 3, 6] -----------------> [5, 7, 1, 0, 4, 7, 5, 6]
8502   //
8503   // The result is fine to be handled by the generic logic.
8504   auto balanceSides = [&](ArrayRef<int> AToAInputs, ArrayRef<int> BToAInputs,
8505                           ArrayRef<int> BToBInputs, ArrayRef<int> AToBInputs,
8506                           int AOffset, int BOffset) {
8507     assert((AToAInputs.size() == 3 || AToAInputs.size() == 1) &&
8508            "Must call this with A having 3 or 1 inputs from the A half.");
8509     assert((BToAInputs.size() == 1 || BToAInputs.size() == 3) &&
8510            "Must call this with B having 1 or 3 inputs from the B half.");
8511     assert(AToAInputs.size() + BToAInputs.size() == 4 &&
8512            "Must call this with either 3:1 or 1:3 inputs (summing to 4).");
8513
8514     bool ThreeAInputs = AToAInputs.size() == 3;
8515
8516     // Compute the index of dword with only one word among the three inputs in
8517     // a half by taking the sum of the half with three inputs and subtracting
8518     // the sum of the actual three inputs. The difference is the remaining
8519     // slot.
8520     int ADWord, BDWord;
8521     int &TripleDWord = ThreeAInputs ? ADWord : BDWord;
8522     int &OneInputDWord = ThreeAInputs ? BDWord : ADWord;
8523     int TripleInputOffset = ThreeAInputs ? AOffset : BOffset;
8524     ArrayRef<int> TripleInputs = ThreeAInputs ? AToAInputs : BToAInputs;
8525     int OneInput = ThreeAInputs ? BToAInputs[0] : AToAInputs[0];
8526     int TripleInputSum = 0 + 1 + 2 + 3 + (4 * TripleInputOffset);
8527     int TripleNonInputIdx =
8528         TripleInputSum - std::accumulate(TripleInputs.begin(), TripleInputs.end(), 0);
8529     TripleDWord = TripleNonInputIdx / 2;
8530
8531     // We use xor with one to compute the adjacent DWord to whichever one the
8532     // OneInput is in.
8533     OneInputDWord = (OneInput / 2) ^ 1;
8534
8535     // Check for one tricky case: We're fixing a 3<-1 or a 1<-3 shuffle for AToA
8536     // and BToA inputs. If there is also such a problem with the BToB and AToB
8537     // inputs, we don't try to fix it necessarily -- we'll recurse and see it in
8538     // the next pass. However, if we have a 2<-2 in the BToB and AToB inputs, it
8539     // is essential that we don't *create* a 3<-1 as then we might oscillate.
8540     if (BToBInputs.size() == 2 && AToBInputs.size() == 2) {
8541       // Compute how many inputs will be flipped by swapping these DWords. We
8542       // need
8543       // to balance this to ensure we don't form a 3-1 shuffle in the other
8544       // half.
8545       int NumFlippedAToBInputs =
8546           std::count(AToBInputs.begin(), AToBInputs.end(), 2 * ADWord) +
8547           std::count(AToBInputs.begin(), AToBInputs.end(), 2 * ADWord + 1);
8548       int NumFlippedBToBInputs =
8549           std::count(BToBInputs.begin(), BToBInputs.end(), 2 * BDWord) +
8550           std::count(BToBInputs.begin(), BToBInputs.end(), 2 * BDWord + 1);
8551       if ((NumFlippedAToBInputs == 1 &&
8552            (NumFlippedBToBInputs == 0 || NumFlippedBToBInputs == 2)) ||
8553           (NumFlippedBToBInputs == 1 &&
8554            (NumFlippedAToBInputs == 0 || NumFlippedAToBInputs == 2))) {
8555         // We choose whether to fix the A half or B half based on whether that
8556         // half has zero flipped inputs. At zero, we may not be able to fix it
8557         // with that half. We also bias towards fixing the B half because that
8558         // will more commonly be the high half, and we have to bias one way.
8559         auto FixFlippedInputs = [&V, &DL, &Mask, &DAG](int PinnedIdx, int DWord,
8560                                                        ArrayRef<int> Inputs) {
8561           int FixIdx = PinnedIdx ^ 1; // The adjacent slot to the pinned slot.
8562           bool IsFixIdxInput = std::find(Inputs.begin(), Inputs.end(),
8563                                          PinnedIdx ^ 1) != Inputs.end();
8564           // Determine whether the free index is in the flipped dword or the
8565           // unflipped dword based on where the pinned index is. We use this bit
8566           // in an xor to conditionally select the adjacent dword.
8567           int FixFreeIdx = 2 * (DWord ^ (PinnedIdx / 2 == DWord));
8568           bool IsFixFreeIdxInput = std::find(Inputs.begin(), Inputs.end(),
8569                                              FixFreeIdx) != Inputs.end();
8570           if (IsFixIdxInput == IsFixFreeIdxInput)
8571             FixFreeIdx += 1;
8572           IsFixFreeIdxInput = std::find(Inputs.begin(), Inputs.end(),
8573                                         FixFreeIdx) != Inputs.end();
8574           assert(IsFixIdxInput != IsFixFreeIdxInput &&
8575                  "We need to be changing the number of flipped inputs!");
8576           int PSHUFHalfMask[] = {0, 1, 2, 3};
8577           std::swap(PSHUFHalfMask[FixFreeIdx % 4], PSHUFHalfMask[FixIdx % 4]);
8578           V = DAG.getNode(FixIdx < 4 ? X86ISD::PSHUFLW : X86ISD::PSHUFHW, DL,
8579                           MVT::v8i16, V,
8580                           getV4X86ShuffleImm8ForMask(PSHUFHalfMask, DL, DAG));
8581
8582           for (int &M : Mask)
8583             if (M != -1 && M == FixIdx)
8584               M = FixFreeIdx;
8585             else if (M != -1 && M == FixFreeIdx)
8586               M = FixIdx;
8587         };
8588         if (NumFlippedBToBInputs != 0) {
8589           int BPinnedIdx =
8590               BToAInputs.size() == 3 ? TripleNonInputIdx : OneInput;
8591           FixFlippedInputs(BPinnedIdx, BDWord, BToBInputs);
8592         } else {
8593           assert(NumFlippedAToBInputs != 0 && "Impossible given predicates!");
8594           int APinnedIdx = ThreeAInputs ? TripleNonInputIdx : OneInput;
8595           FixFlippedInputs(APinnedIdx, ADWord, AToBInputs);
8596         }
8597       }
8598     }
8599
8600     int PSHUFDMask[] = {0, 1, 2, 3};
8601     PSHUFDMask[ADWord] = BDWord;
8602     PSHUFDMask[BDWord] = ADWord;
8603     V = DAG.getBitcast(
8604         VT,
8605         DAG.getNode(X86ISD::PSHUFD, DL, PSHUFDVT, DAG.getBitcast(PSHUFDVT, V),
8606                     getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
8607
8608     // Adjust the mask to match the new locations of A and B.
8609     for (int &M : Mask)
8610       if (M != -1 && M/2 == ADWord)
8611         M = 2 * BDWord + M % 2;
8612       else if (M != -1 && M/2 == BDWord)
8613         M = 2 * ADWord + M % 2;
8614
8615     // Recurse back into this routine to re-compute state now that this isn't
8616     // a 3 and 1 problem.
8617     return lowerV8I16GeneralSingleInputVectorShuffle(DL, VT, V, Mask, Subtarget,
8618                                                      DAG);
8619   };
8620   if ((NumLToL == 3 && NumHToL == 1) || (NumLToL == 1 && NumHToL == 3))
8621     return balanceSides(LToLInputs, HToLInputs, HToHInputs, LToHInputs, 0, 4);
8622   else if ((NumHToH == 3 && NumLToH == 1) || (NumHToH == 1 && NumLToH == 3))
8623     return balanceSides(HToHInputs, LToHInputs, LToLInputs, HToLInputs, 4, 0);
8624
8625   // At this point there are at most two inputs to the low and high halves from
8626   // each half. That means the inputs can always be grouped into dwords and
8627   // those dwords can then be moved to the correct half with a dword shuffle.
8628   // We use at most one low and one high word shuffle to collect these paired
8629   // inputs into dwords, and finally a dword shuffle to place them.
8630   int PSHUFLMask[4] = {-1, -1, -1, -1};
8631   int PSHUFHMask[4] = {-1, -1, -1, -1};
8632   int PSHUFDMask[4] = {-1, -1, -1, -1};
8633
8634   // First fix the masks for all the inputs that are staying in their
8635   // original halves. This will then dictate the targets of the cross-half
8636   // shuffles.
8637   auto fixInPlaceInputs =
8638       [&PSHUFDMask](ArrayRef<int> InPlaceInputs, ArrayRef<int> IncomingInputs,
8639                     MutableArrayRef<int> SourceHalfMask,
8640                     MutableArrayRef<int> HalfMask, int HalfOffset) {
8641     if (InPlaceInputs.empty())
8642       return;
8643     if (InPlaceInputs.size() == 1) {
8644       SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
8645           InPlaceInputs[0] - HalfOffset;
8646       PSHUFDMask[InPlaceInputs[0] / 2] = InPlaceInputs[0] / 2;
8647       return;
8648     }
8649     if (IncomingInputs.empty()) {
8650       // Just fix all of the in place inputs.
8651       for (int Input : InPlaceInputs) {
8652         SourceHalfMask[Input - HalfOffset] = Input - HalfOffset;
8653         PSHUFDMask[Input / 2] = Input / 2;
8654       }
8655       return;
8656     }
8657
8658     assert(InPlaceInputs.size() == 2 && "Cannot handle 3 or 4 inputs!");
8659     SourceHalfMask[InPlaceInputs[0] - HalfOffset] =
8660         InPlaceInputs[0] - HalfOffset;
8661     // Put the second input next to the first so that they are packed into
8662     // a dword. We find the adjacent index by toggling the low bit.
8663     int AdjIndex = InPlaceInputs[0] ^ 1;
8664     SourceHalfMask[AdjIndex - HalfOffset] = InPlaceInputs[1] - HalfOffset;
8665     std::replace(HalfMask.begin(), HalfMask.end(), InPlaceInputs[1], AdjIndex);
8666     PSHUFDMask[AdjIndex / 2] = AdjIndex / 2;
8667   };
8668   fixInPlaceInputs(LToLInputs, HToLInputs, PSHUFLMask, LoMask, 0);
8669   fixInPlaceInputs(HToHInputs, LToHInputs, PSHUFHMask, HiMask, 4);
8670
8671   // Now gather the cross-half inputs and place them into a free dword of
8672   // their target half.
8673   // FIXME: This operation could almost certainly be simplified dramatically to
8674   // look more like the 3-1 fixing operation.
8675   auto moveInputsToRightHalf = [&PSHUFDMask](
8676       MutableArrayRef<int> IncomingInputs, ArrayRef<int> ExistingInputs,
8677       MutableArrayRef<int> SourceHalfMask, MutableArrayRef<int> HalfMask,
8678       MutableArrayRef<int> FinalSourceHalfMask, int SourceOffset,
8679       int DestOffset) {
8680     auto isWordClobbered = [](ArrayRef<int> SourceHalfMask, int Word) {
8681       return SourceHalfMask[Word] != -1 && SourceHalfMask[Word] != Word;
8682     };
8683     auto isDWordClobbered = [&isWordClobbered](ArrayRef<int> SourceHalfMask,
8684                                                int Word) {
8685       int LowWord = Word & ~1;
8686       int HighWord = Word | 1;
8687       return isWordClobbered(SourceHalfMask, LowWord) ||
8688              isWordClobbered(SourceHalfMask, HighWord);
8689     };
8690
8691     if (IncomingInputs.empty())
8692       return;
8693
8694     if (ExistingInputs.empty()) {
8695       // Map any dwords with inputs from them into the right half.
8696       for (int Input : IncomingInputs) {
8697         // If the source half mask maps over the inputs, turn those into
8698         // swaps and use the swapped lane.
8699         if (isWordClobbered(SourceHalfMask, Input - SourceOffset)) {
8700           if (SourceHalfMask[SourceHalfMask[Input - SourceOffset]] == -1) {
8701             SourceHalfMask[SourceHalfMask[Input - SourceOffset]] =
8702                 Input - SourceOffset;
8703             // We have to swap the uses in our half mask in one sweep.
8704             for (int &M : HalfMask)
8705               if (M == SourceHalfMask[Input - SourceOffset] + SourceOffset)
8706                 M = Input;
8707               else if (M == Input)
8708                 M = SourceHalfMask[Input - SourceOffset] + SourceOffset;
8709           } else {
8710             assert(SourceHalfMask[SourceHalfMask[Input - SourceOffset]] ==
8711                        Input - SourceOffset &&
8712                    "Previous placement doesn't match!");
8713           }
8714           // Note that this correctly re-maps both when we do a swap and when
8715           // we observe the other side of the swap above. We rely on that to
8716           // avoid swapping the members of the input list directly.
8717           Input = SourceHalfMask[Input - SourceOffset] + SourceOffset;
8718         }
8719
8720         // Map the input's dword into the correct half.
8721         if (PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] == -1)
8722           PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] = Input / 2;
8723         else
8724           assert(PSHUFDMask[(Input - SourceOffset + DestOffset) / 2] ==
8725                      Input / 2 &&
8726                  "Previous placement doesn't match!");
8727       }
8728
8729       // And just directly shift any other-half mask elements to be same-half
8730       // as we will have mirrored the dword containing the element into the
8731       // same position within that half.
8732       for (int &M : HalfMask)
8733         if (M >= SourceOffset && M < SourceOffset + 4) {
8734           M = M - SourceOffset + DestOffset;
8735           assert(M >= 0 && "This should never wrap below zero!");
8736         }
8737       return;
8738     }
8739
8740     // Ensure we have the input in a viable dword of its current half. This
8741     // is particularly tricky because the original position may be clobbered
8742     // by inputs being moved and *staying* in that half.
8743     if (IncomingInputs.size() == 1) {
8744       if (isWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
8745         int InputFixed = std::find(std::begin(SourceHalfMask),
8746                                    std::end(SourceHalfMask), -1) -
8747                          std::begin(SourceHalfMask) + SourceOffset;
8748         SourceHalfMask[InputFixed - SourceOffset] =
8749             IncomingInputs[0] - SourceOffset;
8750         std::replace(HalfMask.begin(), HalfMask.end(), IncomingInputs[0],
8751                      InputFixed);
8752         IncomingInputs[0] = InputFixed;
8753       }
8754     } else if (IncomingInputs.size() == 2) {
8755       if (IncomingInputs[0] / 2 != IncomingInputs[1] / 2 ||
8756           isDWordClobbered(SourceHalfMask, IncomingInputs[0] - SourceOffset)) {
8757         // We have two non-adjacent or clobbered inputs we need to extract from
8758         // the source half. To do this, we need to map them into some adjacent
8759         // dword slot in the source mask.
8760         int InputsFixed[2] = {IncomingInputs[0] - SourceOffset,
8761                               IncomingInputs[1] - SourceOffset};
8762
8763         // If there is a free slot in the source half mask adjacent to one of
8764         // the inputs, place the other input in it. We use (Index XOR 1) to
8765         // compute an adjacent index.
8766         if (!isWordClobbered(SourceHalfMask, InputsFixed[0]) &&
8767             SourceHalfMask[InputsFixed[0] ^ 1] == -1) {
8768           SourceHalfMask[InputsFixed[0]] = InputsFixed[0];
8769           SourceHalfMask[InputsFixed[0] ^ 1] = InputsFixed[1];
8770           InputsFixed[1] = InputsFixed[0] ^ 1;
8771         } else if (!isWordClobbered(SourceHalfMask, InputsFixed[1]) &&
8772                    SourceHalfMask[InputsFixed[1] ^ 1] == -1) {
8773           SourceHalfMask[InputsFixed[1]] = InputsFixed[1];
8774           SourceHalfMask[InputsFixed[1] ^ 1] = InputsFixed[0];
8775           InputsFixed[0] = InputsFixed[1] ^ 1;
8776         } else if (SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1)] == -1 &&
8777                    SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1) + 1] == -1) {
8778           // The two inputs are in the same DWord but it is clobbered and the
8779           // adjacent DWord isn't used at all. Move both inputs to the free
8780           // slot.
8781           SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1)] = InputsFixed[0];
8782           SourceHalfMask[2 * ((InputsFixed[0] / 2) ^ 1) + 1] = InputsFixed[1];
8783           InputsFixed[0] = 2 * ((InputsFixed[0] / 2) ^ 1);
8784           InputsFixed[1] = 2 * ((InputsFixed[0] / 2) ^ 1) + 1;
8785         } else {
8786           // The only way we hit this point is if there is no clobbering
8787           // (because there are no off-half inputs to this half) and there is no
8788           // free slot adjacent to one of the inputs. In this case, we have to
8789           // swap an input with a non-input.
8790           for (int i = 0; i < 4; ++i)
8791             assert((SourceHalfMask[i] == -1 || SourceHalfMask[i] == i) &&
8792                    "We can't handle any clobbers here!");
8793           assert(InputsFixed[1] != (InputsFixed[0] ^ 1) &&
8794                  "Cannot have adjacent inputs here!");
8795
8796           SourceHalfMask[InputsFixed[0] ^ 1] = InputsFixed[1];
8797           SourceHalfMask[InputsFixed[1]] = InputsFixed[0] ^ 1;
8798
8799           // We also have to update the final source mask in this case because
8800           // it may need to undo the above swap.
8801           for (int &M : FinalSourceHalfMask)
8802             if (M == (InputsFixed[0] ^ 1) + SourceOffset)
8803               M = InputsFixed[1] + SourceOffset;
8804             else if (M == InputsFixed[1] + SourceOffset)
8805               M = (InputsFixed[0] ^ 1) + SourceOffset;
8806
8807           InputsFixed[1] = InputsFixed[0] ^ 1;
8808         }
8809
8810         // Point everything at the fixed inputs.
8811         for (int &M : HalfMask)
8812           if (M == IncomingInputs[0])
8813             M = InputsFixed[0] + SourceOffset;
8814           else if (M == IncomingInputs[1])
8815             M = InputsFixed[1] + SourceOffset;
8816
8817         IncomingInputs[0] = InputsFixed[0] + SourceOffset;
8818         IncomingInputs[1] = InputsFixed[1] + SourceOffset;
8819       }
8820     } else {
8821       llvm_unreachable("Unhandled input size!");
8822     }
8823
8824     // Now hoist the DWord down to the right half.
8825     int FreeDWord = (PSHUFDMask[DestOffset / 2] == -1 ? 0 : 1) + DestOffset / 2;
8826     assert(PSHUFDMask[FreeDWord] == -1 && "DWord not free");
8827     PSHUFDMask[FreeDWord] = IncomingInputs[0] / 2;
8828     for (int &M : HalfMask)
8829       for (int Input : IncomingInputs)
8830         if (M == Input)
8831           M = FreeDWord * 2 + Input % 2;
8832   };
8833   moveInputsToRightHalf(HToLInputs, LToLInputs, PSHUFHMask, LoMask, HiMask,
8834                         /*SourceOffset*/ 4, /*DestOffset*/ 0);
8835   moveInputsToRightHalf(LToHInputs, HToHInputs, PSHUFLMask, HiMask, LoMask,
8836                         /*SourceOffset*/ 0, /*DestOffset*/ 4);
8837
8838   // Now enact all the shuffles we've computed to move the inputs into their
8839   // target half.
8840   if (!isNoopShuffleMask(PSHUFLMask))
8841     V = DAG.getNode(X86ISD::PSHUFLW, DL, VT, V,
8842                     getV4X86ShuffleImm8ForMask(PSHUFLMask, DL, DAG));
8843   if (!isNoopShuffleMask(PSHUFHMask))
8844     V = DAG.getNode(X86ISD::PSHUFHW, DL, VT, V,
8845                     getV4X86ShuffleImm8ForMask(PSHUFHMask, DL, DAG));
8846   if (!isNoopShuffleMask(PSHUFDMask))
8847     V = DAG.getBitcast(
8848         VT,
8849         DAG.getNode(X86ISD::PSHUFD, DL, PSHUFDVT, DAG.getBitcast(PSHUFDVT, V),
8850                     getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
8851
8852   // At this point, each half should contain all its inputs, and we can then
8853   // just shuffle them into their final position.
8854   assert(std::count_if(LoMask.begin(), LoMask.end(),
8855                        [](int M) { return M >= 4; }) == 0 &&
8856          "Failed to lift all the high half inputs to the low mask!");
8857   assert(std::count_if(HiMask.begin(), HiMask.end(),
8858                        [](int M) { return M >= 0 && M < 4; }) == 0 &&
8859          "Failed to lift all the low half inputs to the high mask!");
8860
8861   // Do a half shuffle for the low mask.
8862   if (!isNoopShuffleMask(LoMask))
8863     V = DAG.getNode(X86ISD::PSHUFLW, DL, VT, V,
8864                     getV4X86ShuffleImm8ForMask(LoMask, DL, DAG));
8865
8866   // Do a half shuffle with the high mask after shifting its values down.
8867   for (int &M : HiMask)
8868     if (M >= 0)
8869       M -= 4;
8870   if (!isNoopShuffleMask(HiMask))
8871     V = DAG.getNode(X86ISD::PSHUFHW, DL, VT, V,
8872                     getV4X86ShuffleImm8ForMask(HiMask, DL, DAG));
8873
8874   return V;
8875 }
8876
8877 /// \brief Helper to form a PSHUFB-based shuffle+blend.
8878 static SDValue lowerVectorShuffleAsPSHUFB(SDLoc DL, MVT VT, SDValue V1,
8879                                           SDValue V2, ArrayRef<int> Mask,
8880                                           SelectionDAG &DAG, bool &V1InUse,
8881                                           bool &V2InUse) {
8882   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
8883   SDValue V1Mask[16];
8884   SDValue V2Mask[16];
8885   V1InUse = false;
8886   V2InUse = false;
8887
8888   int Size = Mask.size();
8889   int Scale = 16 / Size;
8890   for (int i = 0; i < 16; ++i) {
8891     if (Mask[i / Scale] == -1) {
8892       V1Mask[i] = V2Mask[i] = DAG.getUNDEF(MVT::i8);
8893     } else {
8894       const int ZeroMask = 0x80;
8895       int V1Idx = Mask[i / Scale] < Size ? Mask[i / Scale] * Scale + i % Scale
8896                                           : ZeroMask;
8897       int V2Idx = Mask[i / Scale] < Size
8898                       ? ZeroMask
8899                       : (Mask[i / Scale] - Size) * Scale + i % Scale;
8900       if (Zeroable[i / Scale])
8901         V1Idx = V2Idx = ZeroMask;
8902       V1Mask[i] = DAG.getConstant(V1Idx, DL, MVT::i8);
8903       V2Mask[i] = DAG.getConstant(V2Idx, DL, MVT::i8);
8904       V1InUse |= (ZeroMask != V1Idx);
8905       V2InUse |= (ZeroMask != V2Idx);
8906     }
8907   }
8908
8909   if (V1InUse)
8910     V1 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8,
8911                      DAG.getBitcast(MVT::v16i8, V1),
8912                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V1Mask));
8913   if (V2InUse)
8914     V2 = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v16i8,
8915                      DAG.getBitcast(MVT::v16i8, V2),
8916                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v16i8, V2Mask));
8917
8918   // If we need shuffled inputs from both, blend the two.
8919   SDValue V;
8920   if (V1InUse && V2InUse)
8921     V = DAG.getNode(ISD::OR, DL, MVT::v16i8, V1, V2);
8922   else
8923     V = V1InUse ? V1 : V2;
8924
8925   // Cast the result back to the correct type.
8926   return DAG.getBitcast(VT, V);
8927 }
8928
8929 /// \brief Generic lowering of 8-lane i16 shuffles.
8930 ///
8931 /// This handles both single-input shuffles and combined shuffle/blends with
8932 /// two inputs. The single input shuffles are immediately delegated to
8933 /// a dedicated lowering routine.
8934 ///
8935 /// The blends are lowered in one of three fundamental ways. If there are few
8936 /// enough inputs, it delegates to a basic UNPCK-based strategy. If the shuffle
8937 /// of the input is significantly cheaper when lowered as an interleaving of
8938 /// the two inputs, try to interleave them. Otherwise, blend the low and high
8939 /// halves of the inputs separately (making them have relatively few inputs)
8940 /// and then concatenate them.
8941 static SDValue lowerV8I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
8942                                        const X86Subtarget *Subtarget,
8943                                        SelectionDAG &DAG) {
8944   SDLoc DL(Op);
8945   assert(Op.getSimpleValueType() == MVT::v8i16 && "Bad shuffle type!");
8946   assert(V1.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
8947   assert(V2.getSimpleValueType() == MVT::v8i16 && "Bad operand type!");
8948   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
8949   ArrayRef<int> OrigMask = SVOp->getMask();
8950   int MaskStorage[8] = {OrigMask[0], OrigMask[1], OrigMask[2], OrigMask[3],
8951                         OrigMask[4], OrigMask[5], OrigMask[6], OrigMask[7]};
8952   MutableArrayRef<int> Mask(MaskStorage);
8953
8954   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
8955
8956   // Whenever we can lower this as a zext, that instruction is strictly faster
8957   // than any alternative.
8958   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(
8959           DL, MVT::v8i16, V1, V2, OrigMask, Subtarget, DAG))
8960     return ZExt;
8961
8962   auto isV1 = [](int M) { return M >= 0 && M < 8; };
8963   (void)isV1;
8964   auto isV2 = [](int M) { return M >= 8; };
8965
8966   int NumV2Inputs = std::count_if(Mask.begin(), Mask.end(), isV2);
8967
8968   if (NumV2Inputs == 0) {
8969     // Check for being able to broadcast a single element.
8970     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8i16, V1,
8971                                                           Mask, Subtarget, DAG))
8972       return Broadcast;
8973
8974     // Try to use shift instructions.
8975     if (SDValue Shift =
8976             lowerVectorShuffleAsShift(DL, MVT::v8i16, V1, V1, Mask, DAG))
8977       return Shift;
8978
8979     // Use dedicated unpack instructions for masks that match their pattern.
8980     if (isShuffleEquivalent(V1, V1, Mask, {0, 0, 1, 1, 2, 2, 3, 3}))
8981       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, V1, V1);
8982     if (isShuffleEquivalent(V1, V1, Mask, {4, 4, 5, 5, 6, 6, 7, 7}))
8983       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i16, V1, V1);
8984
8985     // Try to use byte rotation instructions.
8986     if (SDValue Rotate = lowerVectorShuffleAsByteRotate(DL, MVT::v8i16, V1, V1,
8987                                                         Mask, Subtarget, DAG))
8988       return Rotate;
8989
8990     return lowerV8I16GeneralSingleInputVectorShuffle(DL, MVT::v8i16, V1, Mask,
8991                                                      Subtarget, DAG);
8992   }
8993
8994   assert(std::any_of(Mask.begin(), Mask.end(), isV1) &&
8995          "All single-input shuffles should be canonicalized to be V1-input "
8996          "shuffles.");
8997
8998   // Try to use shift instructions.
8999   if (SDValue Shift =
9000           lowerVectorShuffleAsShift(DL, MVT::v8i16, V1, V2, Mask, DAG))
9001     return Shift;
9002
9003   // See if we can use SSE4A Extraction / Insertion.
9004   if (Subtarget->hasSSE4A())
9005     if (SDValue V = lowerVectorShuffleWithSSE4A(DL, MVT::v8i16, V1, V2, Mask, DAG))
9006       return V;
9007
9008   // There are special ways we can lower some single-element blends.
9009   if (NumV2Inputs == 1)
9010     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v8i16, V1, V2,
9011                                                          Mask, Subtarget, DAG))
9012       return V;
9013
9014   // We have different paths for blend lowering, but they all must use the
9015   // *exact* same predicate.
9016   bool IsBlendSupported = Subtarget->hasSSE41();
9017   if (IsBlendSupported)
9018     if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8i16, V1, V2, Mask,
9019                                                   Subtarget, DAG))
9020       return Blend;
9021
9022   if (SDValue Masked =
9023           lowerVectorShuffleAsBitMask(DL, MVT::v8i16, V1, V2, Mask, DAG))
9024     return Masked;
9025
9026   // Use dedicated unpack instructions for masks that match their pattern.
9027   if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 2, 10, 3, 11}))
9028     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i16, V1, V2);
9029   if (isShuffleEquivalent(V1, V2, Mask, {4, 12, 5, 13, 6, 14, 7, 15}))
9030     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i16, V1, V2);
9031
9032   // Try to use byte rotation instructions.
9033   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9034           DL, MVT::v8i16, V1, V2, Mask, Subtarget, DAG))
9035     return Rotate;
9036
9037   if (SDValue BitBlend =
9038           lowerVectorShuffleAsBitBlend(DL, MVT::v8i16, V1, V2, Mask, DAG))
9039     return BitBlend;
9040
9041   if (SDValue Unpack =
9042           lowerVectorShuffleAsUnpack(DL, MVT::v8i16, V1, V2, Mask, DAG))
9043     return Unpack;
9044
9045   // If we can't directly blend but can use PSHUFB, that will be better as it
9046   // can both shuffle and set up the inefficient blend.
9047   if (!IsBlendSupported && Subtarget->hasSSSE3()) {
9048     bool V1InUse, V2InUse;
9049     return lowerVectorShuffleAsPSHUFB(DL, MVT::v8i16, V1, V2, Mask, DAG,
9050                                       V1InUse, V2InUse);
9051   }
9052
9053   // We can always bit-blend if we have to so the fallback strategy is to
9054   // decompose into single-input permutes and blends.
9055   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8i16, V1, V2,
9056                                                       Mask, DAG);
9057 }
9058
9059 /// \brief Check whether a compaction lowering can be done by dropping even
9060 /// elements and compute how many times even elements must be dropped.
9061 ///
9062 /// This handles shuffles which take every Nth element where N is a power of
9063 /// two. Example shuffle masks:
9064 ///
9065 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14,  0,  2,  4,  6,  8, 10, 12, 14
9066 ///  N = 1:  0,  2,  4,  6,  8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30
9067 ///  N = 2:  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12,  0,  4,  8, 12
9068 ///  N = 2:  0,  4,  8, 12, 16, 20, 24, 28,  0,  4,  8, 12, 16, 20, 24, 28
9069 ///  N = 3:  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8,  0,  8
9070 ///  N = 3:  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24,  0,  8, 16, 24
9071 ///
9072 /// Any of these lanes can of course be undef.
9073 ///
9074 /// This routine only supports N <= 3.
9075 /// FIXME: Evaluate whether either AVX or AVX-512 have any opportunities here
9076 /// for larger N.
9077 ///
9078 /// \returns N above, or the number of times even elements must be dropped if
9079 /// there is such a number. Otherwise returns zero.
9080 static int canLowerByDroppingEvenElements(ArrayRef<int> Mask) {
9081   // Figure out whether we're looping over two inputs or just one.
9082   bool IsSingleInput = isSingleInputShuffleMask(Mask);
9083
9084   // The modulus for the shuffle vector entries is based on whether this is
9085   // a single input or not.
9086   int ShuffleModulus = Mask.size() * (IsSingleInput ? 1 : 2);
9087   assert(isPowerOf2_32((uint32_t)ShuffleModulus) &&
9088          "We should only be called with masks with a power-of-2 size!");
9089
9090   uint64_t ModMask = (uint64_t)ShuffleModulus - 1;
9091
9092   // We track whether the input is viable for all power-of-2 strides 2^1, 2^2,
9093   // and 2^3 simultaneously. This is because we may have ambiguity with
9094   // partially undef inputs.
9095   bool ViableForN[3] = {true, true, true};
9096
9097   for (int i = 0, e = Mask.size(); i < e; ++i) {
9098     // Ignore undef lanes, we'll optimistically collapse them to the pattern we
9099     // want.
9100     if (Mask[i] == -1)
9101       continue;
9102
9103     bool IsAnyViable = false;
9104     for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
9105       if (ViableForN[j]) {
9106         uint64_t N = j + 1;
9107
9108         // The shuffle mask must be equal to (i * 2^N) % M.
9109         if ((uint64_t)Mask[i] == (((uint64_t)i << N) & ModMask))
9110           IsAnyViable = true;
9111         else
9112           ViableForN[j] = false;
9113       }
9114     // Early exit if we exhaust the possible powers of two.
9115     if (!IsAnyViable)
9116       break;
9117   }
9118
9119   for (unsigned j = 0; j != array_lengthof(ViableForN); ++j)
9120     if (ViableForN[j])
9121       return j + 1;
9122
9123   // Return 0 as there is no viable power of two.
9124   return 0;
9125 }
9126
9127 /// \brief Generic lowering of v16i8 shuffles.
9128 ///
9129 /// This is a hybrid strategy to lower v16i8 vectors. It first attempts to
9130 /// detect any complexity reducing interleaving. If that doesn't help, it uses
9131 /// UNPCK to spread the i8 elements across two i16-element vectors, and uses
9132 /// the existing lowering for v8i16 blends on each half, finally PACK-ing them
9133 /// back together.
9134 static SDValue lowerV16I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9135                                        const X86Subtarget *Subtarget,
9136                                        SelectionDAG &DAG) {
9137   SDLoc DL(Op);
9138   assert(Op.getSimpleValueType() == MVT::v16i8 && "Bad shuffle type!");
9139   assert(V1.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
9140   assert(V2.getSimpleValueType() == MVT::v16i8 && "Bad operand type!");
9141   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9142   ArrayRef<int> Mask = SVOp->getMask();
9143   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
9144
9145   // Try to use shift instructions.
9146   if (SDValue Shift =
9147           lowerVectorShuffleAsShift(DL, MVT::v16i8, V1, V2, Mask, DAG))
9148     return Shift;
9149
9150   // Try to use byte rotation instructions.
9151   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
9152           DL, MVT::v16i8, V1, V2, Mask, Subtarget, DAG))
9153     return Rotate;
9154
9155   // Try to use a zext lowering.
9156   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(
9157           DL, MVT::v16i8, V1, V2, Mask, Subtarget, DAG))
9158     return ZExt;
9159
9160   // See if we can use SSE4A Extraction / Insertion.
9161   if (Subtarget->hasSSE4A())
9162     if (SDValue V = lowerVectorShuffleWithSSE4A(DL, MVT::v16i8, V1, V2, Mask, DAG))
9163       return V;
9164
9165   int NumV2Elements =
9166       std::count_if(Mask.begin(), Mask.end(), [](int M) { return M >= 16; });
9167
9168   // For single-input shuffles, there are some nicer lowering tricks we can use.
9169   if (NumV2Elements == 0) {
9170     // Check for being able to broadcast a single element.
9171     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v16i8, V1,
9172                                                           Mask, Subtarget, DAG))
9173       return Broadcast;
9174
9175     // Check whether we can widen this to an i16 shuffle by duplicating bytes.
9176     // Notably, this handles splat and partial-splat shuffles more efficiently.
9177     // However, it only makes sense if the pre-duplication shuffle simplifies
9178     // things significantly. Currently, this means we need to be able to
9179     // express the pre-duplication shuffle as an i16 shuffle.
9180     //
9181     // FIXME: We should check for other patterns which can be widened into an
9182     // i16 shuffle as well.
9183     auto canWidenViaDuplication = [](ArrayRef<int> Mask) {
9184       for (int i = 0; i < 16; i += 2)
9185         if (Mask[i] != -1 && Mask[i + 1] != -1 && Mask[i] != Mask[i + 1])
9186           return false;
9187
9188       return true;
9189     };
9190     auto tryToWidenViaDuplication = [&]() -> SDValue {
9191       if (!canWidenViaDuplication(Mask))
9192         return SDValue();
9193       SmallVector<int, 4> LoInputs;
9194       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(LoInputs),
9195                    [](int M) { return M >= 0 && M < 8; });
9196       std::sort(LoInputs.begin(), LoInputs.end());
9197       LoInputs.erase(std::unique(LoInputs.begin(), LoInputs.end()),
9198                      LoInputs.end());
9199       SmallVector<int, 4> HiInputs;
9200       std::copy_if(Mask.begin(), Mask.end(), std::back_inserter(HiInputs),
9201                    [](int M) { return M >= 8; });
9202       std::sort(HiInputs.begin(), HiInputs.end());
9203       HiInputs.erase(std::unique(HiInputs.begin(), HiInputs.end()),
9204                      HiInputs.end());
9205
9206       bool TargetLo = LoInputs.size() >= HiInputs.size();
9207       ArrayRef<int> InPlaceInputs = TargetLo ? LoInputs : HiInputs;
9208       ArrayRef<int> MovingInputs = TargetLo ? HiInputs : LoInputs;
9209
9210       int PreDupI16Shuffle[] = {-1, -1, -1, -1, -1, -1, -1, -1};
9211       SmallDenseMap<int, int, 8> LaneMap;
9212       for (int I : InPlaceInputs) {
9213         PreDupI16Shuffle[I/2] = I/2;
9214         LaneMap[I] = I;
9215       }
9216       int j = TargetLo ? 0 : 4, je = j + 4;
9217       for (int i = 0, ie = MovingInputs.size(); i < ie; ++i) {
9218         // Check if j is already a shuffle of this input. This happens when
9219         // there are two adjacent bytes after we move the low one.
9220         if (PreDupI16Shuffle[j] != MovingInputs[i] / 2) {
9221           // If we haven't yet mapped the input, search for a slot into which
9222           // we can map it.
9223           while (j < je && PreDupI16Shuffle[j] != -1)
9224             ++j;
9225
9226           if (j == je)
9227             // We can't place the inputs into a single half with a simple i16 shuffle, so bail.
9228             return SDValue();
9229
9230           // Map this input with the i16 shuffle.
9231           PreDupI16Shuffle[j] = MovingInputs[i] / 2;
9232         }
9233
9234         // Update the lane map based on the mapping we ended up with.
9235         LaneMap[MovingInputs[i]] = 2 * j + MovingInputs[i] % 2;
9236       }
9237       V1 = DAG.getBitcast(
9238           MVT::v16i8,
9239           DAG.getVectorShuffle(MVT::v8i16, DL, DAG.getBitcast(MVT::v8i16, V1),
9240                                DAG.getUNDEF(MVT::v8i16), PreDupI16Shuffle));
9241
9242       // Unpack the bytes to form the i16s that will be shuffled into place.
9243       V1 = DAG.getNode(TargetLo ? X86ISD::UNPCKL : X86ISD::UNPCKH, DL,
9244                        MVT::v16i8, V1, V1);
9245
9246       int PostDupI16Shuffle[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
9247       for (int i = 0; i < 16; ++i)
9248         if (Mask[i] != -1) {
9249           int MappedMask = LaneMap[Mask[i]] - (TargetLo ? 0 : 8);
9250           assert(MappedMask < 8 && "Invalid v8 shuffle mask!");
9251           if (PostDupI16Shuffle[i / 2] == -1)
9252             PostDupI16Shuffle[i / 2] = MappedMask;
9253           else
9254             assert(PostDupI16Shuffle[i / 2] == MappedMask &&
9255                    "Conflicting entrties in the original shuffle!");
9256         }
9257       return DAG.getBitcast(
9258           MVT::v16i8,
9259           DAG.getVectorShuffle(MVT::v8i16, DL, DAG.getBitcast(MVT::v8i16, V1),
9260                                DAG.getUNDEF(MVT::v8i16), PostDupI16Shuffle));
9261     };
9262     if (SDValue V = tryToWidenViaDuplication())
9263       return V;
9264   }
9265
9266   if (SDValue Masked =
9267           lowerVectorShuffleAsBitMask(DL, MVT::v16i8, V1, V2, Mask, DAG))
9268     return Masked;
9269
9270   // Use dedicated unpack instructions for masks that match their pattern.
9271   if (isShuffleEquivalent(V1, V2, Mask, {// Low half.
9272                                          0, 16, 1, 17, 2, 18, 3, 19,
9273                                          // High half.
9274                                          4, 20, 5, 21, 6, 22, 7, 23}))
9275     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V1, V2);
9276   if (isShuffleEquivalent(V1, V2, Mask, {// Low half.
9277                                          8, 24, 9, 25, 10, 26, 11, 27,
9278                                          // High half.
9279                                          12, 28, 13, 29, 14, 30, 15, 31}))
9280     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V1, V2);
9281
9282   // Check for SSSE3 which lets us lower all v16i8 shuffles much more directly
9283   // with PSHUFB. It is important to do this before we attempt to generate any
9284   // blends but after all of the single-input lowerings. If the single input
9285   // lowerings can find an instruction sequence that is faster than a PSHUFB, we
9286   // want to preserve that and we can DAG combine any longer sequences into
9287   // a PSHUFB in the end. But once we start blending from multiple inputs,
9288   // the complexity of DAG combining bad patterns back into PSHUFB is too high,
9289   // and there are *very* few patterns that would actually be faster than the
9290   // PSHUFB approach because of its ability to zero lanes.
9291   //
9292   // FIXME: The only exceptions to the above are blends which are exact
9293   // interleavings with direct instructions supporting them. We currently don't
9294   // handle those well here.
9295   if (Subtarget->hasSSSE3()) {
9296     bool V1InUse = false;
9297     bool V2InUse = false;
9298
9299     SDValue PSHUFB = lowerVectorShuffleAsPSHUFB(DL, MVT::v16i8, V1, V2, Mask,
9300                                                 DAG, V1InUse, V2InUse);
9301
9302     // If both V1 and V2 are in use and we can use a direct blend or an unpack,
9303     // do so. This avoids using them to handle blends-with-zero which is
9304     // important as a single pshufb is significantly faster for that.
9305     if (V1InUse && V2InUse) {
9306       if (Subtarget->hasSSE41())
9307         if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v16i8, V1, V2,
9308                                                       Mask, Subtarget, DAG))
9309           return Blend;
9310
9311       // We can use an unpack to do the blending rather than an or in some
9312       // cases. Even though the or may be (very minorly) more efficient, we
9313       // preference this lowering because there are common cases where part of
9314       // the complexity of the shuffles goes away when we do the final blend as
9315       // an unpack.
9316       // FIXME: It might be worth trying to detect if the unpack-feeding
9317       // shuffles will both be pshufb, in which case we shouldn't bother with
9318       // this.
9319       if (SDValue Unpack =
9320               lowerVectorShuffleAsUnpack(DL, MVT::v16i8, V1, V2, Mask, DAG))
9321         return Unpack;
9322     }
9323
9324     return PSHUFB;
9325   }
9326
9327   // There are special ways we can lower some single-element blends.
9328   if (NumV2Elements == 1)
9329     if (SDValue V = lowerVectorShuffleAsElementInsertion(DL, MVT::v16i8, V1, V2,
9330                                                          Mask, Subtarget, DAG))
9331       return V;
9332
9333   if (SDValue BitBlend =
9334           lowerVectorShuffleAsBitBlend(DL, MVT::v16i8, V1, V2, Mask, DAG))
9335     return BitBlend;
9336
9337   // Check whether a compaction lowering can be done. This handles shuffles
9338   // which take every Nth element for some even N. See the helper function for
9339   // details.
9340   //
9341   // We special case these as they can be particularly efficiently handled with
9342   // the PACKUSB instruction on x86 and they show up in common patterns of
9343   // rearranging bytes to truncate wide elements.
9344   if (int NumEvenDrops = canLowerByDroppingEvenElements(Mask)) {
9345     // NumEvenDrops is the power of two stride of the elements. Another way of
9346     // thinking about it is that we need to drop the even elements this many
9347     // times to get the original input.
9348     bool IsSingleInput = isSingleInputShuffleMask(Mask);
9349
9350     // First we need to zero all the dropped bytes.
9351     assert(NumEvenDrops <= 3 &&
9352            "No support for dropping even elements more than 3 times.");
9353     // We use the mask type to pick which bytes are preserved based on how many
9354     // elements are dropped.
9355     MVT MaskVTs[] = { MVT::v8i16, MVT::v4i32, MVT::v2i64 };
9356     SDValue ByteClearMask = DAG.getBitcast(
9357         MVT::v16i8, DAG.getConstant(0xFF, DL, MaskVTs[NumEvenDrops - 1]));
9358     V1 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V1, ByteClearMask);
9359     if (!IsSingleInput)
9360       V2 = DAG.getNode(ISD::AND, DL, MVT::v16i8, V2, ByteClearMask);
9361
9362     // Now pack things back together.
9363     V1 = DAG.getBitcast(MVT::v8i16, V1);
9364     V2 = IsSingleInput ? V1 : DAG.getBitcast(MVT::v8i16, V2);
9365     SDValue Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, V1, V2);
9366     for (int i = 1; i < NumEvenDrops; ++i) {
9367       Result = DAG.getBitcast(MVT::v8i16, Result);
9368       Result = DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, Result, Result);
9369     }
9370
9371     return Result;
9372   }
9373
9374   // Handle multi-input cases by blending single-input shuffles.
9375   if (NumV2Elements > 0)
9376     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v16i8, V1, V2,
9377                                                       Mask, DAG);
9378
9379   // The fallback path for single-input shuffles widens this into two v8i16
9380   // vectors with unpacks, shuffles those, and then pulls them back together
9381   // with a pack.
9382   SDValue V = V1;
9383
9384   int LoBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
9385   int HiBlendMask[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
9386   for (int i = 0; i < 16; ++i)
9387     if (Mask[i] >= 0)
9388       (i < 8 ? LoBlendMask[i] : HiBlendMask[i % 8]) = Mask[i];
9389
9390   SDValue Zero = getZeroVector(MVT::v8i16, Subtarget, DAG, DL);
9391
9392   SDValue VLoHalf, VHiHalf;
9393   // Check if any of the odd lanes in the v16i8 are used. If not, we can mask
9394   // them out and avoid using UNPCK{L,H} to extract the elements of V as
9395   // i16s.
9396   if (std::none_of(std::begin(LoBlendMask), std::end(LoBlendMask),
9397                    [](int M) { return M >= 0 && M % 2 == 1; }) &&
9398       std::none_of(std::begin(HiBlendMask), std::end(HiBlendMask),
9399                    [](int M) { return M >= 0 && M % 2 == 1; })) {
9400     // Use a mask to drop the high bytes.
9401     VLoHalf = DAG.getBitcast(MVT::v8i16, V);
9402     VLoHalf = DAG.getNode(ISD::AND, DL, MVT::v8i16, VLoHalf,
9403                      DAG.getConstant(0x00FF, DL, MVT::v8i16));
9404
9405     // This will be a single vector shuffle instead of a blend so nuke VHiHalf.
9406     VHiHalf = DAG.getUNDEF(MVT::v8i16);
9407
9408     // Squash the masks to point directly into VLoHalf.
9409     for (int &M : LoBlendMask)
9410       if (M >= 0)
9411         M /= 2;
9412     for (int &M : HiBlendMask)
9413       if (M >= 0)
9414         M /= 2;
9415   } else {
9416     // Otherwise just unpack the low half of V into VLoHalf and the high half into
9417     // VHiHalf so that we can blend them as i16s.
9418     VLoHalf = DAG.getBitcast(
9419         MVT::v8i16, DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i8, V, Zero));
9420     VHiHalf = DAG.getBitcast(
9421         MVT::v8i16, DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i8, V, Zero));
9422   }
9423
9424   SDValue LoV = DAG.getVectorShuffle(MVT::v8i16, DL, VLoHalf, VHiHalf, LoBlendMask);
9425   SDValue HiV = DAG.getVectorShuffle(MVT::v8i16, DL, VLoHalf, VHiHalf, HiBlendMask);
9426
9427   return DAG.getNode(X86ISD::PACKUS, DL, MVT::v16i8, LoV, HiV);
9428 }
9429
9430 /// \brief Dispatching routine to lower various 128-bit x86 vector shuffles.
9431 ///
9432 /// This routine breaks down the specific type of 128-bit shuffle and
9433 /// dispatches to the lowering routines accordingly.
9434 static SDValue lower128BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9435                                         MVT VT, const X86Subtarget *Subtarget,
9436                                         SelectionDAG &DAG) {
9437   switch (VT.SimpleTy) {
9438   case MVT::v2i64:
9439     return lowerV2I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
9440   case MVT::v2f64:
9441     return lowerV2F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
9442   case MVT::v4i32:
9443     return lowerV4I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
9444   case MVT::v4f32:
9445     return lowerV4F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
9446   case MVT::v8i16:
9447     return lowerV8I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
9448   case MVT::v16i8:
9449     return lowerV16I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
9450
9451   default:
9452     llvm_unreachable("Unimplemented!");
9453   }
9454 }
9455
9456 /// \brief Helper function to test whether a shuffle mask could be
9457 /// simplified by widening the elements being shuffled.
9458 ///
9459 /// Appends the mask for wider elements in WidenedMask if valid. Otherwise
9460 /// leaves it in an unspecified state.
9461 ///
9462 /// NOTE: This must handle normal vector shuffle masks and *target* vector
9463 /// shuffle masks. The latter have the special property of a '-2' representing
9464 /// a zero-ed lane of a vector.
9465 static bool canWidenShuffleElements(ArrayRef<int> Mask,
9466                                     SmallVectorImpl<int> &WidenedMask) {
9467   for (int i = 0, Size = Mask.size(); i < Size; i += 2) {
9468     // If both elements are undef, its trivial.
9469     if (Mask[i] == SM_SentinelUndef && Mask[i + 1] == SM_SentinelUndef) {
9470       WidenedMask.push_back(SM_SentinelUndef);
9471       continue;
9472     }
9473
9474     // Check for an undef mask and a mask value properly aligned to fit with
9475     // a pair of values. If we find such a case, use the non-undef mask's value.
9476     if (Mask[i] == SM_SentinelUndef && Mask[i + 1] >= 0 && Mask[i + 1] % 2 == 1) {
9477       WidenedMask.push_back(Mask[i + 1] / 2);
9478       continue;
9479     }
9480     if (Mask[i + 1] == SM_SentinelUndef && Mask[i] >= 0 && Mask[i] % 2 == 0) {
9481       WidenedMask.push_back(Mask[i] / 2);
9482       continue;
9483     }
9484
9485     // When zeroing, we need to spread the zeroing across both lanes to widen.
9486     if (Mask[i] == SM_SentinelZero || Mask[i + 1] == SM_SentinelZero) {
9487       if ((Mask[i] == SM_SentinelZero || Mask[i] == SM_SentinelUndef) &&
9488           (Mask[i + 1] == SM_SentinelZero || Mask[i + 1] == SM_SentinelUndef)) {
9489         WidenedMask.push_back(SM_SentinelZero);
9490         continue;
9491       }
9492       return false;
9493     }
9494
9495     // Finally check if the two mask values are adjacent and aligned with
9496     // a pair.
9497     if (Mask[i] != SM_SentinelUndef && Mask[i] % 2 == 0 && Mask[i] + 1 == Mask[i + 1]) {
9498       WidenedMask.push_back(Mask[i] / 2);
9499       continue;
9500     }
9501
9502     // Otherwise we can't safely widen the elements used in this shuffle.
9503     return false;
9504   }
9505   assert(WidenedMask.size() == Mask.size() / 2 &&
9506          "Incorrect size of mask after widening the elements!");
9507
9508   return true;
9509 }
9510
9511 /// \brief Generic routine to split vector shuffle into half-sized shuffles.
9512 ///
9513 /// This routine just extracts two subvectors, shuffles them independently, and
9514 /// then concatenates them back together. This should work effectively with all
9515 /// AVX vector shuffle types.
9516 static SDValue splitAndLowerVectorShuffle(SDLoc DL, MVT VT, SDValue V1,
9517                                           SDValue V2, ArrayRef<int> Mask,
9518                                           SelectionDAG &DAG) {
9519   assert(VT.getSizeInBits() >= 256 &&
9520          "Only for 256-bit or wider vector shuffles!");
9521   assert(V1.getSimpleValueType() == VT && "Bad operand type!");
9522   assert(V2.getSimpleValueType() == VT && "Bad operand type!");
9523
9524   ArrayRef<int> LoMask = Mask.slice(0, Mask.size() / 2);
9525   ArrayRef<int> HiMask = Mask.slice(Mask.size() / 2);
9526
9527   int NumElements = VT.getVectorNumElements();
9528   int SplitNumElements = NumElements / 2;
9529   MVT ScalarVT = VT.getScalarType();
9530   MVT SplitVT = MVT::getVectorVT(ScalarVT, NumElements / 2);
9531
9532   // Rather than splitting build-vectors, just build two narrower build
9533   // vectors. This helps shuffling with splats and zeros.
9534   auto SplitVector = [&](SDValue V) {
9535     while (V.getOpcode() == ISD::BITCAST)
9536       V = V->getOperand(0);
9537
9538     MVT OrigVT = V.getSimpleValueType();
9539     int OrigNumElements = OrigVT.getVectorNumElements();
9540     int OrigSplitNumElements = OrigNumElements / 2;
9541     MVT OrigScalarVT = OrigVT.getScalarType();
9542     MVT OrigSplitVT = MVT::getVectorVT(OrigScalarVT, OrigNumElements / 2);
9543
9544     SDValue LoV, HiV;
9545
9546     auto *BV = dyn_cast<BuildVectorSDNode>(V);
9547     if (!BV) {
9548       LoV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigSplitVT, V,
9549                         DAG.getIntPtrConstant(0, DL));
9550       HiV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigSplitVT, V,
9551                         DAG.getIntPtrConstant(OrigSplitNumElements, DL));
9552     } else {
9553
9554       SmallVector<SDValue, 16> LoOps, HiOps;
9555       for (int i = 0; i < OrigSplitNumElements; ++i) {
9556         LoOps.push_back(BV->getOperand(i));
9557         HiOps.push_back(BV->getOperand(i + OrigSplitNumElements));
9558       }
9559       LoV = DAG.getNode(ISD::BUILD_VECTOR, DL, OrigSplitVT, LoOps);
9560       HiV = DAG.getNode(ISD::BUILD_VECTOR, DL, OrigSplitVT, HiOps);
9561     }
9562     return std::make_pair(DAG.getBitcast(SplitVT, LoV),
9563                           DAG.getBitcast(SplitVT, HiV));
9564   };
9565
9566   SDValue LoV1, HiV1, LoV2, HiV2;
9567   std::tie(LoV1, HiV1) = SplitVector(V1);
9568   std::tie(LoV2, HiV2) = SplitVector(V2);
9569
9570   // Now create two 4-way blends of these half-width vectors.
9571   auto HalfBlend = [&](ArrayRef<int> HalfMask) {
9572     bool UseLoV1 = false, UseHiV1 = false, UseLoV2 = false, UseHiV2 = false;
9573     SmallVector<int, 32> V1BlendMask, V2BlendMask, BlendMask;
9574     for (int i = 0; i < SplitNumElements; ++i) {
9575       int M = HalfMask[i];
9576       if (M >= NumElements) {
9577         if (M >= NumElements + SplitNumElements)
9578           UseHiV2 = true;
9579         else
9580           UseLoV2 = true;
9581         V2BlendMask.push_back(M - NumElements);
9582         V1BlendMask.push_back(-1);
9583         BlendMask.push_back(SplitNumElements + i);
9584       } else if (M >= 0) {
9585         if (M >= SplitNumElements)
9586           UseHiV1 = true;
9587         else
9588           UseLoV1 = true;
9589         V2BlendMask.push_back(-1);
9590         V1BlendMask.push_back(M);
9591         BlendMask.push_back(i);
9592       } else {
9593         V2BlendMask.push_back(-1);
9594         V1BlendMask.push_back(-1);
9595         BlendMask.push_back(-1);
9596       }
9597     }
9598
9599     // Because the lowering happens after all combining takes place, we need to
9600     // manually combine these blend masks as much as possible so that we create
9601     // a minimal number of high-level vector shuffle nodes.
9602
9603     // First try just blending the halves of V1 or V2.
9604     if (!UseLoV1 && !UseHiV1 && !UseLoV2 && !UseHiV2)
9605       return DAG.getUNDEF(SplitVT);
9606     if (!UseLoV2 && !UseHiV2)
9607       return DAG.getVectorShuffle(SplitVT, DL, LoV1, HiV1, V1BlendMask);
9608     if (!UseLoV1 && !UseHiV1)
9609       return DAG.getVectorShuffle(SplitVT, DL, LoV2, HiV2, V2BlendMask);
9610
9611     SDValue V1Blend, V2Blend;
9612     if (UseLoV1 && UseHiV1) {
9613       V1Blend =
9614         DAG.getVectorShuffle(SplitVT, DL, LoV1, HiV1, V1BlendMask);
9615     } else {
9616       // We only use half of V1 so map the usage down into the final blend mask.
9617       V1Blend = UseLoV1 ? LoV1 : HiV1;
9618       for (int i = 0; i < SplitNumElements; ++i)
9619         if (BlendMask[i] >= 0 && BlendMask[i] < SplitNumElements)
9620           BlendMask[i] = V1BlendMask[i] - (UseLoV1 ? 0 : SplitNumElements);
9621     }
9622     if (UseLoV2 && UseHiV2) {
9623       V2Blend =
9624         DAG.getVectorShuffle(SplitVT, DL, LoV2, HiV2, V2BlendMask);
9625     } else {
9626       // We only use half of V2 so map the usage down into the final blend mask.
9627       V2Blend = UseLoV2 ? LoV2 : HiV2;
9628       for (int i = 0; i < SplitNumElements; ++i)
9629         if (BlendMask[i] >= SplitNumElements)
9630           BlendMask[i] = V2BlendMask[i] + (UseLoV2 ? SplitNumElements : 0);
9631     }
9632     return DAG.getVectorShuffle(SplitVT, DL, V1Blend, V2Blend, BlendMask);
9633   };
9634   SDValue Lo = HalfBlend(LoMask);
9635   SDValue Hi = HalfBlend(HiMask);
9636   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Lo, Hi);
9637 }
9638
9639 /// \brief Either split a vector in halves or decompose the shuffles and the
9640 /// blend.
9641 ///
9642 /// This is provided as a good fallback for many lowerings of non-single-input
9643 /// shuffles with more than one 128-bit lane. In those cases, we want to select
9644 /// between splitting the shuffle into 128-bit components and stitching those
9645 /// back together vs. extracting the single-input shuffles and blending those
9646 /// results.
9647 static SDValue lowerVectorShuffleAsSplitOrBlend(SDLoc DL, MVT VT, SDValue V1,
9648                                                 SDValue V2, ArrayRef<int> Mask,
9649                                                 SelectionDAG &DAG) {
9650   assert(!isSingleInputShuffleMask(Mask) && "This routine must not be used to "
9651                                             "lower single-input shuffles as it "
9652                                             "could then recurse on itself.");
9653   int Size = Mask.size();
9654
9655   // If this can be modeled as a broadcast of two elements followed by a blend,
9656   // prefer that lowering. This is especially important because broadcasts can
9657   // often fold with memory operands.
9658   auto DoBothBroadcast = [&] {
9659     int V1BroadcastIdx = -1, V2BroadcastIdx = -1;
9660     for (int M : Mask)
9661       if (M >= Size) {
9662         if (V2BroadcastIdx == -1)
9663           V2BroadcastIdx = M - Size;
9664         else if (M - Size != V2BroadcastIdx)
9665           return false;
9666       } else if (M >= 0) {
9667         if (V1BroadcastIdx == -1)
9668           V1BroadcastIdx = M;
9669         else if (M != V1BroadcastIdx)
9670           return false;
9671       }
9672     return true;
9673   };
9674   if (DoBothBroadcast())
9675     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask,
9676                                                       DAG);
9677
9678   // If the inputs all stem from a single 128-bit lane of each input, then we
9679   // split them rather than blending because the split will decompose to
9680   // unusually few instructions.
9681   int LaneCount = VT.getSizeInBits() / 128;
9682   int LaneSize = Size / LaneCount;
9683   SmallBitVector LaneInputs[2];
9684   LaneInputs[0].resize(LaneCount, false);
9685   LaneInputs[1].resize(LaneCount, false);
9686   for (int i = 0; i < Size; ++i)
9687     if (Mask[i] >= 0)
9688       LaneInputs[Mask[i] / Size][(Mask[i] % Size) / LaneSize] = true;
9689   if (LaneInputs[0].count() <= 1 && LaneInputs[1].count() <= 1)
9690     return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
9691
9692   // Otherwise, just fall back to decomposed shuffles and a blend. This requires
9693   // that the decomposed single-input shuffles don't end up here.
9694   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask, DAG);
9695 }
9696
9697 /// \brief Lower a vector shuffle crossing multiple 128-bit lanes as
9698 /// a permutation and blend of those lanes.
9699 ///
9700 /// This essentially blends the out-of-lane inputs to each lane into the lane
9701 /// from a permuted copy of the vector. This lowering strategy results in four
9702 /// instructions in the worst case for a single-input cross lane shuffle which
9703 /// is lower than any other fully general cross-lane shuffle strategy I'm aware
9704 /// of. Special cases for each particular shuffle pattern should be handled
9705 /// prior to trying this lowering.
9706 static SDValue lowerVectorShuffleAsLanePermuteAndBlend(SDLoc DL, MVT VT,
9707                                                        SDValue V1, SDValue V2,
9708                                                        ArrayRef<int> Mask,
9709                                                        SelectionDAG &DAG) {
9710   // FIXME: This should probably be generalized for 512-bit vectors as well.
9711   assert(VT.getSizeInBits() == 256 && "Only for 256-bit vector shuffles!");
9712   int LaneSize = Mask.size() / 2;
9713
9714   // If there are only inputs from one 128-bit lane, splitting will in fact be
9715   // less expensive. The flags track whether the given lane contains an element
9716   // that crosses to another lane.
9717   bool LaneCrossing[2] = {false, false};
9718   for (int i = 0, Size = Mask.size(); i < Size; ++i)
9719     if (Mask[i] >= 0 && (Mask[i] % Size) / LaneSize != i / LaneSize)
9720       LaneCrossing[(Mask[i] % Size) / LaneSize] = true;
9721   if (!LaneCrossing[0] || !LaneCrossing[1])
9722     return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
9723
9724   if (isSingleInputShuffleMask(Mask)) {
9725     SmallVector<int, 32> FlippedBlendMask;
9726     for (int i = 0, Size = Mask.size(); i < Size; ++i)
9727       FlippedBlendMask.push_back(
9728           Mask[i] < 0 ? -1 : (((Mask[i] % Size) / LaneSize == i / LaneSize)
9729                                   ? Mask[i]
9730                                   : Mask[i] % LaneSize +
9731                                         (i / LaneSize) * LaneSize + Size));
9732
9733     // Flip the vector, and blend the results which should now be in-lane. The
9734     // VPERM2X128 mask uses the low 2 bits for the low source and bits 4 and
9735     // 5 for the high source. The value 3 selects the high half of source 2 and
9736     // the value 2 selects the low half of source 2. We only use source 2 to
9737     // allow folding it into a memory operand.
9738     unsigned PERMMask = 3 | 2 << 4;
9739     SDValue Flipped = DAG.getNode(X86ISD::VPERM2X128, DL, VT, DAG.getUNDEF(VT),
9740                                   V1, DAG.getConstant(PERMMask, DL, MVT::i8));
9741     return DAG.getVectorShuffle(VT, DL, V1, Flipped, FlippedBlendMask);
9742   }
9743
9744   // This now reduces to two single-input shuffles of V1 and V2 which at worst
9745   // will be handled by the above logic and a blend of the results, much like
9746   // other patterns in AVX.
9747   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, VT, V1, V2, Mask, DAG);
9748 }
9749
9750 /// \brief Handle lowering 2-lane 128-bit shuffles.
9751 static SDValue lowerV2X128VectorShuffle(SDLoc DL, MVT VT, SDValue V1,
9752                                         SDValue V2, ArrayRef<int> Mask,
9753                                         const X86Subtarget *Subtarget,
9754                                         SelectionDAG &DAG) {
9755   // TODO: If minimizing size and one of the inputs is a zero vector and the
9756   // the zero vector has only one use, we could use a VPERM2X128 to save the
9757   // instruction bytes needed to explicitly generate the zero vector.
9758
9759   // Blends are faster and handle all the non-lane-crossing cases.
9760   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, VT, V1, V2, Mask,
9761                                                 Subtarget, DAG))
9762     return Blend;
9763
9764   bool IsV1Zero = ISD::isBuildVectorAllZeros(V1.getNode());
9765   bool IsV2Zero = ISD::isBuildVectorAllZeros(V2.getNode());
9766
9767   // If either input operand is a zero vector, use VPERM2X128 because its mask
9768   // allows us to replace the zero input with an implicit zero.
9769   if (!IsV1Zero && !IsV2Zero) {
9770     // Check for patterns which can be matched with a single insert of a 128-bit
9771     // subvector.
9772     bool OnlyUsesV1 = isShuffleEquivalent(V1, V2, Mask, {0, 1, 0, 1});
9773     if (OnlyUsesV1 || isShuffleEquivalent(V1, V2, Mask, {0, 1, 4, 5})) {
9774       MVT SubVT = MVT::getVectorVT(VT.getVectorElementType(),
9775                                    VT.getVectorNumElements() / 2);
9776       SDValue LoV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVT, V1,
9777                                 DAG.getIntPtrConstant(0, DL));
9778       SDValue HiV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVT,
9779                                 OnlyUsesV1 ? V1 : V2,
9780                                 DAG.getIntPtrConstant(0, DL));
9781       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LoV, HiV);
9782     }
9783   }
9784
9785   // Otherwise form a 128-bit permutation. After accounting for undefs,
9786   // convert the 64-bit shuffle mask selection values into 128-bit
9787   // selection bits by dividing the indexes by 2 and shifting into positions
9788   // defined by a vperm2*128 instruction's immediate control byte.
9789
9790   // The immediate permute control byte looks like this:
9791   //    [1:0] - select 128 bits from sources for low half of destination
9792   //    [2]   - ignore
9793   //    [3]   - zero low half of destination
9794   //    [5:4] - select 128 bits from sources for high half of destination
9795   //    [6]   - ignore
9796   //    [7]   - zero high half of destination
9797
9798   int MaskLO = Mask[0];
9799   if (MaskLO == SM_SentinelUndef)
9800     MaskLO = Mask[1] == SM_SentinelUndef ? 0 : Mask[1];
9801
9802   int MaskHI = Mask[2];
9803   if (MaskHI == SM_SentinelUndef)
9804     MaskHI = Mask[3] == SM_SentinelUndef ? 0 : Mask[3];
9805
9806   unsigned PermMask = MaskLO / 2 | (MaskHI / 2) << 4;
9807
9808   // If either input is a zero vector, replace it with an undef input.
9809   // Shuffle mask values <  4 are selecting elements of V1.
9810   // Shuffle mask values >= 4 are selecting elements of V2.
9811   // Adjust each half of the permute mask by clearing the half that was
9812   // selecting the zero vector and setting the zero mask bit.
9813   if (IsV1Zero) {
9814     V1 = DAG.getUNDEF(VT);
9815     if (MaskLO < 4)
9816       PermMask = (PermMask & 0xf0) | 0x08;
9817     if (MaskHI < 4)
9818       PermMask = (PermMask & 0x0f) | 0x80;
9819   }
9820   if (IsV2Zero) {
9821     V2 = DAG.getUNDEF(VT);
9822     if (MaskLO >= 4)
9823       PermMask = (PermMask & 0xf0) | 0x08;
9824     if (MaskHI >= 4)
9825       PermMask = (PermMask & 0x0f) | 0x80;
9826   }
9827
9828   return DAG.getNode(X86ISD::VPERM2X128, DL, VT, V1, V2,
9829                      DAG.getConstant(PermMask, DL, MVT::i8));
9830 }
9831
9832 /// \brief Lower a vector shuffle by first fixing the 128-bit lanes and then
9833 /// shuffling each lane.
9834 ///
9835 /// This will only succeed when the result of fixing the 128-bit lanes results
9836 /// in a single-input non-lane-crossing shuffle with a repeating shuffle mask in
9837 /// each 128-bit lanes. This handles many cases where we can quickly blend away
9838 /// the lane crosses early and then use simpler shuffles within each lane.
9839 ///
9840 /// FIXME: It might be worthwhile at some point to support this without
9841 /// requiring the 128-bit lane-relative shuffles to be repeating, but currently
9842 /// in x86 only floating point has interesting non-repeating shuffles, and even
9843 /// those are still *marginally* more expensive.
9844 static SDValue lowerVectorShuffleByMerging128BitLanes(
9845     SDLoc DL, MVT VT, SDValue V1, SDValue V2, ArrayRef<int> Mask,
9846     const X86Subtarget *Subtarget, SelectionDAG &DAG) {
9847   assert(!isSingleInputShuffleMask(Mask) &&
9848          "This is only useful with multiple inputs.");
9849
9850   int Size = Mask.size();
9851   int LaneSize = 128 / VT.getScalarSizeInBits();
9852   int NumLanes = Size / LaneSize;
9853   assert(NumLanes > 1 && "Only handles 256-bit and wider shuffles.");
9854
9855   // See if we can build a hypothetical 128-bit lane-fixing shuffle mask. Also
9856   // check whether the in-128-bit lane shuffles share a repeating pattern.
9857   SmallVector<int, 4> Lanes;
9858   Lanes.resize(NumLanes, -1);
9859   SmallVector<int, 4> InLaneMask;
9860   InLaneMask.resize(LaneSize, -1);
9861   for (int i = 0; i < Size; ++i) {
9862     if (Mask[i] < 0)
9863       continue;
9864
9865     int j = i / LaneSize;
9866
9867     if (Lanes[j] < 0) {
9868       // First entry we've seen for this lane.
9869       Lanes[j] = Mask[i] / LaneSize;
9870     } else if (Lanes[j] != Mask[i] / LaneSize) {
9871       // This doesn't match the lane selected previously!
9872       return SDValue();
9873     }
9874
9875     // Check that within each lane we have a consistent shuffle mask.
9876     int k = i % LaneSize;
9877     if (InLaneMask[k] < 0) {
9878       InLaneMask[k] = Mask[i] % LaneSize;
9879     } else if (InLaneMask[k] != Mask[i] % LaneSize) {
9880       // This doesn't fit a repeating in-lane mask.
9881       return SDValue();
9882     }
9883   }
9884
9885   // First shuffle the lanes into place.
9886   MVT LaneVT = MVT::getVectorVT(VT.isFloatingPoint() ? MVT::f64 : MVT::i64,
9887                                 VT.getSizeInBits() / 64);
9888   SmallVector<int, 8> LaneMask;
9889   LaneMask.resize(NumLanes * 2, -1);
9890   for (int i = 0; i < NumLanes; ++i)
9891     if (Lanes[i] >= 0) {
9892       LaneMask[2 * i + 0] = 2*Lanes[i] + 0;
9893       LaneMask[2 * i + 1] = 2*Lanes[i] + 1;
9894     }
9895
9896   V1 = DAG.getBitcast(LaneVT, V1);
9897   V2 = DAG.getBitcast(LaneVT, V2);
9898   SDValue LaneShuffle = DAG.getVectorShuffle(LaneVT, DL, V1, V2, LaneMask);
9899
9900   // Cast it back to the type we actually want.
9901   LaneShuffle = DAG.getBitcast(VT, LaneShuffle);
9902
9903   // Now do a simple shuffle that isn't lane crossing.
9904   SmallVector<int, 8> NewMask;
9905   NewMask.resize(Size, -1);
9906   for (int i = 0; i < Size; ++i)
9907     if (Mask[i] >= 0)
9908       NewMask[i] = (i / LaneSize) * LaneSize + Mask[i] % LaneSize;
9909   assert(!is128BitLaneCrossingShuffleMask(VT, NewMask) &&
9910          "Must not introduce lane crosses at this point!");
9911
9912   return DAG.getVectorShuffle(VT, DL, LaneShuffle, DAG.getUNDEF(VT), NewMask);
9913 }
9914
9915 /// \brief Test whether the specified input (0 or 1) is in-place blended by the
9916 /// given mask.
9917 ///
9918 /// This returns true if the elements from a particular input are already in the
9919 /// slot required by the given mask and require no permutation.
9920 static bool isShuffleMaskInputInPlace(int Input, ArrayRef<int> Mask) {
9921   assert((Input == 0 || Input == 1) && "Only two inputs to shuffles.");
9922   int Size = Mask.size();
9923   for (int i = 0; i < Size; ++i)
9924     if (Mask[i] >= 0 && Mask[i] / Size == Input && Mask[i] % Size != i)
9925       return false;
9926
9927   return true;
9928 }
9929
9930 static SDValue lowerVectorShuffleWithSHUFPD(SDLoc DL, MVT VT,
9931                                             ArrayRef<int> Mask, SDValue V1,
9932                                             SDValue V2, SelectionDAG &DAG) {
9933
9934   // Mask for V8F64: 0/1,  8/9,  2/3,  10/11, 4/5, ..
9935   // Mask for V4F64; 0/1,  4/5,  2/3,  6/7..
9936   assert(VT.getScalarSizeInBits() == 64 && "Unexpected data type for VSHUFPD");
9937   int NumElts = VT.getVectorNumElements();
9938   bool ShufpdMask = true;
9939   bool CommutableMask = true;
9940   unsigned Immediate = 0;
9941   for (int i = 0; i < NumElts; ++i) {
9942     if (Mask[i] < 0)
9943       continue;
9944     int Val = (i & 6) + NumElts * (i & 1);
9945     int CommutVal = (i & 0xe) + NumElts * ((i & 1)^1);
9946     if (Mask[i] < Val ||  Mask[i] > Val + 1)
9947       ShufpdMask = false;
9948     if (Mask[i] < CommutVal ||  Mask[i] > CommutVal + 1)
9949       CommutableMask = false;
9950     Immediate |= (Mask[i] % 2) << i;
9951   }
9952   if (ShufpdMask)
9953     return DAG.getNode(X86ISD::SHUFP, DL, VT, V1, V2,
9954                        DAG.getConstant(Immediate, DL, MVT::i8));
9955   if (CommutableMask)
9956     return DAG.getNode(X86ISD::SHUFP, DL, VT, V2, V1,
9957                        DAG.getConstant(Immediate, DL, MVT::i8));
9958   return SDValue();
9959 }
9960
9961 /// \brief Handle lowering of 4-lane 64-bit floating point shuffles.
9962 ///
9963 /// Also ends up handling lowering of 4-lane 64-bit integer shuffles when AVX2
9964 /// isn't available.
9965 static SDValue lowerV4F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
9966                                        const X86Subtarget *Subtarget,
9967                                        SelectionDAG &DAG) {
9968   SDLoc DL(Op);
9969   assert(V1.getSimpleValueType() == MVT::v4f64 && "Bad operand type!");
9970   assert(V2.getSimpleValueType() == MVT::v4f64 && "Bad operand type!");
9971   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
9972   ArrayRef<int> Mask = SVOp->getMask();
9973   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
9974
9975   SmallVector<int, 4> WidenedMask;
9976   if (canWidenShuffleElements(Mask, WidenedMask))
9977     return lowerV2X128VectorShuffle(DL, MVT::v4f64, V1, V2, Mask, Subtarget,
9978                                     DAG);
9979
9980   if (isSingleInputShuffleMask(Mask)) {
9981     // Check for being able to broadcast a single element.
9982     if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4f64, V1,
9983                                                           Mask, Subtarget, DAG))
9984       return Broadcast;
9985
9986     // Use low duplicate instructions for masks that match their pattern.
9987     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2}))
9988       return DAG.getNode(X86ISD::MOVDDUP, DL, MVT::v4f64, V1);
9989
9990     if (!is128BitLaneCrossingShuffleMask(MVT::v4f64, Mask)) {
9991       // Non-half-crossing single input shuffles can be lowerid with an
9992       // interleaved permutation.
9993       unsigned VPERMILPMask = (Mask[0] == 1) | ((Mask[1] == 1) << 1) |
9994                               ((Mask[2] == 3) << 2) | ((Mask[3] == 3) << 3);
9995       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v4f64, V1,
9996                          DAG.getConstant(VPERMILPMask, DL, MVT::i8));
9997     }
9998
9999     // With AVX2 we have direct support for this permutation.
10000     if (Subtarget->hasAVX2())
10001       return DAG.getNode(X86ISD::VPERMI, DL, MVT::v4f64, V1,
10002                          getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
10003
10004     // Otherwise, fall back.
10005     return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v4f64, V1, V2, Mask,
10006                                                    DAG);
10007   }
10008
10009   // X86 has dedicated unpack instructions that can handle specific blend
10010   // operations: UNPCKH and UNPCKL.
10011   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 2, 6}))
10012     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f64, V1, V2);
10013   if (isShuffleEquivalent(V1, V2, Mask, {1, 5, 3, 7}))
10014     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f64, V1, V2);
10015   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 6, 2}))
10016     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4f64, V2, V1);
10017   if (isShuffleEquivalent(V1, V2, Mask, {5, 1, 7, 3}))
10018     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4f64, V2, V1);
10019
10020   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4f64, V1, V2, Mask,
10021                                                 Subtarget, DAG))
10022     return Blend;
10023
10024   // Check if the blend happens to exactly fit that of SHUFPD.
10025   if (SDValue Op =
10026       lowerVectorShuffleWithSHUFPD(DL, MVT::v4f64, Mask, V1, V2, DAG))
10027     return Op;
10028
10029   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10030   // shuffle. However, if we have AVX2 and either inputs are already in place,
10031   // we will be able to shuffle even across lanes the other input in a single
10032   // instruction so skip this pattern.
10033   if (!(Subtarget->hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) ||
10034                                  isShuffleMaskInputInPlace(1, Mask))))
10035     if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10036             DL, MVT::v4f64, V1, V2, Mask, Subtarget, DAG))
10037       return Result;
10038
10039   // If we have AVX2 then we always want to lower with a blend because an v4 we
10040   // can fully permute the elements.
10041   if (Subtarget->hasAVX2())
10042     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4f64, V1, V2,
10043                                                       Mask, DAG);
10044
10045   // Otherwise fall back on generic lowering.
10046   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v4f64, V1, V2, Mask, DAG);
10047 }
10048
10049 /// \brief Handle lowering of 4-lane 64-bit integer shuffles.
10050 ///
10051 /// This routine is only called when we have AVX2 and thus a reasonable
10052 /// instruction set for v4i64 shuffling..
10053 static SDValue lowerV4I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10054                                        const X86Subtarget *Subtarget,
10055                                        SelectionDAG &DAG) {
10056   SDLoc DL(Op);
10057   assert(V1.getSimpleValueType() == MVT::v4i64 && "Bad operand type!");
10058   assert(V2.getSimpleValueType() == MVT::v4i64 && "Bad operand type!");
10059   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10060   ArrayRef<int> Mask = SVOp->getMask();
10061   assert(Mask.size() == 4 && "Unexpected mask size for v4 shuffle!");
10062   assert(Subtarget->hasAVX2() && "We can only lower v4i64 with AVX2!");
10063
10064   SmallVector<int, 4> WidenedMask;
10065   if (canWidenShuffleElements(Mask, WidenedMask))
10066     return lowerV2X128VectorShuffle(DL, MVT::v4i64, V1, V2, Mask, Subtarget,
10067                                     DAG);
10068
10069   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v4i64, V1, V2, Mask,
10070                                                 Subtarget, DAG))
10071     return Blend;
10072
10073   // Check for being able to broadcast a single element.
10074   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v4i64, V1,
10075                                                         Mask, Subtarget, DAG))
10076     return Broadcast;
10077
10078   // When the shuffle is mirrored between the 128-bit lanes of the unit, we can
10079   // use lower latency instructions that will operate on both 128-bit lanes.
10080   SmallVector<int, 2> RepeatedMask;
10081   if (is128BitLaneRepeatedShuffleMask(MVT::v4i64, Mask, RepeatedMask)) {
10082     if (isSingleInputShuffleMask(Mask)) {
10083       int PSHUFDMask[] = {-1, -1, -1, -1};
10084       for (int i = 0; i < 2; ++i)
10085         if (RepeatedMask[i] >= 0) {
10086           PSHUFDMask[2 * i] = 2 * RepeatedMask[i];
10087           PSHUFDMask[2 * i + 1] = 2 * RepeatedMask[i] + 1;
10088         }
10089       return DAG.getBitcast(
10090           MVT::v4i64,
10091           DAG.getNode(X86ISD::PSHUFD, DL, MVT::v8i32,
10092                       DAG.getBitcast(MVT::v8i32, V1),
10093                       getV4X86ShuffleImm8ForMask(PSHUFDMask, DL, DAG)));
10094     }
10095   }
10096
10097   // AVX2 provides a direct instruction for permuting a single input across
10098   // lanes.
10099   if (isSingleInputShuffleMask(Mask))
10100     return DAG.getNode(X86ISD::VPERMI, DL, MVT::v4i64, V1,
10101                        getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
10102
10103   // Try to use shift instructions.
10104   if (SDValue Shift =
10105           lowerVectorShuffleAsShift(DL, MVT::v4i64, V1, V2, Mask, DAG))
10106     return Shift;
10107
10108   // Use dedicated unpack instructions for masks that match their pattern.
10109   if (isShuffleEquivalent(V1, V2, Mask, {0, 4, 2, 6}))
10110     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i64, V1, V2);
10111   if (isShuffleEquivalent(V1, V2, Mask, {1, 5, 3, 7}))
10112     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i64, V1, V2);
10113   if (isShuffleEquivalent(V1, V2, Mask, {4, 0, 6, 2}))
10114     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v4i64, V2, V1);
10115   if (isShuffleEquivalent(V1, V2, Mask, {5, 1, 7, 3}))
10116     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v4i64, V2, V1);
10117
10118   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10119   // shuffle. However, if we have AVX2 and either inputs are already in place,
10120   // we will be able to shuffle even across lanes the other input in a single
10121   // instruction so skip this pattern.
10122   if (!(Subtarget->hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) ||
10123                                  isShuffleMaskInputInPlace(1, Mask))))
10124     if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10125             DL, MVT::v4i64, V1, V2, Mask, Subtarget, DAG))
10126       return Result;
10127
10128   // Otherwise fall back on generic blend lowering.
10129   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v4i64, V1, V2,
10130                                                     Mask, DAG);
10131 }
10132
10133 /// \brief Handle lowering of 8-lane 32-bit floating point shuffles.
10134 ///
10135 /// Also ends up handling lowering of 8-lane 32-bit integer shuffles when AVX2
10136 /// isn't available.
10137 static SDValue lowerV8F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10138                                        const X86Subtarget *Subtarget,
10139                                        SelectionDAG &DAG) {
10140   SDLoc DL(Op);
10141   assert(V1.getSimpleValueType() == MVT::v8f32 && "Bad operand type!");
10142   assert(V2.getSimpleValueType() == MVT::v8f32 && "Bad operand type!");
10143   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10144   ArrayRef<int> Mask = SVOp->getMask();
10145   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10146
10147   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8f32, V1, V2, Mask,
10148                                                 Subtarget, DAG))
10149     return Blend;
10150
10151   // Check for being able to broadcast a single element.
10152   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8f32, V1,
10153                                                         Mask, Subtarget, DAG))
10154     return Broadcast;
10155
10156   // If the shuffle mask is repeated in each 128-bit lane, we have many more
10157   // options to efficiently lower the shuffle.
10158   SmallVector<int, 4> RepeatedMask;
10159   if (is128BitLaneRepeatedShuffleMask(MVT::v8f32, Mask, RepeatedMask)) {
10160     assert(RepeatedMask.size() == 4 &&
10161            "Repeated masks must be half the mask width!");
10162
10163     // Use even/odd duplicate instructions for masks that match their pattern.
10164     if (isShuffleEquivalent(V1, V2, Mask, {0, 0, 2, 2, 4, 4, 6, 6}))
10165       return DAG.getNode(X86ISD::MOVSLDUP, DL, MVT::v8f32, V1);
10166     if (isShuffleEquivalent(V1, V2, Mask, {1, 1, 3, 3, 5, 5, 7, 7}))
10167       return DAG.getNode(X86ISD::MOVSHDUP, DL, MVT::v8f32, V1);
10168
10169     if (isSingleInputShuffleMask(Mask))
10170       return DAG.getNode(X86ISD::VPERMILPI, DL, MVT::v8f32, V1,
10171                          getV4X86ShuffleImm8ForMask(RepeatedMask, DL, DAG));
10172
10173     // Use dedicated unpack instructions for masks that match their pattern.
10174     if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 4, 12, 5, 13}))
10175       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f32, V1, V2);
10176     if (isShuffleEquivalent(V1, V2, Mask, {2, 10, 3, 11, 6, 14, 7, 15}))
10177       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f32, V1, V2);
10178     if (isShuffleEquivalent(V1, V2, Mask, {8, 0, 9, 1, 12, 4, 13, 5}))
10179       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8f32, V2, V1);
10180     if (isShuffleEquivalent(V1, V2, Mask, {10, 2, 11, 3, 14, 6, 15, 7}))
10181       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8f32, V2, V1);
10182
10183     // Otherwise, fall back to a SHUFPS sequence. Here it is important that we
10184     // have already handled any direct blends. We also need to squash the
10185     // repeated mask into a simulated v4f32 mask.
10186     for (int i = 0; i < 4; ++i)
10187       if (RepeatedMask[i] >= 8)
10188         RepeatedMask[i] -= 4;
10189     return lowerVectorShuffleWithSHUFPS(DL, MVT::v8f32, RepeatedMask, V1, V2, DAG);
10190   }
10191
10192   // If we have a single input shuffle with different shuffle patterns in the
10193   // two 128-bit lanes use the variable mask to VPERMILPS.
10194   if (isSingleInputShuffleMask(Mask)) {
10195     SDValue VPermMask[8];
10196     for (int i = 0; i < 8; ++i)
10197       VPermMask[i] = Mask[i] < 0 ? DAG.getUNDEF(MVT::i32)
10198                                  : DAG.getConstant(Mask[i], DL, MVT::i32);
10199     if (!is128BitLaneCrossingShuffleMask(MVT::v8f32, Mask))
10200       return DAG.getNode(
10201           X86ISD::VPERMILPV, DL, MVT::v8f32, V1,
10202           DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i32, VPermMask));
10203
10204     if (Subtarget->hasAVX2())
10205       return DAG.getNode(
10206           X86ISD::VPERMV, DL, MVT::v8f32,
10207           DAG.getBitcast(MVT::v8f32, DAG.getNode(ISD::BUILD_VECTOR, DL,
10208                                                  MVT::v8i32, VPermMask)),
10209           V1);
10210
10211     // Otherwise, fall back.
10212     return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v8f32, V1, V2, Mask,
10213                                                    DAG);
10214   }
10215
10216   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10217   // shuffle.
10218   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10219           DL, MVT::v8f32, V1, V2, Mask, Subtarget, DAG))
10220     return Result;
10221
10222   // If we have AVX2 then we always want to lower with a blend because at v8 we
10223   // can fully permute the elements.
10224   if (Subtarget->hasAVX2())
10225     return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8f32, V1, V2,
10226                                                       Mask, DAG);
10227
10228   // Otherwise fall back on generic lowering.
10229   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v8f32, V1, V2, Mask, DAG);
10230 }
10231
10232 /// \brief Handle lowering of 8-lane 32-bit integer shuffles.
10233 ///
10234 /// This routine is only called when we have AVX2 and thus a reasonable
10235 /// instruction set for v8i32 shuffling..
10236 static SDValue lowerV8I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10237                                        const X86Subtarget *Subtarget,
10238                                        SelectionDAG &DAG) {
10239   SDLoc DL(Op);
10240   assert(V1.getSimpleValueType() == MVT::v8i32 && "Bad operand type!");
10241   assert(V2.getSimpleValueType() == MVT::v8i32 && "Bad operand type!");
10242   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10243   ArrayRef<int> Mask = SVOp->getMask();
10244   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10245   assert(Subtarget->hasAVX2() && "We can only lower v8i32 with AVX2!");
10246
10247   // Whenever we can lower this as a zext, that instruction is strictly faster
10248   // than any alternative. It also allows us to fold memory operands into the
10249   // shuffle in many cases.
10250   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v8i32, V1, V2,
10251                                                          Mask, Subtarget, DAG))
10252     return ZExt;
10253
10254   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v8i32, V1, V2, Mask,
10255                                                 Subtarget, DAG))
10256     return Blend;
10257
10258   // Check for being able to broadcast a single element.
10259   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v8i32, V1,
10260                                                         Mask, Subtarget, DAG))
10261     return Broadcast;
10262
10263   // If the shuffle mask is repeated in each 128-bit lane we can use more
10264   // efficient instructions that mirror the shuffles across the two 128-bit
10265   // lanes.
10266   SmallVector<int, 4> RepeatedMask;
10267   if (is128BitLaneRepeatedShuffleMask(MVT::v8i32, Mask, RepeatedMask)) {
10268     assert(RepeatedMask.size() == 4 && "Unexpected repeated mask size!");
10269     if (isSingleInputShuffleMask(Mask))
10270       return DAG.getNode(X86ISD::PSHUFD, DL, MVT::v8i32, V1,
10271                          getV4X86ShuffleImm8ForMask(RepeatedMask, DL, DAG));
10272
10273     // Use dedicated unpack instructions for masks that match their pattern.
10274     if (isShuffleEquivalent(V1, V2, Mask, {0, 8, 1, 9, 4, 12, 5, 13}))
10275       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i32, V1, V2);
10276     if (isShuffleEquivalent(V1, V2, Mask, {2, 10, 3, 11, 6, 14, 7, 15}))
10277       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i32, V1, V2);
10278     if (isShuffleEquivalent(V1, V2, Mask, {8, 0, 9, 1, 12, 4, 13, 5}))
10279       return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v8i32, V2, V1);
10280     if (isShuffleEquivalent(V1, V2, Mask, {10, 2, 11, 3, 14, 6, 15, 7}))
10281       return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v8i32, V2, V1);
10282   }
10283
10284   // Try to use shift instructions.
10285   if (SDValue Shift =
10286           lowerVectorShuffleAsShift(DL, MVT::v8i32, V1, V2, Mask, DAG))
10287     return Shift;
10288
10289   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
10290           DL, MVT::v8i32, V1, V2, Mask, Subtarget, DAG))
10291     return Rotate;
10292
10293   // If the shuffle patterns aren't repeated but it is a single input, directly
10294   // generate a cross-lane VPERMD instruction.
10295   if (isSingleInputShuffleMask(Mask)) {
10296     SDValue VPermMask[8];
10297     for (int i = 0; i < 8; ++i)
10298       VPermMask[i] = Mask[i] < 0 ? DAG.getUNDEF(MVT::i32)
10299                                  : DAG.getConstant(Mask[i], DL, MVT::i32);
10300     return DAG.getNode(
10301         X86ISD::VPERMV, DL, MVT::v8i32,
10302         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i32, VPermMask), V1);
10303   }
10304
10305   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10306   // shuffle.
10307   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10308           DL, MVT::v8i32, V1, V2, Mask, Subtarget, DAG))
10309     return Result;
10310
10311   // Otherwise fall back on generic blend lowering.
10312   return lowerVectorShuffleAsDecomposedShuffleBlend(DL, MVT::v8i32, V1, V2,
10313                                                     Mask, DAG);
10314 }
10315
10316 /// \brief Handle lowering of 16-lane 16-bit integer shuffles.
10317 ///
10318 /// This routine is only called when we have AVX2 and thus a reasonable
10319 /// instruction set for v16i16 shuffling..
10320 static SDValue lowerV16I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10321                                         const X86Subtarget *Subtarget,
10322                                         SelectionDAG &DAG) {
10323   SDLoc DL(Op);
10324   assert(V1.getSimpleValueType() == MVT::v16i16 && "Bad operand type!");
10325   assert(V2.getSimpleValueType() == MVT::v16i16 && "Bad operand type!");
10326   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10327   ArrayRef<int> Mask = SVOp->getMask();
10328   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10329   assert(Subtarget->hasAVX2() && "We can only lower v16i16 with AVX2!");
10330
10331   // Whenever we can lower this as a zext, that instruction is strictly faster
10332   // than any alternative. It also allows us to fold memory operands into the
10333   // shuffle in many cases.
10334   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v16i16, V1, V2,
10335                                                          Mask, Subtarget, DAG))
10336     return ZExt;
10337
10338   // Check for being able to broadcast a single element.
10339   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v16i16, V1,
10340                                                         Mask, Subtarget, DAG))
10341     return Broadcast;
10342
10343   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v16i16, V1, V2, Mask,
10344                                                 Subtarget, DAG))
10345     return Blend;
10346
10347   // Use dedicated unpack instructions for masks that match their pattern.
10348   if (isShuffleEquivalent(V1, V2, Mask,
10349                           {// First 128-bit lane:
10350                            0, 16, 1, 17, 2, 18, 3, 19,
10351                            // Second 128-bit lane:
10352                            8, 24, 9, 25, 10, 26, 11, 27}))
10353     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v16i16, V1, V2);
10354   if (isShuffleEquivalent(V1, V2, Mask,
10355                           {// First 128-bit lane:
10356                            4, 20, 5, 21, 6, 22, 7, 23,
10357                            // Second 128-bit lane:
10358                            12, 28, 13, 29, 14, 30, 15, 31}))
10359     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v16i16, V1, V2);
10360
10361   // Try to use shift instructions.
10362   if (SDValue Shift =
10363           lowerVectorShuffleAsShift(DL, MVT::v16i16, V1, V2, Mask, DAG))
10364     return Shift;
10365
10366   // Try to use byte rotation instructions.
10367   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
10368           DL, MVT::v16i16, V1, V2, Mask, Subtarget, DAG))
10369     return Rotate;
10370
10371   if (isSingleInputShuffleMask(Mask)) {
10372     // There are no generalized cross-lane shuffle operations available on i16
10373     // element types.
10374     if (is128BitLaneCrossingShuffleMask(MVT::v16i16, Mask))
10375       return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v16i16, V1, V2,
10376                                                      Mask, DAG);
10377
10378     SmallVector<int, 8> RepeatedMask;
10379     if (is128BitLaneRepeatedShuffleMask(MVT::v16i16, Mask, RepeatedMask)) {
10380       // As this is a single-input shuffle, the repeated mask should be
10381       // a strictly valid v8i16 mask that we can pass through to the v8i16
10382       // lowering to handle even the v16 case.
10383       return lowerV8I16GeneralSingleInputVectorShuffle(
10384           DL, MVT::v16i16, V1, RepeatedMask, Subtarget, DAG);
10385     }
10386
10387     SDValue PSHUFBMask[32];
10388     for (int i = 0; i < 16; ++i) {
10389       if (Mask[i] == -1) {
10390         PSHUFBMask[2 * i] = PSHUFBMask[2 * i + 1] = DAG.getUNDEF(MVT::i8);
10391         continue;
10392       }
10393
10394       int M = i < 8 ? Mask[i] : Mask[i] - 8;
10395       assert(M >= 0 && M < 8 && "Invalid single-input mask!");
10396       PSHUFBMask[2 * i] = DAG.getConstant(2 * M, DL, MVT::i8);
10397       PSHUFBMask[2 * i + 1] = DAG.getConstant(2 * M + 1, DL, MVT::i8);
10398     }
10399     return DAG.getBitcast(MVT::v16i16,
10400                           DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8,
10401                                       DAG.getBitcast(MVT::v32i8, V1),
10402                                       DAG.getNode(ISD::BUILD_VECTOR, DL,
10403                                                   MVT::v32i8, PSHUFBMask)));
10404   }
10405
10406   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10407   // shuffle.
10408   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10409           DL, MVT::v16i16, V1, V2, Mask, Subtarget, DAG))
10410     return Result;
10411
10412   // Otherwise fall back on generic lowering.
10413   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v16i16, V1, V2, Mask, DAG);
10414 }
10415
10416 /// \brief Handle lowering of 32-lane 8-bit integer shuffles.
10417 ///
10418 /// This routine is only called when we have AVX2 and thus a reasonable
10419 /// instruction set for v32i8 shuffling..
10420 static SDValue lowerV32I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10421                                        const X86Subtarget *Subtarget,
10422                                        SelectionDAG &DAG) {
10423   SDLoc DL(Op);
10424   assert(V1.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
10425   assert(V2.getSimpleValueType() == MVT::v32i8 && "Bad operand type!");
10426   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10427   ArrayRef<int> Mask = SVOp->getMask();
10428   assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
10429   assert(Subtarget->hasAVX2() && "We can only lower v32i8 with AVX2!");
10430
10431   // Whenever we can lower this as a zext, that instruction is strictly faster
10432   // than any alternative. It also allows us to fold memory operands into the
10433   // shuffle in many cases.
10434   if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v32i8, V1, V2,
10435                                                          Mask, Subtarget, DAG))
10436     return ZExt;
10437
10438   // Check for being able to broadcast a single element.
10439   if (SDValue Broadcast = lowerVectorShuffleAsBroadcast(DL, MVT::v32i8, V1,
10440                                                         Mask, Subtarget, DAG))
10441     return Broadcast;
10442
10443   if (SDValue Blend = lowerVectorShuffleAsBlend(DL, MVT::v32i8, V1, V2, Mask,
10444                                                 Subtarget, DAG))
10445     return Blend;
10446
10447   // Use dedicated unpack instructions for masks that match their pattern.
10448   // Note that these are repeated 128-bit lane unpacks, not unpacks across all
10449   // 256-bit lanes.
10450   if (isShuffleEquivalent(
10451           V1, V2, Mask,
10452           {// First 128-bit lane:
10453            0, 32, 1, 33, 2, 34, 3, 35, 4, 36, 5, 37, 6, 38, 7, 39,
10454            // Second 128-bit lane:
10455            16, 48, 17, 49, 18, 50, 19, 51, 20, 52, 21, 53, 22, 54, 23, 55}))
10456     return DAG.getNode(X86ISD::UNPCKL, DL, MVT::v32i8, V1, V2);
10457   if (isShuffleEquivalent(
10458           V1, V2, Mask,
10459           {// First 128-bit lane:
10460            8, 40, 9, 41, 10, 42, 11, 43, 12, 44, 13, 45, 14, 46, 15, 47,
10461            // Second 128-bit lane:
10462            24, 56, 25, 57, 26, 58, 27, 59, 28, 60, 29, 61, 30, 62, 31, 63}))
10463     return DAG.getNode(X86ISD::UNPCKH, DL, MVT::v32i8, V1, V2);
10464
10465   // Try to use shift instructions.
10466   if (SDValue Shift =
10467           lowerVectorShuffleAsShift(DL, MVT::v32i8, V1, V2, Mask, DAG))
10468     return Shift;
10469
10470   // Try to use byte rotation instructions.
10471   if (SDValue Rotate = lowerVectorShuffleAsByteRotate(
10472           DL, MVT::v32i8, V1, V2, Mask, Subtarget, DAG))
10473     return Rotate;
10474
10475   if (isSingleInputShuffleMask(Mask)) {
10476     // There are no generalized cross-lane shuffle operations available on i8
10477     // element types.
10478     if (is128BitLaneCrossingShuffleMask(MVT::v32i8, Mask))
10479       return lowerVectorShuffleAsLanePermuteAndBlend(DL, MVT::v32i8, V1, V2,
10480                                                      Mask, DAG);
10481
10482     SDValue PSHUFBMask[32];
10483     for (int i = 0; i < 32; ++i)
10484       PSHUFBMask[i] =
10485           Mask[i] < 0
10486               ? DAG.getUNDEF(MVT::i8)
10487               : DAG.getConstant(Mask[i] < 16 ? Mask[i] : Mask[i] - 16, DL,
10488                                 MVT::i8);
10489
10490     return DAG.getNode(
10491         X86ISD::PSHUFB, DL, MVT::v32i8, V1,
10492         DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, PSHUFBMask));
10493   }
10494
10495   // Try to simplify this by merging 128-bit lanes to enable a lane-based
10496   // shuffle.
10497   if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(
10498           DL, MVT::v32i8, V1, V2, Mask, Subtarget, DAG))
10499     return Result;
10500
10501   // Otherwise fall back on generic lowering.
10502   return lowerVectorShuffleAsSplitOrBlend(DL, MVT::v32i8, V1, V2, Mask, DAG);
10503 }
10504
10505 /// \brief High-level routine to lower various 256-bit x86 vector shuffles.
10506 ///
10507 /// This routine either breaks down the specific type of a 256-bit x86 vector
10508 /// shuffle or splits it into two 128-bit shuffles and fuses the results back
10509 /// together based on the available instructions.
10510 static SDValue lower256BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10511                                         MVT VT, const X86Subtarget *Subtarget,
10512                                         SelectionDAG &DAG) {
10513   SDLoc DL(Op);
10514   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10515   ArrayRef<int> Mask = SVOp->getMask();
10516
10517   // If we have a single input to the zero element, insert that into V1 if we
10518   // can do so cheaply.
10519   int NumElts = VT.getVectorNumElements();
10520   int NumV2Elements = std::count_if(Mask.begin(), Mask.end(), [NumElts](int M) {
10521     return M >= NumElts;
10522   });
10523
10524   if (NumV2Elements == 1 && Mask[0] >= NumElts)
10525     if (SDValue Insertion = lowerVectorShuffleAsElementInsertion(
10526                               DL, VT, V1, V2, Mask, Subtarget, DAG))
10527       return Insertion;
10528
10529   // There is a really nice hard cut-over between AVX1 and AVX2 that means we can
10530   // check for those subtargets here and avoid much of the subtarget querying in
10531   // the per-vector-type lowering routines. With AVX1 we have essentially *zero*
10532   // ability to manipulate a 256-bit vector with integer types. Since we'll use
10533   // floating point types there eventually, just immediately cast everything to
10534   // a float and operate entirely in that domain.
10535   if (VT.isInteger() && !Subtarget->hasAVX2()) {
10536     int ElementBits = VT.getScalarSizeInBits();
10537     if (ElementBits < 32)
10538       // No floating point type available, decompose into 128-bit vectors.
10539       return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
10540
10541     MVT FpVT = MVT::getVectorVT(MVT::getFloatingPointVT(ElementBits),
10542                                 VT.getVectorNumElements());
10543     V1 = DAG.getBitcast(FpVT, V1);
10544     V2 = DAG.getBitcast(FpVT, V2);
10545     return DAG.getBitcast(VT, DAG.getVectorShuffle(FpVT, DL, V1, V2, Mask));
10546   }
10547
10548   switch (VT.SimpleTy) {
10549   case MVT::v4f64:
10550     return lowerV4F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10551   case MVT::v4i64:
10552     return lowerV4I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10553   case MVT::v8f32:
10554     return lowerV8F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10555   case MVT::v8i32:
10556     return lowerV8I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10557   case MVT::v16i16:
10558     return lowerV16I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
10559   case MVT::v32i8:
10560     return lowerV32I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
10561
10562   default:
10563     llvm_unreachable("Not a valid 256-bit x86 vector type!");
10564   }
10565 }
10566
10567 static SDValue lowerVectorShuffleWithPERMV(SDLoc DL, MVT VT,
10568                                            ArrayRef<int> Mask, SDValue V1,
10569                                            SDValue V2, SelectionDAG &DAG) {
10570
10571   assert(VT.getScalarSizeInBits() >= 16 && "Unexpected data type for PERMV");
10572
10573   MVT MaskEltVT = MVT::getIntegerVT(VT.getScalarSizeInBits());
10574   MVT MaskVecVT = MVT::getVectorVT(MaskEltVT, VT.getVectorNumElements());
10575
10576   SmallVector<SDValue, 32>  VPermMask;
10577   for (unsigned i = 0; i < VT.getVectorNumElements(); ++i)
10578     VPermMask.push_back(Mask[i] < 0 ? DAG.getUNDEF(MaskEltVT) :
10579                         DAG.getConstant(Mask[i], DL, MaskEltVT));
10580   SDValue MaskNode = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVecVT,
10581                                  VPermMask);
10582   if (isSingleInputShuffleMask(Mask))
10583     return DAG.getNode(X86ISD::VPERMV, DL, VT, MaskNode, V1);
10584
10585   return DAG.getNode(X86ISD::VPERMV3, DL, VT, V1, MaskNode, V2);
10586 }
10587
10588 // X86 has dedicated unpack instructions that can handle specific blend
10589 // operations: UNPCKH and UNPCKL.
10590 static SDValue lowerVectorShuffleWithUNPCK(SDLoc DL, MVT VT,
10591                                            ArrayRef<int> Mask, SDValue V1,
10592                                            SDValue V2, SelectionDAG &DAG) {
10593   int NumElts = VT.getVectorNumElements();
10594   bool Unpckl = true;
10595   bool Unpckh = true;
10596   bool UnpcklSwapped = true;
10597   bool UnpckhSwapped = true;
10598   int NumEltsInLane = 128 / VT.getScalarSizeInBits();
10599
10600   for (int i = 0; i < NumElts ; ++i) {
10601     unsigned LaneStart = (i / NumEltsInLane) * NumEltsInLane;
10602
10603     int LoPos = (i % NumEltsInLane) / 2 + LaneStart + NumElts * (i % 2);
10604     int HiPos = LoPos + NumEltsInLane / 2;
10605     int LoPosSwapped = (LoPos + NumElts) % (NumElts * 2);
10606     int HiPosSwapped = (HiPos + NumElts) % (NumElts * 2);
10607
10608     if (Mask[i] == -1)
10609       continue;
10610     if (Mask[i] != LoPos)
10611       Unpckl = false;
10612     if (Mask[i] != HiPos)
10613       Unpckh = false;
10614     if (Mask[i] != LoPosSwapped)
10615       UnpcklSwapped = false;
10616     if (Mask[i] != HiPosSwapped)
10617       UnpckhSwapped = false;
10618     if (!Unpckl && !Unpckh && !UnpcklSwapped && !UnpckhSwapped)
10619       return SDValue();
10620   }
10621   if (Unpckl)
10622     return DAG.getNode(X86ISD::UNPCKL, DL, VT, V1, V2);
10623   if (Unpckh)
10624     return DAG.getNode(X86ISD::UNPCKH, DL, VT, V1, V2);
10625   if (UnpcklSwapped)
10626     return DAG.getNode(X86ISD::UNPCKL, DL, VT, V2, V1);
10627   if (UnpckhSwapped)
10628     return DAG.getNode(X86ISD::UNPCKH, DL, VT, V2, V1);
10629
10630   llvm_unreachable("Unexpected result of UNPCK mask analysis");
10631   return SDValue();
10632 }
10633
10634 /// \brief Handle lowering of 8-lane 64-bit floating point shuffles.
10635 static SDValue lowerV8F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10636                                        const X86Subtarget *Subtarget,
10637                                        SelectionDAG &DAG) {
10638   SDLoc DL(Op);
10639   assert(V1.getSimpleValueType() == MVT::v8f64 && "Bad operand type!");
10640   assert(V2.getSimpleValueType() == MVT::v8f64 && "Bad operand type!");
10641   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10642   ArrayRef<int> Mask = SVOp->getMask();
10643   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10644
10645   SDValue UnpckNode =
10646        lowerVectorShuffleWithUNPCK(DL, MVT::v8f64, Mask, V1, V2, DAG);
10647   if (UnpckNode)
10648     return UnpckNode;
10649
10650   return lowerVectorShuffleWithPERMV(DL, MVT::v8f64, Mask, V1, V2, DAG);
10651 }
10652
10653 /// \brief Handle lowering of 16-lane 32-bit floating point shuffles.
10654 static SDValue lowerV16F32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10655                                        const X86Subtarget *Subtarget,
10656                                        SelectionDAG &DAG) {
10657   SDLoc DL(Op);
10658   assert(V1.getSimpleValueType() == MVT::v16f32 && "Bad operand type!");
10659   assert(V2.getSimpleValueType() == MVT::v16f32 && "Bad operand type!");
10660   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10661   ArrayRef<int> Mask = SVOp->getMask();
10662   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10663
10664   SDValue UnpckNode =
10665        lowerVectorShuffleWithUNPCK(DL, MVT::v16f32, Mask, V1, V2, DAG);
10666   if (UnpckNode)
10667     return UnpckNode;
10668
10669   return lowerVectorShuffleWithPERMV(DL, MVT::v16f32, Mask, V1, V2, DAG);
10670 }
10671
10672 /// \brief Handle lowering of 8-lane 64-bit integer shuffles.
10673 static SDValue lowerV8I64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10674                                        const X86Subtarget *Subtarget,
10675                                        SelectionDAG &DAG) {
10676   SDLoc DL(Op);
10677   assert(V1.getSimpleValueType() == MVT::v8i64 && "Bad operand type!");
10678   assert(V2.getSimpleValueType() == MVT::v8i64 && "Bad operand type!");
10679   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10680   ArrayRef<int> Mask = SVOp->getMask();
10681   assert(Mask.size() == 8 && "Unexpected mask size for v8 shuffle!");
10682
10683   SDValue UnpckNode =
10684        lowerVectorShuffleWithUNPCK(DL, MVT::v8i64, Mask, V1, V2, DAG);
10685   if (UnpckNode)
10686     return UnpckNode;
10687
10688   return lowerVectorShuffleWithPERMV(DL, MVT::v8i64, Mask, V1, V2, DAG);
10689 }
10690
10691 /// \brief Handle lowering of 16-lane 32-bit integer shuffles.
10692 static SDValue lowerV16I32VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10693                                        const X86Subtarget *Subtarget,
10694                                        SelectionDAG &DAG) {
10695   SDLoc DL(Op);
10696   assert(V1.getSimpleValueType() == MVT::v16i32 && "Bad operand type!");
10697   assert(V2.getSimpleValueType() == MVT::v16i32 && "Bad operand type!");
10698   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10699   ArrayRef<int> Mask = SVOp->getMask();
10700   assert(Mask.size() == 16 && "Unexpected mask size for v16 shuffle!");
10701
10702   SDValue UnpckNode =
10703        lowerVectorShuffleWithUNPCK(DL, MVT::v16i32, Mask, V1, V2, DAG);
10704   if (UnpckNode)
10705     return UnpckNode;
10706
10707   return lowerVectorShuffleWithPERMV(DL, MVT::v16i32, Mask, V1, V2, DAG);
10708 }
10709
10710 /// \brief Handle lowering of 32-lane 16-bit integer shuffles.
10711 static SDValue lowerV32I16VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10712                                         const X86Subtarget *Subtarget,
10713                                         SelectionDAG &DAG) {
10714   SDLoc DL(Op);
10715   assert(V1.getSimpleValueType() == MVT::v32i16 && "Bad operand type!");
10716   assert(V2.getSimpleValueType() == MVT::v32i16 && "Bad operand type!");
10717   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10718   ArrayRef<int> Mask = SVOp->getMask();
10719   assert(Mask.size() == 32 && "Unexpected mask size for v32 shuffle!");
10720   assert(Subtarget->hasBWI() && "We can only lower v32i16 with AVX-512-BWI!");
10721
10722   return lowerVectorShuffleWithPERMV(DL, MVT::v32i16, Mask, V1, V2, DAG);
10723 }
10724
10725 /// \brief Handle lowering of 64-lane 8-bit integer shuffles.
10726 static SDValue lowerV64I8VectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10727                                        const X86Subtarget *Subtarget,
10728                                        SelectionDAG &DAG) {
10729   SDLoc DL(Op);
10730   assert(V1.getSimpleValueType() == MVT::v64i8 && "Bad operand type!");
10731   assert(V2.getSimpleValueType() == MVT::v64i8 && "Bad operand type!");
10732   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10733   ArrayRef<int> Mask = SVOp->getMask();
10734   assert(Mask.size() == 64 && "Unexpected mask size for v64 shuffle!");
10735   assert(Subtarget->hasBWI() && "We can only lower v64i8 with AVX-512-BWI!");
10736
10737   // FIXME: Implement direct support for this type!
10738   return splitAndLowerVectorShuffle(DL, MVT::v64i8, V1, V2, Mask, DAG);
10739 }
10740
10741 /// \brief High-level routine to lower various 512-bit x86 vector shuffles.
10742 ///
10743 /// This routine either breaks down the specific type of a 512-bit x86 vector
10744 /// shuffle or splits it into two 256-bit shuffles and fuses the results back
10745 /// together based on the available instructions.
10746 static SDValue lower512BitVectorShuffle(SDValue Op, SDValue V1, SDValue V2,
10747                                         MVT VT, const X86Subtarget *Subtarget,
10748                                         SelectionDAG &DAG) {
10749   SDLoc DL(Op);
10750   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10751   ArrayRef<int> Mask = SVOp->getMask();
10752   assert(Subtarget->hasAVX512() &&
10753          "Cannot lower 512-bit vectors w/ basic ISA!");
10754
10755   // Check for being able to broadcast a single element.
10756   if (SDValue Broadcast =
10757           lowerVectorShuffleAsBroadcast(DL, VT, V1, Mask, Subtarget, DAG))
10758     return Broadcast;
10759
10760   // Dispatch to each element type for lowering. If we don't have supprot for
10761   // specific element type shuffles at 512 bits, immediately split them and
10762   // lower them. Each lowering routine of a given type is allowed to assume that
10763   // the requisite ISA extensions for that element type are available.
10764   switch (VT.SimpleTy) {
10765   case MVT::v8f64:
10766     return lowerV8F64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10767   case MVT::v16f32:
10768     return lowerV16F32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10769   case MVT::v8i64:
10770     return lowerV8I64VectorShuffle(Op, V1, V2, Subtarget, DAG);
10771   case MVT::v16i32:
10772     return lowerV16I32VectorShuffle(Op, V1, V2, Subtarget, DAG);
10773   case MVT::v32i16:
10774     if (Subtarget->hasBWI())
10775       return lowerV32I16VectorShuffle(Op, V1, V2, Subtarget, DAG);
10776     break;
10777   case MVT::v64i8:
10778     if (Subtarget->hasBWI())
10779       return lowerV64I8VectorShuffle(Op, V1, V2, Subtarget, DAG);
10780     break;
10781
10782   default:
10783     llvm_unreachable("Not a valid 512-bit x86 vector type!");
10784   }
10785
10786   // Otherwise fall back on splitting.
10787   return splitAndLowerVectorShuffle(DL, VT, V1, V2, Mask, DAG);
10788 }
10789
10790 /// \brief Top-level lowering for x86 vector shuffles.
10791 ///
10792 /// This handles decomposition, canonicalization, and lowering of all x86
10793 /// vector shuffles. Most of the specific lowering strategies are encapsulated
10794 /// above in helper routines. The canonicalization attempts to widen shuffles
10795 /// to involve fewer lanes of wider elements, consolidate symmetric patterns
10796 /// s.t. only one of the two inputs needs to be tested, etc.
10797 static SDValue lowerVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
10798                                   SelectionDAG &DAG) {
10799   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
10800   ArrayRef<int> Mask = SVOp->getMask();
10801   SDValue V1 = Op.getOperand(0);
10802   SDValue V2 = Op.getOperand(1);
10803   MVT VT = Op.getSimpleValueType();
10804   int NumElements = VT.getVectorNumElements();
10805   SDLoc dl(Op);
10806
10807   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
10808
10809   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
10810   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
10811   if (V1IsUndef && V2IsUndef)
10812     return DAG.getUNDEF(VT);
10813
10814   // When we create a shuffle node we put the UNDEF node to second operand,
10815   // but in some cases the first operand may be transformed to UNDEF.
10816   // In this case we should just commute the node.
10817   if (V1IsUndef)
10818     return DAG.getCommutedVectorShuffle(*SVOp);
10819
10820   // Check for non-undef masks pointing at an undef vector and make the masks
10821   // undef as well. This makes it easier to match the shuffle based solely on
10822   // the mask.
10823   if (V2IsUndef)
10824     for (int M : Mask)
10825       if (M >= NumElements) {
10826         SmallVector<int, 8> NewMask(Mask.begin(), Mask.end());
10827         for (int &M : NewMask)
10828           if (M >= NumElements)
10829             M = -1;
10830         return DAG.getVectorShuffle(VT, dl, V1, V2, NewMask);
10831       }
10832
10833   // We actually see shuffles that are entirely re-arrangements of a set of
10834   // zero inputs. This mostly happens while decomposing complex shuffles into
10835   // simple ones. Directly lower these as a buildvector of zeros.
10836   SmallBitVector Zeroable = computeZeroableShuffleElements(Mask, V1, V2);
10837   if (Zeroable.all())
10838     return getZeroVector(VT, Subtarget, DAG, dl);
10839
10840   // Try to collapse shuffles into using a vector type with fewer elements but
10841   // wider element types. We cap this to not form integers or floating point
10842   // elements wider than 64 bits, but it might be interesting to form i128
10843   // integers to handle flipping the low and high halves of AVX 256-bit vectors.
10844   SmallVector<int, 16> WidenedMask;
10845   if (VT.getScalarSizeInBits() < 64 &&
10846       canWidenShuffleElements(Mask, WidenedMask)) {
10847     MVT NewEltVT = VT.isFloatingPoint()
10848                        ? MVT::getFloatingPointVT(VT.getScalarSizeInBits() * 2)
10849                        : MVT::getIntegerVT(VT.getScalarSizeInBits() * 2);
10850     MVT NewVT = MVT::getVectorVT(NewEltVT, VT.getVectorNumElements() / 2);
10851     // Make sure that the new vector type is legal. For example, v2f64 isn't
10852     // legal on SSE1.
10853     if (DAG.getTargetLoweringInfo().isTypeLegal(NewVT)) {
10854       V1 = DAG.getBitcast(NewVT, V1);
10855       V2 = DAG.getBitcast(NewVT, V2);
10856       return DAG.getBitcast(
10857           VT, DAG.getVectorShuffle(NewVT, dl, V1, V2, WidenedMask));
10858     }
10859   }
10860
10861   int NumV1Elements = 0, NumUndefElements = 0, NumV2Elements = 0;
10862   for (int M : SVOp->getMask())
10863     if (M < 0)
10864       ++NumUndefElements;
10865     else if (M < NumElements)
10866       ++NumV1Elements;
10867     else
10868       ++NumV2Elements;
10869
10870   // Commute the shuffle as needed such that more elements come from V1 than
10871   // V2. This allows us to match the shuffle pattern strictly on how many
10872   // elements come from V1 without handling the symmetric cases.
10873   if (NumV2Elements > NumV1Elements)
10874     return DAG.getCommutedVectorShuffle(*SVOp);
10875
10876   // When the number of V1 and V2 elements are the same, try to minimize the
10877   // number of uses of V2 in the low half of the vector. When that is tied,
10878   // ensure that the sum of indices for V1 is equal to or lower than the sum
10879   // indices for V2. When those are equal, try to ensure that the number of odd
10880   // indices for V1 is lower than the number of odd indices for V2.
10881   if (NumV1Elements == NumV2Elements) {
10882     int LowV1Elements = 0, LowV2Elements = 0;
10883     for (int M : SVOp->getMask().slice(0, NumElements / 2))
10884       if (M >= NumElements)
10885         ++LowV2Elements;
10886       else if (M >= 0)
10887         ++LowV1Elements;
10888     if (LowV2Elements > LowV1Elements) {
10889       return DAG.getCommutedVectorShuffle(*SVOp);
10890     } else if (LowV2Elements == LowV1Elements) {
10891       int SumV1Indices = 0, SumV2Indices = 0;
10892       for (int i = 0, Size = SVOp->getMask().size(); i < Size; ++i)
10893         if (SVOp->getMask()[i] >= NumElements)
10894           SumV2Indices += i;
10895         else if (SVOp->getMask()[i] >= 0)
10896           SumV1Indices += i;
10897       if (SumV2Indices < SumV1Indices) {
10898         return DAG.getCommutedVectorShuffle(*SVOp);
10899       } else if (SumV2Indices == SumV1Indices) {
10900         int NumV1OddIndices = 0, NumV2OddIndices = 0;
10901         for (int i = 0, Size = SVOp->getMask().size(); i < Size; ++i)
10902           if (SVOp->getMask()[i] >= NumElements)
10903             NumV2OddIndices += i % 2;
10904           else if (SVOp->getMask()[i] >= 0)
10905             NumV1OddIndices += i % 2;
10906         if (NumV2OddIndices < NumV1OddIndices)
10907           return DAG.getCommutedVectorShuffle(*SVOp);
10908       }
10909     }
10910   }
10911
10912   // For each vector width, delegate to a specialized lowering routine.
10913   if (VT.getSizeInBits() == 128)
10914     return lower128BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
10915
10916   if (VT.getSizeInBits() == 256)
10917     return lower256BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
10918
10919   if (VT.getSizeInBits() == 512)
10920     return lower512BitVectorShuffle(Op, V1, V2, VT, Subtarget, DAG);
10921
10922   llvm_unreachable("Unimplemented!");
10923 }
10924
10925 // This function assumes its argument is a BUILD_VECTOR of constants or
10926 // undef SDNodes. i.e: ISD::isBuildVectorOfConstantSDNodes(BuildVector) is
10927 // true.
10928 static bool BUILD_VECTORtoBlendMask(BuildVectorSDNode *BuildVector,
10929                                     unsigned &MaskValue) {
10930   MaskValue = 0;
10931   unsigned NumElems = BuildVector->getNumOperands();
10932   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
10933   unsigned NumLanes = (NumElems - 1) / 8 + 1;
10934   unsigned NumElemsInLane = NumElems / NumLanes;
10935
10936   // Blend for v16i16 should be symmetric for the both lanes.
10937   for (unsigned i = 0; i < NumElemsInLane; ++i) {
10938     SDValue EltCond = BuildVector->getOperand(i);
10939     SDValue SndLaneEltCond =
10940         (NumLanes == 2) ? BuildVector->getOperand(i + NumElemsInLane) : EltCond;
10941
10942     int Lane1Cond = -1, Lane2Cond = -1;
10943     if (isa<ConstantSDNode>(EltCond))
10944       Lane1Cond = !isZero(EltCond);
10945     if (isa<ConstantSDNode>(SndLaneEltCond))
10946       Lane2Cond = !isZero(SndLaneEltCond);
10947
10948     if (Lane1Cond == Lane2Cond || Lane2Cond < 0)
10949       // Lane1Cond != 0, means we want the first argument.
10950       // Lane1Cond == 0, means we want the second argument.
10951       // The encoding of this argument is 0 for the first argument, 1
10952       // for the second. Therefore, invert the condition.
10953       MaskValue |= !Lane1Cond << i;
10954     else if (Lane1Cond < 0)
10955       MaskValue |= !Lane2Cond << i;
10956     else
10957       return false;
10958   }
10959   return true;
10960 }
10961
10962 /// \brief Try to lower a VSELECT instruction to a vector shuffle.
10963 static SDValue lowerVSELECTtoVectorShuffle(SDValue Op,
10964                                            const X86Subtarget *Subtarget,
10965                                            SelectionDAG &DAG) {
10966   SDValue Cond = Op.getOperand(0);
10967   SDValue LHS = Op.getOperand(1);
10968   SDValue RHS = Op.getOperand(2);
10969   SDLoc dl(Op);
10970   MVT VT = Op.getSimpleValueType();
10971
10972   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
10973     return SDValue();
10974   auto *CondBV = cast<BuildVectorSDNode>(Cond);
10975
10976   // Only non-legal VSELECTs reach this lowering, convert those into generic
10977   // shuffles and re-use the shuffle lowering path for blends.
10978   SmallVector<int, 32> Mask;
10979   for (int i = 0, Size = VT.getVectorNumElements(); i < Size; ++i) {
10980     SDValue CondElt = CondBV->getOperand(i);
10981     Mask.push_back(
10982         isa<ConstantSDNode>(CondElt) ? i + (isZero(CondElt) ? Size : 0) : -1);
10983   }
10984   return DAG.getVectorShuffle(VT, dl, LHS, RHS, Mask);
10985 }
10986
10987 SDValue X86TargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
10988   // A vselect where all conditions and data are constants can be optimized into
10989   // a single vector load by SelectionDAGLegalize::ExpandBUILD_VECTOR().
10990   if (ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(0).getNode()) &&
10991       ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(1).getNode()) &&
10992       ISD::isBuildVectorOfConstantSDNodes(Op.getOperand(2).getNode()))
10993     return SDValue();
10994
10995   // Try to lower this to a blend-style vector shuffle. This can handle all
10996   // constant condition cases.
10997   if (SDValue BlendOp = lowerVSELECTtoVectorShuffle(Op, Subtarget, DAG))
10998     return BlendOp;
10999
11000   // Variable blends are only legal from SSE4.1 onward.
11001   if (!Subtarget->hasSSE41())
11002     return SDValue();
11003
11004   // Only some types will be legal on some subtargets. If we can emit a legal
11005   // VSELECT-matching blend, return Op, and but if we need to expand, return
11006   // a null value.
11007   switch (Op.getSimpleValueType().SimpleTy) {
11008   default:
11009     // Most of the vector types have blends past SSE4.1.
11010     return Op;
11011
11012   case MVT::v32i8:
11013     // The byte blends for AVX vectors were introduced only in AVX2.
11014     if (Subtarget->hasAVX2())
11015       return Op;
11016
11017     return SDValue();
11018
11019   case MVT::v8i16:
11020   case MVT::v16i16:
11021     // AVX-512 BWI and VLX features support VSELECT with i16 elements.
11022     if (Subtarget->hasBWI() && Subtarget->hasVLX())
11023       return Op;
11024
11025     // FIXME: We should custom lower this by fixing the condition and using i8
11026     // blends.
11027     return SDValue();
11028   }
11029 }
11030
11031 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
11032   MVT VT = Op.getSimpleValueType();
11033   SDLoc dl(Op);
11034
11035   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
11036     return SDValue();
11037
11038   if (VT.getSizeInBits() == 8) {
11039     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
11040                                   Op.getOperand(0), Op.getOperand(1));
11041     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
11042                                   DAG.getValueType(VT));
11043     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
11044   }
11045
11046   if (VT.getSizeInBits() == 16) {
11047     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11048     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
11049     if (Idx == 0)
11050       return DAG.getNode(
11051           ISD::TRUNCATE, dl, MVT::i16,
11052           DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
11053                       DAG.getBitcast(MVT::v4i32, Op.getOperand(0)),
11054                       Op.getOperand(1)));
11055     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
11056                                   Op.getOperand(0), Op.getOperand(1));
11057     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
11058                                   DAG.getValueType(VT));
11059     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
11060   }
11061
11062   if (VT == MVT::f32) {
11063     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
11064     // the result back to FR32 register. It's only worth matching if the
11065     // result has a single use which is a store or a bitcast to i32.  And in
11066     // the case of a store, it's not worth it if the index is a constant 0,
11067     // because a MOVSSmr can be used instead, which is smaller and faster.
11068     if (!Op.hasOneUse())
11069       return SDValue();
11070     SDNode *User = *Op.getNode()->use_begin();
11071     if ((User->getOpcode() != ISD::STORE ||
11072          (isa<ConstantSDNode>(Op.getOperand(1)) &&
11073           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
11074         (User->getOpcode() != ISD::BITCAST ||
11075          User->getValueType(0) != MVT::i32))
11076       return SDValue();
11077     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
11078                                   DAG.getBitcast(MVT::v4i32, Op.getOperand(0)),
11079                                   Op.getOperand(1));
11080     return DAG.getBitcast(MVT::f32, Extract);
11081   }
11082
11083   if (VT == MVT::i32 || VT == MVT::i64) {
11084     // ExtractPS/pextrq works with constant index.
11085     if (isa<ConstantSDNode>(Op.getOperand(1)))
11086       return Op;
11087   }
11088   return SDValue();
11089 }
11090
11091 /// Extract one bit from mask vector, like v16i1 or v8i1.
11092 /// AVX-512 feature.
11093 SDValue
11094 X86TargetLowering::ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) const {
11095   SDValue Vec = Op.getOperand(0);
11096   SDLoc dl(Vec);
11097   MVT VecVT = Vec.getSimpleValueType();
11098   SDValue Idx = Op.getOperand(1);
11099   MVT EltVT = Op.getSimpleValueType();
11100
11101   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
11102   assert((VecVT.getVectorNumElements() <= 16 || Subtarget->hasBWI()) &&
11103          "Unexpected vector type in ExtractBitFromMaskVector");
11104
11105   // variable index can't be handled in mask registers,
11106   // extend vector to VR512
11107   if (!isa<ConstantSDNode>(Idx)) {
11108     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
11109     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
11110     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
11111                               ExtVT.getVectorElementType(), Ext, Idx);
11112     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
11113   }
11114
11115   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11116   const TargetRegisterClass* rc = getRegClassFor(VecVT);
11117   if (!Subtarget->hasDQI() && (VecVT.getVectorNumElements() <= 8))
11118     rc = getRegClassFor(MVT::v16i1);
11119   unsigned MaxSift = rc->getSize()*8 - 1;
11120   Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
11121                     DAG.getConstant(MaxSift - IdxVal, dl, MVT::i8));
11122   Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
11123                     DAG.getConstant(MaxSift, dl, MVT::i8));
11124   return DAG.getNode(X86ISD::VEXTRACT, dl, MVT::i1, Vec,
11125                        DAG.getIntPtrConstant(0, dl));
11126 }
11127
11128 SDValue
11129 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
11130                                            SelectionDAG &DAG) const {
11131   SDLoc dl(Op);
11132   SDValue Vec = Op.getOperand(0);
11133   MVT VecVT = Vec.getSimpleValueType();
11134   SDValue Idx = Op.getOperand(1);
11135
11136   if (Op.getSimpleValueType() == MVT::i1)
11137     return ExtractBitFromMaskVector(Op, DAG);
11138
11139   if (!isa<ConstantSDNode>(Idx)) {
11140     if (VecVT.is512BitVector() ||
11141         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
11142          VecVT.getVectorElementType().getSizeInBits() == 32)) {
11143
11144       MVT MaskEltVT =
11145         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
11146       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
11147                                     MaskEltVT.getSizeInBits());
11148
11149       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
11150       auto PtrVT = getPointerTy(DAG.getDataLayout());
11151       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
11152                                  getZeroVector(MaskVT, Subtarget, DAG, dl), Idx,
11153                                  DAG.getConstant(0, dl, PtrVT));
11154       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
11155       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Perm,
11156                          DAG.getConstant(0, dl, PtrVT));
11157     }
11158     return SDValue();
11159   }
11160
11161   // If this is a 256-bit vector result, first extract the 128-bit vector and
11162   // then extract the element from the 128-bit vector.
11163   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
11164
11165     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11166     // Get the 128-bit vector.
11167     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
11168     MVT EltVT = VecVT.getVectorElementType();
11169
11170     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
11171
11172     //if (IdxVal >= NumElems/2)
11173     //  IdxVal -= NumElems/2;
11174     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
11175     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
11176                        DAG.getConstant(IdxVal, dl, MVT::i32));
11177   }
11178
11179   assert(VecVT.is128BitVector() && "Unexpected vector length");
11180
11181   if (Subtarget->hasSSE41())
11182     if (SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG))
11183       return Res;
11184
11185   MVT VT = Op.getSimpleValueType();
11186   // TODO: handle v16i8.
11187   if (VT.getSizeInBits() == 16) {
11188     SDValue Vec = Op.getOperand(0);
11189     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11190     if (Idx == 0)
11191       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
11192                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
11193                                      DAG.getBitcast(MVT::v4i32, Vec),
11194                                      Op.getOperand(1)));
11195     // Transform it so it match pextrw which produces a 32-bit result.
11196     MVT EltVT = MVT::i32;
11197     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
11198                                   Op.getOperand(0), Op.getOperand(1));
11199     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
11200                                   DAG.getValueType(VT));
11201     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
11202   }
11203
11204   if (VT.getSizeInBits() == 32) {
11205     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11206     if (Idx == 0)
11207       return Op;
11208
11209     // SHUFPS the element to the lowest double word, then movss.
11210     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
11211     MVT VVT = Op.getOperand(0).getSimpleValueType();
11212     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
11213                                        DAG.getUNDEF(VVT), Mask);
11214     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
11215                        DAG.getIntPtrConstant(0, dl));
11216   }
11217
11218   if (VT.getSizeInBits() == 64) {
11219     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
11220     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
11221     //        to match extract_elt for f64.
11222     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11223     if (Idx == 0)
11224       return Op;
11225
11226     // UNPCKHPD the element to the lowest double word, then movsd.
11227     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
11228     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
11229     int Mask[2] = { 1, -1 };
11230     MVT VVT = Op.getOperand(0).getSimpleValueType();
11231     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
11232                                        DAG.getUNDEF(VVT), Mask);
11233     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
11234                        DAG.getIntPtrConstant(0, dl));
11235   }
11236
11237   return SDValue();
11238 }
11239
11240 /// Insert one bit to mask vector, like v16i1 or v8i1.
11241 /// AVX-512 feature.
11242 SDValue
11243 X86TargetLowering::InsertBitToMaskVector(SDValue Op, SelectionDAG &DAG) const {
11244   SDLoc dl(Op);
11245   SDValue Vec = Op.getOperand(0);
11246   SDValue Elt = Op.getOperand(1);
11247   SDValue Idx = Op.getOperand(2);
11248   MVT VecVT = Vec.getSimpleValueType();
11249
11250   if (!isa<ConstantSDNode>(Idx)) {
11251     // Non constant index. Extend source and destination,
11252     // insert element and then truncate the result.
11253     MVT ExtVecVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
11254     MVT ExtEltVT = (VecVT == MVT::v8i1 ?  MVT::i64 : MVT::i32);
11255     SDValue ExtOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ExtVecVT,
11256       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVecVT, Vec),
11257       DAG.getNode(ISD::ZERO_EXTEND, dl, ExtEltVT, Elt), Idx);
11258     return DAG.getNode(ISD::TRUNCATE, dl, VecVT, ExtOp);
11259   }
11260
11261   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11262   SDValue EltInVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Elt);
11263   if (IdxVal)
11264     EltInVec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, EltInVec,
11265                            DAG.getConstant(IdxVal, dl, MVT::i8));
11266   if (Vec.getOpcode() == ISD::UNDEF)
11267     return EltInVec;
11268   return DAG.getNode(ISD::OR, dl, VecVT, Vec, EltInVec);
11269 }
11270
11271 SDValue X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
11272                                                   SelectionDAG &DAG) const {
11273   MVT VT = Op.getSimpleValueType();
11274   MVT EltVT = VT.getVectorElementType();
11275
11276   if (EltVT == MVT::i1)
11277     return InsertBitToMaskVector(Op, DAG);
11278
11279   SDLoc dl(Op);
11280   SDValue N0 = Op.getOperand(0);
11281   SDValue N1 = Op.getOperand(1);
11282   SDValue N2 = Op.getOperand(2);
11283   if (!isa<ConstantSDNode>(N2))
11284     return SDValue();
11285   auto *N2C = cast<ConstantSDNode>(N2);
11286   unsigned IdxVal = N2C->getZExtValue();
11287
11288   // If the vector is wider than 128 bits, extract the 128-bit subvector, insert
11289   // into that, and then insert the subvector back into the result.
11290   if (VT.is256BitVector() || VT.is512BitVector()) {
11291     // With a 256-bit vector, we can insert into the zero element efficiently
11292     // using a blend if we have AVX or AVX2 and the right data type.
11293     if (VT.is256BitVector() && IdxVal == 0) {
11294       // TODO: It is worthwhile to cast integer to floating point and back
11295       // and incur a domain crossing penalty if that's what we'll end up
11296       // doing anyway after extracting to a 128-bit vector.
11297       if ((Subtarget->hasAVX() && (EltVT == MVT::f64 || EltVT == MVT::f32)) ||
11298           (Subtarget->hasAVX2() && EltVT == MVT::i32)) {
11299         SDValue N1Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, N1);
11300         N2 = DAG.getIntPtrConstant(1, dl);
11301         return DAG.getNode(X86ISD::BLENDI, dl, VT, N0, N1Vec, N2);
11302       }
11303     }
11304
11305     // Get the desired 128-bit vector chunk.
11306     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
11307
11308     // Insert the element into the desired chunk.
11309     unsigned NumEltsIn128 = 128 / EltVT.getSizeInBits();
11310     unsigned IdxIn128 = IdxVal - (IdxVal / NumEltsIn128) * NumEltsIn128;
11311
11312     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
11313                     DAG.getConstant(IdxIn128, dl, MVT::i32));
11314
11315     // Insert the changed part back into the bigger vector
11316     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
11317   }
11318   assert(VT.is128BitVector() && "Only 128-bit vector types should be left!");
11319
11320   if (Subtarget->hasSSE41()) {
11321     if (EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) {
11322       unsigned Opc;
11323       if (VT == MVT::v8i16) {
11324         Opc = X86ISD::PINSRW;
11325       } else {
11326         assert(VT == MVT::v16i8);
11327         Opc = X86ISD::PINSRB;
11328       }
11329
11330       // Transform it so it match pinsr{b,w} which expects a GR32 as its second
11331       // argument.
11332       if (N1.getValueType() != MVT::i32)
11333         N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
11334       if (N2.getValueType() != MVT::i32)
11335         N2 = DAG.getIntPtrConstant(IdxVal, dl);
11336       return DAG.getNode(Opc, dl, VT, N0, N1, N2);
11337     }
11338
11339     if (EltVT == MVT::f32) {
11340       // Bits [7:6] of the constant are the source select. This will always be
11341       //   zero here. The DAG Combiner may combine an extract_elt index into
11342       //   these bits. For example (insert (extract, 3), 2) could be matched by
11343       //   putting the '3' into bits [7:6] of X86ISD::INSERTPS.
11344       // Bits [5:4] of the constant are the destination select. This is the
11345       //   value of the incoming immediate.
11346       // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
11347       //   combine either bitwise AND or insert of float 0.0 to set these bits.
11348
11349       bool MinSize = DAG.getMachineFunction().getFunction()->optForMinSize();
11350       if (IdxVal == 0 && (!MinSize || !MayFoldLoad(N1))) {
11351         // If this is an insertion of 32-bits into the low 32-bits of
11352         // a vector, we prefer to generate a blend with immediate rather
11353         // than an insertps. Blends are simpler operations in hardware and so
11354         // will always have equal or better performance than insertps.
11355         // But if optimizing for size and there's a load folding opportunity,
11356         // generate insertps because blendps does not have a 32-bit memory
11357         // operand form.
11358         N2 = DAG.getIntPtrConstant(1, dl);
11359         N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
11360         return DAG.getNode(X86ISD::BLENDI, dl, VT, N0, N1, N2);
11361       }
11362       N2 = DAG.getIntPtrConstant(IdxVal << 4, dl);
11363       // Create this as a scalar to vector..
11364       N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
11365       return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
11366     }
11367
11368     if (EltVT == MVT::i32 || EltVT == MVT::i64) {
11369       // PINSR* works with constant index.
11370       return Op;
11371     }
11372   }
11373
11374   if (EltVT == MVT::i8)
11375     return SDValue();
11376
11377   if (EltVT.getSizeInBits() == 16) {
11378     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
11379     // as its second argument.
11380     if (N1.getValueType() != MVT::i32)
11381       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
11382     if (N2.getValueType() != MVT::i32)
11383       N2 = DAG.getIntPtrConstant(IdxVal, dl);
11384     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
11385   }
11386   return SDValue();
11387 }
11388
11389 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
11390   SDLoc dl(Op);
11391   MVT OpVT = Op.getSimpleValueType();
11392
11393   // If this is a 256-bit vector result, first insert into a 128-bit
11394   // vector and then insert into the 256-bit vector.
11395   if (!OpVT.is128BitVector()) {
11396     // Insert into a 128-bit vector.
11397     unsigned SizeFactor = OpVT.getSizeInBits()/128;
11398     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
11399                                  OpVT.getVectorNumElements() / SizeFactor);
11400
11401     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
11402
11403     // Insert the 128-bit vector.
11404     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
11405   }
11406
11407   if (OpVT == MVT::v1i64 &&
11408       Op.getOperand(0).getValueType() == MVT::i64)
11409     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
11410
11411   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
11412   assert(OpVT.is128BitVector() && "Expected an SSE type!");
11413   return DAG.getBitcast(
11414       OpVT, DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, AnyExt));
11415 }
11416
11417 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
11418 // a simple subregister reference or explicit instructions to grab
11419 // upper bits of a vector.
11420 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
11421                                       SelectionDAG &DAG) {
11422   SDLoc dl(Op);
11423   SDValue In =  Op.getOperand(0);
11424   SDValue Idx = Op.getOperand(1);
11425   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11426   MVT ResVT   = Op.getSimpleValueType();
11427   MVT InVT    = In.getSimpleValueType();
11428
11429   if (Subtarget->hasFp256()) {
11430     if (ResVT.is128BitVector() &&
11431         (InVT.is256BitVector() || InVT.is512BitVector()) &&
11432         isa<ConstantSDNode>(Idx)) {
11433       return Extract128BitVector(In, IdxVal, DAG, dl);
11434     }
11435     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
11436         isa<ConstantSDNode>(Idx)) {
11437       return Extract256BitVector(In, IdxVal, DAG, dl);
11438     }
11439   }
11440   return SDValue();
11441 }
11442
11443 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
11444 // simple superregister reference or explicit instructions to insert
11445 // the upper bits of a vector.
11446 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
11447                                      SelectionDAG &DAG) {
11448   if (!Subtarget->hasAVX())
11449     return SDValue();
11450
11451   SDLoc dl(Op);
11452   SDValue Vec = Op.getOperand(0);
11453   SDValue SubVec = Op.getOperand(1);
11454   SDValue Idx = Op.getOperand(2);
11455
11456   if (!isa<ConstantSDNode>(Idx))
11457     return SDValue();
11458
11459   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
11460   MVT OpVT = Op.getSimpleValueType();
11461   MVT SubVecVT = SubVec.getSimpleValueType();
11462
11463   // Fold two 16-byte subvector loads into one 32-byte load:
11464   // (insert_subvector (insert_subvector undef, (load addr), 0),
11465   //                   (load addr + 16), Elts/2)
11466   // --> load32 addr
11467   if ((IdxVal == OpVT.getVectorNumElements() / 2) &&
11468       Vec.getOpcode() == ISD::INSERT_SUBVECTOR &&
11469       OpVT.is256BitVector() && SubVecVT.is128BitVector()) {
11470     auto *Idx2 = dyn_cast<ConstantSDNode>(Vec.getOperand(2));
11471     if (Idx2 && Idx2->getZExtValue() == 0) {
11472       SDValue SubVec2 = Vec.getOperand(1);
11473       // If needed, look through a bitcast to get to the load.
11474       if (SubVec2.getNode() && SubVec2.getOpcode() == ISD::BITCAST)
11475         SubVec2 = SubVec2.getOperand(0);
11476       
11477       if (auto *FirstLd = dyn_cast<LoadSDNode>(SubVec2)) {
11478         bool Fast;
11479         unsigned Alignment = FirstLd->getAlignment();
11480         unsigned AS = FirstLd->getAddressSpace();
11481         const X86TargetLowering *TLI = Subtarget->getTargetLowering();
11482         if (TLI->allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(),
11483                                     OpVT, AS, Alignment, &Fast) && Fast) {
11484           SDValue Ops[] = { SubVec2, SubVec };
11485           if (SDValue Ld = EltsFromConsecutiveLoads(OpVT, Ops, dl, DAG, false))
11486             return Ld;
11487         }
11488       }
11489     }
11490   }
11491
11492   if ((OpVT.is256BitVector() || OpVT.is512BitVector()) &&
11493       SubVecVT.is128BitVector())
11494     return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
11495
11496   if (OpVT.is512BitVector() && SubVecVT.is256BitVector())
11497     return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
11498
11499   if (OpVT.getVectorElementType() == MVT::i1) {
11500     if (IdxVal == 0  && Vec.getOpcode() == ISD::UNDEF) // the operation is legal
11501       return Op;
11502     SDValue ZeroIdx = DAG.getIntPtrConstant(0, dl);
11503     SDValue Undef = DAG.getUNDEF(OpVT);
11504     unsigned NumElems = OpVT.getVectorNumElements();
11505     SDValue ShiftBits = DAG.getConstant(NumElems/2, dl, MVT::i8);
11506
11507     if (IdxVal == OpVT.getVectorNumElements() / 2) {
11508       // Zero upper bits of the Vec
11509       Vec = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec, ShiftBits);
11510       Vec = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec, ShiftBits);
11511
11512       SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef,
11513                                  SubVec, ZeroIdx);
11514       Vec2 = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec2, ShiftBits);
11515       return DAG.getNode(ISD::OR, dl, OpVT, Vec, Vec2);
11516     }
11517     if (IdxVal == 0) {
11518       SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef,
11519                                  SubVec, ZeroIdx);
11520       // Zero upper bits of the Vec2
11521       Vec2 = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec2, ShiftBits);
11522       Vec2 = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec2, ShiftBits);
11523       // Zero lower bits of the Vec
11524       Vec = DAG.getNode(X86ISD::VSRLI, dl, OpVT, Vec, ShiftBits);
11525       Vec = DAG.getNode(X86ISD::VSHLI, dl, OpVT, Vec, ShiftBits);
11526       // Merge them together
11527       return DAG.getNode(ISD::OR, dl, OpVT, Vec, Vec2);
11528     }
11529   }
11530   return SDValue();
11531 }
11532
11533 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
11534 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
11535 // one of the above mentioned nodes. It has to be wrapped because otherwise
11536 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
11537 // be used to form addressing mode. These wrapped nodes will be selected
11538 // into MOV32ri.
11539 SDValue
11540 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
11541   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
11542
11543   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11544   // global base reg.
11545   unsigned char OpFlag = 0;
11546   unsigned WrapperKind = X86ISD::Wrapper;
11547   CodeModel::Model M = DAG.getTarget().getCodeModel();
11548
11549   if (Subtarget->isPICStyleRIPRel() &&
11550       (M == CodeModel::Small || M == CodeModel::Kernel))
11551     WrapperKind = X86ISD::WrapperRIP;
11552   else if (Subtarget->isPICStyleGOT())
11553     OpFlag = X86II::MO_GOTOFF;
11554   else if (Subtarget->isPICStyleStubPIC())
11555     OpFlag = X86II::MO_PIC_BASE_OFFSET;
11556
11557   auto PtrVT = getPointerTy(DAG.getDataLayout());
11558   SDValue Result = DAG.getTargetConstantPool(
11559       CP->getConstVal(), PtrVT, CP->getAlignment(), CP->getOffset(), OpFlag);
11560   SDLoc DL(CP);
11561   Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11562   // With PIC, the address is actually $g + Offset.
11563   if (OpFlag) {
11564     Result =
11565         DAG.getNode(ISD::ADD, DL, PtrVT,
11566                     DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), Result);
11567   }
11568
11569   return Result;
11570 }
11571
11572 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
11573   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
11574
11575   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11576   // global base reg.
11577   unsigned char OpFlag = 0;
11578   unsigned WrapperKind = X86ISD::Wrapper;
11579   CodeModel::Model M = DAG.getTarget().getCodeModel();
11580
11581   if (Subtarget->isPICStyleRIPRel() &&
11582       (M == CodeModel::Small || M == CodeModel::Kernel))
11583     WrapperKind = X86ISD::WrapperRIP;
11584   else if (Subtarget->isPICStyleGOT())
11585     OpFlag = X86II::MO_GOTOFF;
11586   else if (Subtarget->isPICStyleStubPIC())
11587     OpFlag = X86II::MO_PIC_BASE_OFFSET;
11588
11589   auto PtrVT = getPointerTy(DAG.getDataLayout());
11590   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, OpFlag);
11591   SDLoc DL(JT);
11592   Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11593
11594   // With PIC, the address is actually $g + Offset.
11595   if (OpFlag)
11596     Result =
11597         DAG.getNode(ISD::ADD, DL, PtrVT,
11598                     DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), Result);
11599
11600   return Result;
11601 }
11602
11603 SDValue
11604 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
11605   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
11606
11607   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11608   // global base reg.
11609   unsigned char OpFlag = 0;
11610   unsigned WrapperKind = X86ISD::Wrapper;
11611   CodeModel::Model M = DAG.getTarget().getCodeModel();
11612
11613   if (Subtarget->isPICStyleRIPRel() &&
11614       (M == CodeModel::Small || M == CodeModel::Kernel)) {
11615     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
11616       OpFlag = X86II::MO_GOTPCREL;
11617     WrapperKind = X86ISD::WrapperRIP;
11618   } else if (Subtarget->isPICStyleGOT()) {
11619     OpFlag = X86II::MO_GOT;
11620   } else if (Subtarget->isPICStyleStubPIC()) {
11621     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
11622   } else if (Subtarget->isPICStyleStubNoDynamic()) {
11623     OpFlag = X86II::MO_DARWIN_NONLAZY;
11624   }
11625
11626   auto PtrVT = getPointerTy(DAG.getDataLayout());
11627   SDValue Result = DAG.getTargetExternalSymbol(Sym, PtrVT, OpFlag);
11628
11629   SDLoc DL(Op);
11630   Result = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11631
11632   // With PIC, the address is actually $g + Offset.
11633   if (DAG.getTarget().getRelocationModel() == Reloc::PIC_ &&
11634       !Subtarget->is64Bit()) {
11635     Result =
11636         DAG.getNode(ISD::ADD, DL, PtrVT,
11637                     DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), Result);
11638   }
11639
11640   // For symbols that require a load from a stub to get the address, emit the
11641   // load.
11642   if (isGlobalStubReference(OpFlag))
11643     Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
11644                          MachinePointerInfo::getGOT(DAG.getMachineFunction()),
11645                          false, false, false, 0);
11646
11647   return Result;
11648 }
11649
11650 SDValue
11651 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
11652   // Create the TargetBlockAddressAddress node.
11653   unsigned char OpFlags =
11654     Subtarget->ClassifyBlockAddressReference();
11655   CodeModel::Model M = DAG.getTarget().getCodeModel();
11656   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
11657   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
11658   SDLoc dl(Op);
11659   auto PtrVT = getPointerTy(DAG.getDataLayout());
11660   SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT, Offset, OpFlags);
11661
11662   if (Subtarget->isPICStyleRIPRel() &&
11663       (M == CodeModel::Small || M == CodeModel::Kernel))
11664     Result = DAG.getNode(X86ISD::WrapperRIP, dl, PtrVT, Result);
11665   else
11666     Result = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, Result);
11667
11668   // With PIC, the address is actually $g + Offset.
11669   if (isGlobalRelativeToPICBase(OpFlags)) {
11670     Result = DAG.getNode(ISD::ADD, dl, PtrVT,
11671                          DAG.getNode(X86ISD::GlobalBaseReg, dl, PtrVT), Result);
11672   }
11673
11674   return Result;
11675 }
11676
11677 SDValue
11678 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
11679                                       int64_t Offset, SelectionDAG &DAG) const {
11680   // Create the TargetGlobalAddress node, folding in the constant
11681   // offset if it is legal.
11682   unsigned char OpFlags =
11683       Subtarget->ClassifyGlobalReference(GV, DAG.getTarget());
11684   CodeModel::Model M = DAG.getTarget().getCodeModel();
11685   auto PtrVT = getPointerTy(DAG.getDataLayout());
11686   SDValue Result;
11687   if (OpFlags == X86II::MO_NO_FLAG &&
11688       X86::isOffsetSuitableForCodeModel(Offset, M)) {
11689     // A direct static reference to a global.
11690     Result = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset);
11691     Offset = 0;
11692   } else {
11693     Result = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, OpFlags);
11694   }
11695
11696   if (Subtarget->isPICStyleRIPRel() &&
11697       (M == CodeModel::Small || M == CodeModel::Kernel))
11698     Result = DAG.getNode(X86ISD::WrapperRIP, dl, PtrVT, Result);
11699   else
11700     Result = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, Result);
11701
11702   // With PIC, the address is actually $g + Offset.
11703   if (isGlobalRelativeToPICBase(OpFlags)) {
11704     Result = DAG.getNode(ISD::ADD, dl, PtrVT,
11705                          DAG.getNode(X86ISD::GlobalBaseReg, dl, PtrVT), Result);
11706   }
11707
11708   // For globals that require a load from a stub to get the address, emit the
11709   // load.
11710   if (isGlobalStubReference(OpFlags))
11711     Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
11712                          MachinePointerInfo::getGOT(DAG.getMachineFunction()),
11713                          false, false, false, 0);
11714
11715   // If there was a non-zero offset that we didn't fold, create an explicit
11716   // addition for it.
11717   if (Offset != 0)
11718     Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result,
11719                          DAG.getConstant(Offset, dl, PtrVT));
11720
11721   return Result;
11722 }
11723
11724 SDValue
11725 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
11726   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
11727   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
11728   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
11729 }
11730
11731 static SDValue
11732 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
11733            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
11734            unsigned char OperandFlags, bool LocalDynamic = false) {
11735   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11736   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11737   SDLoc dl(GA);
11738   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
11739                                            GA->getValueType(0),
11740                                            GA->getOffset(),
11741                                            OperandFlags);
11742
11743   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
11744                                            : X86ISD::TLSADDR;
11745
11746   if (InFlag) {
11747     SDValue Ops[] = { Chain,  TGA, *InFlag };
11748     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
11749   } else {
11750     SDValue Ops[]  = { Chain, TGA };
11751     Chain = DAG.getNode(CallType, dl, NodeTys, Ops);
11752   }
11753
11754   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
11755   MFI->setAdjustsStack(true);
11756   MFI->setHasCalls(true);
11757
11758   SDValue Flag = Chain.getValue(1);
11759   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
11760 }
11761
11762 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
11763 static SDValue
11764 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
11765                                 const EVT PtrVT) {
11766   SDValue InFlag;
11767   SDLoc dl(GA);  // ? function entry point might be better
11768   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
11769                                    DAG.getNode(X86ISD::GlobalBaseReg,
11770                                                SDLoc(), PtrVT), InFlag);
11771   InFlag = Chain.getValue(1);
11772
11773   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
11774 }
11775
11776 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
11777 static SDValue
11778 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
11779                                 const EVT PtrVT) {
11780   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT,
11781                     X86::RAX, X86II::MO_TLSGD);
11782 }
11783
11784 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
11785                                            SelectionDAG &DAG,
11786                                            const EVT PtrVT,
11787                                            bool is64Bit) {
11788   SDLoc dl(GA);
11789
11790   // Get the start address of the TLS block for this module.
11791   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
11792       .getInfo<X86MachineFunctionInfo>();
11793   MFI->incNumLocalDynamicTLSAccesses();
11794
11795   SDValue Base;
11796   if (is64Bit) {
11797     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, nullptr, PtrVT, X86::RAX,
11798                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
11799   } else {
11800     SDValue InFlag;
11801     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
11802         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
11803     InFlag = Chain.getValue(1);
11804     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
11805                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
11806   }
11807
11808   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
11809   // of Base.
11810
11811   // Build x@dtpoff.
11812   unsigned char OperandFlags = X86II::MO_DTPOFF;
11813   unsigned WrapperKind = X86ISD::Wrapper;
11814   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
11815                                            GA->getValueType(0),
11816                                            GA->getOffset(), OperandFlags);
11817   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
11818
11819   // Add x@dtpoff with the base.
11820   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
11821 }
11822
11823 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
11824 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
11825                                    const EVT PtrVT, TLSModel::Model model,
11826                                    bool is64Bit, bool isPIC) {
11827   SDLoc dl(GA);
11828
11829   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
11830   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
11831                                                          is64Bit ? 257 : 256));
11832
11833   SDValue ThreadPointer =
11834       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0, dl),
11835                   MachinePointerInfo(Ptr), false, false, false, 0);
11836
11837   unsigned char OperandFlags = 0;
11838   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
11839   // initialexec.
11840   unsigned WrapperKind = X86ISD::Wrapper;
11841   if (model == TLSModel::LocalExec) {
11842     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
11843   } else if (model == TLSModel::InitialExec) {
11844     if (is64Bit) {
11845       OperandFlags = X86II::MO_GOTTPOFF;
11846       WrapperKind = X86ISD::WrapperRIP;
11847     } else {
11848       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
11849     }
11850   } else {
11851     llvm_unreachable("Unexpected model");
11852   }
11853
11854   // emit "addl x@ntpoff,%eax" (local exec)
11855   // or "addl x@indntpoff,%eax" (initial exec)
11856   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
11857   SDValue TGA =
11858       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
11859                                  GA->getOffset(), OperandFlags);
11860   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
11861
11862   if (model == TLSModel::InitialExec) {
11863     if (isPIC && !is64Bit) {
11864       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
11865                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
11866                            Offset);
11867     }
11868
11869     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
11870                          MachinePointerInfo::getGOT(DAG.getMachineFunction()),
11871                          false, false, false, 0);
11872   }
11873
11874   // The address of the thread local variable is the add of the thread
11875   // pointer with the offset of the variable.
11876   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
11877 }
11878
11879 SDValue
11880 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
11881
11882   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
11883   const GlobalValue *GV = GA->getGlobal();
11884   auto PtrVT = getPointerTy(DAG.getDataLayout());
11885
11886   if (Subtarget->isTargetELF()) {
11887     if (DAG.getTarget().Options.EmulatedTLS)
11888       return LowerToTLSEmulatedModel(GA, DAG);
11889     TLSModel::Model model = DAG.getTarget().getTLSModel(GV);
11890     switch (model) {
11891       case TLSModel::GeneralDynamic:
11892         if (Subtarget->is64Bit())
11893           return LowerToTLSGeneralDynamicModel64(GA, DAG, PtrVT);
11894         return LowerToTLSGeneralDynamicModel32(GA, DAG, PtrVT);
11895       case TLSModel::LocalDynamic:
11896         return LowerToTLSLocalDynamicModel(GA, DAG, PtrVT,
11897                                            Subtarget->is64Bit());
11898       case TLSModel::InitialExec:
11899       case TLSModel::LocalExec:
11900         return LowerToTLSExecModel(GA, DAG, PtrVT, model, Subtarget->is64Bit(),
11901                                    DAG.getTarget().getRelocationModel() ==
11902                                        Reloc::PIC_);
11903     }
11904     llvm_unreachable("Unknown TLS model.");
11905   }
11906
11907   if (Subtarget->isTargetDarwin()) {
11908     // Darwin only has one model of TLS.  Lower to that.
11909     unsigned char OpFlag = 0;
11910     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
11911                            X86ISD::WrapperRIP : X86ISD::Wrapper;
11912
11913     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
11914     // global base reg.
11915     bool PIC32 = (DAG.getTarget().getRelocationModel() == Reloc::PIC_) &&
11916                  !Subtarget->is64Bit();
11917     if (PIC32)
11918       OpFlag = X86II::MO_TLVP_PIC_BASE;
11919     else
11920       OpFlag = X86II::MO_TLVP;
11921     SDLoc DL(Op);
11922     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
11923                                                 GA->getValueType(0),
11924                                                 GA->getOffset(), OpFlag);
11925     SDValue Offset = DAG.getNode(WrapperKind, DL, PtrVT, Result);
11926
11927     // With PIC32, the address is actually $g + Offset.
11928     if (PIC32)
11929       Offset = DAG.getNode(ISD::ADD, DL, PtrVT,
11930                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
11931                            Offset);
11932
11933     // Lowering the machine isd will make sure everything is in the right
11934     // location.
11935     SDValue Chain = DAG.getEntryNode();
11936     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11937     SDValue Args[] = { Chain, Offset };
11938     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args);
11939
11940     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
11941     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11942     MFI->setAdjustsStack(true);
11943
11944     // And our return value (tls address) is in the standard call return value
11945     // location.
11946     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11947     return DAG.getCopyFromReg(Chain, DL, Reg, PtrVT, Chain.getValue(1));
11948   }
11949
11950   if (Subtarget->isTargetKnownWindowsMSVC() ||
11951       Subtarget->isTargetWindowsGNU()) {
11952     // Just use the implicit TLS architecture
11953     // Need to generate someting similar to:
11954     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
11955     //                                  ; from TEB
11956     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
11957     //   mov     rcx, qword [rdx+rcx*8]
11958     //   mov     eax, .tls$:tlsvar
11959     //   [rax+rcx] contains the address
11960     // Windows 64bit: gs:0x58
11961     // Windows 32bit: fs:__tls_array
11962
11963     SDLoc dl(GA);
11964     SDValue Chain = DAG.getEntryNode();
11965
11966     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
11967     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
11968     // use its literal value of 0x2C.
11969     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
11970                                         ? Type::getInt8PtrTy(*DAG.getContext(),
11971                                                              256)
11972                                         : Type::getInt32PtrTy(*DAG.getContext(),
11973                                                               257));
11974
11975     SDValue TlsArray = Subtarget->is64Bit()
11976                            ? DAG.getIntPtrConstant(0x58, dl)
11977                            : (Subtarget->isTargetWindowsGNU()
11978                                   ? DAG.getIntPtrConstant(0x2C, dl)
11979                                   : DAG.getExternalSymbol("_tls_array", PtrVT));
11980
11981     SDValue ThreadPointer =
11982         DAG.getLoad(PtrVT, dl, Chain, TlsArray, MachinePointerInfo(Ptr), false,
11983                     false, false, 0);
11984
11985     SDValue res;
11986     if (GV->getThreadLocalMode() == GlobalVariable::LocalExecTLSModel) {
11987       res = ThreadPointer;
11988     } else {
11989       // Load the _tls_index variable
11990       SDValue IDX = DAG.getExternalSymbol("_tls_index", PtrVT);
11991       if (Subtarget->is64Bit())
11992         IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, PtrVT, Chain, IDX,
11993                              MachinePointerInfo(), MVT::i32, false, false,
11994                              false, 0);
11995       else
11996         IDX = DAG.getLoad(PtrVT, dl, Chain, IDX, MachinePointerInfo(), false,
11997                           false, false, 0);
11998
11999       auto &DL = DAG.getDataLayout();
12000       SDValue Scale =
12001           DAG.getConstant(Log2_64_Ceil(DL.getPointerSize()), dl, PtrVT);
12002       IDX = DAG.getNode(ISD::SHL, dl, PtrVT, IDX, Scale);
12003
12004       res = DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, IDX);
12005     }
12006
12007     res = DAG.getLoad(PtrVT, dl, Chain, res, MachinePointerInfo(), false, false,
12008                       false, 0);
12009
12010     // Get the offset of start of .tls section
12011     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
12012                                              GA->getValueType(0),
12013                                              GA->getOffset(), X86II::MO_SECREL);
12014     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
12015
12016     // The address of the thread local variable is the add of the thread
12017     // pointer with the offset of the variable.
12018     return DAG.getNode(ISD::ADD, dl, PtrVT, res, Offset);
12019   }
12020
12021   llvm_unreachable("TLS not implemented for this target.");
12022 }
12023
12024 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
12025 /// and take a 2 x i32 value to shift plus a shift amount.
12026 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
12027   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
12028   MVT VT = Op.getSimpleValueType();
12029   unsigned VTBits = VT.getSizeInBits();
12030   SDLoc dl(Op);
12031   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
12032   SDValue ShOpLo = Op.getOperand(0);
12033   SDValue ShOpHi = Op.getOperand(1);
12034   SDValue ShAmt  = Op.getOperand(2);
12035   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
12036   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
12037   // during isel.
12038   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
12039                                   DAG.getConstant(VTBits - 1, dl, MVT::i8));
12040   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
12041                                      DAG.getConstant(VTBits - 1, dl, MVT::i8))
12042                        : DAG.getConstant(0, dl, VT);
12043
12044   SDValue Tmp2, Tmp3;
12045   if (Op.getOpcode() == ISD::SHL_PARTS) {
12046     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
12047     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
12048   } else {
12049     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
12050     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
12051   }
12052
12053   // If the shift amount is larger or equal than the width of a part we can't
12054   // rely on the results of shld/shrd. Insert a test and select the appropriate
12055   // values for large shift amounts.
12056   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
12057                                 DAG.getConstant(VTBits, dl, MVT::i8));
12058   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
12059                              AndNode, DAG.getConstant(0, dl, MVT::i8));
12060
12061   SDValue Hi, Lo;
12062   SDValue CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
12063   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
12064   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
12065
12066   if (Op.getOpcode() == ISD::SHL_PARTS) {
12067     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
12068     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
12069   } else {
12070     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0);
12071     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1);
12072   }
12073
12074   SDValue Ops[2] = { Lo, Hi };
12075   return DAG.getMergeValues(Ops, dl);
12076 }
12077
12078 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
12079                                            SelectionDAG &DAG) const {
12080   SDValue Src = Op.getOperand(0);
12081   MVT SrcVT = Src.getSimpleValueType();
12082   MVT VT = Op.getSimpleValueType();
12083   SDLoc dl(Op);
12084
12085   if (SrcVT.isVector()) {
12086     if (SrcVT == MVT::v2i32 && VT == MVT::v2f64) {
12087       return DAG.getNode(X86ISD::CVTDQ2PD, dl, VT,
12088                          DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4i32, Src,
12089                          DAG.getUNDEF(SrcVT)));
12090     }
12091     if (SrcVT.getVectorElementType() == MVT::i1) {
12092       MVT IntegerVT = MVT::getVectorVT(MVT::i32, SrcVT.getVectorNumElements());
12093       return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
12094                          DAG.getNode(ISD::SIGN_EXTEND, dl, IntegerVT, Src));
12095     }
12096     return SDValue();
12097   }
12098
12099   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
12100          "Unknown SINT_TO_FP to lower!");
12101
12102   // These are really Legal; return the operand so the caller accepts it as
12103   // Legal.
12104   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
12105     return Op;
12106   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
12107       Subtarget->is64Bit()) {
12108     return Op;
12109   }
12110
12111   unsigned Size = SrcVT.getSizeInBits()/8;
12112   MachineFunction &MF = DAG.getMachineFunction();
12113   auto PtrVT = getPointerTy(MF.getDataLayout());
12114   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
12115   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12116   SDValue Chain = DAG.getStore(
12117       DAG.getEntryNode(), dl, Op.getOperand(0), StackSlot,
12118       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI), false,
12119       false, 0);
12120   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
12121 }
12122
12123 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
12124                                      SDValue StackSlot,
12125                                      SelectionDAG &DAG) const {
12126   // Build the FILD
12127   SDLoc DL(Op);
12128   SDVTList Tys;
12129   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
12130   if (useSSE)
12131     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
12132   else
12133     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
12134
12135   unsigned ByteSize = SrcVT.getSizeInBits()/8;
12136
12137   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
12138   MachineMemOperand *MMO;
12139   if (FI) {
12140     int SSFI = FI->getIndex();
12141     MMO = DAG.getMachineFunction().getMachineMemOperand(
12142         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12143         MachineMemOperand::MOLoad, ByteSize, ByteSize);
12144   } else {
12145     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
12146     StackSlot = StackSlot.getOperand(1);
12147   }
12148   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
12149   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
12150                                            X86ISD::FILD, DL,
12151                                            Tys, Ops, SrcVT, MMO);
12152
12153   if (useSSE) {
12154     Chain = Result.getValue(1);
12155     SDValue InFlag = Result.getValue(2);
12156
12157     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
12158     // shouldn't be necessary except that RFP cannot be live across
12159     // multiple blocks. When stackifier is fixed, they can be uncoupled.
12160     MachineFunction &MF = DAG.getMachineFunction();
12161     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
12162     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
12163     auto PtrVT = getPointerTy(MF.getDataLayout());
12164     SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12165     Tys = DAG.getVTList(MVT::Other);
12166     SDValue Ops[] = {
12167       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
12168     };
12169     MachineMemOperand *MMO = DAG.getMachineFunction().getMachineMemOperand(
12170         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12171         MachineMemOperand::MOStore, SSFISize, SSFISize);
12172
12173     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
12174                                     Ops, Op.getValueType(), MMO);
12175     Result = DAG.getLoad(
12176         Op.getValueType(), DL, Chain, StackSlot,
12177         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12178         false, false, false, 0);
12179   }
12180
12181   return Result;
12182 }
12183
12184 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
12185 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
12186                                                SelectionDAG &DAG) const {
12187   // This algorithm is not obvious. Here it is what we're trying to output:
12188   /*
12189      movq       %rax,  %xmm0
12190      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
12191      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
12192      #ifdef __SSE3__
12193        haddpd   %xmm0, %xmm0
12194      #else
12195        pshufd   $0x4e, %xmm0, %xmm1
12196        addpd    %xmm1, %xmm0
12197      #endif
12198   */
12199
12200   SDLoc dl(Op);
12201   LLVMContext *Context = DAG.getContext();
12202
12203   // Build some magic constants.
12204   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
12205   Constant *C0 = ConstantDataVector::get(*Context, CV0);
12206   auto PtrVT = getPointerTy(DAG.getDataLayout());
12207   SDValue CPIdx0 = DAG.getConstantPool(C0, PtrVT, 16);
12208
12209   SmallVector<Constant*,2> CV1;
12210   CV1.push_back(
12211     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
12212                                       APInt(64, 0x4330000000000000ULL))));
12213   CV1.push_back(
12214     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
12215                                       APInt(64, 0x4530000000000000ULL))));
12216   Constant *C1 = ConstantVector::get(CV1);
12217   SDValue CPIdx1 = DAG.getConstantPool(C1, PtrVT, 16);
12218
12219   // Load the 64-bit value into an XMM register.
12220   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
12221                             Op.getOperand(0));
12222   SDValue CLod0 =
12223       DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
12224                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
12225                   false, false, false, 16);
12226   SDValue Unpck1 =
12227       getUnpackl(DAG, dl, MVT::v4i32, DAG.getBitcast(MVT::v4i32, XR1), CLod0);
12228
12229   SDValue CLod1 =
12230       DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
12231                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
12232                   false, false, false, 16);
12233   SDValue XR2F = DAG.getBitcast(MVT::v2f64, Unpck1);
12234   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
12235   SDValue Result;
12236
12237   if (Subtarget->hasSSE3()) {
12238     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
12239     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
12240   } else {
12241     SDValue S2F = DAG.getBitcast(MVT::v4i32, Sub);
12242     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
12243                                            S2F, 0x4E, DAG);
12244     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
12245                          DAG.getBitcast(MVT::v2f64, Shuffle), Sub);
12246   }
12247
12248   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
12249                      DAG.getIntPtrConstant(0, dl));
12250 }
12251
12252 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
12253 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
12254                                                SelectionDAG &DAG) const {
12255   SDLoc dl(Op);
12256   // FP constant to bias correct the final result.
12257   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
12258                                    MVT::f64);
12259
12260   // Load the 32-bit value into an XMM register.
12261   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
12262                              Op.getOperand(0));
12263
12264   // Zero out the upper parts of the register.
12265   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
12266
12267   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
12268                      DAG.getBitcast(MVT::v2f64, Load),
12269                      DAG.getIntPtrConstant(0, dl));
12270
12271   // Or the load with the bias.
12272   SDValue Or = DAG.getNode(
12273       ISD::OR, dl, MVT::v2i64,
12274       DAG.getBitcast(MVT::v2i64,
12275                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Load)),
12276       DAG.getBitcast(MVT::v2i64,
12277                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, Bias)));
12278   Or =
12279       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
12280                   DAG.getBitcast(MVT::v2f64, Or), DAG.getIntPtrConstant(0, dl));
12281
12282   // Subtract the bias.
12283   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
12284
12285   // Handle final rounding.
12286   EVT DestVT = Op.getValueType();
12287
12288   if (DestVT.bitsLT(MVT::f64))
12289     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
12290                        DAG.getIntPtrConstant(0, dl));
12291   if (DestVT.bitsGT(MVT::f64))
12292     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
12293
12294   // Handle final rounding.
12295   return Sub;
12296 }
12297
12298 static SDValue lowerUINT_TO_FP_vXi32(SDValue Op, SelectionDAG &DAG,
12299                                      const X86Subtarget &Subtarget) {
12300   // The algorithm is the following:
12301   // #ifdef __SSE4_1__
12302   //     uint4 lo = _mm_blend_epi16( v, (uint4) 0x4b000000, 0xaa);
12303   //     uint4 hi = _mm_blend_epi16( _mm_srli_epi32(v,16),
12304   //                                 (uint4) 0x53000000, 0xaa);
12305   // #else
12306   //     uint4 lo = (v & (uint4) 0xffff) | (uint4) 0x4b000000;
12307   //     uint4 hi = (v >> 16) | (uint4) 0x53000000;
12308   // #endif
12309   //     float4 fhi = (float4) hi - (0x1.0p39f + 0x1.0p23f);
12310   //     return (float4) lo + fhi;
12311
12312   SDLoc DL(Op);
12313   SDValue V = Op->getOperand(0);
12314   EVT VecIntVT = V.getValueType();
12315   bool Is128 = VecIntVT == MVT::v4i32;
12316   EVT VecFloatVT = Is128 ? MVT::v4f32 : MVT::v8f32;
12317   // If we convert to something else than the supported type, e.g., to v4f64,
12318   // abort early.
12319   if (VecFloatVT != Op->getValueType(0))
12320     return SDValue();
12321
12322   unsigned NumElts = VecIntVT.getVectorNumElements();
12323   assert((VecIntVT == MVT::v4i32 || VecIntVT == MVT::v8i32) &&
12324          "Unsupported custom type");
12325   assert(NumElts <= 8 && "The size of the constant array must be fixed");
12326
12327   // In the #idef/#else code, we have in common:
12328   // - The vector of constants:
12329   // -- 0x4b000000
12330   // -- 0x53000000
12331   // - A shift:
12332   // -- v >> 16
12333
12334   // Create the splat vector for 0x4b000000.
12335   SDValue CstLow = DAG.getConstant(0x4b000000, DL, MVT::i32);
12336   SDValue CstLowArray[] = {CstLow, CstLow, CstLow, CstLow,
12337                            CstLow, CstLow, CstLow, CstLow};
12338   SDValue VecCstLow = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
12339                                   makeArrayRef(&CstLowArray[0], NumElts));
12340   // Create the splat vector for 0x53000000.
12341   SDValue CstHigh = DAG.getConstant(0x53000000, DL, MVT::i32);
12342   SDValue CstHighArray[] = {CstHigh, CstHigh, CstHigh, CstHigh,
12343                             CstHigh, CstHigh, CstHigh, CstHigh};
12344   SDValue VecCstHigh = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
12345                                    makeArrayRef(&CstHighArray[0], NumElts));
12346
12347   // Create the right shift.
12348   SDValue CstShift = DAG.getConstant(16, DL, MVT::i32);
12349   SDValue CstShiftArray[] = {CstShift, CstShift, CstShift, CstShift,
12350                              CstShift, CstShift, CstShift, CstShift};
12351   SDValue VecCstShift = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT,
12352                                     makeArrayRef(&CstShiftArray[0], NumElts));
12353   SDValue HighShift = DAG.getNode(ISD::SRL, DL, VecIntVT, V, VecCstShift);
12354
12355   SDValue Low, High;
12356   if (Subtarget.hasSSE41()) {
12357     EVT VecI16VT = Is128 ? MVT::v8i16 : MVT::v16i16;
12358     //     uint4 lo = _mm_blend_epi16( v, (uint4) 0x4b000000, 0xaa);
12359     SDValue VecCstLowBitcast = DAG.getBitcast(VecI16VT, VecCstLow);
12360     SDValue VecBitcast = DAG.getBitcast(VecI16VT, V);
12361     // Low will be bitcasted right away, so do not bother bitcasting back to its
12362     // original type.
12363     Low = DAG.getNode(X86ISD::BLENDI, DL, VecI16VT, VecBitcast,
12364                       VecCstLowBitcast, DAG.getConstant(0xaa, DL, MVT::i32));
12365     //     uint4 hi = _mm_blend_epi16( _mm_srli_epi32(v,16),
12366     //                                 (uint4) 0x53000000, 0xaa);
12367     SDValue VecCstHighBitcast = DAG.getBitcast(VecI16VT, VecCstHigh);
12368     SDValue VecShiftBitcast = DAG.getBitcast(VecI16VT, HighShift);
12369     // High will be bitcasted right away, so do not bother bitcasting back to
12370     // its original type.
12371     High = DAG.getNode(X86ISD::BLENDI, DL, VecI16VT, VecShiftBitcast,
12372                        VecCstHighBitcast, DAG.getConstant(0xaa, DL, MVT::i32));
12373   } else {
12374     SDValue CstMask = DAG.getConstant(0xffff, DL, MVT::i32);
12375     SDValue VecCstMask = DAG.getNode(ISD::BUILD_VECTOR, DL, VecIntVT, CstMask,
12376                                      CstMask, CstMask, CstMask);
12377     //     uint4 lo = (v & (uint4) 0xffff) | (uint4) 0x4b000000;
12378     SDValue LowAnd = DAG.getNode(ISD::AND, DL, VecIntVT, V, VecCstMask);
12379     Low = DAG.getNode(ISD::OR, DL, VecIntVT, LowAnd, VecCstLow);
12380
12381     //     uint4 hi = (v >> 16) | (uint4) 0x53000000;
12382     High = DAG.getNode(ISD::OR, DL, VecIntVT, HighShift, VecCstHigh);
12383   }
12384
12385   // Create the vector constant for -(0x1.0p39f + 0x1.0p23f).
12386   SDValue CstFAdd = DAG.getConstantFP(
12387       APFloat(APFloat::IEEEsingle, APInt(32, 0xD3000080)), DL, MVT::f32);
12388   SDValue CstFAddArray[] = {CstFAdd, CstFAdd, CstFAdd, CstFAdd,
12389                             CstFAdd, CstFAdd, CstFAdd, CstFAdd};
12390   SDValue VecCstFAdd = DAG.getNode(ISD::BUILD_VECTOR, DL, VecFloatVT,
12391                                    makeArrayRef(&CstFAddArray[0], NumElts));
12392
12393   //     float4 fhi = (float4) hi - (0x1.0p39f + 0x1.0p23f);
12394   SDValue HighBitcast = DAG.getBitcast(VecFloatVT, High);
12395   SDValue FHigh =
12396       DAG.getNode(ISD::FADD, DL, VecFloatVT, HighBitcast, VecCstFAdd);
12397   //     return (float4) lo + fhi;
12398   SDValue LowBitcast = DAG.getBitcast(VecFloatVT, Low);
12399   return DAG.getNode(ISD::FADD, DL, VecFloatVT, LowBitcast, FHigh);
12400 }
12401
12402 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
12403                                                SelectionDAG &DAG) const {
12404   SDValue N0 = Op.getOperand(0);
12405   MVT SVT = N0.getSimpleValueType();
12406   SDLoc dl(Op);
12407
12408   switch (SVT.SimpleTy) {
12409   default:
12410     llvm_unreachable("Custom UINT_TO_FP is not supported!");
12411   case MVT::v4i8:
12412   case MVT::v4i16:
12413   case MVT::v8i8:
12414   case MVT::v8i16: {
12415     MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
12416     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
12417                        DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
12418   }
12419   case MVT::v4i32:
12420   case MVT::v8i32:
12421     return lowerUINT_TO_FP_vXi32(Op, DAG, *Subtarget);
12422   case MVT::v16i8:
12423   case MVT::v16i16:
12424     if (Subtarget->hasAVX512())
12425       return DAG.getNode(ISD::UINT_TO_FP, dl, Op.getValueType(),
12426                          DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v16i32, N0));
12427   }
12428   llvm_unreachable(nullptr);
12429 }
12430
12431 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
12432                                            SelectionDAG &DAG) const {
12433   SDValue N0 = Op.getOperand(0);
12434   SDLoc dl(Op);
12435   auto PtrVT = getPointerTy(DAG.getDataLayout());
12436
12437   if (Op.getValueType().isVector())
12438     return lowerUINT_TO_FP_vec(Op, DAG);
12439
12440   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
12441   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
12442   // the optimization here.
12443   if (DAG.SignBitIsZero(N0))
12444     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
12445
12446   MVT SrcVT = N0.getSimpleValueType();
12447   MVT DstVT = Op.getSimpleValueType();
12448   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
12449     return LowerUINT_TO_FP_i64(Op, DAG);
12450   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
12451     return LowerUINT_TO_FP_i32(Op, DAG);
12452   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
12453     return SDValue();
12454
12455   // Make a 64-bit buffer, and use it to build an FILD.
12456   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
12457   if (SrcVT == MVT::i32) {
12458     SDValue WordOff = DAG.getConstant(4, dl, PtrVT);
12459     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, WordOff);
12460     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
12461                                   StackSlot, MachinePointerInfo(),
12462                                   false, false, 0);
12463     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, dl, MVT::i32),
12464                                   OffsetSlot, MachinePointerInfo(),
12465                                   false, false, 0);
12466     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
12467     return Fild;
12468   }
12469
12470   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
12471   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
12472                                StackSlot, MachinePointerInfo(),
12473                                false, false, 0);
12474   // For i64 source, we need to add the appropriate power of 2 if the input
12475   // was negative.  This is the same as the optimization in
12476   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
12477   // we must be careful to do the computation in x87 extended precision, not
12478   // in SSE. (The generic code can't know it's OK to do this, or how to.)
12479   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
12480   MachineMemOperand *MMO = DAG.getMachineFunction().getMachineMemOperand(
12481       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI),
12482       MachineMemOperand::MOLoad, 8, 8);
12483
12484   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
12485   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
12486   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
12487                                          MVT::i64, MMO);
12488
12489   APInt FF(32, 0x5F800000ULL);
12490
12491   // Check whether the sign bit is set.
12492   SDValue SignSet = DAG.getSetCC(
12493       dl, getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::i64),
12494       Op.getOperand(0), DAG.getConstant(0, dl, MVT::i64), ISD::SETLT);
12495
12496   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
12497   SDValue FudgePtr = DAG.getConstantPool(
12498       ConstantInt::get(*DAG.getContext(), FF.zext(64)), PtrVT);
12499
12500   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
12501   SDValue Zero = DAG.getIntPtrConstant(0, dl);
12502   SDValue Four = DAG.getIntPtrConstant(4, dl);
12503   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
12504                                Zero, Four);
12505   FudgePtr = DAG.getNode(ISD::ADD, dl, PtrVT, FudgePtr, Offset);
12506
12507   // Load the value out, extending it from f32 to f80.
12508   // FIXME: Avoid the extend by constructing the right constant pool?
12509   SDValue Fudge = DAG.getExtLoad(
12510       ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(), FudgePtr,
12511       MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), MVT::f32,
12512       false, false, false, 4);
12513   // Extend everything to 80 bits to force it to be done on x87.
12514   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
12515   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add,
12516                      DAG.getIntPtrConstant(0, dl));
12517 }
12518
12519 // If the given FP_TO_SINT (IsSigned) or FP_TO_UINT (!IsSigned) operation
12520 // is legal, or has an f16 source (which needs to be promoted to f32),
12521 // just return an <SDValue(), SDValue()> pair.
12522 // Otherwise it is assumed to be a conversion from one of f32, f64 or f80
12523 // to i16, i32 or i64, and we lower it to a legal sequence.
12524 // If lowered to the final integer result we return a <result, SDValue()> pair.
12525 // Otherwise we lower it to a sequence ending with a FIST, return a
12526 // <FIST, StackSlot> pair, and the caller is responsible for loading
12527 // the final integer result from StackSlot.
12528 std::pair<SDValue,SDValue>
12529 X86TargetLowering::FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
12530                                    bool IsSigned, bool IsReplace) const {
12531   SDLoc DL(Op);
12532
12533   EVT DstTy = Op.getValueType();
12534   EVT TheVT = Op.getOperand(0).getValueType();
12535   auto PtrVT = getPointerTy(DAG.getDataLayout());
12536
12537   if (TheVT == MVT::f16)
12538     // We need to promote the f16 to f32 before using the lowering
12539     // in this routine.
12540     return std::make_pair(SDValue(), SDValue());
12541
12542   assert((TheVT == MVT::f32 ||
12543           TheVT == MVT::f64 ||
12544           TheVT == MVT::f80) &&
12545          "Unexpected FP operand type in FP_TO_INTHelper");
12546
12547   // If using FIST to compute an unsigned i64, we'll need some fixup
12548   // to handle values above the maximum signed i64.  A FIST is always
12549   // used for the 32-bit subtarget, but also for f80 on a 64-bit target.
12550   bool UnsignedFixup = !IsSigned &&
12551                        DstTy == MVT::i64 &&
12552                        (!Subtarget->is64Bit() ||
12553                         !isScalarFPTypeInSSEReg(TheVT));
12554
12555   if (!IsSigned && DstTy != MVT::i64 && !Subtarget->hasAVX512()) {
12556     // Replace the fp-to-uint32 operation with an fp-to-sint64 FIST.
12557     // The low 32 bits of the fist result will have the correct uint32 result.
12558     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
12559     DstTy = MVT::i64;
12560   }
12561
12562   assert(DstTy.getSimpleVT() <= MVT::i64 &&
12563          DstTy.getSimpleVT() >= MVT::i16 &&
12564          "Unknown FP_TO_INT to lower!");
12565
12566   // These are really Legal.
12567   if (DstTy == MVT::i32 &&
12568       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
12569     return std::make_pair(SDValue(), SDValue());
12570   if (Subtarget->is64Bit() &&
12571       DstTy == MVT::i64 &&
12572       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
12573     return std::make_pair(SDValue(), SDValue());
12574
12575   // We lower FP->int64 into FISTP64 followed by a load from a temporary
12576   // stack slot.
12577   MachineFunction &MF = DAG.getMachineFunction();
12578   unsigned MemSize = DstTy.getSizeInBits()/8;
12579   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
12580   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12581
12582   unsigned Opc;
12583   switch (DstTy.getSimpleVT().SimpleTy) {
12584   default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
12585   case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
12586   case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
12587   case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
12588   }
12589
12590   SDValue Chain = DAG.getEntryNode();
12591   SDValue Value = Op.getOperand(0);
12592   SDValue Adjust; // 0x0 or 0x80000000, for result sign bit adjustment.
12593
12594   if (UnsignedFixup) {
12595     //
12596     // Conversion to unsigned i64 is implemented with a select,
12597     // depending on whether the source value fits in the range
12598     // of a signed i64.  Let Thresh be the FP equivalent of
12599     // 0x8000000000000000ULL.
12600     //
12601     //  Adjust i32 = (Value < Thresh) ? 0 : 0x80000000;
12602     //  FistSrc    = (Value < Thresh) ? Value : (Value - Thresh);
12603     //  Fist-to-mem64 FistSrc
12604     //  Add 0 or 0x800...0ULL to the 64-bit result, which is equivalent
12605     //  to XOR'ing the high 32 bits with Adjust.
12606     //
12607     // Being a power of 2, Thresh is exactly representable in all FP formats.
12608     // For X87 we'd like to use the smallest FP type for this constant, but
12609     // for DAG type consistency we have to match the FP operand type.
12610
12611     APFloat Thresh(APFloat::IEEEsingle, APInt(32, 0x5f000000));
12612     APFloat::opStatus Status = APFloat::opOK;
12613     bool LosesInfo = false;
12614     if (TheVT == MVT::f64)
12615       // The rounding mode is irrelevant as the conversion should be exact.
12616       Status = Thresh.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
12617                               &LosesInfo);
12618     else if (TheVT == MVT::f80)
12619       Status = Thresh.convert(APFloat::x87DoubleExtended,
12620                               APFloat::rmNearestTiesToEven, &LosesInfo);
12621
12622     assert(Status == APFloat::opOK && !LosesInfo &&
12623            "FP conversion should have been exact");
12624
12625     SDValue ThreshVal = DAG.getConstantFP(Thresh, DL, TheVT);
12626
12627     SDValue Cmp = DAG.getSetCC(DL,
12628                                getSetCCResultType(DAG.getDataLayout(),
12629                                                   *DAG.getContext(), TheVT),
12630                                Value, ThreshVal, ISD::SETLT);
12631     Adjust = DAG.getSelect(DL, MVT::i32, Cmp,
12632                            DAG.getConstant(0, DL, MVT::i32),
12633                            DAG.getConstant(0x80000000, DL, MVT::i32));
12634     SDValue Sub = DAG.getNode(ISD::FSUB, DL, TheVT, Value, ThreshVal);
12635     Cmp = DAG.getSetCC(DL, getSetCCResultType(DAG.getDataLayout(),
12636                                               *DAG.getContext(), TheVT),
12637                        Value, ThreshVal, ISD::SETLT);
12638     Value = DAG.getSelect(DL, TheVT, Cmp, Value, Sub);
12639   }
12640
12641   // FIXME This causes a redundant load/store if the SSE-class value is already
12642   // in memory, such as if it is on the callstack.
12643   if (isScalarFPTypeInSSEReg(TheVT)) {
12644     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
12645     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
12646                          MachinePointerInfo::getFixedStack(MF, SSFI), false,
12647                          false, 0);
12648     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
12649     SDValue Ops[] = {
12650       Chain, StackSlot, DAG.getValueType(TheVT)
12651     };
12652
12653     MachineMemOperand *MMO =
12654         MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(MF, SSFI),
12655                                 MachineMemOperand::MOLoad, MemSize, MemSize);
12656     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, DstTy, MMO);
12657     Chain = Value.getValue(1);
12658     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
12659     StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
12660   }
12661
12662   MachineMemOperand *MMO =
12663       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(MF, SSFI),
12664                               MachineMemOperand::MOStore, MemSize, MemSize);
12665
12666   if (UnsignedFixup) {
12667
12668     // Insert the FIST, load its result as two i32's,
12669     // and XOR the high i32 with Adjust.
12670
12671     SDValue FistOps[] = { Chain, Value, StackSlot };
12672     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
12673                                            FistOps, DstTy, MMO);
12674
12675     SDValue Low32 = DAG.getLoad(MVT::i32, DL, FIST, StackSlot,
12676                                 MachinePointerInfo(),
12677                                 false, false, false, 0);
12678     SDValue HighAddr = DAG.getNode(ISD::ADD, DL, PtrVT, StackSlot,
12679                                    DAG.getConstant(4, DL, PtrVT));
12680
12681     SDValue High32 = DAG.getLoad(MVT::i32, DL, FIST, HighAddr,
12682                                  MachinePointerInfo(),
12683                                  false, false, false, 0);
12684     High32 = DAG.getNode(ISD::XOR, DL, MVT::i32, High32, Adjust);
12685
12686     if (Subtarget->is64Bit()) {
12687       // Join High32 and Low32 into a 64-bit result.
12688       // (High32 << 32) | Low32
12689       Low32 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, Low32);
12690       High32 = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, High32);
12691       High32 = DAG.getNode(ISD::SHL, DL, MVT::i64, High32,
12692                            DAG.getConstant(32, DL, MVT::i8));
12693       SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i64, High32, Low32);
12694       return std::make_pair(Result, SDValue());
12695     }
12696
12697     SDValue ResultOps[] = { Low32, High32 };
12698
12699     SDValue pair = IsReplace
12700       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, ResultOps)
12701       : DAG.getMergeValues(ResultOps, DL);
12702     return std::make_pair(pair, SDValue());
12703   } else {
12704     // Build the FP_TO_INT*_IN_MEM
12705     SDValue Ops[] = { Chain, Value, StackSlot };
12706     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
12707                                            Ops, DstTy, MMO);
12708     return std::make_pair(FIST, StackSlot);
12709   }
12710 }
12711
12712 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
12713                               const X86Subtarget *Subtarget) {
12714   MVT VT = Op->getSimpleValueType(0);
12715   SDValue In = Op->getOperand(0);
12716   MVT InVT = In.getSimpleValueType();
12717   SDLoc dl(Op);
12718
12719   if (VT.is512BitVector() || InVT.getScalarType() == MVT::i1)
12720     return DAG.getNode(ISD::ZERO_EXTEND, dl, VT, In);
12721
12722   // Optimize vectors in AVX mode:
12723   //
12724   //   v8i16 -> v8i32
12725   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
12726   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
12727   //   Concat upper and lower parts.
12728   //
12729   //   v4i32 -> v4i64
12730   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
12731   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
12732   //   Concat upper and lower parts.
12733   //
12734
12735   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
12736       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
12737       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
12738     return SDValue();
12739
12740   if (Subtarget->hasInt256())
12741     return DAG.getNode(X86ISD::VZEXT, dl, VT, In);
12742
12743   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
12744   SDValue Undef = DAG.getUNDEF(InVT);
12745   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
12746   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
12747   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
12748
12749   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
12750                              VT.getVectorNumElements()/2);
12751
12752   OpLo = DAG.getBitcast(HVT, OpLo);
12753   OpHi = DAG.getBitcast(HVT, OpHi);
12754
12755   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
12756 }
12757
12758 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
12759                   const X86Subtarget *Subtarget, SelectionDAG &DAG) {
12760   MVT VT = Op->getSimpleValueType(0);
12761   SDValue In = Op->getOperand(0);
12762   MVT InVT = In.getSimpleValueType();
12763   SDLoc DL(Op);
12764   unsigned int NumElts = VT.getVectorNumElements();
12765   if (NumElts != 8 && NumElts != 16 && !Subtarget->hasBWI())
12766     return SDValue();
12767
12768   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
12769     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
12770
12771   assert(InVT.getVectorElementType() == MVT::i1);
12772   MVT ExtVT = NumElts == 8 ? MVT::v8i64 : MVT::v16i32;
12773   SDValue One =
12774    DAG.getConstant(APInt(ExtVT.getScalarSizeInBits(), 1), DL, ExtVT);
12775   SDValue Zero =
12776    DAG.getConstant(APInt::getNullValue(ExtVT.getScalarSizeInBits()), DL, ExtVT);
12777
12778   SDValue V = DAG.getNode(ISD::VSELECT, DL, ExtVT, In, One, Zero);
12779   if (VT.is512BitVector())
12780     return V;
12781   return DAG.getNode(X86ISD::VTRUNC, DL, VT, V);
12782 }
12783
12784 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
12785                                SelectionDAG &DAG) {
12786   if (Subtarget->hasFp256())
12787     if (SDValue Res = LowerAVXExtend(Op, DAG, Subtarget))
12788       return Res;
12789
12790   return SDValue();
12791 }
12792
12793 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
12794                                 SelectionDAG &DAG) {
12795   SDLoc DL(Op);
12796   MVT VT = Op.getSimpleValueType();
12797   SDValue In = Op.getOperand(0);
12798   MVT SVT = In.getSimpleValueType();
12799
12800   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
12801     return LowerZERO_EXTEND_AVX512(Op, Subtarget, DAG);
12802
12803   if (Subtarget->hasFp256())
12804     if (SDValue Res = LowerAVXExtend(Op, DAG, Subtarget))
12805       return Res;
12806
12807   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
12808          VT.getVectorNumElements() != SVT.getVectorNumElements());
12809   return SDValue();
12810 }
12811
12812 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
12813   SDLoc DL(Op);
12814   MVT VT = Op.getSimpleValueType();
12815   SDValue In = Op.getOperand(0);
12816   MVT InVT = In.getSimpleValueType();
12817
12818   if (VT == MVT::i1) {
12819     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
12820            "Invalid scalar TRUNCATE operation");
12821     if (InVT.getSizeInBits() >= 32)
12822       return SDValue();
12823     In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
12824     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
12825   }
12826   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
12827          "Invalid TRUNCATE operation");
12828
12829   // move vector to mask - truncate solution for SKX
12830   if (VT.getVectorElementType() == MVT::i1) {
12831     if (InVT.is512BitVector() && InVT.getScalarSizeInBits() <= 16 &&
12832         Subtarget->hasBWI())
12833       return Op; // legal, will go to VPMOVB2M, VPMOVW2M
12834     if ((InVT.is256BitVector() || InVT.is128BitVector())
12835         && InVT.getScalarSizeInBits() <= 16 &&
12836         Subtarget->hasBWI() && Subtarget->hasVLX())
12837       return Op; // legal, will go to VPMOVB2M, VPMOVW2M
12838     if (InVT.is512BitVector() && InVT.getScalarSizeInBits() >= 32 &&
12839         Subtarget->hasDQI())
12840       return Op; // legal, will go to VPMOVD2M, VPMOVQ2M
12841     if ((InVT.is256BitVector() || InVT.is128BitVector())
12842         && InVT.getScalarSizeInBits() >= 32 &&
12843         Subtarget->hasDQI() && Subtarget->hasVLX())
12844       return Op; // legal, will go to VPMOVB2M, VPMOVQ2M
12845   }
12846
12847   if (VT.getVectorElementType() == MVT::i1) {
12848     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
12849     unsigned NumElts = InVT.getVectorNumElements();
12850     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
12851     if (InVT.getSizeInBits() < 512) {
12852       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
12853       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
12854       InVT = ExtVT;
12855     }
12856
12857     SDValue OneV =
12858      DAG.getConstant(APInt::getSignBit(InVT.getScalarSizeInBits()), DL, InVT);
12859     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
12860     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
12861   }
12862
12863   // vpmovqb/w/d, vpmovdb/w, vpmovwb
12864   if (((!InVT.is512BitVector() && Subtarget->hasVLX()) || InVT.is512BitVector()) &&
12865       (InVT.getVectorElementType() != MVT::i16 || Subtarget->hasBWI()))
12866     return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
12867
12868   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
12869     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
12870     if (Subtarget->hasInt256()) {
12871       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
12872       In = DAG.getBitcast(MVT::v8i32, In);
12873       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
12874                                 ShufMask);
12875       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
12876                          DAG.getIntPtrConstant(0, DL));
12877     }
12878
12879     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
12880                                DAG.getIntPtrConstant(0, DL));
12881     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
12882                                DAG.getIntPtrConstant(2, DL));
12883     OpLo = DAG.getBitcast(MVT::v4i32, OpLo);
12884     OpHi = DAG.getBitcast(MVT::v4i32, OpHi);
12885     static const int ShufMask[] = {0, 2, 4, 6};
12886     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask);
12887   }
12888
12889   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
12890     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
12891     if (Subtarget->hasInt256()) {
12892       In = DAG.getBitcast(MVT::v32i8, In);
12893
12894       SmallVector<SDValue,32> pshufbMask;
12895       for (unsigned i = 0; i < 2; ++i) {
12896         pshufbMask.push_back(DAG.getConstant(0x0, DL, MVT::i8));
12897         pshufbMask.push_back(DAG.getConstant(0x1, DL, MVT::i8));
12898         pshufbMask.push_back(DAG.getConstant(0x4, DL, MVT::i8));
12899         pshufbMask.push_back(DAG.getConstant(0x5, DL, MVT::i8));
12900         pshufbMask.push_back(DAG.getConstant(0x8, DL, MVT::i8));
12901         pshufbMask.push_back(DAG.getConstant(0x9, DL, MVT::i8));
12902         pshufbMask.push_back(DAG.getConstant(0xc, DL, MVT::i8));
12903         pshufbMask.push_back(DAG.getConstant(0xd, DL, MVT::i8));
12904         for (unsigned j = 0; j < 8; ++j)
12905           pshufbMask.push_back(DAG.getConstant(0x80, DL, MVT::i8));
12906       }
12907       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8, pshufbMask);
12908       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
12909       In = DAG.getBitcast(MVT::v4i64, In);
12910
12911       static const int ShufMask[] = {0,  2,  -1,  -1};
12912       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
12913                                 &ShufMask[0]);
12914       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
12915                        DAG.getIntPtrConstant(0, DL));
12916       return DAG.getBitcast(VT, In);
12917     }
12918
12919     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
12920                                DAG.getIntPtrConstant(0, DL));
12921
12922     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
12923                                DAG.getIntPtrConstant(4, DL));
12924
12925     OpLo = DAG.getBitcast(MVT::v16i8, OpLo);
12926     OpHi = DAG.getBitcast(MVT::v16i8, OpHi);
12927
12928     // The PSHUFB mask:
12929     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
12930                                    -1, -1, -1, -1, -1, -1, -1, -1};
12931
12932     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
12933     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
12934     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
12935
12936     OpLo = DAG.getBitcast(MVT::v4i32, OpLo);
12937     OpHi = DAG.getBitcast(MVT::v4i32, OpHi);
12938
12939     // The MOVLHPS Mask:
12940     static const int ShufMask2[] = {0, 1, 4, 5};
12941     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
12942     return DAG.getBitcast(MVT::v8i16, res);
12943   }
12944
12945   // Handle truncation of V256 to V128 using shuffles.
12946   if (!VT.is128BitVector() || !InVT.is256BitVector())
12947     return SDValue();
12948
12949   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
12950
12951   unsigned NumElems = VT.getVectorNumElements();
12952   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
12953
12954   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
12955   // Prepare truncation shuffle mask
12956   for (unsigned i = 0; i != NumElems; ++i)
12957     MaskVec[i] = i * 2;
12958   SDValue V = DAG.getVectorShuffle(NVT, DL, DAG.getBitcast(NVT, In),
12959                                    DAG.getUNDEF(NVT), &MaskVec[0]);
12960   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
12961                      DAG.getIntPtrConstant(0, DL));
12962 }
12963
12964 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
12965                                            SelectionDAG &DAG) const {
12966   assert(!Op.getSimpleValueType().isVector());
12967
12968   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
12969     /*IsSigned=*/ true, /*IsReplace=*/ false);
12970   SDValue FIST = Vals.first, StackSlot = Vals.second;
12971   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
12972   if (!FIST.getNode())
12973     return Op;
12974
12975   if (StackSlot.getNode())
12976     // Load the result.
12977     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
12978                        FIST, StackSlot, MachinePointerInfo(),
12979                        false, false, false, 0);
12980
12981   // The node is the result.
12982   return FIST;
12983 }
12984
12985 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
12986                                            SelectionDAG &DAG) const {
12987   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
12988     /*IsSigned=*/ false, /*IsReplace=*/ false);
12989   SDValue FIST = Vals.first, StackSlot = Vals.second;
12990   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
12991   if (!FIST.getNode())
12992     return Op;
12993
12994   if (StackSlot.getNode())
12995     // Load the result.
12996     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
12997                        FIST, StackSlot, MachinePointerInfo(),
12998                        false, false, false, 0);
12999
13000   // The node is the result.
13001   return FIST;
13002 }
13003
13004 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
13005   SDLoc DL(Op);
13006   MVT VT = Op.getSimpleValueType();
13007   SDValue In = Op.getOperand(0);
13008   MVT SVT = In.getSimpleValueType();
13009
13010   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
13011
13012   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
13013                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
13014                                  In, DAG.getUNDEF(SVT)));
13015 }
13016
13017 /// The only differences between FABS and FNEG are the mask and the logic op.
13018 /// FNEG also has a folding opportunity for FNEG(FABS(x)).
13019 static SDValue LowerFABSorFNEG(SDValue Op, SelectionDAG &DAG) {
13020   assert((Op.getOpcode() == ISD::FABS || Op.getOpcode() == ISD::FNEG) &&
13021          "Wrong opcode for lowering FABS or FNEG.");
13022
13023   bool IsFABS = (Op.getOpcode() == ISD::FABS);
13024
13025   // If this is a FABS and it has an FNEG user, bail out to fold the combination
13026   // into an FNABS. We'll lower the FABS after that if it is still in use.
13027   if (IsFABS)
13028     for (SDNode *User : Op->uses())
13029       if (User->getOpcode() == ISD::FNEG)
13030         return Op;
13031
13032   SDLoc dl(Op);
13033   MVT VT = Op.getSimpleValueType();
13034
13035   // FIXME: Use function attribute "OptimizeForSize" and/or CodeGenOpt::Level to
13036   // decide if we should generate a 16-byte constant mask when we only need 4 or
13037   // 8 bytes for the scalar case.
13038
13039   MVT LogicVT;
13040   MVT EltVT;
13041   unsigned NumElts;
13042
13043   if (VT.isVector()) {
13044     LogicVT = VT;
13045     EltVT = VT.getVectorElementType();
13046     NumElts = VT.getVectorNumElements();
13047   } else {
13048     // There are no scalar bitwise logical SSE/AVX instructions, so we
13049     // generate a 16-byte vector constant and logic op even for the scalar case.
13050     // Using a 16-byte mask allows folding the load of the mask with
13051     // the logic op, so it can save (~4 bytes) on code size.
13052     LogicVT = (VT == MVT::f64) ? MVT::v2f64 : MVT::v4f32;
13053     EltVT = VT;
13054     NumElts = (VT == MVT::f64) ? 2 : 4;
13055   }
13056
13057   unsigned EltBits = EltVT.getSizeInBits();
13058   LLVMContext *Context = DAG.getContext();
13059   // For FABS, mask is 0x7f...; for FNEG, mask is 0x80...
13060   APInt MaskElt =
13061     IsFABS ? APInt::getSignedMaxValue(EltBits) : APInt::getSignBit(EltBits);
13062   Constant *C = ConstantInt::get(*Context, MaskElt);
13063   C = ConstantVector::getSplat(NumElts, C);
13064   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13065   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(DAG.getDataLayout()));
13066   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
13067   SDValue Mask =
13068       DAG.getLoad(LogicVT, dl, DAG.getEntryNode(), CPIdx,
13069                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
13070                   false, false, false, Alignment);
13071
13072   SDValue Op0 = Op.getOperand(0);
13073   bool IsFNABS = !IsFABS && (Op0.getOpcode() == ISD::FABS);
13074   unsigned LogicOp =
13075     IsFABS ? X86ISD::FAND : IsFNABS ? X86ISD::FOR : X86ISD::FXOR;
13076   SDValue Operand = IsFNABS ? Op0.getOperand(0) : Op0;
13077
13078   if (VT.isVector())
13079     return DAG.getNode(LogicOp, dl, LogicVT, Operand, Mask);
13080
13081   // For the scalar case extend to a 128-bit vector, perform the logic op,
13082   // and extract the scalar result back out.
13083   Operand = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LogicVT, Operand);
13084   SDValue LogicNode = DAG.getNode(LogicOp, dl, LogicVT, Operand, Mask);
13085   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, LogicNode,
13086                      DAG.getIntPtrConstant(0, dl));
13087 }
13088
13089 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
13090   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13091   LLVMContext *Context = DAG.getContext();
13092   SDValue Op0 = Op.getOperand(0);
13093   SDValue Op1 = Op.getOperand(1);
13094   SDLoc dl(Op);
13095   MVT VT = Op.getSimpleValueType();
13096   MVT SrcVT = Op1.getSimpleValueType();
13097
13098   // If second operand is smaller, extend it first.
13099   if (SrcVT.bitsLT(VT)) {
13100     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
13101     SrcVT = VT;
13102   }
13103   // And if it is bigger, shrink it first.
13104   if (SrcVT.bitsGT(VT)) {
13105     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1, dl));
13106     SrcVT = VT;
13107   }
13108
13109   // At this point the operands and the result should have the same
13110   // type, and that won't be f80 since that is not custom lowered.
13111
13112   const fltSemantics &Sem =
13113       VT == MVT::f64 ? APFloat::IEEEdouble : APFloat::IEEEsingle;
13114   const unsigned SizeInBits = VT.getSizeInBits();
13115
13116   SmallVector<Constant *, 4> CV(
13117       VT == MVT::f64 ? 2 : 4,
13118       ConstantFP::get(*Context, APFloat(Sem, APInt(SizeInBits, 0))));
13119
13120   // First, clear all bits but the sign bit from the second operand (sign).
13121   CV[0] = ConstantFP::get(*Context,
13122                           APFloat(Sem, APInt::getHighBitsSet(SizeInBits, 1)));
13123   Constant *C = ConstantVector::get(CV);
13124   auto PtrVT = TLI.getPointerTy(DAG.getDataLayout());
13125   SDValue CPIdx = DAG.getConstantPool(C, PtrVT, 16);
13126
13127   // Perform all logic operations as 16-byte vectors because there are no
13128   // scalar FP logic instructions in SSE. This allows load folding of the
13129   // constants into the logic instructions.
13130   MVT LogicVT = (VT == MVT::f64) ? MVT::v2f64 : MVT::v4f32;
13131   SDValue Mask1 =
13132       DAG.getLoad(LogicVT, dl, DAG.getEntryNode(), CPIdx,
13133                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
13134                   false, false, false, 16);
13135   Op1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LogicVT, Op1);
13136   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, LogicVT, Op1, Mask1);
13137
13138   // Next, clear the sign bit from the first operand (magnitude).
13139   // If it's a constant, we can clear it here.
13140   if (ConstantFPSDNode *Op0CN = dyn_cast<ConstantFPSDNode>(Op0)) {
13141     APFloat APF = Op0CN->getValueAPF();
13142     // If the magnitude is a positive zero, the sign bit alone is enough.
13143     if (APF.isPosZero())
13144       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SrcVT, SignBit,
13145                          DAG.getIntPtrConstant(0, dl));
13146     APF.clearSign();
13147     CV[0] = ConstantFP::get(*Context, APF);
13148   } else {
13149     CV[0] = ConstantFP::get(
13150         *Context,
13151         APFloat(Sem, APInt::getLowBitsSet(SizeInBits, SizeInBits - 1)));
13152   }
13153   C = ConstantVector::get(CV);
13154   CPIdx = DAG.getConstantPool(C, PtrVT, 16);
13155   SDValue Val =
13156       DAG.getLoad(LogicVT, dl, DAG.getEntryNode(), CPIdx,
13157                   MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
13158                   false, false, false, 16);
13159   // If the magnitude operand wasn't a constant, we need to AND out the sign.
13160   if (!isa<ConstantFPSDNode>(Op0)) {
13161     Op0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LogicVT, Op0);
13162     Val = DAG.getNode(X86ISD::FAND, dl, LogicVT, Op0, Val);
13163   }
13164   // OR the magnitude value with the sign bit.
13165   Val = DAG.getNode(X86ISD::FOR, dl, LogicVT, Val, SignBit);
13166   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SrcVT, Val,
13167                      DAG.getIntPtrConstant(0, dl));
13168 }
13169
13170 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
13171   SDValue N0 = Op.getOperand(0);
13172   SDLoc dl(Op);
13173   MVT VT = Op.getSimpleValueType();
13174
13175   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
13176   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
13177                                   DAG.getConstant(1, dl, VT));
13178   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, dl, VT));
13179 }
13180
13181 // Check whether an OR'd tree is PTEST-able.
13182 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
13183                                       SelectionDAG &DAG) {
13184   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
13185
13186   if (!Subtarget->hasSSE41())
13187     return SDValue();
13188
13189   if (!Op->hasOneUse())
13190     return SDValue();
13191
13192   SDNode *N = Op.getNode();
13193   SDLoc DL(N);
13194
13195   SmallVector<SDValue, 8> Opnds;
13196   DenseMap<SDValue, unsigned> VecInMap;
13197   SmallVector<SDValue, 8> VecIns;
13198   EVT VT = MVT::Other;
13199
13200   // Recognize a special case where a vector is casted into wide integer to
13201   // test all 0s.
13202   Opnds.push_back(N->getOperand(0));
13203   Opnds.push_back(N->getOperand(1));
13204
13205   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
13206     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
13207     // BFS traverse all OR'd operands.
13208     if (I->getOpcode() == ISD::OR) {
13209       Opnds.push_back(I->getOperand(0));
13210       Opnds.push_back(I->getOperand(1));
13211       // Re-evaluate the number of nodes to be traversed.
13212       e += 2; // 2 more nodes (LHS and RHS) are pushed.
13213       continue;
13214     }
13215
13216     // Quit if a non-EXTRACT_VECTOR_ELT
13217     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
13218       return SDValue();
13219
13220     // Quit if without a constant index.
13221     SDValue Idx = I->getOperand(1);
13222     if (!isa<ConstantSDNode>(Idx))
13223       return SDValue();
13224
13225     SDValue ExtractedFromVec = I->getOperand(0);
13226     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
13227     if (M == VecInMap.end()) {
13228       VT = ExtractedFromVec.getValueType();
13229       // Quit if not 128/256-bit vector.
13230       if (!VT.is128BitVector() && !VT.is256BitVector())
13231         return SDValue();
13232       // Quit if not the same type.
13233       if (VecInMap.begin() != VecInMap.end() &&
13234           VT != VecInMap.begin()->first.getValueType())
13235         return SDValue();
13236       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
13237       VecIns.push_back(ExtractedFromVec);
13238     }
13239     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
13240   }
13241
13242   assert((VT.is128BitVector() || VT.is256BitVector()) &&
13243          "Not extracted from 128-/256-bit vector.");
13244
13245   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
13246
13247   for (DenseMap<SDValue, unsigned>::const_iterator
13248         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
13249     // Quit if not all elements are used.
13250     if (I->second != FullMask)
13251       return SDValue();
13252   }
13253
13254   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
13255
13256   // Cast all vectors into TestVT for PTEST.
13257   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
13258     VecIns[i] = DAG.getBitcast(TestVT, VecIns[i]);
13259
13260   // If more than one full vectors are evaluated, OR them first before PTEST.
13261   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
13262     // Each iteration will OR 2 nodes and append the result until there is only
13263     // 1 node left, i.e. the final OR'd value of all vectors.
13264     SDValue LHS = VecIns[Slot];
13265     SDValue RHS = VecIns[Slot + 1];
13266     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
13267   }
13268
13269   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
13270                      VecIns.back(), VecIns.back());
13271 }
13272
13273 /// \brief return true if \c Op has a use that doesn't just read flags.
13274 static bool hasNonFlagsUse(SDValue Op) {
13275   for (SDNode::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE;
13276        ++UI) {
13277     SDNode *User = *UI;
13278     unsigned UOpNo = UI.getOperandNo();
13279     if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
13280       // Look pass truncate.
13281       UOpNo = User->use_begin().getOperandNo();
13282       User = *User->use_begin();
13283     }
13284
13285     if (User->getOpcode() != ISD::BRCOND && User->getOpcode() != ISD::SETCC &&
13286         !(User->getOpcode() == ISD::SELECT && UOpNo == 0))
13287       return true;
13288   }
13289   return false;
13290 }
13291
13292 /// Emit nodes that will be selected as "test Op0,Op0", or something
13293 /// equivalent.
13294 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, SDLoc dl,
13295                                     SelectionDAG &DAG) const {
13296   if (Op.getValueType() == MVT::i1) {
13297     SDValue ExtOp = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i8, Op);
13298     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, ExtOp,
13299                        DAG.getConstant(0, dl, MVT::i8));
13300   }
13301   // CF and OF aren't always set the way we want. Determine which
13302   // of these we need.
13303   bool NeedCF = false;
13304   bool NeedOF = false;
13305   switch (X86CC) {
13306   default: break;
13307   case X86::COND_A: case X86::COND_AE:
13308   case X86::COND_B: case X86::COND_BE:
13309     NeedCF = true;
13310     break;
13311   case X86::COND_G: case X86::COND_GE:
13312   case X86::COND_L: case X86::COND_LE:
13313   case X86::COND_O: case X86::COND_NO: {
13314     // Check if we really need to set the
13315     // Overflow flag. If NoSignedWrap is present
13316     // that is not actually needed.
13317     switch (Op->getOpcode()) {
13318     case ISD::ADD:
13319     case ISD::SUB:
13320     case ISD::MUL:
13321     case ISD::SHL: {
13322       const auto *BinNode = cast<BinaryWithFlagsSDNode>(Op.getNode());
13323       if (BinNode->Flags.hasNoSignedWrap())
13324         break;
13325     }
13326     default:
13327       NeedOF = true;
13328       break;
13329     }
13330     break;
13331   }
13332   }
13333   // See if we can use the EFLAGS value from the operand instead of
13334   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
13335   // we prove that the arithmetic won't overflow, we can't use OF or CF.
13336   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
13337     // Emit a CMP with 0, which is the TEST pattern.
13338     //if (Op.getValueType() == MVT::i1)
13339     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
13340     //                     DAG.getConstant(0, MVT::i1));
13341     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
13342                        DAG.getConstant(0, dl, Op.getValueType()));
13343   }
13344   unsigned Opcode = 0;
13345   unsigned NumOperands = 0;
13346
13347   // Truncate operations may prevent the merge of the SETCC instruction
13348   // and the arithmetic instruction before it. Attempt to truncate the operands
13349   // of the arithmetic instruction and use a reduced bit-width instruction.
13350   bool NeedTruncation = false;
13351   SDValue ArithOp = Op;
13352   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
13353     SDValue Arith = Op->getOperand(0);
13354     // Both the trunc and the arithmetic op need to have one user each.
13355     if (Arith->hasOneUse())
13356       switch (Arith.getOpcode()) {
13357         default: break;
13358         case ISD::ADD:
13359         case ISD::SUB:
13360         case ISD::AND:
13361         case ISD::OR:
13362         case ISD::XOR: {
13363           NeedTruncation = true;
13364           ArithOp = Arith;
13365         }
13366       }
13367   }
13368
13369   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
13370   // which may be the result of a CAST.  We use the variable 'Op', which is the
13371   // non-casted variable when we check for possible users.
13372   switch (ArithOp.getOpcode()) {
13373   case ISD::ADD:
13374     // Due to an isel shortcoming, be conservative if this add is likely to be
13375     // selected as part of a load-modify-store instruction. When the root node
13376     // in a match is a store, isel doesn't know how to remap non-chain non-flag
13377     // uses of other nodes in the match, such as the ADD in this case. This
13378     // leads to the ADD being left around and reselected, with the result being
13379     // two adds in the output.  Alas, even if none our users are stores, that
13380     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
13381     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
13382     // climbing the DAG back to the root, and it doesn't seem to be worth the
13383     // effort.
13384     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13385          UE = Op.getNode()->use_end(); UI != UE; ++UI)
13386       if (UI->getOpcode() != ISD::CopyToReg &&
13387           UI->getOpcode() != ISD::SETCC &&
13388           UI->getOpcode() != ISD::STORE)
13389         goto default_case;
13390
13391     if (ConstantSDNode *C =
13392         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
13393       // An add of one will be selected as an INC.
13394       if (C->getAPIntValue() == 1 && !Subtarget->slowIncDec()) {
13395         Opcode = X86ISD::INC;
13396         NumOperands = 1;
13397         break;
13398       }
13399
13400       // An add of negative one (subtract of one) will be selected as a DEC.
13401       if (C->getAPIntValue().isAllOnesValue() && !Subtarget->slowIncDec()) {
13402         Opcode = X86ISD::DEC;
13403         NumOperands = 1;
13404         break;
13405       }
13406     }
13407
13408     // Otherwise use a regular EFLAGS-setting add.
13409     Opcode = X86ISD::ADD;
13410     NumOperands = 2;
13411     break;
13412   case ISD::SHL:
13413   case ISD::SRL:
13414     // If we have a constant logical shift that's only used in a comparison
13415     // against zero turn it into an equivalent AND. This allows turning it into
13416     // a TEST instruction later.
13417     if ((X86CC == X86::COND_E || X86CC == X86::COND_NE) && Op->hasOneUse() &&
13418         isa<ConstantSDNode>(Op->getOperand(1)) && !hasNonFlagsUse(Op)) {
13419       EVT VT = Op.getValueType();
13420       unsigned BitWidth = VT.getSizeInBits();
13421       unsigned ShAmt = Op->getConstantOperandVal(1);
13422       if (ShAmt >= BitWidth) // Avoid undefined shifts.
13423         break;
13424       APInt Mask = ArithOp.getOpcode() == ISD::SRL
13425                        ? APInt::getHighBitsSet(BitWidth, BitWidth - ShAmt)
13426                        : APInt::getLowBitsSet(BitWidth, BitWidth - ShAmt);
13427       if (!Mask.isSignedIntN(32)) // Avoid large immediates.
13428         break;
13429       SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0),
13430                                 DAG.getConstant(Mask, dl, VT));
13431       DAG.ReplaceAllUsesWith(Op, New);
13432       Op = New;
13433     }
13434     break;
13435
13436   case ISD::AND:
13437     // If the primary and result isn't used, don't bother using X86ISD::AND,
13438     // because a TEST instruction will be better.
13439     if (!hasNonFlagsUse(Op))
13440       break;
13441     // FALL THROUGH
13442   case ISD::SUB:
13443   case ISD::OR:
13444   case ISD::XOR:
13445     // Due to the ISEL shortcoming noted above, be conservative if this op is
13446     // likely to be selected as part of a load-modify-store instruction.
13447     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13448            UE = Op.getNode()->use_end(); UI != UE; ++UI)
13449       if (UI->getOpcode() == ISD::STORE)
13450         goto default_case;
13451
13452     // Otherwise use a regular EFLAGS-setting instruction.
13453     switch (ArithOp.getOpcode()) {
13454     default: llvm_unreachable("unexpected operator!");
13455     case ISD::SUB: Opcode = X86ISD::SUB; break;
13456     case ISD::XOR: Opcode = X86ISD::XOR; break;
13457     case ISD::AND: Opcode = X86ISD::AND; break;
13458     case ISD::OR: {
13459       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
13460         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
13461         if (EFLAGS.getNode())
13462           return EFLAGS;
13463       }
13464       Opcode = X86ISD::OR;
13465       break;
13466     }
13467     }
13468
13469     NumOperands = 2;
13470     break;
13471   case X86ISD::ADD:
13472   case X86ISD::SUB:
13473   case X86ISD::INC:
13474   case X86ISD::DEC:
13475   case X86ISD::OR:
13476   case X86ISD::XOR:
13477   case X86ISD::AND:
13478     return SDValue(Op.getNode(), 1);
13479   default:
13480   default_case:
13481     break;
13482   }
13483
13484   // If we found that truncation is beneficial, perform the truncation and
13485   // update 'Op'.
13486   if (NeedTruncation) {
13487     EVT VT = Op.getValueType();
13488     SDValue WideVal = Op->getOperand(0);
13489     EVT WideVT = WideVal.getValueType();
13490     unsigned ConvertedOp = 0;
13491     // Use a target machine opcode to prevent further DAGCombine
13492     // optimizations that may separate the arithmetic operations
13493     // from the setcc node.
13494     switch (WideVal.getOpcode()) {
13495       default: break;
13496       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
13497       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
13498       case ISD::AND: ConvertedOp = X86ISD::AND; break;
13499       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
13500       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
13501     }
13502
13503     if (ConvertedOp) {
13504       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13505       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
13506         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
13507         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
13508         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
13509       }
13510     }
13511   }
13512
13513   if (Opcode == 0)
13514     // Emit a CMP with 0, which is the TEST pattern.
13515     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
13516                        DAG.getConstant(0, dl, Op.getValueType()));
13517
13518   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
13519   SmallVector<SDValue, 4> Ops(Op->op_begin(), Op->op_begin() + NumOperands);
13520
13521   SDValue New = DAG.getNode(Opcode, dl, VTs, Ops);
13522   DAG.ReplaceAllUsesWith(Op, New);
13523   return SDValue(New.getNode(), 1);
13524 }
13525
13526 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
13527 /// equivalent.
13528 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
13529                                    SDLoc dl, SelectionDAG &DAG) const {
13530   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
13531     if (C->getAPIntValue() == 0)
13532       return EmitTest(Op0, X86CC, dl, DAG);
13533
13534      if (Op0.getValueType() == MVT::i1)
13535        llvm_unreachable("Unexpected comparison operation for MVT::i1 operands");
13536   }
13537
13538   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
13539        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
13540     // Do the comparison at i32 if it's smaller, besides the Atom case.
13541     // This avoids subregister aliasing issues. Keep the smaller reference
13542     // if we're optimizing for size, however, as that'll allow better folding
13543     // of memory operations.
13544     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
13545         !DAG.getMachineFunction().getFunction()->optForMinSize() &&
13546         !Subtarget->isAtom()) {
13547       unsigned ExtendOp =
13548           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
13549       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
13550       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
13551     }
13552     // Use SUB instead of CMP to enable CSE between SUB and CMP.
13553     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
13554     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
13555                               Op0, Op1);
13556     return SDValue(Sub.getNode(), 1);
13557   }
13558   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
13559 }
13560
13561 /// Convert a comparison if required by the subtarget.
13562 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
13563                                                  SelectionDAG &DAG) const {
13564   // If the subtarget does not support the FUCOMI instruction, floating-point
13565   // comparisons have to be converted.
13566   if (Subtarget->hasCMov() ||
13567       Cmp.getOpcode() != X86ISD::CMP ||
13568       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
13569       !Cmp.getOperand(1).getValueType().isFloatingPoint())
13570     return Cmp;
13571
13572   // The instruction selector will select an FUCOM instruction instead of
13573   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
13574   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
13575   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
13576   SDLoc dl(Cmp);
13577   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
13578   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
13579   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
13580                             DAG.getConstant(8, dl, MVT::i8));
13581   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
13582   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
13583 }
13584
13585 /// The minimum architected relative accuracy is 2^-12. We need one
13586 /// Newton-Raphson step to have a good float result (24 bits of precision).
13587 SDValue X86TargetLowering::getRsqrtEstimate(SDValue Op,
13588                                             DAGCombinerInfo &DCI,
13589                                             unsigned &RefinementSteps,
13590                                             bool &UseOneConstNR) const {
13591   EVT VT = Op.getValueType();
13592   const char *RecipOp;
13593
13594   // SSE1 has rsqrtss and rsqrtps. AVX adds a 256-bit variant for rsqrtps.
13595   // TODO: Add support for AVX512 (v16f32).
13596   // It is likely not profitable to do this for f64 because a double-precision
13597   // rsqrt estimate with refinement on x86 prior to FMA requires at least 16
13598   // instructions: convert to single, rsqrtss, convert back to double, refine
13599   // (3 steps = at least 13 insts). If an 'rsqrtsd' variant was added to the ISA
13600   // along with FMA, this could be a throughput win.
13601   if (VT == MVT::f32 && Subtarget->hasSSE1())
13602     RecipOp = "sqrtf";
13603   else if ((VT == MVT::v4f32 && Subtarget->hasSSE1()) ||
13604            (VT == MVT::v8f32 && Subtarget->hasAVX()))
13605     RecipOp = "vec-sqrtf";
13606   else
13607     return SDValue();
13608
13609   TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
13610   if (!Recips.isEnabled(RecipOp))
13611     return SDValue();
13612
13613   RefinementSteps = Recips.getRefinementSteps(RecipOp);
13614   UseOneConstNR = false;
13615   return DCI.DAG.getNode(X86ISD::FRSQRT, SDLoc(Op), VT, Op);
13616 }
13617
13618 /// The minimum architected relative accuracy is 2^-12. We need one
13619 /// Newton-Raphson step to have a good float result (24 bits of precision).
13620 SDValue X86TargetLowering::getRecipEstimate(SDValue Op,
13621                                             DAGCombinerInfo &DCI,
13622                                             unsigned &RefinementSteps) const {
13623   EVT VT = Op.getValueType();
13624   const char *RecipOp;
13625
13626   // SSE1 has rcpss and rcpps. AVX adds a 256-bit variant for rcpps.
13627   // TODO: Add support for AVX512 (v16f32).
13628   // It is likely not profitable to do this for f64 because a double-precision
13629   // reciprocal estimate with refinement on x86 prior to FMA requires
13630   // 15 instructions: convert to single, rcpss, convert back to double, refine
13631   // (3 steps = 12 insts). If an 'rcpsd' variant was added to the ISA
13632   // along with FMA, this could be a throughput win.
13633   if (VT == MVT::f32 && Subtarget->hasSSE1())
13634     RecipOp = "divf";
13635   else if ((VT == MVT::v4f32 && Subtarget->hasSSE1()) ||
13636            (VT == MVT::v8f32 && Subtarget->hasAVX()))
13637     RecipOp = "vec-divf";
13638   else
13639     return SDValue();
13640
13641   TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
13642   if (!Recips.isEnabled(RecipOp))
13643     return SDValue();
13644
13645   RefinementSteps = Recips.getRefinementSteps(RecipOp);
13646   return DCI.DAG.getNode(X86ISD::FRCP, SDLoc(Op), VT, Op);
13647 }
13648
13649 /// If we have at least two divisions that use the same divisor, convert to
13650 /// multplication by a reciprocal. This may need to be adjusted for a given
13651 /// CPU if a division's cost is not at least twice the cost of a multiplication.
13652 /// This is because we still need one division to calculate the reciprocal and
13653 /// then we need two multiplies by that reciprocal as replacements for the
13654 /// original divisions.
13655 unsigned X86TargetLowering::combineRepeatedFPDivisors() const {
13656   return 2;
13657 }
13658
13659 static bool isAllOnes(SDValue V) {
13660   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
13661   return C && C->isAllOnesValue();
13662 }
13663
13664 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
13665 /// if it's possible.
13666 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
13667                                      SDLoc dl, SelectionDAG &DAG) const {
13668   SDValue Op0 = And.getOperand(0);
13669   SDValue Op1 = And.getOperand(1);
13670   if (Op0.getOpcode() == ISD::TRUNCATE)
13671     Op0 = Op0.getOperand(0);
13672   if (Op1.getOpcode() == ISD::TRUNCATE)
13673     Op1 = Op1.getOperand(0);
13674
13675   SDValue LHS, RHS;
13676   if (Op1.getOpcode() == ISD::SHL)
13677     std::swap(Op0, Op1);
13678   if (Op0.getOpcode() == ISD::SHL) {
13679     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
13680       if (And00C->getZExtValue() == 1) {
13681         // If we looked past a truncate, check that it's only truncating away
13682         // known zeros.
13683         unsigned BitWidth = Op0.getValueSizeInBits();
13684         unsigned AndBitWidth = And.getValueSizeInBits();
13685         if (BitWidth > AndBitWidth) {
13686           APInt Zeros, Ones;
13687           DAG.computeKnownBits(Op0, Zeros, Ones);
13688           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
13689             return SDValue();
13690         }
13691         LHS = Op1;
13692         RHS = Op0.getOperand(1);
13693       }
13694   } else if (Op1.getOpcode() == ISD::Constant) {
13695     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
13696     uint64_t AndRHSVal = AndRHS->getZExtValue();
13697     SDValue AndLHS = Op0;
13698
13699     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
13700       LHS = AndLHS.getOperand(0);
13701       RHS = AndLHS.getOperand(1);
13702     }
13703
13704     // Use BT if the immediate can't be encoded in a TEST instruction.
13705     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
13706       LHS = AndLHS;
13707       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), dl, LHS.getValueType());
13708     }
13709   }
13710
13711   if (LHS.getNode()) {
13712     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
13713     // instruction.  Since the shift amount is in-range-or-undefined, we know
13714     // that doing a bittest on the i32 value is ok.  We extend to i32 because
13715     // the encoding for the i16 version is larger than the i32 version.
13716     // Also promote i16 to i32 for performance / code size reason.
13717     if (LHS.getValueType() == MVT::i8 ||
13718         LHS.getValueType() == MVT::i16)
13719       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
13720
13721     // If the operand types disagree, extend the shift amount to match.  Since
13722     // BT ignores high bits (like shifts) we can use anyextend.
13723     if (LHS.getValueType() != RHS.getValueType())
13724       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
13725
13726     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
13727     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
13728     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
13729                        DAG.getConstant(Cond, dl, MVT::i8), BT);
13730   }
13731
13732   return SDValue();
13733 }
13734
13735 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
13736 /// mask CMPs.
13737 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
13738                               SDValue &Op1) {
13739   unsigned SSECC;
13740   bool Swap = false;
13741
13742   // SSE Condition code mapping:
13743   //  0 - EQ
13744   //  1 - LT
13745   //  2 - LE
13746   //  3 - UNORD
13747   //  4 - NEQ
13748   //  5 - NLT
13749   //  6 - NLE
13750   //  7 - ORD
13751   switch (SetCCOpcode) {
13752   default: llvm_unreachable("Unexpected SETCC condition");
13753   case ISD::SETOEQ:
13754   case ISD::SETEQ:  SSECC = 0; break;
13755   case ISD::SETOGT:
13756   case ISD::SETGT:  Swap = true; // Fallthrough
13757   case ISD::SETLT:
13758   case ISD::SETOLT: SSECC = 1; break;
13759   case ISD::SETOGE:
13760   case ISD::SETGE:  Swap = true; // Fallthrough
13761   case ISD::SETLE:
13762   case ISD::SETOLE: SSECC = 2; break;
13763   case ISD::SETUO:  SSECC = 3; break;
13764   case ISD::SETUNE:
13765   case ISD::SETNE:  SSECC = 4; break;
13766   case ISD::SETULE: Swap = true; // Fallthrough
13767   case ISD::SETUGE: SSECC = 5; break;
13768   case ISD::SETULT: Swap = true; // Fallthrough
13769   case ISD::SETUGT: SSECC = 6; break;
13770   case ISD::SETO:   SSECC = 7; break;
13771   case ISD::SETUEQ:
13772   case ISD::SETONE: SSECC = 8; break;
13773   }
13774   if (Swap)
13775     std::swap(Op0, Op1);
13776
13777   return SSECC;
13778 }
13779
13780 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
13781 // ones, and then concatenate the result back.
13782 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
13783   MVT VT = Op.getSimpleValueType();
13784
13785   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
13786          "Unsupported value type for operation");
13787
13788   unsigned NumElems = VT.getVectorNumElements();
13789   SDLoc dl(Op);
13790   SDValue CC = Op.getOperand(2);
13791
13792   // Extract the LHS vectors
13793   SDValue LHS = Op.getOperand(0);
13794   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13795   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13796
13797   // Extract the RHS vectors
13798   SDValue RHS = Op.getOperand(1);
13799   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
13800   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
13801
13802   // Issue the operation on the smaller types and concatenate the result back
13803   MVT EltVT = VT.getVectorElementType();
13804   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13805   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
13806                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
13807                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
13808 }
13809
13810 static SDValue LowerBoolVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
13811   SDValue Op0 = Op.getOperand(0);
13812   SDValue Op1 = Op.getOperand(1);
13813   SDValue CC = Op.getOperand(2);
13814   MVT VT = Op.getSimpleValueType();
13815   SDLoc dl(Op);
13816
13817   assert(Op0.getValueType().getVectorElementType() == MVT::i1 &&
13818          "Unexpected type for boolean compare operation");
13819   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
13820   SDValue NotOp0 = DAG.getNode(ISD::XOR, dl, VT, Op0,
13821                                DAG.getConstant(-1, dl, VT));
13822   SDValue NotOp1 = DAG.getNode(ISD::XOR, dl, VT, Op1,
13823                                DAG.getConstant(-1, dl, VT));
13824   switch (SetCCOpcode) {
13825   default: llvm_unreachable("Unexpected SETCC condition");
13826   case ISD::SETEQ:
13827     // (x == y) -> ~(x ^ y)
13828     return DAG.getNode(ISD::XOR, dl, VT,
13829                        DAG.getNode(ISD::XOR, dl, VT, Op0, Op1),
13830                        DAG.getConstant(-1, dl, VT));
13831   case ISD::SETNE:
13832     // (x != y) -> (x ^ y)
13833     return DAG.getNode(ISD::XOR, dl, VT, Op0, Op1);
13834   case ISD::SETUGT:
13835   case ISD::SETGT:
13836     // (x > y) -> (x & ~y)
13837     return DAG.getNode(ISD::AND, dl, VT, Op0, NotOp1);
13838   case ISD::SETULT:
13839   case ISD::SETLT:
13840     // (x < y) -> (~x & y)
13841     return DAG.getNode(ISD::AND, dl, VT, NotOp0, Op1);
13842   case ISD::SETULE:
13843   case ISD::SETLE:
13844     // (x <= y) -> (~x | y)
13845     return DAG.getNode(ISD::OR, dl, VT, NotOp0, Op1);
13846   case ISD::SETUGE:
13847   case ISD::SETGE:
13848     // (x >=y) -> (x | ~y)
13849     return DAG.getNode(ISD::OR, dl, VT, Op0, NotOp1);
13850   }
13851 }
13852
13853 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
13854                                      const X86Subtarget *Subtarget) {
13855   SDValue Op0 = Op.getOperand(0);
13856   SDValue Op1 = Op.getOperand(1);
13857   SDValue CC = Op.getOperand(2);
13858   MVT VT = Op.getSimpleValueType();
13859   SDLoc dl(Op);
13860
13861   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 8 &&
13862          Op.getValueType().getScalarType() == MVT::i1 &&
13863          "Cannot set masked compare for this operation");
13864
13865   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
13866   unsigned  Opc = 0;
13867   bool Unsigned = false;
13868   bool Swap = false;
13869   unsigned SSECC;
13870   switch (SetCCOpcode) {
13871   default: llvm_unreachable("Unexpected SETCC condition");
13872   case ISD::SETNE:  SSECC = 4; break;
13873   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
13874   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
13875   case ISD::SETLT:  Swap = true; //fall-through
13876   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
13877   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
13878   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
13879   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
13880   case ISD::SETULE: Unsigned = true; //fall-through
13881   case ISD::SETLE:  SSECC = 2; break;
13882   }
13883
13884   if (Swap)
13885     std::swap(Op0, Op1);
13886   if (Opc)
13887     return DAG.getNode(Opc, dl, VT, Op0, Op1);
13888   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
13889   return DAG.getNode(Opc, dl, VT, Op0, Op1,
13890                      DAG.getConstant(SSECC, dl, MVT::i8));
13891 }
13892
13893 /// \brief Try to turn a VSETULT into a VSETULE by modifying its second
13894 /// operand \p Op1.  If non-trivial (for example because it's not constant)
13895 /// return an empty value.
13896 static SDValue ChangeVSETULTtoVSETULE(SDLoc dl, SDValue Op1, SelectionDAG &DAG)
13897 {
13898   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Op1.getNode());
13899   if (!BV)
13900     return SDValue();
13901
13902   MVT VT = Op1.getSimpleValueType();
13903   MVT EVT = VT.getVectorElementType();
13904   unsigned n = VT.getVectorNumElements();
13905   SmallVector<SDValue, 8> ULTOp1;
13906
13907   for (unsigned i = 0; i < n; ++i) {
13908     ConstantSDNode *Elt = dyn_cast<ConstantSDNode>(BV->getOperand(i));
13909     if (!Elt || Elt->isOpaque() || Elt->getValueType(0) != EVT)
13910       return SDValue();
13911
13912     // Avoid underflow.
13913     APInt Val = Elt->getAPIntValue();
13914     if (Val == 0)
13915       return SDValue();
13916
13917     ULTOp1.push_back(DAG.getConstant(Val - 1, dl, EVT));
13918   }
13919
13920   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, ULTOp1);
13921 }
13922
13923 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
13924                            SelectionDAG &DAG) {
13925   SDValue Op0 = Op.getOperand(0);
13926   SDValue Op1 = Op.getOperand(1);
13927   SDValue CC = Op.getOperand(2);
13928   MVT VT = Op.getSimpleValueType();
13929   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
13930   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
13931   SDLoc dl(Op);
13932
13933   if (isFP) {
13934 #ifndef NDEBUG
13935     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
13936     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
13937 #endif
13938
13939     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
13940     unsigned Opc = X86ISD::CMPP;
13941     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
13942       assert(VT.getVectorNumElements() <= 16);
13943       Opc = X86ISD::CMPM;
13944     }
13945     // In the two special cases we can't handle, emit two comparisons.
13946     if (SSECC == 8) {
13947       unsigned CC0, CC1;
13948       unsigned CombineOpc;
13949       if (SetCCOpcode == ISD::SETUEQ) {
13950         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
13951       } else {
13952         assert(SetCCOpcode == ISD::SETONE);
13953         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
13954       }
13955
13956       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
13957                                  DAG.getConstant(CC0, dl, MVT::i8));
13958       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
13959                                  DAG.getConstant(CC1, dl, MVT::i8));
13960       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
13961     }
13962     // Handle all other FP comparisons here.
13963     return DAG.getNode(Opc, dl, VT, Op0, Op1,
13964                        DAG.getConstant(SSECC, dl, MVT::i8));
13965   }
13966
13967   // Break 256-bit integer vector compare into smaller ones.
13968   if (VT.is256BitVector() && !Subtarget->hasInt256())
13969     return Lower256IntVSETCC(Op, DAG);
13970
13971   EVT OpVT = Op1.getValueType();
13972   if (OpVT.getVectorElementType() == MVT::i1)
13973     return LowerBoolVSETCC_AVX512(Op, DAG);
13974
13975   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
13976   if (Subtarget->hasAVX512()) {
13977     if (Op1.getValueType().is512BitVector() ||
13978         (Subtarget->hasBWI() && Subtarget->hasVLX()) ||
13979         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
13980       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
13981
13982     // In AVX-512 architecture setcc returns mask with i1 elements,
13983     // But there is no compare instruction for i8 and i16 elements in KNL.
13984     // We are not talking about 512-bit operands in this case, these
13985     // types are illegal.
13986     if (MaskResult &&
13987         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
13988          OpVT.getVectorElementType().getSizeInBits() >= 8))
13989       return DAG.getNode(ISD::TRUNCATE, dl, VT,
13990                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
13991   }
13992
13993   // We are handling one of the integer comparisons here.  Since SSE only has
13994   // GT and EQ comparisons for integer, swapping operands and multiple
13995   // operations may be required for some comparisons.
13996   unsigned Opc;
13997   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
13998   bool Subus = false;
13999
14000   switch (SetCCOpcode) {
14001   default: llvm_unreachable("Unexpected SETCC condition");
14002   case ISD::SETNE:  Invert = true;
14003   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
14004   case ISD::SETLT:  Swap = true;
14005   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
14006   case ISD::SETGE:  Swap = true;
14007   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
14008                     Invert = true; break;
14009   case ISD::SETULT: Swap = true;
14010   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
14011                     FlipSigns = true; break;
14012   case ISD::SETUGE: Swap = true;
14013   case ISD::SETULE: Opc = X86ISD::PCMPGT;
14014                     FlipSigns = true; Invert = true; break;
14015   }
14016
14017   // Special case: Use min/max operations for SETULE/SETUGE
14018   MVT VET = VT.getVectorElementType();
14019   bool hasMinMax =
14020        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
14021     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
14022
14023   if (hasMinMax) {
14024     switch (SetCCOpcode) {
14025     default: break;
14026     case ISD::SETULE: Opc = ISD::UMIN; MinMax = true; break;
14027     case ISD::SETUGE: Opc = ISD::UMAX; MinMax = true; break;
14028     }
14029
14030     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
14031   }
14032
14033   bool hasSubus = Subtarget->hasSSE2() && (VET == MVT::i8 || VET == MVT::i16);
14034   if (!MinMax && hasSubus) {
14035     // As another special case, use PSUBUS[BW] when it's profitable. E.g. for
14036     // Op0 u<= Op1:
14037     //   t = psubus Op0, Op1
14038     //   pcmpeq t, <0..0>
14039     switch (SetCCOpcode) {
14040     default: break;
14041     case ISD::SETULT: {
14042       // If the comparison is against a constant we can turn this into a
14043       // setule.  With psubus, setule does not require a swap.  This is
14044       // beneficial because the constant in the register is no longer
14045       // destructed as the destination so it can be hoisted out of a loop.
14046       // Only do this pre-AVX since vpcmp* is no longer destructive.
14047       if (Subtarget->hasAVX())
14048         break;
14049       SDValue ULEOp1 = ChangeVSETULTtoVSETULE(dl, Op1, DAG);
14050       if (ULEOp1.getNode()) {
14051         Op1 = ULEOp1;
14052         Subus = true; Invert = false; Swap = false;
14053       }
14054       break;
14055     }
14056     // Psubus is better than flip-sign because it requires no inversion.
14057     case ISD::SETUGE: Subus = true; Invert = false; Swap = true;  break;
14058     case ISD::SETULE: Subus = true; Invert = false; Swap = false; break;
14059     }
14060
14061     if (Subus) {
14062       Opc = X86ISD::SUBUS;
14063       FlipSigns = false;
14064     }
14065   }
14066
14067   if (Swap)
14068     std::swap(Op0, Op1);
14069
14070   // Check that the operation in question is available (most are plain SSE2,
14071   // but PCMPGTQ and PCMPEQQ have different requirements).
14072   if (VT == MVT::v2i64) {
14073     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
14074       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
14075
14076       // First cast everything to the right type.
14077       Op0 = DAG.getBitcast(MVT::v4i32, Op0);
14078       Op1 = DAG.getBitcast(MVT::v4i32, Op1);
14079
14080       // Since SSE has no unsigned integer comparisons, we need to flip the sign
14081       // bits of the inputs before performing those operations. The lower
14082       // compare is always unsigned.
14083       SDValue SB;
14084       if (FlipSigns) {
14085         SB = DAG.getConstant(0x80000000U, dl, MVT::v4i32);
14086       } else {
14087         SDValue Sign = DAG.getConstant(0x80000000U, dl, MVT::i32);
14088         SDValue Zero = DAG.getConstant(0x00000000U, dl, MVT::i32);
14089         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
14090                          Sign, Zero, Sign, Zero);
14091       }
14092       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
14093       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
14094
14095       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
14096       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
14097       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
14098
14099       // Create masks for only the low parts/high parts of the 64 bit integers.
14100       static const int MaskHi[] = { 1, 1, 3, 3 };
14101       static const int MaskLo[] = { 0, 0, 2, 2 };
14102       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
14103       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
14104       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
14105
14106       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
14107       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
14108
14109       if (Invert)
14110         Result = DAG.getNOT(dl, Result, MVT::v4i32);
14111
14112       return DAG.getBitcast(VT, Result);
14113     }
14114
14115     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
14116       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
14117       // pcmpeqd + pshufd + pand.
14118       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
14119
14120       // First cast everything to the right type.
14121       Op0 = DAG.getBitcast(MVT::v4i32, Op0);
14122       Op1 = DAG.getBitcast(MVT::v4i32, Op1);
14123
14124       // Do the compare.
14125       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
14126
14127       // Make sure the lower and upper halves are both all-ones.
14128       static const int Mask[] = { 1, 0, 3, 2 };
14129       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
14130       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
14131
14132       if (Invert)
14133         Result = DAG.getNOT(dl, Result, MVT::v4i32);
14134
14135       return DAG.getBitcast(VT, Result);
14136     }
14137   }
14138
14139   // Since SSE has no unsigned integer comparisons, we need to flip the sign
14140   // bits of the inputs before performing those operations.
14141   if (FlipSigns) {
14142     EVT EltVT = VT.getVectorElementType();
14143     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), dl,
14144                                  VT);
14145     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
14146     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
14147   }
14148
14149   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
14150
14151   // If the logical-not of the result is required, perform that now.
14152   if (Invert)
14153     Result = DAG.getNOT(dl, Result, VT);
14154
14155   if (MinMax)
14156     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
14157
14158   if (Subus)
14159     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Result,
14160                          getZeroVector(VT, Subtarget, DAG, dl));
14161
14162   return Result;
14163 }
14164
14165 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
14166
14167   MVT VT = Op.getSimpleValueType();
14168
14169   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
14170
14171   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
14172          && "SetCC type must be 8-bit or 1-bit integer");
14173   SDValue Op0 = Op.getOperand(0);
14174   SDValue Op1 = Op.getOperand(1);
14175   SDLoc dl(Op);
14176   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
14177
14178   // Optimize to BT if possible.
14179   // Lower (X & (1 << N)) == 0 to BT(X, N).
14180   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
14181   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
14182   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
14183       Op1.getOpcode() == ISD::Constant &&
14184       cast<ConstantSDNode>(Op1)->isNullValue() &&
14185       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
14186     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
14187     if (NewSetCC.getNode()) {
14188       if (VT == MVT::i1)
14189         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewSetCC);
14190       return NewSetCC;
14191     }
14192   }
14193
14194   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
14195   // these.
14196   if (Op1.getOpcode() == ISD::Constant &&
14197       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
14198        cast<ConstantSDNode>(Op1)->isNullValue()) &&
14199       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
14200
14201     // If the input is a setcc, then reuse the input setcc or use a new one with
14202     // the inverted condition.
14203     if (Op0.getOpcode() == X86ISD::SETCC) {
14204       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
14205       bool Invert = (CC == ISD::SETNE) ^
14206         cast<ConstantSDNode>(Op1)->isNullValue();
14207       if (!Invert)
14208         return Op0;
14209
14210       CCode = X86::GetOppositeBranchCondition(CCode);
14211       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14212                                   DAG.getConstant(CCode, dl, MVT::i8),
14213                                   Op0.getOperand(1));
14214       if (VT == MVT::i1)
14215         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
14216       return SetCC;
14217     }
14218   }
14219   if ((Op0.getValueType() == MVT::i1) && (Op1.getOpcode() == ISD::Constant) &&
14220       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1) &&
14221       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
14222
14223     ISD::CondCode NewCC = ISD::getSetCCInverse(CC, true);
14224     return DAG.getSetCC(dl, VT, Op0, DAG.getConstant(0, dl, MVT::i1), NewCC);
14225   }
14226
14227   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
14228   unsigned X86CC = TranslateX86CC(CC, dl, isFP, Op0, Op1, DAG);
14229   if (X86CC == X86::COND_INVALID)
14230     return SDValue();
14231
14232   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, dl, DAG);
14233   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
14234   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
14235                               DAG.getConstant(X86CC, dl, MVT::i8), EFLAGS);
14236   if (VT == MVT::i1)
14237     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
14238   return SetCC;
14239 }
14240
14241 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
14242 static bool isX86LogicalCmp(SDValue Op) {
14243   unsigned Opc = Op.getNode()->getOpcode();
14244   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
14245       Opc == X86ISD::SAHF)
14246     return true;
14247   if (Op.getResNo() == 1 &&
14248       (Opc == X86ISD::ADD ||
14249        Opc == X86ISD::SUB ||
14250        Opc == X86ISD::ADC ||
14251        Opc == X86ISD::SBB ||
14252        Opc == X86ISD::SMUL ||
14253        Opc == X86ISD::UMUL ||
14254        Opc == X86ISD::INC ||
14255        Opc == X86ISD::DEC ||
14256        Opc == X86ISD::OR ||
14257        Opc == X86ISD::XOR ||
14258        Opc == X86ISD::AND))
14259     return true;
14260
14261   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
14262     return true;
14263
14264   return false;
14265 }
14266
14267 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
14268   if (V.getOpcode() != ISD::TRUNCATE)
14269     return false;
14270
14271   SDValue VOp0 = V.getOperand(0);
14272   unsigned InBits = VOp0.getValueSizeInBits();
14273   unsigned Bits = V.getValueSizeInBits();
14274   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
14275 }
14276
14277 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
14278   bool addTest = true;
14279   SDValue Cond  = Op.getOperand(0);
14280   SDValue Op1 = Op.getOperand(1);
14281   SDValue Op2 = Op.getOperand(2);
14282   SDLoc DL(Op);
14283   EVT VT = Op1.getValueType();
14284   SDValue CC;
14285
14286   // Lower FP selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
14287   // are available or VBLENDV if AVX is available.
14288   // Otherwise FP cmovs get lowered into a less efficient branch sequence later.
14289   if (Cond.getOpcode() == ISD::SETCC &&
14290       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
14291        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
14292       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
14293     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
14294     int SSECC = translateX86FSETCC(
14295         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
14296
14297     if (SSECC != 8) {
14298       if (Subtarget->hasAVX512()) {
14299         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
14300                                   DAG.getConstant(SSECC, DL, MVT::i8));
14301         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
14302       }
14303
14304       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
14305                                 DAG.getConstant(SSECC, DL, MVT::i8));
14306
14307       // If we have AVX, we can use a variable vector select (VBLENDV) instead
14308       // of 3 logic instructions for size savings and potentially speed.
14309       // Unfortunately, there is no scalar form of VBLENDV.
14310
14311       // If either operand is a constant, don't try this. We can expect to
14312       // optimize away at least one of the logic instructions later in that
14313       // case, so that sequence would be faster than a variable blend.
14314
14315       // BLENDV was introduced with SSE 4.1, but the 2 register form implicitly
14316       // uses XMM0 as the selection register. That may need just as many
14317       // instructions as the AND/ANDN/OR sequence due to register moves, so
14318       // don't bother.
14319
14320       if (Subtarget->hasAVX() &&
14321           !isa<ConstantFPSDNode>(Op1) && !isa<ConstantFPSDNode>(Op2)) {
14322
14323         // Convert to vectors, do a VSELECT, and convert back to scalar.
14324         // All of the conversions should be optimized away.
14325
14326         EVT VecVT = VT == MVT::f32 ? MVT::v4f32 : MVT::v2f64;
14327         SDValue VOp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Op1);
14328         SDValue VOp2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Op2);
14329         SDValue VCmp = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VecVT, Cmp);
14330
14331         EVT VCmpVT = VT == MVT::f32 ? MVT::v4i32 : MVT::v2i64;
14332         VCmp = DAG.getBitcast(VCmpVT, VCmp);
14333
14334         SDValue VSel = DAG.getNode(ISD::VSELECT, DL, VecVT, VCmp, VOp1, VOp2);
14335
14336         return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
14337                            VSel, DAG.getIntPtrConstant(0, DL));
14338       }
14339       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
14340       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
14341       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
14342     }
14343   }
14344
14345   if (VT.isVector() && VT.getScalarType() == MVT::i1) {
14346     SDValue Op1Scalar;
14347     if (ISD::isBuildVectorOfConstantSDNodes(Op1.getNode()))
14348       Op1Scalar = ConvertI1VectorToInteger(Op1, DAG);
14349     else if (Op1.getOpcode() == ISD::BITCAST && Op1.getOperand(0))
14350       Op1Scalar = Op1.getOperand(0);
14351     SDValue Op2Scalar;
14352     if (ISD::isBuildVectorOfConstantSDNodes(Op2.getNode()))
14353       Op2Scalar = ConvertI1VectorToInteger(Op2, DAG);
14354     else if (Op2.getOpcode() == ISD::BITCAST && Op2.getOperand(0))
14355       Op2Scalar = Op2.getOperand(0);
14356     if (Op1Scalar.getNode() && Op2Scalar.getNode()) {
14357       SDValue newSelect = DAG.getNode(ISD::SELECT, DL,
14358                                       Op1Scalar.getValueType(),
14359                                       Cond, Op1Scalar, Op2Scalar);
14360       if (newSelect.getValueSizeInBits() == VT.getSizeInBits())
14361         return DAG.getBitcast(VT, newSelect);
14362       SDValue ExtVec = DAG.getBitcast(MVT::v8i1, newSelect);
14363       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, ExtVec,
14364                          DAG.getIntPtrConstant(0, DL));
14365     }
14366   }
14367
14368   if (VT == MVT::v4i1 || VT == MVT::v2i1) {
14369     SDValue zeroConst = DAG.getIntPtrConstant(0, DL);
14370     Op1 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, MVT::v8i1,
14371                       DAG.getUNDEF(MVT::v8i1), Op1, zeroConst);
14372     Op2 = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, MVT::v8i1,
14373                       DAG.getUNDEF(MVT::v8i1), Op2, zeroConst);
14374     SDValue newSelect = DAG.getNode(ISD::SELECT, DL, MVT::v8i1,
14375                                     Cond, Op1, Op2);
14376     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, newSelect, zeroConst);
14377   }
14378
14379   if (Cond.getOpcode() == ISD::SETCC) {
14380     SDValue NewCond = LowerSETCC(Cond, DAG);
14381     if (NewCond.getNode())
14382       Cond = NewCond;
14383   }
14384
14385   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
14386   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
14387   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
14388   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
14389   if (Cond.getOpcode() == X86ISD::SETCC &&
14390       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
14391       isZero(Cond.getOperand(1).getOperand(1))) {
14392     SDValue Cmp = Cond.getOperand(1);
14393
14394     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
14395
14396     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
14397         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
14398       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
14399
14400       SDValue CmpOp0 = Cmp.getOperand(0);
14401       // Apply further optimizations for special cases
14402       // (select (x != 0), -1, 0) -> neg & sbb
14403       // (select (x == 0), 0, -1) -> neg & sbb
14404       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
14405         if (YC->isNullValue() &&
14406             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
14407           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
14408           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
14409                                     DAG.getConstant(0, DL,
14410                                                     CmpOp0.getValueType()),
14411                                     CmpOp0);
14412           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
14413                                     DAG.getConstant(X86::COND_B, DL, MVT::i8),
14414                                     SDValue(Neg.getNode(), 1));
14415           return Res;
14416         }
14417
14418       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
14419                         CmpOp0, DAG.getConstant(1, DL, CmpOp0.getValueType()));
14420       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
14421
14422       SDValue Res =   // Res = 0 or -1.
14423         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
14424                     DAG.getConstant(X86::COND_B, DL, MVT::i8), Cmp);
14425
14426       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
14427         Res = DAG.getNOT(DL, Res, Res.getValueType());
14428
14429       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
14430       if (!N2C || !N2C->isNullValue())
14431         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
14432       return Res;
14433     }
14434   }
14435
14436   // Look past (and (setcc_carry (cmp ...)), 1).
14437   if (Cond.getOpcode() == ISD::AND &&
14438       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
14439     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
14440     if (C && C->getAPIntValue() == 1)
14441       Cond = Cond.getOperand(0);
14442   }
14443
14444   // If condition flag is set by a X86ISD::CMP, then use it as the condition
14445   // setting operand in place of the X86ISD::SETCC.
14446   unsigned CondOpcode = Cond.getOpcode();
14447   if (CondOpcode == X86ISD::SETCC ||
14448       CondOpcode == X86ISD::SETCC_CARRY) {
14449     CC = Cond.getOperand(0);
14450
14451     SDValue Cmp = Cond.getOperand(1);
14452     unsigned Opc = Cmp.getOpcode();
14453     MVT VT = Op.getSimpleValueType();
14454
14455     bool IllegalFPCMov = false;
14456     if (VT.isFloatingPoint() && !VT.isVector() &&
14457         !isScalarFPTypeInSSEReg(VT))  // FPStack?
14458       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
14459
14460     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
14461         Opc == X86ISD::BT) { // FIXME
14462       Cond = Cmp;
14463       addTest = false;
14464     }
14465   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
14466              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
14467              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
14468               Cond.getOperand(0).getValueType() != MVT::i8)) {
14469     SDValue LHS = Cond.getOperand(0);
14470     SDValue RHS = Cond.getOperand(1);
14471     unsigned X86Opcode;
14472     unsigned X86Cond;
14473     SDVTList VTs;
14474     switch (CondOpcode) {
14475     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
14476     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
14477     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
14478     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
14479     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
14480     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
14481     default: llvm_unreachable("unexpected overflowing operator");
14482     }
14483     if (CondOpcode == ISD::UMULO)
14484       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
14485                           MVT::i32);
14486     else
14487       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
14488
14489     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
14490
14491     if (CondOpcode == ISD::UMULO)
14492       Cond = X86Op.getValue(2);
14493     else
14494       Cond = X86Op.getValue(1);
14495
14496     CC = DAG.getConstant(X86Cond, DL, MVT::i8);
14497     addTest = false;
14498   }
14499
14500   if (addTest) {
14501     // Look past the truncate if the high bits are known zero.
14502     if (isTruncWithZeroHighBitsInput(Cond, DAG))
14503       Cond = Cond.getOperand(0);
14504
14505     // We know the result of AND is compared against zero. Try to match
14506     // it to BT.
14507     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
14508       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
14509       if (NewSetCC.getNode()) {
14510         CC = NewSetCC.getOperand(0);
14511         Cond = NewSetCC.getOperand(1);
14512         addTest = false;
14513       }
14514     }
14515   }
14516
14517   if (addTest) {
14518     CC = DAG.getConstant(X86::COND_NE, DL, MVT::i8);
14519     Cond = EmitTest(Cond, X86::COND_NE, DL, DAG);
14520   }
14521
14522   // a <  b ? -1 :  0 -> RES = ~setcc_carry
14523   // a <  b ?  0 : -1 -> RES = setcc_carry
14524   // a >= b ? -1 :  0 -> RES = setcc_carry
14525   // a >= b ?  0 : -1 -> RES = ~setcc_carry
14526   if (Cond.getOpcode() == X86ISD::SUB) {
14527     Cond = ConvertCmpIfNecessary(Cond, DAG);
14528     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
14529
14530     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
14531         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
14532       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
14533                                 DAG.getConstant(X86::COND_B, DL, MVT::i8),
14534                                 Cond);
14535       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
14536         return DAG.getNOT(DL, Res, Res.getValueType());
14537       return Res;
14538     }
14539   }
14540
14541   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
14542   // widen the cmov and push the truncate through. This avoids introducing a new
14543   // branch during isel and doesn't add any extensions.
14544   if (Op.getValueType() == MVT::i8 &&
14545       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
14546     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
14547     if (T1.getValueType() == T2.getValueType() &&
14548         // Blacklist CopyFromReg to avoid partial register stalls.
14549         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
14550       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
14551       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
14552       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
14553     }
14554   }
14555
14556   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
14557   // condition is true.
14558   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
14559   SDValue Ops[] = { Op2, Op1, CC, Cond };
14560   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops);
14561 }
14562
14563 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op,
14564                                        const X86Subtarget *Subtarget,
14565                                        SelectionDAG &DAG) {
14566   MVT VT = Op->getSimpleValueType(0);
14567   SDValue In = Op->getOperand(0);
14568   MVT InVT = In.getSimpleValueType();
14569   MVT VTElt = VT.getVectorElementType();
14570   MVT InVTElt = InVT.getVectorElementType();
14571   SDLoc dl(Op);
14572
14573   // SKX processor
14574   if ((InVTElt == MVT::i1) &&
14575       (((Subtarget->hasBWI() && Subtarget->hasVLX() &&
14576         VT.getSizeInBits() <= 256 && VTElt.getSizeInBits() <= 16)) ||
14577
14578        ((Subtarget->hasBWI() && VT.is512BitVector() &&
14579         VTElt.getSizeInBits() <= 16)) ||
14580
14581        ((Subtarget->hasDQI() && Subtarget->hasVLX() &&
14582         VT.getSizeInBits() <= 256 && VTElt.getSizeInBits() >= 32)) ||
14583
14584        ((Subtarget->hasDQI() && VT.is512BitVector() &&
14585         VTElt.getSizeInBits() >= 32))))
14586     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14587
14588   unsigned int NumElts = VT.getVectorNumElements();
14589
14590   if (NumElts != 8 && NumElts != 16 && !Subtarget->hasBWI())
14591     return SDValue();
14592
14593   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1) {
14594     if (In.getOpcode() == X86ISD::VSEXT || In.getOpcode() == X86ISD::VZEXT)
14595       return DAG.getNode(In.getOpcode(), dl, VT, In.getOperand(0));
14596     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14597   }
14598
14599   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
14600   MVT ExtVT = NumElts == 8 ? MVT::v8i64 : MVT::v16i32;
14601   SDValue NegOne =
14602    DAG.getConstant(APInt::getAllOnesValue(ExtVT.getScalarSizeInBits()), dl,
14603                    ExtVT);
14604   SDValue Zero =
14605    DAG.getConstant(APInt::getNullValue(ExtVT.getScalarSizeInBits()), dl, ExtVT);
14606
14607   SDValue V = DAG.getNode(ISD::VSELECT, dl, ExtVT, In, NegOne, Zero);
14608   if (VT.is512BitVector())
14609     return V;
14610   return DAG.getNode(X86ISD::VTRUNC, dl, VT, V);
14611 }
14612
14613 static SDValue LowerSIGN_EXTEND_VECTOR_INREG(SDValue Op,
14614                                              const X86Subtarget *Subtarget,
14615                                              SelectionDAG &DAG) {
14616   SDValue In = Op->getOperand(0);
14617   MVT VT = Op->getSimpleValueType(0);
14618   MVT InVT = In.getSimpleValueType();
14619   assert(VT.getSizeInBits() == InVT.getSizeInBits());
14620
14621   MVT InSVT = InVT.getScalarType();
14622   assert(VT.getScalarType().getScalarSizeInBits() > InSVT.getScalarSizeInBits());
14623
14624   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
14625     return SDValue();
14626   if (InSVT != MVT::i32 && InSVT != MVT::i16 && InSVT != MVT::i8)
14627     return SDValue();
14628
14629   SDLoc dl(Op);
14630
14631   // SSE41 targets can use the pmovsx* instructions directly.
14632   if (Subtarget->hasSSE41())
14633     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14634
14635   // pre-SSE41 targets unpack lower lanes and then sign-extend using SRAI.
14636   SDValue Curr = In;
14637   MVT CurrVT = InVT;
14638
14639   // As SRAI is only available on i16/i32 types, we expand only up to i32
14640   // and handle i64 separately.
14641   while (CurrVT != VT && CurrVT.getScalarType() != MVT::i32) {
14642     Curr = DAG.getNode(X86ISD::UNPCKL, dl, CurrVT, DAG.getUNDEF(CurrVT), Curr);
14643     MVT CurrSVT = MVT::getIntegerVT(CurrVT.getScalarSizeInBits() * 2);
14644     CurrVT = MVT::getVectorVT(CurrSVT, CurrVT.getVectorNumElements() / 2);
14645     Curr = DAG.getBitcast(CurrVT, Curr);
14646   }
14647
14648   SDValue SignExt = Curr;
14649   if (CurrVT != InVT) {
14650     unsigned SignExtShift =
14651         CurrVT.getScalarSizeInBits() - InSVT.getScalarSizeInBits();
14652     SignExt = DAG.getNode(X86ISD::VSRAI, dl, CurrVT, Curr,
14653                           DAG.getConstant(SignExtShift, dl, MVT::i8));
14654   }
14655
14656   if (CurrVT == VT)
14657     return SignExt;
14658
14659   if (VT == MVT::v2i64 && CurrVT == MVT::v4i32) {
14660     SDValue Sign = DAG.getNode(X86ISD::VSRAI, dl, CurrVT, Curr,
14661                                DAG.getConstant(31, dl, MVT::i8));
14662     SDValue Ext = DAG.getVectorShuffle(CurrVT, dl, SignExt, Sign, {0, 4, 1, 5});
14663     return DAG.getBitcast(VT, Ext);
14664   }
14665
14666   return SDValue();
14667 }
14668
14669 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
14670                                 SelectionDAG &DAG) {
14671   MVT VT = Op->getSimpleValueType(0);
14672   SDValue In = Op->getOperand(0);
14673   MVT InVT = In.getSimpleValueType();
14674   SDLoc dl(Op);
14675
14676   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
14677     return LowerSIGN_EXTEND_AVX512(Op, Subtarget, DAG);
14678
14679   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
14680       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
14681       (VT != MVT::v16i16 || InVT != MVT::v16i8))
14682     return SDValue();
14683
14684   if (Subtarget->hasInt256())
14685     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
14686
14687   // Optimize vectors in AVX mode
14688   // Sign extend  v8i16 to v8i32 and
14689   //              v4i32 to v4i64
14690   //
14691   // Divide input vector into two parts
14692   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
14693   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
14694   // concat the vectors to original VT
14695
14696   unsigned NumElems = InVT.getVectorNumElements();
14697   SDValue Undef = DAG.getUNDEF(InVT);
14698
14699   SmallVector<int,8> ShufMask1(NumElems, -1);
14700   for (unsigned i = 0; i != NumElems/2; ++i)
14701     ShufMask1[i] = i;
14702
14703   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
14704
14705   SmallVector<int,8> ShufMask2(NumElems, -1);
14706   for (unsigned i = 0; i != NumElems/2; ++i)
14707     ShufMask2[i] = i + NumElems/2;
14708
14709   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
14710
14711   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
14712                                 VT.getVectorNumElements()/2);
14713
14714   OpLo = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpLo);
14715   OpHi = DAG.getNode(X86ISD::VSEXT, dl, HalfVT, OpHi);
14716
14717   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
14718 }
14719
14720 // Lower vector extended loads using a shuffle. If SSSE3 is not available we
14721 // may emit an illegal shuffle but the expansion is still better than scalar
14722 // code. We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise
14723 // we'll emit a shuffle and a arithmetic shift.
14724 // FIXME: Is the expansion actually better than scalar code? It doesn't seem so.
14725 // TODO: It is possible to support ZExt by zeroing the undef values during
14726 // the shuffle phase or after the shuffle.
14727 static SDValue LowerExtendedLoad(SDValue Op, const X86Subtarget *Subtarget,
14728                                  SelectionDAG &DAG) {
14729   MVT RegVT = Op.getSimpleValueType();
14730   assert(RegVT.isVector() && "We only custom lower vector sext loads.");
14731   assert(RegVT.isInteger() &&
14732          "We only custom lower integer vector sext loads.");
14733
14734   // Nothing useful we can do without SSE2 shuffles.
14735   assert(Subtarget->hasSSE2() && "We only custom lower sext loads with SSE2.");
14736
14737   LoadSDNode *Ld = cast<LoadSDNode>(Op.getNode());
14738   SDLoc dl(Ld);
14739   EVT MemVT = Ld->getMemoryVT();
14740   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14741   unsigned RegSz = RegVT.getSizeInBits();
14742
14743   ISD::LoadExtType Ext = Ld->getExtensionType();
14744
14745   assert((Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)
14746          && "Only anyext and sext are currently implemented.");
14747   assert(MemVT != RegVT && "Cannot extend to the same type");
14748   assert(MemVT.isVector() && "Must load a vector from memory");
14749
14750   unsigned NumElems = RegVT.getVectorNumElements();
14751   unsigned MemSz = MemVT.getSizeInBits();
14752   assert(RegSz > MemSz && "Register size must be greater than the mem size");
14753
14754   if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256()) {
14755     // The only way in which we have a legal 256-bit vector result but not the
14756     // integer 256-bit operations needed to directly lower a sextload is if we
14757     // have AVX1 but not AVX2. In that case, we can always emit a sextload to
14758     // a 128-bit vector and a normal sign_extend to 256-bits that should get
14759     // correctly legalized. We do this late to allow the canonical form of
14760     // sextload to persist throughout the rest of the DAG combiner -- it wants
14761     // to fold together any extensions it can, and so will fuse a sign_extend
14762     // of an sextload into a sextload targeting a wider value.
14763     SDValue Load;
14764     if (MemSz == 128) {
14765       // Just switch this to a normal load.
14766       assert(TLI.isTypeLegal(MemVT) && "If the memory type is a 128-bit type, "
14767                                        "it must be a legal 128-bit vector "
14768                                        "type!");
14769       Load = DAG.getLoad(MemVT, dl, Ld->getChain(), Ld->getBasePtr(),
14770                   Ld->getPointerInfo(), Ld->isVolatile(), Ld->isNonTemporal(),
14771                   Ld->isInvariant(), Ld->getAlignment());
14772     } else {
14773       assert(MemSz < 128 &&
14774              "Can't extend a type wider than 128 bits to a 256 bit vector!");
14775       // Do an sext load to a 128-bit vector type. We want to use the same
14776       // number of elements, but elements half as wide. This will end up being
14777       // recursively lowered by this routine, but will succeed as we definitely
14778       // have all the necessary features if we're using AVX1.
14779       EVT HalfEltVT =
14780           EVT::getIntegerVT(*DAG.getContext(), RegVT.getScalarSizeInBits() / 2);
14781       EVT HalfVecVT = EVT::getVectorVT(*DAG.getContext(), HalfEltVT, NumElems);
14782       Load =
14783           DAG.getExtLoad(Ext, dl, HalfVecVT, Ld->getChain(), Ld->getBasePtr(),
14784                          Ld->getPointerInfo(), MemVT, Ld->isVolatile(),
14785                          Ld->isNonTemporal(), Ld->isInvariant(),
14786                          Ld->getAlignment());
14787     }
14788
14789     // Replace chain users with the new chain.
14790     assert(Load->getNumValues() == 2 && "Loads must carry a chain!");
14791     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Load.getValue(1));
14792
14793     // Finally, do a normal sign-extend to the desired register.
14794     return DAG.getSExtOrTrunc(Load, dl, RegVT);
14795   }
14796
14797   // All sizes must be a power of two.
14798   assert(isPowerOf2_32(RegSz * MemSz * NumElems) &&
14799          "Non-power-of-two elements are not custom lowered!");
14800
14801   // Attempt to load the original value using scalar loads.
14802   // Find the largest scalar type that divides the total loaded size.
14803   MVT SclrLoadTy = MVT::i8;
14804   for (MVT Tp : MVT::integer_valuetypes()) {
14805     if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
14806       SclrLoadTy = Tp;
14807     }
14808   }
14809
14810   // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
14811   if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
14812       (64 <= MemSz))
14813     SclrLoadTy = MVT::f64;
14814
14815   // Calculate the number of scalar loads that we need to perform
14816   // in order to load our vector from memory.
14817   unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
14818
14819   assert((Ext != ISD::SEXTLOAD || NumLoads == 1) &&
14820          "Can only lower sext loads with a single scalar load!");
14821
14822   unsigned loadRegZize = RegSz;
14823   if (Ext == ISD::SEXTLOAD && RegSz >= 256)
14824     loadRegZize = 128;
14825
14826   // Represent our vector as a sequence of elements which are the
14827   // largest scalar that we can load.
14828   EVT LoadUnitVecVT = EVT::getVectorVT(
14829       *DAG.getContext(), SclrLoadTy, loadRegZize / SclrLoadTy.getSizeInBits());
14830
14831   // Represent the data using the same element type that is stored in
14832   // memory. In practice, we ''widen'' MemVT.
14833   EVT WideVecVT =
14834       EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
14835                        loadRegZize / MemVT.getScalarType().getSizeInBits());
14836
14837   assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
14838          "Invalid vector type");
14839
14840   // We can't shuffle using an illegal type.
14841   assert(TLI.isTypeLegal(WideVecVT) &&
14842          "We only lower types that form legal widened vector types");
14843
14844   SmallVector<SDValue, 8> Chains;
14845   SDValue Ptr = Ld->getBasePtr();
14846   SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits() / 8, dl,
14847                                       TLI.getPointerTy(DAG.getDataLayout()));
14848   SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
14849
14850   for (unsigned i = 0; i < NumLoads; ++i) {
14851     // Perform a single load.
14852     SDValue ScalarLoad =
14853         DAG.getLoad(SclrLoadTy, dl, Ld->getChain(), Ptr, Ld->getPointerInfo(),
14854                     Ld->isVolatile(), Ld->isNonTemporal(), Ld->isInvariant(),
14855                     Ld->getAlignment());
14856     Chains.push_back(ScalarLoad.getValue(1));
14857     // Create the first element type using SCALAR_TO_VECTOR in order to avoid
14858     // another round of DAGCombining.
14859     if (i == 0)
14860       Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
14861     else
14862       Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
14863                         ScalarLoad, DAG.getIntPtrConstant(i, dl));
14864
14865     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
14866   }
14867
14868   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
14869
14870   // Bitcast the loaded value to a vector of the original element type, in
14871   // the size of the target vector type.
14872   SDValue SlicedVec = DAG.getBitcast(WideVecVT, Res);
14873   unsigned SizeRatio = RegSz / MemSz;
14874
14875   if (Ext == ISD::SEXTLOAD) {
14876     // If we have SSE4.1, we can directly emit a VSEXT node.
14877     if (Subtarget->hasSSE41()) {
14878       SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
14879       DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
14880       return Sext;
14881     }
14882
14883     // Otherwise we'll shuffle the small elements in the high bits of the
14884     // larger type and perform an arithmetic shift. If the shift is not legal
14885     // it's better to scalarize.
14886     assert(TLI.isOperationLegalOrCustom(ISD::SRA, RegVT) &&
14887            "We can't implement a sext load without an arithmetic right shift!");
14888
14889     // Redistribute the loaded elements into the different locations.
14890     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
14891     for (unsigned i = 0; i != NumElems; ++i)
14892       ShuffleVec[i * SizeRatio + SizeRatio - 1] = i;
14893
14894     SDValue Shuff = DAG.getVectorShuffle(
14895         WideVecVT, dl, SlicedVec, DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
14896
14897     Shuff = DAG.getBitcast(RegVT, Shuff);
14898
14899     // Build the arithmetic shift.
14900     unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
14901                    MemVT.getVectorElementType().getSizeInBits();
14902     Shuff =
14903         DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
14904                     DAG.getConstant(Amt, dl, RegVT));
14905
14906     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
14907     return Shuff;
14908   }
14909
14910   // Redistribute the loaded elements into the different locations.
14911   SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
14912   for (unsigned i = 0; i != NumElems; ++i)
14913     ShuffleVec[i * SizeRatio] = i;
14914
14915   SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
14916                                        DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
14917
14918   // Bitcast to the requested type.
14919   Shuff = DAG.getBitcast(RegVT, Shuff);
14920   DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), TF);
14921   return Shuff;
14922 }
14923
14924 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
14925 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
14926 // from the AND / OR.
14927 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
14928   Opc = Op.getOpcode();
14929   if (Opc != ISD::OR && Opc != ISD::AND)
14930     return false;
14931   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
14932           Op.getOperand(0).hasOneUse() &&
14933           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
14934           Op.getOperand(1).hasOneUse());
14935 }
14936
14937 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
14938 // 1 and that the SETCC node has a single use.
14939 static bool isXor1OfSetCC(SDValue Op) {
14940   if (Op.getOpcode() != ISD::XOR)
14941     return false;
14942   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
14943   if (N1C && N1C->getAPIntValue() == 1) {
14944     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
14945       Op.getOperand(0).hasOneUse();
14946   }
14947   return false;
14948 }
14949
14950 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
14951   bool addTest = true;
14952   SDValue Chain = Op.getOperand(0);
14953   SDValue Cond  = Op.getOperand(1);
14954   SDValue Dest  = Op.getOperand(2);
14955   SDLoc dl(Op);
14956   SDValue CC;
14957   bool Inverted = false;
14958
14959   if (Cond.getOpcode() == ISD::SETCC) {
14960     // Check for setcc([su]{add,sub,mul}o == 0).
14961     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
14962         isa<ConstantSDNode>(Cond.getOperand(1)) &&
14963         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
14964         Cond.getOperand(0).getResNo() == 1 &&
14965         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
14966          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
14967          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
14968          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
14969          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
14970          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
14971       Inverted = true;
14972       Cond = Cond.getOperand(0);
14973     } else {
14974       SDValue NewCond = LowerSETCC(Cond, DAG);
14975       if (NewCond.getNode())
14976         Cond = NewCond;
14977     }
14978   }
14979 #if 0
14980   // FIXME: LowerXALUO doesn't handle these!!
14981   else if (Cond.getOpcode() == X86ISD::ADD  ||
14982            Cond.getOpcode() == X86ISD::SUB  ||
14983            Cond.getOpcode() == X86ISD::SMUL ||
14984            Cond.getOpcode() == X86ISD::UMUL)
14985     Cond = LowerXALUO(Cond, DAG);
14986 #endif
14987
14988   // Look pass (and (setcc_carry (cmp ...)), 1).
14989   if (Cond.getOpcode() == ISD::AND &&
14990       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
14991     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
14992     if (C && C->getAPIntValue() == 1)
14993       Cond = Cond.getOperand(0);
14994   }
14995
14996   // If condition flag is set by a X86ISD::CMP, then use it as the condition
14997   // setting operand in place of the X86ISD::SETCC.
14998   unsigned CondOpcode = Cond.getOpcode();
14999   if (CondOpcode == X86ISD::SETCC ||
15000       CondOpcode == X86ISD::SETCC_CARRY) {
15001     CC = Cond.getOperand(0);
15002
15003     SDValue Cmp = Cond.getOperand(1);
15004     unsigned Opc = Cmp.getOpcode();
15005     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
15006     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
15007       Cond = Cmp;
15008       addTest = false;
15009     } else {
15010       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
15011       default: break;
15012       case X86::COND_O:
15013       case X86::COND_B:
15014         // These can only come from an arithmetic instruction with overflow,
15015         // e.g. SADDO, UADDO.
15016         Cond = Cond.getNode()->getOperand(1);
15017         addTest = false;
15018         break;
15019       }
15020     }
15021   }
15022   CondOpcode = Cond.getOpcode();
15023   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
15024       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
15025       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
15026        Cond.getOperand(0).getValueType() != MVT::i8)) {
15027     SDValue LHS = Cond.getOperand(0);
15028     SDValue RHS = Cond.getOperand(1);
15029     unsigned X86Opcode;
15030     unsigned X86Cond;
15031     SDVTList VTs;
15032     // Keep this in sync with LowerXALUO, otherwise we might create redundant
15033     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
15034     // X86ISD::INC).
15035     switch (CondOpcode) {
15036     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
15037     case ISD::SADDO:
15038       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
15039         if (C->isOne()) {
15040           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
15041           break;
15042         }
15043       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
15044     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
15045     case ISD::SSUBO:
15046       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
15047         if (C->isOne()) {
15048           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
15049           break;
15050         }
15051       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
15052     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
15053     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
15054     default: llvm_unreachable("unexpected overflowing operator");
15055     }
15056     if (Inverted)
15057       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
15058     if (CondOpcode == ISD::UMULO)
15059       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
15060                           MVT::i32);
15061     else
15062       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
15063
15064     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
15065
15066     if (CondOpcode == ISD::UMULO)
15067       Cond = X86Op.getValue(2);
15068     else
15069       Cond = X86Op.getValue(1);
15070
15071     CC = DAG.getConstant(X86Cond, dl, MVT::i8);
15072     addTest = false;
15073   } else {
15074     unsigned CondOpc;
15075     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
15076       SDValue Cmp = Cond.getOperand(0).getOperand(1);
15077       if (CondOpc == ISD::OR) {
15078         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
15079         // two branches instead of an explicit OR instruction with a
15080         // separate test.
15081         if (Cmp == Cond.getOperand(1).getOperand(1) &&
15082             isX86LogicalCmp(Cmp)) {
15083           CC = Cond.getOperand(0).getOperand(0);
15084           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15085                               Chain, Dest, CC, Cmp);
15086           CC = Cond.getOperand(1).getOperand(0);
15087           Cond = Cmp;
15088           addTest = false;
15089         }
15090       } else { // ISD::AND
15091         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
15092         // two branches instead of an explicit AND instruction with a
15093         // separate test. However, we only do this if this block doesn't
15094         // have a fall-through edge, because this requires an explicit
15095         // jmp when the condition is false.
15096         if (Cmp == Cond.getOperand(1).getOperand(1) &&
15097             isX86LogicalCmp(Cmp) &&
15098             Op.getNode()->hasOneUse()) {
15099           X86::CondCode CCode =
15100             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
15101           CCode = X86::GetOppositeBranchCondition(CCode);
15102           CC = DAG.getConstant(CCode, dl, MVT::i8);
15103           SDNode *User = *Op.getNode()->use_begin();
15104           // Look for an unconditional branch following this conditional branch.
15105           // We need this because we need to reverse the successors in order
15106           // to implement FCMP_OEQ.
15107           if (User->getOpcode() == ISD::BR) {
15108             SDValue FalseBB = User->getOperand(1);
15109             SDNode *NewBR =
15110               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
15111             assert(NewBR == User);
15112             (void)NewBR;
15113             Dest = FalseBB;
15114
15115             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15116                                 Chain, Dest, CC, Cmp);
15117             X86::CondCode CCode =
15118               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
15119             CCode = X86::GetOppositeBranchCondition(CCode);
15120             CC = DAG.getConstant(CCode, dl, MVT::i8);
15121             Cond = Cmp;
15122             addTest = false;
15123           }
15124         }
15125       }
15126     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
15127       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
15128       // It should be transformed during dag combiner except when the condition
15129       // is set by a arithmetics with overflow node.
15130       X86::CondCode CCode =
15131         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
15132       CCode = X86::GetOppositeBranchCondition(CCode);
15133       CC = DAG.getConstant(CCode, dl, MVT::i8);
15134       Cond = Cond.getOperand(0).getOperand(1);
15135       addTest = false;
15136     } else if (Cond.getOpcode() == ISD::SETCC &&
15137                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
15138       // For FCMP_OEQ, we can emit
15139       // two branches instead of an explicit AND instruction with a
15140       // separate test. However, we only do this if this block doesn't
15141       // have a fall-through edge, because this requires an explicit
15142       // jmp when the condition is false.
15143       if (Op.getNode()->hasOneUse()) {
15144         SDNode *User = *Op.getNode()->use_begin();
15145         // Look for an unconditional branch following this conditional branch.
15146         // We need this because we need to reverse the successors in order
15147         // to implement FCMP_OEQ.
15148         if (User->getOpcode() == ISD::BR) {
15149           SDValue FalseBB = User->getOperand(1);
15150           SDNode *NewBR =
15151             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
15152           assert(NewBR == User);
15153           (void)NewBR;
15154           Dest = FalseBB;
15155
15156           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
15157                                     Cond.getOperand(0), Cond.getOperand(1));
15158           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
15159           CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
15160           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15161                               Chain, Dest, CC, Cmp);
15162           CC = DAG.getConstant(X86::COND_P, dl, MVT::i8);
15163           Cond = Cmp;
15164           addTest = false;
15165         }
15166       }
15167     } else if (Cond.getOpcode() == ISD::SETCC &&
15168                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
15169       // For FCMP_UNE, we can emit
15170       // two branches instead of an explicit AND instruction with a
15171       // separate test. However, we only do this if this block doesn't
15172       // have a fall-through edge, because this requires an explicit
15173       // jmp when the condition is false.
15174       if (Op.getNode()->hasOneUse()) {
15175         SDNode *User = *Op.getNode()->use_begin();
15176         // Look for an unconditional branch following this conditional branch.
15177         // We need this because we need to reverse the successors in order
15178         // to implement FCMP_UNE.
15179         if (User->getOpcode() == ISD::BR) {
15180           SDValue FalseBB = User->getOperand(1);
15181           SDNode *NewBR =
15182             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
15183           assert(NewBR == User);
15184           (void)NewBR;
15185
15186           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
15187                                     Cond.getOperand(0), Cond.getOperand(1));
15188           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
15189           CC = DAG.getConstant(X86::COND_NE, dl, MVT::i8);
15190           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15191                               Chain, Dest, CC, Cmp);
15192           CC = DAG.getConstant(X86::COND_NP, dl, MVT::i8);
15193           Cond = Cmp;
15194           addTest = false;
15195           Dest = FalseBB;
15196         }
15197       }
15198     }
15199   }
15200
15201   if (addTest) {
15202     // Look pass the truncate if the high bits are known zero.
15203     if (isTruncWithZeroHighBitsInput(Cond, DAG))
15204         Cond = Cond.getOperand(0);
15205
15206     // We know the result of AND is compared against zero. Try to match
15207     // it to BT.
15208     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
15209       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
15210       if (NewSetCC.getNode()) {
15211         CC = NewSetCC.getOperand(0);
15212         Cond = NewSetCC.getOperand(1);
15213         addTest = false;
15214       }
15215     }
15216   }
15217
15218   if (addTest) {
15219     X86::CondCode X86Cond = Inverted ? X86::COND_E : X86::COND_NE;
15220     CC = DAG.getConstant(X86Cond, dl, MVT::i8);
15221     Cond = EmitTest(Cond, X86Cond, dl, DAG);
15222   }
15223   Cond = ConvertCmpIfNecessary(Cond, DAG);
15224   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
15225                      Chain, Dest, CC, Cond);
15226 }
15227
15228 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
15229 // Calls to _alloca are needed to probe the stack when allocating more than 4k
15230 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
15231 // that the guard pages used by the OS virtual memory manager are allocated in
15232 // correct sequence.
15233 SDValue
15234 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
15235                                            SelectionDAG &DAG) const {
15236   MachineFunction &MF = DAG.getMachineFunction();
15237   bool SplitStack = MF.shouldSplitStack();
15238   bool Lower = (Subtarget->isOSWindows() && !Subtarget->isTargetMachO()) ||
15239                SplitStack;
15240   SDLoc dl(Op);
15241
15242   if (!Lower) {
15243     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15244     SDNode* Node = Op.getNode();
15245
15246     unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
15247     assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
15248         " not tell us which reg is the stack pointer!");
15249     EVT VT = Node->getValueType(0);
15250     SDValue Tmp1 = SDValue(Node, 0);
15251     SDValue Tmp2 = SDValue(Node, 1);
15252     SDValue Tmp3 = Node->getOperand(2);
15253     SDValue Chain = Tmp1.getOperand(0);
15254
15255     // Chain the dynamic stack allocation so that it doesn't modify the stack
15256     // pointer when other instructions are using the stack.
15257     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true),
15258         SDLoc(Node));
15259
15260     SDValue Size = Tmp2.getOperand(1);
15261     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
15262     Chain = SP.getValue(1);
15263     unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
15264     const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
15265     unsigned StackAlign = TFI.getStackAlignment();
15266     Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
15267     if (Align > StackAlign)
15268       Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
15269           DAG.getConstant(-(uint64_t)Align, dl, VT));
15270     Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
15271
15272     Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true),
15273         DAG.getIntPtrConstant(0, dl, true), SDValue(),
15274         SDLoc(Node));
15275
15276     SDValue Ops[2] = { Tmp1, Tmp2 };
15277     return DAG.getMergeValues(Ops, dl);
15278   }
15279
15280   // Get the inputs.
15281   SDValue Chain = Op.getOperand(0);
15282   SDValue Size  = Op.getOperand(1);
15283   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
15284   EVT VT = Op.getNode()->getValueType(0);
15285
15286   bool Is64Bit = Subtarget->is64Bit();
15287   MVT SPTy = getPointerTy(DAG.getDataLayout());
15288
15289   if (SplitStack) {
15290     MachineRegisterInfo &MRI = MF.getRegInfo();
15291
15292     if (Is64Bit) {
15293       // The 64 bit implementation of segmented stacks needs to clobber both r10
15294       // r11. This makes it impossible to use it along with nested parameters.
15295       const Function *F = MF.getFunction();
15296
15297       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
15298            I != E; ++I)
15299         if (I->hasNestAttr())
15300           report_fatal_error("Cannot use segmented stacks with functions that "
15301                              "have nested arguments.");
15302     }
15303
15304     const TargetRegisterClass *AddrRegClass = getRegClassFor(SPTy);
15305     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
15306     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
15307     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
15308                                 DAG.getRegister(Vreg, SPTy));
15309     SDValue Ops1[2] = { Value, Chain };
15310     return DAG.getMergeValues(Ops1, dl);
15311   } else {
15312     SDValue Flag;
15313     const unsigned Reg = (Subtarget->isTarget64BitLP64() ? X86::RAX : X86::EAX);
15314
15315     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
15316     Flag = Chain.getValue(1);
15317     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
15318
15319     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
15320
15321     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
15322     unsigned SPReg = RegInfo->getStackRegister();
15323     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
15324     Chain = SP.getValue(1);
15325
15326     if (Align) {
15327       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
15328                        DAG.getConstant(-(uint64_t)Align, dl, VT));
15329       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
15330     }
15331
15332     SDValue Ops1[2] = { SP, Chain };
15333     return DAG.getMergeValues(Ops1, dl);
15334   }
15335 }
15336
15337 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
15338   MachineFunction &MF = DAG.getMachineFunction();
15339   auto PtrVT = getPointerTy(MF.getDataLayout());
15340   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
15341
15342   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
15343   SDLoc DL(Op);
15344
15345   if (!Subtarget->is64Bit() ||
15346       Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv())) {
15347     // vastart just stores the address of the VarArgsFrameIndex slot into the
15348     // memory location argument.
15349     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
15350     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
15351                         MachinePointerInfo(SV), false, false, 0);
15352   }
15353
15354   // __va_list_tag:
15355   //   gp_offset         (0 - 6 * 8)
15356   //   fp_offset         (48 - 48 + 8 * 16)
15357   //   overflow_arg_area (point to parameters coming in memory).
15358   //   reg_save_area
15359   SmallVector<SDValue, 8> MemOps;
15360   SDValue FIN = Op.getOperand(1);
15361   // Store gp_offset
15362   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
15363                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
15364                                                DL, MVT::i32),
15365                                FIN, MachinePointerInfo(SV), false, false, 0);
15366   MemOps.push_back(Store);
15367
15368   // Store fp_offset
15369   FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(4, DL));
15370   Store = DAG.getStore(Op.getOperand(0), DL,
15371                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(), DL,
15372                                        MVT::i32),
15373                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
15374   MemOps.push_back(Store);
15375
15376   // Store ptr to overflow_arg_area
15377   FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(4, DL));
15378   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
15379   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
15380                        MachinePointerInfo(SV, 8),
15381                        false, false, 0);
15382   MemOps.push_back(Store);
15383
15384   // Store ptr to reg_save_area.
15385   FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getIntPtrConstant(8, DL));
15386   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), PtrVT);
15387   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
15388                        MachinePointerInfo(SV, 16), false, false, 0);
15389   MemOps.push_back(Store);
15390   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
15391 }
15392
15393 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
15394   assert(Subtarget->is64Bit() &&
15395          "LowerVAARG only handles 64-bit va_arg!");
15396   assert(Op.getNode()->getNumOperands() == 4);
15397
15398   MachineFunction &MF = DAG.getMachineFunction();
15399   if (Subtarget->isCallingConvWin64(MF.getFunction()->getCallingConv()))
15400     // The Win64 ABI uses char* instead of a structure.
15401     return DAG.expandVAArg(Op.getNode());
15402
15403   SDValue Chain = Op.getOperand(0);
15404   SDValue SrcPtr = Op.getOperand(1);
15405   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
15406   unsigned Align = Op.getConstantOperandVal(3);
15407   SDLoc dl(Op);
15408
15409   EVT ArgVT = Op.getNode()->getValueType(0);
15410   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
15411   uint32_t ArgSize = DAG.getDataLayout().getTypeAllocSize(ArgTy);
15412   uint8_t ArgMode;
15413
15414   // Decide which area this value should be read from.
15415   // TODO: Implement the AMD64 ABI in its entirety. This simple
15416   // selection mechanism works only for the basic types.
15417   if (ArgVT == MVT::f80) {
15418     llvm_unreachable("va_arg for f80 not yet implemented");
15419   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
15420     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
15421   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
15422     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
15423   } else {
15424     llvm_unreachable("Unhandled argument type in LowerVAARG");
15425   }
15426
15427   if (ArgMode == 2) {
15428     // Sanity Check: Make sure using fp_offset makes sense.
15429     assert(!Subtarget->useSoftFloat() &&
15430            !(MF.getFunction()->hasFnAttribute(Attribute::NoImplicitFloat)) &&
15431            Subtarget->hasSSE1());
15432   }
15433
15434   // Insert VAARG_64 node into the DAG
15435   // VAARG_64 returns two values: Variable Argument Address, Chain
15436   SDValue InstOps[] = {Chain, SrcPtr, DAG.getConstant(ArgSize, dl, MVT::i32),
15437                        DAG.getConstant(ArgMode, dl, MVT::i8),
15438                        DAG.getConstant(Align, dl, MVT::i32)};
15439   SDVTList VTs = DAG.getVTList(getPointerTy(DAG.getDataLayout()), MVT::Other);
15440   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
15441                                           VTs, InstOps, MVT::i64,
15442                                           MachinePointerInfo(SV),
15443                                           /*Align=*/0,
15444                                           /*Volatile=*/false,
15445                                           /*ReadMem=*/true,
15446                                           /*WriteMem=*/true);
15447   Chain = VAARG.getValue(1);
15448
15449   // Load the next argument and return it
15450   return DAG.getLoad(ArgVT, dl,
15451                      Chain,
15452                      VAARG,
15453                      MachinePointerInfo(),
15454                      false, false, false, 0);
15455 }
15456
15457 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
15458                            SelectionDAG &DAG) {
15459   // X86-64 va_list is a struct { i32, i32, i8*, i8* }, except on Windows,
15460   // where a va_list is still an i8*.
15461   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
15462   if (Subtarget->isCallingConvWin64(
15463         DAG.getMachineFunction().getFunction()->getCallingConv()))
15464     // Probably a Win64 va_copy.
15465     return DAG.expandVACopy(Op.getNode());
15466
15467   SDValue Chain = Op.getOperand(0);
15468   SDValue DstPtr = Op.getOperand(1);
15469   SDValue SrcPtr = Op.getOperand(2);
15470   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
15471   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
15472   SDLoc DL(Op);
15473
15474   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
15475                        DAG.getIntPtrConstant(24, DL), 8, /*isVolatile*/false,
15476                        false, false,
15477                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
15478 }
15479
15480 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
15481 // amount is a constant. Takes immediate version of shift as input.
15482 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
15483                                           SDValue SrcOp, uint64_t ShiftAmt,
15484                                           SelectionDAG &DAG) {
15485   MVT ElementType = VT.getVectorElementType();
15486
15487   // Fold this packed shift into its first operand if ShiftAmt is 0.
15488   if (ShiftAmt == 0)
15489     return SrcOp;
15490
15491   // Check for ShiftAmt >= element width
15492   if (ShiftAmt >= ElementType.getSizeInBits()) {
15493     if (Opc == X86ISD::VSRAI)
15494       ShiftAmt = ElementType.getSizeInBits() - 1;
15495     else
15496       return DAG.getConstant(0, dl, VT);
15497   }
15498
15499   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
15500          && "Unknown target vector shift-by-constant node");
15501
15502   // Fold this packed vector shift into a build vector if SrcOp is a
15503   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
15504   if (VT == SrcOp.getSimpleValueType() &&
15505       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
15506     SmallVector<SDValue, 8> Elts;
15507     unsigned NumElts = SrcOp->getNumOperands();
15508     ConstantSDNode *ND;
15509
15510     switch(Opc) {
15511     default: llvm_unreachable(nullptr);
15512     case X86ISD::VSHLI:
15513       for (unsigned i=0; i!=NumElts; ++i) {
15514         SDValue CurrentOp = SrcOp->getOperand(i);
15515         if (CurrentOp->getOpcode() == ISD::UNDEF) {
15516           Elts.push_back(CurrentOp);
15517           continue;
15518         }
15519         ND = cast<ConstantSDNode>(CurrentOp);
15520         const APInt &C = ND->getAPIntValue();
15521         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), dl, ElementType));
15522       }
15523       break;
15524     case X86ISD::VSRLI:
15525       for (unsigned i=0; i!=NumElts; ++i) {
15526         SDValue CurrentOp = SrcOp->getOperand(i);
15527         if (CurrentOp->getOpcode() == ISD::UNDEF) {
15528           Elts.push_back(CurrentOp);
15529           continue;
15530         }
15531         ND = cast<ConstantSDNode>(CurrentOp);
15532         const APInt &C = ND->getAPIntValue();
15533         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), dl, ElementType));
15534       }
15535       break;
15536     case X86ISD::VSRAI:
15537       for (unsigned i=0; i!=NumElts; ++i) {
15538         SDValue CurrentOp = SrcOp->getOperand(i);
15539         if (CurrentOp->getOpcode() == ISD::UNDEF) {
15540           Elts.push_back(CurrentOp);
15541           continue;
15542         }
15543         ND = cast<ConstantSDNode>(CurrentOp);
15544         const APInt &C = ND->getAPIntValue();
15545         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), dl, ElementType));
15546       }
15547       break;
15548     }
15549
15550     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
15551   }
15552
15553   return DAG.getNode(Opc, dl, VT, SrcOp,
15554                      DAG.getConstant(ShiftAmt, dl, MVT::i8));
15555 }
15556
15557 // getTargetVShiftNode - Handle vector element shifts where the shift amount
15558 // may or may not be a constant. Takes immediate version of shift as input.
15559 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
15560                                    SDValue SrcOp, SDValue ShAmt,
15561                                    SelectionDAG &DAG) {
15562   MVT SVT = ShAmt.getSimpleValueType();
15563   assert((SVT == MVT::i32 || SVT == MVT::i64) && "Unexpected value type!");
15564
15565   // Catch shift-by-constant.
15566   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
15567     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
15568                                       CShAmt->getZExtValue(), DAG);
15569
15570   // Change opcode to non-immediate version
15571   switch (Opc) {
15572     default: llvm_unreachable("Unknown target vector shift node");
15573     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
15574     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
15575     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
15576   }
15577
15578   const X86Subtarget &Subtarget =
15579       static_cast<const X86Subtarget &>(DAG.getSubtarget());
15580   if (Subtarget.hasSSE41() && ShAmt.getOpcode() == ISD::ZERO_EXTEND &&
15581       ShAmt.getOperand(0).getSimpleValueType() == MVT::i16) {
15582     // Let the shuffle legalizer expand this shift amount node.
15583     SDValue Op0 = ShAmt.getOperand(0);
15584     Op0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(Op0), MVT::v8i16, Op0);
15585     ShAmt = getShuffleVectorZeroOrUndef(Op0, 0, true, &Subtarget, DAG);
15586   } else {
15587     // Need to build a vector containing shift amount.
15588     // SSE/AVX packed shifts only use the lower 64-bit of the shift count.
15589     SmallVector<SDValue, 4> ShOps;
15590     ShOps.push_back(ShAmt);
15591     if (SVT == MVT::i32) {
15592       ShOps.push_back(DAG.getConstant(0, dl, SVT));
15593       ShOps.push_back(DAG.getUNDEF(SVT));
15594     }
15595     ShOps.push_back(DAG.getUNDEF(SVT));
15596
15597     MVT BVT = SVT == MVT::i32 ? MVT::v4i32 : MVT::v2i64;
15598     ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, BVT, ShOps);
15599   }
15600
15601   // The return type has to be a 128-bit type with the same element
15602   // type as the input type.
15603   MVT EltVT = VT.getVectorElementType();
15604   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
15605
15606   ShAmt = DAG.getBitcast(ShVT, ShAmt);
15607   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
15608 }
15609
15610 /// \brief Return (and \p Op, \p Mask) for compare instructions or
15611 /// (vselect \p Mask, \p Op, \p PreservedSrc) for others along with the
15612 /// necessary casting or extending for \p Mask when lowering masking intrinsics
15613 static SDValue getVectorMaskingNode(SDValue Op, SDValue Mask,
15614                                     SDValue PreservedSrc,
15615                                     const X86Subtarget *Subtarget,
15616                                     SelectionDAG &DAG) {
15617     EVT VT = Op.getValueType();
15618     EVT MaskVT = EVT::getVectorVT(*DAG.getContext(),
15619                                   MVT::i1, VT.getVectorNumElements());
15620     SDValue VMask = SDValue();
15621     unsigned OpcodeSelect = ISD::VSELECT;
15622     SDLoc dl(Op);
15623
15624     assert(MaskVT.isSimple() && "invalid mask type");
15625
15626     if (isAllOnes(Mask))
15627       return Op;
15628
15629     if (MaskVT.bitsGT(Mask.getValueType())) {
15630       EVT newMaskVT =  EVT::getIntegerVT(*DAG.getContext(),
15631                                          MaskVT.getSizeInBits());
15632       VMask = DAG.getBitcast(MaskVT,
15633                              DAG.getNode(ISD::ANY_EXTEND, dl, newMaskVT, Mask));
15634     } else {
15635       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15636                                        Mask.getValueType().getSizeInBits());
15637       // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
15638       // are extracted by EXTRACT_SUBVECTOR.
15639       VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
15640                           DAG.getBitcast(BitcastVT, Mask),
15641                           DAG.getIntPtrConstant(0, dl));
15642     }
15643
15644     switch (Op.getOpcode()) {
15645       default: break;
15646       case X86ISD::PCMPEQM:
15647       case X86ISD::PCMPGTM:
15648       case X86ISD::CMPM:
15649       case X86ISD::CMPMU:
15650         return DAG.getNode(ISD::AND, dl, VT, Op, VMask);
15651       case X86ISD::VTRUNC:
15652       case X86ISD::VTRUNCS:
15653       case X86ISD::VTRUNCUS:
15654         // We can't use ISD::VSELECT here because it is not always "Legal"
15655         // for the destination type. For example vpmovqb require only AVX512
15656         // and vselect that can operate on byte element type require BWI
15657         OpcodeSelect = X86ISD::SELECT;
15658         break;
15659     }
15660     if (PreservedSrc.getOpcode() == ISD::UNDEF)
15661       PreservedSrc = getZeroVector(VT, Subtarget, DAG, dl);
15662     return DAG.getNode(OpcodeSelect, dl, VT, VMask, Op, PreservedSrc);
15663 }
15664
15665 /// \brief Creates an SDNode for a predicated scalar operation.
15666 /// \returns (X86vselect \p Mask, \p Op, \p PreservedSrc).
15667 /// The mask is coming as MVT::i8 and it should be truncated
15668 /// to MVT::i1 while lowering masking intrinsics.
15669 /// The main difference between ScalarMaskingNode and VectorMaskingNode is using
15670 /// "X86select" instead of "vselect". We just can't create the "vselect" node
15671 /// for a scalar instruction.
15672 static SDValue getScalarMaskingNode(SDValue Op, SDValue Mask,
15673                                     SDValue PreservedSrc,
15674                                     const X86Subtarget *Subtarget,
15675                                     SelectionDAG &DAG) {
15676     if (isAllOnes(Mask))
15677       return Op;
15678
15679     EVT VT = Op.getValueType();
15680     SDLoc dl(Op);
15681     // The mask should be of type MVT::i1
15682     SDValue IMask = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Mask);
15683
15684     if (PreservedSrc.getOpcode() == ISD::UNDEF)
15685       PreservedSrc = getZeroVector(VT, Subtarget, DAG, dl);
15686     return DAG.getNode(X86ISD::SELECT, dl, VT, IMask, Op, PreservedSrc);
15687 }
15688
15689 static int getSEHRegistrationNodeSize(const Function *Fn) {
15690   if (!Fn->hasPersonalityFn())
15691     report_fatal_error(
15692         "querying registration node size for function without personality");
15693   // The RegNodeSize is 6 32-bit words for SEH and 4 for C++ EH. See
15694   // WinEHStatePass for the full struct definition.
15695   switch (classifyEHPersonality(Fn->getPersonalityFn())) {
15696   case EHPersonality::MSVC_X86SEH: return 24;
15697   case EHPersonality::MSVC_CXX: return 16;
15698   default: break;
15699   }
15700   report_fatal_error("can only recover FP for MSVC EH personality functions");
15701 }
15702
15703 /// When the 32-bit MSVC runtime transfers control to us, either to an outlined
15704 /// function or when returning to a parent frame after catching an exception, we
15705 /// recover the parent frame pointer by doing arithmetic on the incoming EBP.
15706 /// Here's the math:
15707 ///   RegNodeBase = EntryEBP - RegNodeSize
15708 ///   ParentFP = RegNodeBase - RegNodeFrameOffset
15709 /// Subtracting RegNodeSize takes us to the offset of the registration node, and
15710 /// subtracting the offset (negative on x86) takes us back to the parent FP.
15711 static SDValue recoverFramePointer(SelectionDAG &DAG, const Function *Fn,
15712                                    SDValue EntryEBP) {
15713   MachineFunction &MF = DAG.getMachineFunction();
15714   SDLoc dl;
15715
15716   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15717   MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
15718
15719   // It's possible that the parent function no longer has a personality function
15720   // if the exceptional code was optimized away, in which case we just return
15721   // the incoming EBP.
15722   if (!Fn->hasPersonalityFn())
15723     return EntryEBP;
15724
15725   int RegNodeSize = getSEHRegistrationNodeSize(Fn);
15726
15727   // Get an MCSymbol that will ultimately resolve to the frame offset of the EH
15728   // registration.
15729   MCSymbol *OffsetSym =
15730       MF.getMMI().getContext().getOrCreateParentFrameOffsetSymbol(
15731           GlobalValue::getRealLinkageName(Fn->getName()));
15732   SDValue OffsetSymVal = DAG.getMCSymbol(OffsetSym, PtrVT);
15733   SDValue RegNodeFrameOffset =
15734       DAG.getNode(ISD::LOCAL_RECOVER, dl, PtrVT, OffsetSymVal);
15735
15736   // RegNodeBase = EntryEBP - RegNodeSize
15737   // ParentFP = RegNodeBase - RegNodeFrameOffset
15738   SDValue RegNodeBase = DAG.getNode(ISD::SUB, dl, PtrVT, EntryEBP,
15739                                     DAG.getConstant(RegNodeSize, dl, PtrVT));
15740   return DAG.getNode(ISD::SUB, dl, PtrVT, RegNodeBase, RegNodeFrameOffset);
15741 }
15742
15743 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
15744                                        SelectionDAG &DAG) {
15745   SDLoc dl(Op);
15746   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15747   EVT VT = Op.getValueType();
15748   const IntrinsicData* IntrData = getIntrinsicWithoutChain(IntNo);
15749   if (IntrData) {
15750     switch(IntrData->Type) {
15751     case INTR_TYPE_1OP:
15752       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1));
15753     case INTR_TYPE_2OP:
15754       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
15755         Op.getOperand(2));
15756     case INTR_TYPE_2OP_IMM8:
15757       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
15758                          DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op.getOperand(2)));
15759     case INTR_TYPE_3OP:
15760       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
15761         Op.getOperand(2), Op.getOperand(3));
15762     case INTR_TYPE_4OP:
15763       return DAG.getNode(IntrData->Opc0, dl, Op.getValueType(), Op.getOperand(1),
15764         Op.getOperand(2), Op.getOperand(3), Op.getOperand(4));
15765     case INTR_TYPE_1OP_MASK_RM: {
15766       SDValue Src = Op.getOperand(1);
15767       SDValue PassThru = Op.getOperand(2);
15768       SDValue Mask = Op.getOperand(3);
15769       SDValue RoundingMode;
15770       // We allways add rounding mode to the Node.
15771       // If the rounding mode is not specified, we add the
15772       // "current direction" mode.
15773       if (Op.getNumOperands() == 4)
15774         RoundingMode =
15775           DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
15776       else
15777         RoundingMode = Op.getOperand(4);
15778       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15779       if (IntrWithRoundingModeOpcode != 0)
15780         if (cast<ConstantSDNode>(RoundingMode)->getZExtValue() !=
15781             X86::STATIC_ROUNDING::CUR_DIRECTION)
15782           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15783                                       dl, Op.getValueType(), Src, RoundingMode),
15784                                       Mask, PassThru, Subtarget, DAG);
15785       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src,
15786                                               RoundingMode),
15787                                   Mask, PassThru, Subtarget, DAG);
15788     }
15789     case INTR_TYPE_1OP_MASK: {
15790       SDValue Src = Op.getOperand(1);
15791       SDValue PassThru = Op.getOperand(2);
15792       SDValue Mask = Op.getOperand(3);
15793       // We add rounding mode to the Node when
15794       //   - RM Opcode is specified and
15795       //   - RM is not "current direction".
15796       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15797       if (IntrWithRoundingModeOpcode != 0) {
15798         SDValue Rnd = Op.getOperand(4);
15799         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
15800         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
15801           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15802                                       dl, Op.getValueType(),
15803                                       Src, Rnd),
15804                                       Mask, PassThru, Subtarget, DAG);
15805         }
15806       }
15807       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src),
15808                                   Mask, PassThru, Subtarget, DAG);
15809     }
15810     case INTR_TYPE_SCALAR_MASK_RM: {
15811       SDValue Src1 = Op.getOperand(1);
15812       SDValue Src2 = Op.getOperand(2);
15813       SDValue Src0 = Op.getOperand(3);
15814       SDValue Mask = Op.getOperand(4);
15815       // There are 2 kinds of intrinsics in this group:
15816       // (1) With suppress-all-exceptions (sae) or rounding mode- 6 operands
15817       // (2) With rounding mode and sae - 7 operands.
15818       if (Op.getNumOperands() == 6) {
15819         SDValue Sae  = Op.getOperand(5);
15820         unsigned Opc = IntrData->Opc1 ? IntrData->Opc1 : IntrData->Opc0;
15821         return getScalarMaskingNode(DAG.getNode(Opc, dl, VT, Src1, Src2,
15822                                                 Sae),
15823                                     Mask, Src0, Subtarget, DAG);
15824       }
15825       assert(Op.getNumOperands() == 7 && "Unexpected intrinsic form");
15826       SDValue RoundingMode  = Op.getOperand(5);
15827       SDValue Sae  = Op.getOperand(6);
15828       return getScalarMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src1, Src2,
15829                                               RoundingMode, Sae),
15830                                   Mask, Src0, Subtarget, DAG);
15831     }
15832     case INTR_TYPE_2OP_MASK: {
15833       SDValue Src1 = Op.getOperand(1);
15834       SDValue Src2 = Op.getOperand(2);
15835       SDValue PassThru = Op.getOperand(3);
15836       SDValue Mask = Op.getOperand(4);
15837       // We specify 2 possible opcodes for intrinsics with rounding modes.
15838       // First, we check if the intrinsic may have non-default rounding mode,
15839       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15840       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15841       if (IntrWithRoundingModeOpcode != 0) {
15842         SDValue Rnd = Op.getOperand(5);
15843         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
15844         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
15845           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15846                                       dl, Op.getValueType(),
15847                                       Src1, Src2, Rnd),
15848                                       Mask, PassThru, Subtarget, DAG);
15849         }
15850       }
15851       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15852                                               Src1,Src2),
15853                                   Mask, PassThru, Subtarget, DAG);
15854     }
15855     case INTR_TYPE_2OP_MASK_RM: {
15856       SDValue Src1 = Op.getOperand(1);
15857       SDValue Src2 = Op.getOperand(2);
15858       SDValue PassThru = Op.getOperand(3);
15859       SDValue Mask = Op.getOperand(4);
15860       // We specify 2 possible modes for intrinsics, with/without rounding modes.
15861       // First, we check if the intrinsic have rounding mode (6 operands),
15862       // if not, we set rounding mode to "current".
15863       SDValue Rnd;
15864       if (Op.getNumOperands() == 6)
15865         Rnd = Op.getOperand(5);
15866       else
15867         Rnd = DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
15868       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15869                                               Src1, Src2, Rnd),
15870                                   Mask, PassThru, Subtarget, DAG);
15871     }
15872     case INTR_TYPE_3OP_SCALAR_MASK_RM: {
15873       SDValue Src1 = Op.getOperand(1);
15874       SDValue Src2 = Op.getOperand(2);
15875       SDValue Src3 = Op.getOperand(3);
15876       SDValue PassThru = Op.getOperand(4);
15877       SDValue Mask = Op.getOperand(5);
15878       SDValue Sae  = Op.getOperand(6);
15879
15880       return getScalarMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, Src1,
15881                                               Src2, Src3, Sae),
15882                                   Mask, PassThru, Subtarget, DAG);
15883     }
15884     case INTR_TYPE_3OP_MASK_RM: {
15885       SDValue Src1 = Op.getOperand(1);
15886       SDValue Src2 = Op.getOperand(2);
15887       SDValue Imm = Op.getOperand(3);
15888       SDValue PassThru = Op.getOperand(4);
15889       SDValue Mask = Op.getOperand(5);
15890       // We specify 2 possible modes for intrinsics, with/without rounding modes.
15891       // First, we check if the intrinsic have rounding mode (7 operands),
15892       // if not, we set rounding mode to "current".
15893       SDValue Rnd;
15894       if (Op.getNumOperands() == 7)
15895         Rnd = Op.getOperand(6);
15896       else
15897         Rnd = DAG.getConstant(X86::STATIC_ROUNDING::CUR_DIRECTION, dl, MVT::i32);
15898       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15899         Src1, Src2, Imm, Rnd),
15900         Mask, PassThru, Subtarget, DAG);
15901     }
15902     case INTR_TYPE_3OP_IMM8_MASK:
15903     case INTR_TYPE_3OP_MASK: {
15904       SDValue Src1 = Op.getOperand(1);
15905       SDValue Src2 = Op.getOperand(2);
15906       SDValue Src3 = Op.getOperand(3);
15907       SDValue PassThru = Op.getOperand(4);
15908       SDValue Mask = Op.getOperand(5);
15909
15910       if (IntrData->Type == INTR_TYPE_3OP_IMM8_MASK)
15911         Src3 = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Src3);
15912       // We specify 2 possible opcodes for intrinsics with rounding modes.
15913       // First, we check if the intrinsic may have non-default rounding mode,
15914       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15915       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15916       if (IntrWithRoundingModeOpcode != 0) {
15917         SDValue Rnd = Op.getOperand(6);
15918         unsigned Round = cast<ConstantSDNode>(Rnd)->getZExtValue();
15919         if (Round != X86::STATIC_ROUNDING::CUR_DIRECTION) {
15920           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15921                                       dl, Op.getValueType(),
15922                                       Src1, Src2, Src3, Rnd),
15923                                       Mask, PassThru, Subtarget, DAG);
15924         }
15925       }
15926       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
15927                                               Src1, Src2, Src3),
15928                                   Mask, PassThru, Subtarget, DAG);
15929     }
15930     case VPERM_3OP_MASKZ:
15931     case VPERM_3OP_MASK:
15932     case FMA_OP_MASK3:
15933     case FMA_OP_MASKZ:
15934     case FMA_OP_MASK: {
15935       SDValue Src1 = Op.getOperand(1);
15936       SDValue Src2 = Op.getOperand(2);
15937       SDValue Src3 = Op.getOperand(3);
15938       SDValue Mask = Op.getOperand(4);
15939       EVT VT = Op.getValueType();
15940       SDValue PassThru = SDValue();
15941
15942       // set PassThru element
15943       if (IntrData->Type == VPERM_3OP_MASKZ || IntrData->Type == FMA_OP_MASKZ)
15944         PassThru = getZeroVector(VT, Subtarget, DAG, dl);
15945       else if (IntrData->Type == FMA_OP_MASK3)
15946         PassThru = Src3;
15947       else
15948         PassThru = Src1;
15949
15950       // We specify 2 possible opcodes for intrinsics with rounding modes.
15951       // First, we check if the intrinsic may have non-default rounding mode,
15952       // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15953       unsigned IntrWithRoundingModeOpcode = IntrData->Opc1;
15954       if (IntrWithRoundingModeOpcode != 0) {
15955         SDValue Rnd = Op.getOperand(5);
15956         if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
15957             X86::STATIC_ROUNDING::CUR_DIRECTION)
15958           return getVectorMaskingNode(DAG.getNode(IntrWithRoundingModeOpcode,
15959                                                   dl, Op.getValueType(),
15960                                                   Src1, Src2, Src3, Rnd),
15961                                       Mask, PassThru, Subtarget, DAG);
15962       }
15963       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0,
15964                                               dl, Op.getValueType(),
15965                                               Src1, Src2, Src3),
15966                                   Mask, PassThru, Subtarget, DAG);
15967     }
15968     case CMP_MASK:
15969     case CMP_MASK_CC: {
15970       // Comparison intrinsics with masks.
15971       // Example of transformation:
15972       // (i8 (int_x86_avx512_mask_pcmpeq_q_128
15973       //             (v2i64 %a), (v2i64 %b), (i8 %mask))) ->
15974       // (i8 (bitcast
15975       //   (v8i1 (insert_subvector undef,
15976       //           (v2i1 (and (PCMPEQM %a, %b),
15977       //                      (extract_subvector
15978       //                         (v8i1 (bitcast %mask)), 0))), 0))))
15979       EVT VT = Op.getOperand(1).getValueType();
15980       EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15981                                     VT.getVectorNumElements());
15982       SDValue Mask = Op.getOperand((IntrData->Type == CMP_MASK_CC) ? 4 : 3);
15983       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
15984                                        Mask.getValueType().getSizeInBits());
15985       SDValue Cmp;
15986       if (IntrData->Type == CMP_MASK_CC) {
15987         SDValue CC = Op.getOperand(3);
15988         CC = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CC);
15989         // We specify 2 possible opcodes for intrinsics with rounding modes.
15990         // First, we check if the intrinsic may have non-default rounding mode,
15991         // (IntrData->Opc1 != 0), then we check the rounding mode operand.
15992         if (IntrData->Opc1 != 0) {
15993           SDValue Rnd = Op.getOperand(5);
15994           if (cast<ConstantSDNode>(Rnd)->getZExtValue() !=
15995               X86::STATIC_ROUNDING::CUR_DIRECTION)
15996             Cmp = DAG.getNode(IntrData->Opc1, dl, MaskVT, Op.getOperand(1),
15997                               Op.getOperand(2), CC, Rnd);
15998         }
15999         //default rounding mode
16000         if(!Cmp.getNode())
16001             Cmp = DAG.getNode(IntrData->Opc0, dl, MaskVT, Op.getOperand(1),
16002                               Op.getOperand(2), CC);
16003
16004       } else {
16005         assert(IntrData->Type == CMP_MASK && "Unexpected intrinsic type!");
16006         Cmp = DAG.getNode(IntrData->Opc0, dl, MaskVT, Op.getOperand(1),
16007                           Op.getOperand(2));
16008       }
16009       SDValue CmpMask = getVectorMaskingNode(Cmp, Mask,
16010                                              DAG.getTargetConstant(0, dl,
16011                                                                    MaskVT),
16012                                              Subtarget, DAG);
16013       SDValue Res = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, BitcastVT,
16014                                 DAG.getUNDEF(BitcastVT), CmpMask,
16015                                 DAG.getIntPtrConstant(0, dl));
16016       return DAG.getBitcast(Op.getValueType(), Res);
16017     }
16018     case COMI: { // Comparison intrinsics
16019       ISD::CondCode CC = (ISD::CondCode)IntrData->Opc1;
16020       SDValue LHS = Op.getOperand(1);
16021       SDValue RHS = Op.getOperand(2);
16022       unsigned X86CC = TranslateX86CC(CC, dl, true, LHS, RHS, DAG);
16023       assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
16024       SDValue Cond = DAG.getNode(IntrData->Opc0, dl, MVT::i32, LHS, RHS);
16025       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16026                                   DAG.getConstant(X86CC, dl, MVT::i8), Cond);
16027       return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16028     }
16029     case VSHIFT:
16030       return getTargetVShiftNode(IntrData->Opc0, dl, Op.getSimpleValueType(),
16031                                  Op.getOperand(1), Op.getOperand(2), DAG);
16032     case VSHIFT_MASK:
16033       return getVectorMaskingNode(getTargetVShiftNode(IntrData->Opc0, dl,
16034                                                       Op.getSimpleValueType(),
16035                                                       Op.getOperand(1),
16036                                                       Op.getOperand(2), DAG),
16037                                   Op.getOperand(4), Op.getOperand(3), Subtarget,
16038                                   DAG);
16039     case COMPRESS_EXPAND_IN_REG: {
16040       SDValue Mask = Op.getOperand(3);
16041       SDValue DataToCompress = Op.getOperand(1);
16042       SDValue PassThru = Op.getOperand(2);
16043       if (isAllOnes(Mask)) // return data as is
16044         return Op.getOperand(1);
16045
16046       return getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT,
16047                                               DataToCompress),
16048                                   Mask, PassThru, Subtarget, DAG);
16049     }
16050     case BLEND: {
16051       SDValue Mask = Op.getOperand(3);
16052       EVT VT = Op.getValueType();
16053       EVT MaskVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16054                                     VT.getVectorNumElements());
16055       EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16056                                        Mask.getValueType().getSizeInBits());
16057       SDLoc dl(Op);
16058       SDValue VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16059                                   DAG.getBitcast(BitcastVT, Mask),
16060                                   DAG.getIntPtrConstant(0, dl));
16061       return DAG.getNode(IntrData->Opc0, dl, VT, VMask, Op.getOperand(1),
16062                          Op.getOperand(2));
16063     }
16064     default:
16065       break;
16066     }
16067   }
16068
16069   switch (IntNo) {
16070   default: return SDValue();    // Don't custom lower most intrinsics.
16071
16072   case Intrinsic::x86_avx2_permd:
16073   case Intrinsic::x86_avx2_permps:
16074     // Operands intentionally swapped. Mask is last operand to intrinsic,
16075     // but second operand for node/instruction.
16076     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
16077                        Op.getOperand(2), Op.getOperand(1));
16078
16079   // ptest and testp intrinsics. The intrinsic these come from are designed to
16080   // return an integer value, not just an instruction so lower it to the ptest
16081   // or testp pattern and a setcc for the result.
16082   case Intrinsic::x86_sse41_ptestz:
16083   case Intrinsic::x86_sse41_ptestc:
16084   case Intrinsic::x86_sse41_ptestnzc:
16085   case Intrinsic::x86_avx_ptestz_256:
16086   case Intrinsic::x86_avx_ptestc_256:
16087   case Intrinsic::x86_avx_ptestnzc_256:
16088   case Intrinsic::x86_avx_vtestz_ps:
16089   case Intrinsic::x86_avx_vtestc_ps:
16090   case Intrinsic::x86_avx_vtestnzc_ps:
16091   case Intrinsic::x86_avx_vtestz_pd:
16092   case Intrinsic::x86_avx_vtestc_pd:
16093   case Intrinsic::x86_avx_vtestnzc_pd:
16094   case Intrinsic::x86_avx_vtestz_ps_256:
16095   case Intrinsic::x86_avx_vtestc_ps_256:
16096   case Intrinsic::x86_avx_vtestnzc_ps_256:
16097   case Intrinsic::x86_avx_vtestz_pd_256:
16098   case Intrinsic::x86_avx_vtestc_pd_256:
16099   case Intrinsic::x86_avx_vtestnzc_pd_256: {
16100     bool IsTestPacked = false;
16101     unsigned X86CC;
16102     switch (IntNo) {
16103     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
16104     case Intrinsic::x86_avx_vtestz_ps:
16105     case Intrinsic::x86_avx_vtestz_pd:
16106     case Intrinsic::x86_avx_vtestz_ps_256:
16107     case Intrinsic::x86_avx_vtestz_pd_256:
16108       IsTestPacked = true; // Fallthrough
16109     case Intrinsic::x86_sse41_ptestz:
16110     case Intrinsic::x86_avx_ptestz_256:
16111       // ZF = 1
16112       X86CC = X86::COND_E;
16113       break;
16114     case Intrinsic::x86_avx_vtestc_ps:
16115     case Intrinsic::x86_avx_vtestc_pd:
16116     case Intrinsic::x86_avx_vtestc_ps_256:
16117     case Intrinsic::x86_avx_vtestc_pd_256:
16118       IsTestPacked = true; // Fallthrough
16119     case Intrinsic::x86_sse41_ptestc:
16120     case Intrinsic::x86_avx_ptestc_256:
16121       // CF = 1
16122       X86CC = X86::COND_B;
16123       break;
16124     case Intrinsic::x86_avx_vtestnzc_ps:
16125     case Intrinsic::x86_avx_vtestnzc_pd:
16126     case Intrinsic::x86_avx_vtestnzc_ps_256:
16127     case Intrinsic::x86_avx_vtestnzc_pd_256:
16128       IsTestPacked = true; // Fallthrough
16129     case Intrinsic::x86_sse41_ptestnzc:
16130     case Intrinsic::x86_avx_ptestnzc_256:
16131       // ZF and CF = 0
16132       X86CC = X86::COND_A;
16133       break;
16134     }
16135
16136     SDValue LHS = Op.getOperand(1);
16137     SDValue RHS = Op.getOperand(2);
16138     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
16139     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
16140     SDValue CC = DAG.getConstant(X86CC, dl, MVT::i8);
16141     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
16142     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16143   }
16144   case Intrinsic::x86_avx512_kortestz_w:
16145   case Intrinsic::x86_avx512_kortestc_w: {
16146     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
16147     SDValue LHS = DAG.getBitcast(MVT::v16i1, Op.getOperand(1));
16148     SDValue RHS = DAG.getBitcast(MVT::v16i1, Op.getOperand(2));
16149     SDValue CC = DAG.getConstant(X86CC, dl, MVT::i8);
16150     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
16151     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
16152     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16153   }
16154
16155   case Intrinsic::x86_sse42_pcmpistria128:
16156   case Intrinsic::x86_sse42_pcmpestria128:
16157   case Intrinsic::x86_sse42_pcmpistric128:
16158   case Intrinsic::x86_sse42_pcmpestric128:
16159   case Intrinsic::x86_sse42_pcmpistrio128:
16160   case Intrinsic::x86_sse42_pcmpestrio128:
16161   case Intrinsic::x86_sse42_pcmpistris128:
16162   case Intrinsic::x86_sse42_pcmpestris128:
16163   case Intrinsic::x86_sse42_pcmpistriz128:
16164   case Intrinsic::x86_sse42_pcmpestriz128: {
16165     unsigned Opcode;
16166     unsigned X86CC;
16167     switch (IntNo) {
16168     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16169     case Intrinsic::x86_sse42_pcmpistria128:
16170       Opcode = X86ISD::PCMPISTRI;
16171       X86CC = X86::COND_A;
16172       break;
16173     case Intrinsic::x86_sse42_pcmpestria128:
16174       Opcode = X86ISD::PCMPESTRI;
16175       X86CC = X86::COND_A;
16176       break;
16177     case Intrinsic::x86_sse42_pcmpistric128:
16178       Opcode = X86ISD::PCMPISTRI;
16179       X86CC = X86::COND_B;
16180       break;
16181     case Intrinsic::x86_sse42_pcmpestric128:
16182       Opcode = X86ISD::PCMPESTRI;
16183       X86CC = X86::COND_B;
16184       break;
16185     case Intrinsic::x86_sse42_pcmpistrio128:
16186       Opcode = X86ISD::PCMPISTRI;
16187       X86CC = X86::COND_O;
16188       break;
16189     case Intrinsic::x86_sse42_pcmpestrio128:
16190       Opcode = X86ISD::PCMPESTRI;
16191       X86CC = X86::COND_O;
16192       break;
16193     case Intrinsic::x86_sse42_pcmpistris128:
16194       Opcode = X86ISD::PCMPISTRI;
16195       X86CC = X86::COND_S;
16196       break;
16197     case Intrinsic::x86_sse42_pcmpestris128:
16198       Opcode = X86ISD::PCMPESTRI;
16199       X86CC = X86::COND_S;
16200       break;
16201     case Intrinsic::x86_sse42_pcmpistriz128:
16202       Opcode = X86ISD::PCMPISTRI;
16203       X86CC = X86::COND_E;
16204       break;
16205     case Intrinsic::x86_sse42_pcmpestriz128:
16206       Opcode = X86ISD::PCMPESTRI;
16207       X86CC = X86::COND_E;
16208       break;
16209     }
16210     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
16211     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
16212     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps);
16213     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16214                                 DAG.getConstant(X86CC, dl, MVT::i8),
16215                                 SDValue(PCMP.getNode(), 1));
16216     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
16217   }
16218
16219   case Intrinsic::x86_sse42_pcmpistri128:
16220   case Intrinsic::x86_sse42_pcmpestri128: {
16221     unsigned Opcode;
16222     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
16223       Opcode = X86ISD::PCMPISTRI;
16224     else
16225       Opcode = X86ISD::PCMPESTRI;
16226
16227     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
16228     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
16229     return DAG.getNode(Opcode, dl, VTs, NewOps);
16230   }
16231
16232   case Intrinsic::x86_seh_lsda: {
16233     // Compute the symbol for the LSDA. We know it'll get emitted later.
16234     MachineFunction &MF = DAG.getMachineFunction();
16235     SDValue Op1 = Op.getOperand(1);
16236     auto *Fn = cast<Function>(cast<GlobalAddressSDNode>(Op1)->getGlobal());
16237     MCSymbol *LSDASym = MF.getMMI().getContext().getOrCreateLSDASymbol(
16238         GlobalValue::getRealLinkageName(Fn->getName()));
16239
16240     // Generate a simple absolute symbol reference. This intrinsic is only
16241     // supported on 32-bit Windows, which isn't PIC.
16242     SDValue Result = DAG.getMCSymbol(LSDASym, VT);
16243     return DAG.getNode(X86ISD::Wrapper, dl, VT, Result);
16244   }
16245
16246   case Intrinsic::x86_seh_recoverfp: {
16247     SDValue FnOp = Op.getOperand(1);
16248     SDValue IncomingFPOp = Op.getOperand(2);
16249     GlobalAddressSDNode *GSD = dyn_cast<GlobalAddressSDNode>(FnOp);
16250     auto *Fn = dyn_cast_or_null<Function>(GSD ? GSD->getGlobal() : nullptr);
16251     if (!Fn)
16252       report_fatal_error(
16253           "llvm.x86.seh.recoverfp must take a function as the first argument");
16254     return recoverFramePointer(DAG, Fn, IncomingFPOp);
16255   }
16256
16257   case Intrinsic::localaddress: {
16258     // Returns one of the stack, base, or frame pointer registers, depending on
16259     // which is used to reference local variables.
16260     MachineFunction &MF = DAG.getMachineFunction();
16261     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16262     unsigned Reg;
16263     if (RegInfo->hasBasePointer(MF))
16264       Reg = RegInfo->getBaseRegister();
16265     else // This function handles the SP or FP case.
16266       Reg = RegInfo->getPtrSizedFrameRegister(MF);
16267     return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
16268   }
16269   }
16270 }
16271
16272 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
16273                               SDValue Src, SDValue Mask, SDValue Base,
16274                               SDValue Index, SDValue ScaleOp, SDValue Chain,
16275                               const X86Subtarget * Subtarget) {
16276   SDLoc dl(Op);
16277   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
16278   if (!C)
16279     llvm_unreachable("Invalid scale type");
16280   unsigned ScaleVal = C->getZExtValue();
16281   if (ScaleVal > 2 && ScaleVal != 4 && ScaleVal != 8)
16282     llvm_unreachable("Valid scale values are 1, 2, 4, 8");
16283
16284   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
16285   EVT MaskVT = MVT::getVectorVT(MVT::i1,
16286                              Index.getSimpleValueType().getVectorNumElements());
16287   SDValue MaskInReg;
16288   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
16289   if (MaskC)
16290     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
16291   else {
16292     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16293                                      Mask.getValueType().getSizeInBits());
16294
16295     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
16296     // are extracted by EXTRACT_SUBVECTOR.
16297     MaskInReg = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16298                             DAG.getBitcast(BitcastVT, Mask),
16299                             DAG.getIntPtrConstant(0, dl));
16300   }
16301   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
16302   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
16303   SDValue Segment = DAG.getRegister(0, MVT::i32);
16304   if (Src.getOpcode() == ISD::UNDEF)
16305     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
16306   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
16307   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
16308   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
16309   return DAG.getMergeValues(RetOps, dl);
16310 }
16311
16312 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
16313                                SDValue Src, SDValue Mask, SDValue Base,
16314                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
16315   SDLoc dl(Op);
16316   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
16317   if (!C)
16318     llvm_unreachable("Invalid scale type");
16319   unsigned ScaleVal = C->getZExtValue();
16320   if (ScaleVal > 2 && ScaleVal != 4 && ScaleVal != 8)
16321     llvm_unreachable("Valid scale values are 1, 2, 4, 8");
16322
16323   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
16324   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
16325   SDValue Segment = DAG.getRegister(0, MVT::i32);
16326   EVT MaskVT = MVT::getVectorVT(MVT::i1,
16327                              Index.getSimpleValueType().getVectorNumElements());
16328   SDValue MaskInReg;
16329   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
16330   if (MaskC)
16331     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
16332   else {
16333     EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16334                                      Mask.getValueType().getSizeInBits());
16335
16336     // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
16337     // are extracted by EXTRACT_SUBVECTOR.
16338     MaskInReg = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16339                             DAG.getBitcast(BitcastVT, Mask),
16340                             DAG.getIntPtrConstant(0, dl));
16341   }
16342   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
16343   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
16344   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
16345   return SDValue(Res, 1);
16346 }
16347
16348 static SDValue getPrefetchNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
16349                                SDValue Mask, SDValue Base, SDValue Index,
16350                                SDValue ScaleOp, SDValue Chain) {
16351   SDLoc dl(Op);
16352   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
16353   assert(C && "Invalid scale type");
16354   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), dl, MVT::i8);
16355   SDValue Disp = DAG.getTargetConstant(0, dl, MVT::i32);
16356   SDValue Segment = DAG.getRegister(0, MVT::i32);
16357   EVT MaskVT =
16358     MVT::getVectorVT(MVT::i1, Index.getSimpleValueType().getVectorNumElements());
16359   SDValue MaskInReg;
16360   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(Mask);
16361   if (MaskC)
16362     MaskInReg = DAG.getTargetConstant(MaskC->getSExtValue(), dl, MaskVT);
16363   else
16364     MaskInReg = DAG.getBitcast(MaskVT, Mask);
16365   //SDVTList VTs = DAG.getVTList(MVT::Other);
16366   SDValue Ops[] = {MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
16367   SDNode *Res = DAG.getMachineNode(Opc, dl, MVT::Other, Ops);
16368   return SDValue(Res, 0);
16369 }
16370
16371 // getReadPerformanceCounter - Handles the lowering of builtin intrinsics that
16372 // read performance monitor counters (x86_rdpmc).
16373 static void getReadPerformanceCounter(SDNode *N, SDLoc DL,
16374                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
16375                               SmallVectorImpl<SDValue> &Results) {
16376   assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
16377   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16378   SDValue LO, HI;
16379
16380   // The ECX register is used to select the index of the performance counter
16381   // to read.
16382   SDValue Chain = DAG.getCopyToReg(N->getOperand(0), DL, X86::ECX,
16383                                    N->getOperand(2));
16384   SDValue rd = DAG.getNode(X86ISD::RDPMC_DAG, DL, Tys, Chain);
16385
16386   // Reads the content of a 64-bit performance counter and returns it in the
16387   // registers EDX:EAX.
16388   if (Subtarget->is64Bit()) {
16389     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
16390     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
16391                             LO.getValue(2));
16392   } else {
16393     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
16394     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
16395                             LO.getValue(2));
16396   }
16397   Chain = HI.getValue(1);
16398
16399   if (Subtarget->is64Bit()) {
16400     // The EAX register is loaded with the low-order 32 bits. The EDX register
16401     // is loaded with the supported high-order bits of the counter.
16402     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
16403                               DAG.getConstant(32, DL, MVT::i8));
16404     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
16405     Results.push_back(Chain);
16406     return;
16407   }
16408
16409   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
16410   SDValue Ops[] = { LO, HI };
16411   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
16412   Results.push_back(Pair);
16413   Results.push_back(Chain);
16414 }
16415
16416 // getReadTimeStampCounter - Handles the lowering of builtin intrinsics that
16417 // read the time stamp counter (x86_rdtsc and x86_rdtscp). This function is
16418 // also used to custom lower READCYCLECOUNTER nodes.
16419 static void getReadTimeStampCounter(SDNode *N, SDLoc DL, unsigned Opcode,
16420                               SelectionDAG &DAG, const X86Subtarget *Subtarget,
16421                               SmallVectorImpl<SDValue> &Results) {
16422   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
16423   SDValue rd = DAG.getNode(Opcode, DL, Tys, N->getOperand(0));
16424   SDValue LO, HI;
16425
16426   // The processor's time-stamp counter (a 64-bit MSR) is stored into the
16427   // EDX:EAX registers. EDX is loaded with the high-order 32 bits of the MSR
16428   // and the EAX register is loaded with the low-order 32 bits.
16429   if (Subtarget->is64Bit()) {
16430     LO = DAG.getCopyFromReg(rd, DL, X86::RAX, MVT::i64, rd.getValue(1));
16431     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::RDX, MVT::i64,
16432                             LO.getValue(2));
16433   } else {
16434     LO = DAG.getCopyFromReg(rd, DL, X86::EAX, MVT::i32, rd.getValue(1));
16435     HI = DAG.getCopyFromReg(LO.getValue(1), DL, X86::EDX, MVT::i32,
16436                             LO.getValue(2));
16437   }
16438   SDValue Chain = HI.getValue(1);
16439
16440   if (Opcode == X86ISD::RDTSCP_DAG) {
16441     assert(N->getNumOperands() == 3 && "Unexpected number of operands!");
16442
16443     // Instruction RDTSCP loads the IA32:TSC_AUX_MSR (address C000_0103H) into
16444     // the ECX register. Add 'ecx' explicitly to the chain.
16445     SDValue ecx = DAG.getCopyFromReg(Chain, DL, X86::ECX, MVT::i32,
16446                                      HI.getValue(2));
16447     // Explicitly store the content of ECX at the location passed in input
16448     // to the 'rdtscp' intrinsic.
16449     Chain = DAG.getStore(ecx.getValue(1), DL, ecx, N->getOperand(2),
16450                          MachinePointerInfo(), false, false, 0);
16451   }
16452
16453   if (Subtarget->is64Bit()) {
16454     // The EDX register is loaded with the high-order 32 bits of the MSR, and
16455     // the EAX register is loaded with the low-order 32 bits.
16456     SDValue Tmp = DAG.getNode(ISD::SHL, DL, MVT::i64, HI,
16457                               DAG.getConstant(32, DL, MVT::i8));
16458     Results.push_back(DAG.getNode(ISD::OR, DL, MVT::i64, LO, Tmp));
16459     Results.push_back(Chain);
16460     return;
16461   }
16462
16463   // Use a buildpair to merge the two 32-bit values into a 64-bit one.
16464   SDValue Ops[] = { LO, HI };
16465   SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops);
16466   Results.push_back(Pair);
16467   Results.push_back(Chain);
16468 }
16469
16470 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
16471                                      SelectionDAG &DAG) {
16472   SmallVector<SDValue, 2> Results;
16473   SDLoc DL(Op);
16474   getReadTimeStampCounter(Op.getNode(), DL, X86ISD::RDTSC_DAG, DAG, Subtarget,
16475                           Results);
16476   return DAG.getMergeValues(Results, DL);
16477 }
16478
16479 static SDValue LowerSEHRESTOREFRAME(SDValue Op, const X86Subtarget *Subtarget,
16480                                     SelectionDAG &DAG) {
16481   MachineFunction &MF = DAG.getMachineFunction();
16482   const Function *Fn = MF.getFunction();
16483   SDLoc dl(Op);
16484   SDValue Chain = Op.getOperand(0);
16485
16486   assert(Subtarget->getFrameLowering()->hasFP(MF) &&
16487          "using llvm.x86.seh.restoreframe requires a frame pointer");
16488
16489   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16490   MVT VT = TLI.getPointerTy(DAG.getDataLayout());
16491
16492   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16493   unsigned FrameReg =
16494       RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
16495   unsigned SPReg = RegInfo->getStackRegister();
16496   unsigned SlotSize = RegInfo->getSlotSize();
16497
16498   // Get incoming EBP.
16499   SDValue IncomingEBP =
16500       DAG.getCopyFromReg(Chain, dl, FrameReg, VT);
16501
16502   // SP is saved in the first field of every registration node, so load
16503   // [EBP-RegNodeSize] into SP.
16504   int RegNodeSize = getSEHRegistrationNodeSize(Fn);
16505   SDValue SPAddr = DAG.getNode(ISD::ADD, dl, VT, IncomingEBP,
16506                                DAG.getConstant(-RegNodeSize, dl, VT));
16507   SDValue NewSP =
16508       DAG.getLoad(VT, dl, Chain, SPAddr, MachinePointerInfo(), false, false,
16509                   false, VT.getScalarSizeInBits() / 8);
16510   Chain = DAG.getCopyToReg(Chain, dl, SPReg, NewSP);
16511
16512   if (!RegInfo->needsStackRealignment(MF)) {
16513     // Adjust EBP to point back to the original frame position.
16514     SDValue NewFP = recoverFramePointer(DAG, Fn, IncomingEBP);
16515     Chain = DAG.getCopyToReg(Chain, dl, FrameReg, NewFP);
16516   } else {
16517     assert(RegInfo->hasBasePointer(MF) &&
16518            "functions with Win32 EH must use frame or base pointer register");
16519
16520     // Reload the base pointer (ESI) with the adjusted incoming EBP.
16521     SDValue NewBP = recoverFramePointer(DAG, Fn, IncomingEBP);
16522     Chain = DAG.getCopyToReg(Chain, dl, RegInfo->getBaseRegister(), NewBP);
16523
16524     // Reload the spilled EBP value, now that the stack and base pointers are
16525     // set up.
16526     X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
16527     X86FI->setHasSEHFramePtrSave(true);
16528     int FI = MF.getFrameInfo()->CreateSpillStackObject(SlotSize, SlotSize);
16529     X86FI->setSEHFramePtrSaveIndex(FI);
16530     SDValue NewFP = DAG.getLoad(VT, dl, Chain, DAG.getFrameIndex(FI, VT),
16531                                 MachinePointerInfo(), false, false, false,
16532                                 VT.getScalarSizeInBits() / 8);
16533     Chain = DAG.getCopyToReg(NewFP, dl, FrameReg, NewFP);
16534   }
16535
16536   return Chain;
16537 }
16538
16539 /// \brief Lower intrinsics for TRUNCATE_TO_MEM case
16540 /// return truncate Store/MaskedStore Node
16541 static SDValue LowerINTRINSIC_TRUNCATE_TO_MEM(const SDValue & Op,
16542                                                SelectionDAG &DAG,
16543                                                MVT ElementType) {
16544   SDLoc dl(Op);
16545   SDValue Mask = Op.getOperand(4);
16546   SDValue DataToTruncate = Op.getOperand(3);
16547   SDValue Addr = Op.getOperand(2);
16548   SDValue Chain = Op.getOperand(0);
16549
16550   EVT VT  = DataToTruncate.getValueType();
16551   EVT SVT = EVT::getVectorVT(*DAG.getContext(),
16552                              ElementType, VT.getVectorNumElements());
16553
16554   if (isAllOnes(Mask)) // return just a truncate store
16555     return DAG.getTruncStore(Chain, dl, DataToTruncate, Addr,
16556                              MachinePointerInfo(), SVT, false, false,
16557                              SVT.getScalarSizeInBits()/8);
16558
16559   EVT MaskVT = EVT::getVectorVT(*DAG.getContext(),
16560                                 MVT::i1, VT.getVectorNumElements());
16561   EVT BitcastVT = EVT::getVectorVT(*DAG.getContext(), MVT::i1,
16562                                    Mask.getValueType().getSizeInBits());
16563   // In case when MaskVT equals v2i1 or v4i1, low 2 or 4 elements
16564   // are extracted by EXTRACT_SUBVECTOR.
16565   SDValue VMask = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MaskVT,
16566                               DAG.getBitcast(BitcastVT, Mask),
16567                               DAG.getIntPtrConstant(0, dl));
16568
16569   MachineMemOperand *MMO = DAG.getMachineFunction().
16570     getMachineMemOperand(MachinePointerInfo(),
16571                          MachineMemOperand::MOStore, SVT.getStoreSize(),
16572                          SVT.getScalarSizeInBits()/8);
16573
16574   return DAG.getMaskedStore(Chain, dl, DataToTruncate, Addr,
16575                             VMask, SVT, MMO, true);
16576 }
16577
16578 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
16579                                       SelectionDAG &DAG) {
16580   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
16581
16582   const IntrinsicData* IntrData = getIntrinsicWithChain(IntNo);
16583   if (!IntrData) {
16584     if (IntNo == llvm::Intrinsic::x86_seh_restoreframe)
16585       return LowerSEHRESTOREFRAME(Op, Subtarget, DAG);
16586     return SDValue();
16587   }
16588
16589   SDLoc dl(Op);
16590   switch(IntrData->Type) {
16591   default:
16592     llvm_unreachable("Unknown Intrinsic Type");
16593     break;
16594   case RDSEED:
16595   case RDRAND: {
16596     // Emit the node with the right value type.
16597     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
16598     SDValue Result = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(0));
16599
16600     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
16601     // Otherwise return the value from Rand, which is always 0, casted to i32.
16602     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
16603                       DAG.getConstant(1, dl, Op->getValueType(1)),
16604                       DAG.getConstant(X86::COND_B, dl, MVT::i32),
16605                       SDValue(Result.getNode(), 1) };
16606     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
16607                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
16608                                   Ops);
16609
16610     // Return { result, isValid, chain }.
16611     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
16612                        SDValue(Result.getNode(), 2));
16613   }
16614   case GATHER: {
16615   //gather(v1, mask, index, base, scale);
16616     SDValue Chain = Op.getOperand(0);
16617     SDValue Src   = Op.getOperand(2);
16618     SDValue Base  = Op.getOperand(3);
16619     SDValue Index = Op.getOperand(4);
16620     SDValue Mask  = Op.getOperand(5);
16621     SDValue Scale = Op.getOperand(6);
16622     return getGatherNode(IntrData->Opc0, Op, DAG, Src, Mask, Base, Index, Scale,
16623                          Chain, Subtarget);
16624   }
16625   case SCATTER: {
16626   //scatter(base, mask, index, v1, scale);
16627     SDValue Chain = Op.getOperand(0);
16628     SDValue Base  = Op.getOperand(2);
16629     SDValue Mask  = Op.getOperand(3);
16630     SDValue Index = Op.getOperand(4);
16631     SDValue Src   = Op.getOperand(5);
16632     SDValue Scale = Op.getOperand(6);
16633     return getScatterNode(IntrData->Opc0, Op, DAG, Src, Mask, Base, Index,
16634                           Scale, Chain);
16635   }
16636   case PREFETCH: {
16637     SDValue Hint = Op.getOperand(6);
16638     unsigned HintVal = cast<ConstantSDNode>(Hint)->getZExtValue();
16639     assert(HintVal < 2 && "Wrong prefetch hint in intrinsic: should be 0 or 1");
16640     unsigned Opcode = (HintVal ? IntrData->Opc1 : IntrData->Opc0);
16641     SDValue Chain = Op.getOperand(0);
16642     SDValue Mask  = Op.getOperand(2);
16643     SDValue Index = Op.getOperand(3);
16644     SDValue Base  = Op.getOperand(4);
16645     SDValue Scale = Op.getOperand(5);
16646     return getPrefetchNode(Opcode, Op, DAG, Mask, Base, Index, Scale, Chain);
16647   }
16648   // Read Time Stamp Counter (RDTSC) and Processor ID (RDTSCP).
16649   case RDTSC: {
16650     SmallVector<SDValue, 2> Results;
16651     getReadTimeStampCounter(Op.getNode(), dl, IntrData->Opc0, DAG, Subtarget,
16652                             Results);
16653     return DAG.getMergeValues(Results, dl);
16654   }
16655   // Read Performance Monitoring Counters.
16656   case RDPMC: {
16657     SmallVector<SDValue, 2> Results;
16658     getReadPerformanceCounter(Op.getNode(), dl, DAG, Subtarget, Results);
16659     return DAG.getMergeValues(Results, dl);
16660   }
16661   // XTEST intrinsics.
16662   case XTEST: {
16663     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
16664     SDValue InTrans = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(0));
16665     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16666                                 DAG.getConstant(X86::COND_NE, dl, MVT::i8),
16667                                 InTrans);
16668     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
16669     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
16670                        Ret, SDValue(InTrans.getNode(), 1));
16671   }
16672   // ADC/ADCX/SBB
16673   case ADX: {
16674     SmallVector<SDValue, 2> Results;
16675     SDVTList CFVTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
16676     SDVTList VTs = DAG.getVTList(Op.getOperand(3)->getValueType(0), MVT::Other);
16677     SDValue GenCF = DAG.getNode(X86ISD::ADD, dl, CFVTs, Op.getOperand(2),
16678                                 DAG.getConstant(-1, dl, MVT::i8));
16679     SDValue Res = DAG.getNode(IntrData->Opc0, dl, VTs, Op.getOperand(3),
16680                               Op.getOperand(4), GenCF.getValue(1));
16681     SDValue Store = DAG.getStore(Op.getOperand(0), dl, Res.getValue(0),
16682                                  Op.getOperand(5), MachinePointerInfo(),
16683                                  false, false, 0);
16684     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
16685                                 DAG.getConstant(X86::COND_B, dl, MVT::i8),
16686                                 Res.getValue(1));
16687     Results.push_back(SetCC);
16688     Results.push_back(Store);
16689     return DAG.getMergeValues(Results, dl);
16690   }
16691   case COMPRESS_TO_MEM: {
16692     SDLoc dl(Op);
16693     SDValue Mask = Op.getOperand(4);
16694     SDValue DataToCompress = Op.getOperand(3);
16695     SDValue Addr = Op.getOperand(2);
16696     SDValue Chain = Op.getOperand(0);
16697
16698     EVT VT = DataToCompress.getValueType();
16699     if (isAllOnes(Mask)) // return just a store
16700       return DAG.getStore(Chain, dl, DataToCompress, Addr,
16701                           MachinePointerInfo(), false, false,
16702                           VT.getScalarSizeInBits()/8);
16703
16704     SDValue Compressed =
16705       getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, DataToCompress),
16706                            Mask, DAG.getUNDEF(VT), Subtarget, DAG);
16707     return DAG.getStore(Chain, dl, Compressed, Addr,
16708                         MachinePointerInfo(), false, false,
16709                         VT.getScalarSizeInBits()/8);
16710   }
16711   case TRUNCATE_TO_MEM_VI8:
16712     return LowerINTRINSIC_TRUNCATE_TO_MEM(Op, DAG, MVT::i8);
16713   case TRUNCATE_TO_MEM_VI16:
16714     return LowerINTRINSIC_TRUNCATE_TO_MEM(Op, DAG, MVT::i16);
16715   case TRUNCATE_TO_MEM_VI32:
16716     return LowerINTRINSIC_TRUNCATE_TO_MEM(Op, DAG, MVT::i32);
16717   case EXPAND_FROM_MEM: {
16718     SDLoc dl(Op);
16719     SDValue Mask = Op.getOperand(4);
16720     SDValue PassThru = Op.getOperand(3);
16721     SDValue Addr = Op.getOperand(2);
16722     SDValue Chain = Op.getOperand(0);
16723     EVT VT = Op.getValueType();
16724
16725     if (isAllOnes(Mask)) // return just a load
16726       return DAG.getLoad(VT, dl, Chain, Addr, MachinePointerInfo(), false, false,
16727                          false, VT.getScalarSizeInBits()/8);
16728
16729     SDValue DataToExpand = DAG.getLoad(VT, dl, Chain, Addr, MachinePointerInfo(),
16730                                        false, false, false,
16731                                        VT.getScalarSizeInBits()/8);
16732
16733     SDValue Results[] = {
16734       getVectorMaskingNode(DAG.getNode(IntrData->Opc0, dl, VT, DataToExpand),
16735                            Mask, PassThru, Subtarget, DAG), Chain};
16736     return DAG.getMergeValues(Results, dl);
16737   }
16738   }
16739 }
16740
16741 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
16742                                            SelectionDAG &DAG) const {
16743   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
16744   MFI->setReturnAddressIsTaken(true);
16745
16746   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
16747     return SDValue();
16748
16749   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16750   SDLoc dl(Op);
16751   EVT PtrVT = getPointerTy(DAG.getDataLayout());
16752
16753   if (Depth > 0) {
16754     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
16755     const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16756     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), dl, PtrVT);
16757     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
16758                        DAG.getNode(ISD::ADD, dl, PtrVT,
16759                                    FrameAddr, Offset),
16760                        MachinePointerInfo(), false, false, false, 0);
16761   }
16762
16763   // Just load the return address.
16764   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
16765   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
16766                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
16767 }
16768
16769 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
16770   MachineFunction &MF = DAG.getMachineFunction();
16771   MachineFrameInfo *MFI = MF.getFrameInfo();
16772   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
16773   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16774   EVT VT = Op.getValueType();
16775
16776   MFI->setFrameAddressIsTaken(true);
16777
16778   if (MF.getTarget().getMCAsmInfo()->usesWindowsCFI()) {
16779     // Depth > 0 makes no sense on targets which use Windows unwind codes.  It
16780     // is not possible to crawl up the stack without looking at the unwind codes
16781     // simultaneously.
16782     int FrameAddrIndex = FuncInfo->getFAIndex();
16783     if (!FrameAddrIndex) {
16784       // Set up a frame object for the return address.
16785       unsigned SlotSize = RegInfo->getSlotSize();
16786       FrameAddrIndex = MF.getFrameInfo()->CreateFixedObject(
16787           SlotSize, /*Offset=*/0, /*IsImmutable=*/false);
16788       FuncInfo->setFAIndex(FrameAddrIndex);
16789     }
16790     return DAG.getFrameIndex(FrameAddrIndex, VT);
16791   }
16792
16793   unsigned FrameReg =
16794       RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
16795   SDLoc dl(Op);  // FIXME probably not meaningful
16796   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16797   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
16798           (FrameReg == X86::EBP && VT == MVT::i32)) &&
16799          "Invalid Frame Register!");
16800   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
16801   while (Depth--)
16802     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
16803                             MachinePointerInfo(),
16804                             false, false, false, 0);
16805   return FrameAddr;
16806 }
16807
16808 // FIXME? Maybe this could be a TableGen attribute on some registers and
16809 // this table could be generated automatically from RegInfo.
16810 unsigned X86TargetLowering::getRegisterByName(const char* RegName, EVT VT,
16811                                               SelectionDAG &DAG) const {
16812   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
16813   const MachineFunction &MF = DAG.getMachineFunction();
16814
16815   unsigned Reg = StringSwitch<unsigned>(RegName)
16816                        .Case("esp", X86::ESP)
16817                        .Case("rsp", X86::RSP)
16818                        .Case("ebp", X86::EBP)
16819                        .Case("rbp", X86::RBP)
16820                        .Default(0);
16821
16822   if (Reg == X86::EBP || Reg == X86::RBP) {
16823     if (!TFI.hasFP(MF))
16824       report_fatal_error("register " + StringRef(RegName) +
16825                          " is allocatable: function has no frame pointer");
16826 #ifndef NDEBUG
16827     else {
16828       const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16829       unsigned FrameReg =
16830           RegInfo->getPtrSizedFrameRegister(DAG.getMachineFunction());
16831       assert((FrameReg == X86::EBP || FrameReg == X86::RBP) &&
16832              "Invalid Frame Register!");
16833     }
16834 #endif
16835   }
16836
16837   if (Reg)
16838     return Reg;
16839
16840   report_fatal_error("Invalid register name global variable");
16841 }
16842
16843 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
16844                                                      SelectionDAG &DAG) const {
16845   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16846   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize(), SDLoc(Op));
16847 }
16848
16849 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
16850   SDValue Chain     = Op.getOperand(0);
16851   SDValue Offset    = Op.getOperand(1);
16852   SDValue Handler   = Op.getOperand(2);
16853   SDLoc dl      (Op);
16854
16855   EVT PtrVT = getPointerTy(DAG.getDataLayout());
16856   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
16857   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
16858   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
16859           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
16860          "Invalid Frame Register!");
16861   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
16862   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
16863
16864   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
16865                                  DAG.getIntPtrConstant(RegInfo->getSlotSize(),
16866                                                        dl));
16867   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
16868   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
16869                        false, false, 0);
16870   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
16871
16872   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
16873                      DAG.getRegister(StoreAddrReg, PtrVT));
16874 }
16875
16876 SDValue X86TargetLowering::LowerCATCHRET(SDValue Op, SelectionDAG &DAG) const {
16877   SDValue Chain = Op.getOperand(0);
16878   SDValue Dest = Op.getOperand(1);
16879   SDLoc DL(Op);
16880
16881   MVT PtrVT = getPointerTy(DAG.getDataLayout());
16882   unsigned ReturnReg = (PtrVT == MVT::i64 ? X86::RAX : X86::EAX);
16883
16884   // Load the address of the destination block.
16885   MachineBasicBlock *DestMBB = cast<BasicBlockSDNode>(Dest)->getBasicBlock();
16886   SDValue BlockPtr = DAG.getMCSymbol(DestMBB->getSymbol(), PtrVT);
16887   unsigned WrapperKind =
16888       Subtarget->isPICStyleRIPRel() ? X86ISD::WrapperRIP : X86ISD::Wrapper;
16889   SDValue WrappedPtr = DAG.getNode(WrapperKind, DL, PtrVT, BlockPtr);
16890   Chain = DAG.getCopyToReg(Chain, DL, ReturnReg, WrappedPtr);
16891   return DAG.getNode(X86ISD::CATCHRET, DL, MVT::Other, Chain,
16892                      DAG.getRegister(ReturnReg, PtrVT));
16893 }
16894
16895 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
16896                                                SelectionDAG &DAG) const {
16897   SDLoc DL(Op);
16898   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
16899                      DAG.getVTList(MVT::i32, MVT::Other),
16900                      Op.getOperand(0), Op.getOperand(1));
16901 }
16902
16903 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
16904                                                 SelectionDAG &DAG) const {
16905   SDLoc DL(Op);
16906   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
16907                      Op.getOperand(0), Op.getOperand(1));
16908 }
16909
16910 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
16911   return Op.getOperand(0);
16912 }
16913
16914 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
16915                                                 SelectionDAG &DAG) const {
16916   SDValue Root = Op.getOperand(0);
16917   SDValue Trmp = Op.getOperand(1); // trampoline
16918   SDValue FPtr = Op.getOperand(2); // nested function
16919   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
16920   SDLoc dl (Op);
16921
16922   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
16923   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
16924
16925   if (Subtarget->is64Bit()) {
16926     SDValue OutChains[6];
16927
16928     // Large code-model.
16929     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
16930     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
16931
16932     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
16933     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
16934
16935     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
16936
16937     // Load the pointer to the nested function into R11.
16938     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
16939     SDValue Addr = Trmp;
16940     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
16941                                 Addr, MachinePointerInfo(TrmpAddr),
16942                                 false, false, 0);
16943
16944     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16945                        DAG.getConstant(2, dl, MVT::i64));
16946     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
16947                                 MachinePointerInfo(TrmpAddr, 2),
16948                                 false, false, 2);
16949
16950     // Load the 'nest' parameter value into R10.
16951     // R10 is specified in X86CallingConv.td
16952     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
16953     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16954                        DAG.getConstant(10, dl, MVT::i64));
16955     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
16956                                 Addr, MachinePointerInfo(TrmpAddr, 10),
16957                                 false, false, 0);
16958
16959     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16960                        DAG.getConstant(12, dl, MVT::i64));
16961     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
16962                                 MachinePointerInfo(TrmpAddr, 12),
16963                                 false, false, 2);
16964
16965     // Jump to the nested function.
16966     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
16967     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16968                        DAG.getConstant(20, dl, MVT::i64));
16969     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
16970                                 Addr, MachinePointerInfo(TrmpAddr, 20),
16971                                 false, false, 0);
16972
16973     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
16974     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
16975                        DAG.getConstant(22, dl, MVT::i64));
16976     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, dl, MVT::i8),
16977                                 Addr, MachinePointerInfo(TrmpAddr, 22),
16978                                 false, false, 0);
16979
16980     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
16981   } else {
16982     const Function *Func =
16983       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
16984     CallingConv::ID CC = Func->getCallingConv();
16985     unsigned NestReg;
16986
16987     switch (CC) {
16988     default:
16989       llvm_unreachable("Unsupported calling convention");
16990     case CallingConv::C:
16991     case CallingConv::X86_StdCall: {
16992       // Pass 'nest' parameter in ECX.
16993       // Must be kept in sync with X86CallingConv.td
16994       NestReg = X86::ECX;
16995
16996       // Check that ECX wasn't needed by an 'inreg' parameter.
16997       FunctionType *FTy = Func->getFunctionType();
16998       const AttributeSet &Attrs = Func->getAttributes();
16999
17000       if (!Attrs.isEmpty() && !Func->isVarArg()) {
17001         unsigned InRegCount = 0;
17002         unsigned Idx = 1;
17003
17004         for (FunctionType::param_iterator I = FTy->param_begin(),
17005              E = FTy->param_end(); I != E; ++I, ++Idx)
17006           if (Attrs.hasAttribute(Idx, Attribute::InReg)) {
17007             auto &DL = DAG.getDataLayout();
17008             // FIXME: should only count parameters that are lowered to integers.
17009             InRegCount += (DL.getTypeSizeInBits(*I) + 31) / 32;
17010           }
17011
17012         if (InRegCount > 2) {
17013           report_fatal_error("Nest register in use - reduce number of inreg"
17014                              " parameters!");
17015         }
17016       }
17017       break;
17018     }
17019     case CallingConv::X86_FastCall:
17020     case CallingConv::X86_ThisCall:
17021     case CallingConv::Fast:
17022       // Pass 'nest' parameter in EAX.
17023       // Must be kept in sync with X86CallingConv.td
17024       NestReg = X86::EAX;
17025       break;
17026     }
17027
17028     SDValue OutChains[4];
17029     SDValue Addr, Disp;
17030
17031     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17032                        DAG.getConstant(10, dl, MVT::i32));
17033     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
17034
17035     // This is storing the opcode for MOV32ri.
17036     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
17037     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
17038     OutChains[0] = DAG.getStore(Root, dl,
17039                                 DAG.getConstant(MOV32ri|N86Reg, dl, MVT::i8),
17040                                 Trmp, MachinePointerInfo(TrmpAddr),
17041                                 false, false, 0);
17042
17043     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17044                        DAG.getConstant(1, dl, MVT::i32));
17045     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
17046                                 MachinePointerInfo(TrmpAddr, 1),
17047                                 false, false, 1);
17048
17049     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
17050     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17051                        DAG.getConstant(5, dl, MVT::i32));
17052     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, dl, MVT::i8),
17053                                 Addr, MachinePointerInfo(TrmpAddr, 5),
17054                                 false, false, 1);
17055
17056     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
17057                        DAG.getConstant(6, dl, MVT::i32));
17058     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
17059                                 MachinePointerInfo(TrmpAddr, 6),
17060                                 false, false, 1);
17061
17062     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
17063   }
17064 }
17065
17066 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
17067                                             SelectionDAG &DAG) const {
17068   /*
17069    The rounding mode is in bits 11:10 of FPSR, and has the following
17070    settings:
17071      00 Round to nearest
17072      01 Round to -inf
17073      10 Round to +inf
17074      11 Round to 0
17075
17076   FLT_ROUNDS, on the other hand, expects the following:
17077     -1 Undefined
17078      0 Round to 0
17079      1 Round to nearest
17080      2 Round to +inf
17081      3 Round to -inf
17082
17083   To perform the conversion, we do:
17084     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
17085   */
17086
17087   MachineFunction &MF = DAG.getMachineFunction();
17088   const TargetFrameLowering &TFI = *Subtarget->getFrameLowering();
17089   unsigned StackAlignment = TFI.getStackAlignment();
17090   MVT VT = Op.getSimpleValueType();
17091   SDLoc DL(Op);
17092
17093   // Save FP Control Word to stack slot
17094   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
17095   SDValue StackSlot =
17096       DAG.getFrameIndex(SSFI, getPointerTy(DAG.getDataLayout()));
17097
17098   MachineMemOperand *MMO =
17099       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(MF, SSFI),
17100                               MachineMemOperand::MOStore, 2, 2);
17101
17102   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
17103   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
17104                                           DAG.getVTList(MVT::Other),
17105                                           Ops, MVT::i16, MMO);
17106
17107   // Load FP Control Word from stack slot
17108   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
17109                             MachinePointerInfo(), false, false, false, 0);
17110
17111   // Transform as necessary
17112   SDValue CWD1 =
17113     DAG.getNode(ISD::SRL, DL, MVT::i16,
17114                 DAG.getNode(ISD::AND, DL, MVT::i16,
17115                             CWD, DAG.getConstant(0x800, DL, MVT::i16)),
17116                 DAG.getConstant(11, DL, MVT::i8));
17117   SDValue CWD2 =
17118     DAG.getNode(ISD::SRL, DL, MVT::i16,
17119                 DAG.getNode(ISD::AND, DL, MVT::i16,
17120                             CWD, DAG.getConstant(0x400, DL, MVT::i16)),
17121                 DAG.getConstant(9, DL, MVT::i8));
17122
17123   SDValue RetVal =
17124     DAG.getNode(ISD::AND, DL, MVT::i16,
17125                 DAG.getNode(ISD::ADD, DL, MVT::i16,
17126                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
17127                             DAG.getConstant(1, DL, MVT::i16)),
17128                 DAG.getConstant(3, DL, MVT::i16));
17129
17130   return DAG.getNode((VT.getSizeInBits() < 16 ?
17131                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
17132 }
17133
17134 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
17135   MVT VT = Op.getSimpleValueType();
17136   EVT OpVT = VT;
17137   unsigned NumBits = VT.getSizeInBits();
17138   SDLoc dl(Op);
17139
17140   Op = Op.getOperand(0);
17141   if (VT == MVT::i8) {
17142     // Zero extend to i32 since there is not an i8 bsr.
17143     OpVT = MVT::i32;
17144     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
17145   }
17146
17147   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
17148   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
17149   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
17150
17151   // If src is zero (i.e. bsr sets ZF), returns NumBits.
17152   SDValue Ops[] = {
17153     Op,
17154     DAG.getConstant(NumBits + NumBits - 1, dl, OpVT),
17155     DAG.getConstant(X86::COND_E, dl, MVT::i8),
17156     Op.getValue(1)
17157   };
17158   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops);
17159
17160   // Finally xor with NumBits-1.
17161   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op,
17162                    DAG.getConstant(NumBits - 1, dl, OpVT));
17163
17164   if (VT == MVT::i8)
17165     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
17166   return Op;
17167 }
17168
17169 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
17170   MVT VT = Op.getSimpleValueType();
17171   EVT OpVT = VT;
17172   unsigned NumBits = VT.getSizeInBits();
17173   SDLoc dl(Op);
17174
17175   Op = Op.getOperand(0);
17176   if (VT == MVT::i8) {
17177     // Zero extend to i32 since there is not an i8 bsr.
17178     OpVT = MVT::i32;
17179     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
17180   }
17181
17182   // Issue a bsr (scan bits in reverse).
17183   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
17184   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
17185
17186   // And xor with NumBits-1.
17187   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op,
17188                    DAG.getConstant(NumBits - 1, dl, OpVT));
17189
17190   if (VT == MVT::i8)
17191     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
17192   return Op;
17193 }
17194
17195 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
17196   MVT VT = Op.getSimpleValueType();
17197   unsigned NumBits = VT.getSizeInBits();
17198   SDLoc dl(Op);
17199   Op = Op.getOperand(0);
17200
17201   // Issue a bsf (scan bits forward) which also sets EFLAGS.
17202   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
17203   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
17204
17205   // If src is zero (i.e. bsf sets ZF), returns NumBits.
17206   SDValue Ops[] = {
17207     Op,
17208     DAG.getConstant(NumBits, dl, VT),
17209     DAG.getConstant(X86::COND_E, dl, MVT::i8),
17210     Op.getValue(1)
17211   };
17212   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops);
17213 }
17214
17215 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
17216 // ones, and then concatenate the result back.
17217 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
17218   MVT VT = Op.getSimpleValueType();
17219
17220   assert(VT.is256BitVector() && VT.isInteger() &&
17221          "Unsupported value type for operation");
17222
17223   unsigned NumElems = VT.getVectorNumElements();
17224   SDLoc dl(Op);
17225
17226   // Extract the LHS vectors
17227   SDValue LHS = Op.getOperand(0);
17228   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
17229   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
17230
17231   // Extract the RHS vectors
17232   SDValue RHS = Op.getOperand(1);
17233   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
17234   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
17235
17236   MVT EltVT = VT.getVectorElementType();
17237   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
17238
17239   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
17240                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
17241                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
17242 }
17243
17244 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
17245   if (Op.getValueType() == MVT::i1)
17246     return DAG.getNode(ISD::XOR, SDLoc(Op), Op.getValueType(),
17247                        Op.getOperand(0), Op.getOperand(1));
17248   assert(Op.getSimpleValueType().is256BitVector() &&
17249          Op.getSimpleValueType().isInteger() &&
17250          "Only handle AVX 256-bit vector integer operation");
17251   return Lower256IntArith(Op, DAG);
17252 }
17253
17254 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
17255   if (Op.getValueType() == MVT::i1)
17256     return DAG.getNode(ISD::XOR, SDLoc(Op), Op.getValueType(),
17257                        Op.getOperand(0), Op.getOperand(1));
17258   assert(Op.getSimpleValueType().is256BitVector() &&
17259          Op.getSimpleValueType().isInteger() &&
17260          "Only handle AVX 256-bit vector integer operation");
17261   return Lower256IntArith(Op, DAG);
17262 }
17263
17264 static SDValue LowerMINMAX(SDValue Op, SelectionDAG &DAG) {
17265   assert(Op.getSimpleValueType().is256BitVector() &&
17266          Op.getSimpleValueType().isInteger() &&
17267          "Only handle AVX 256-bit vector integer operation");
17268   return Lower256IntArith(Op, DAG);
17269 }
17270
17271 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
17272                         SelectionDAG &DAG) {
17273   SDLoc dl(Op);
17274   MVT VT = Op.getSimpleValueType();
17275
17276   if (VT == MVT::i1)
17277     return DAG.getNode(ISD::AND, dl, VT, Op.getOperand(0), Op.getOperand(1));
17278
17279   // Decompose 256-bit ops into smaller 128-bit ops.
17280   if (VT.is256BitVector() && !Subtarget->hasInt256())
17281     return Lower256IntArith(Op, DAG);
17282
17283   SDValue A = Op.getOperand(0);
17284   SDValue B = Op.getOperand(1);
17285
17286   // Lower v16i8/v32i8 mul as promotion to v8i16/v16i16 vector
17287   // pairs, multiply and truncate.
17288   if (VT == MVT::v16i8 || VT == MVT::v32i8) {
17289     if (Subtarget->hasInt256()) {
17290       if (VT == MVT::v32i8) {
17291         MVT SubVT = MVT::getVectorVT(MVT::i8, VT.getVectorNumElements() / 2);
17292         SDValue Lo = DAG.getIntPtrConstant(0, dl);
17293         SDValue Hi = DAG.getIntPtrConstant(VT.getVectorNumElements() / 2, dl);
17294         SDValue ALo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, A, Lo);
17295         SDValue BLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, B, Lo);
17296         SDValue AHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, A, Hi);
17297         SDValue BHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, SubVT, B, Hi);
17298         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
17299                            DAG.getNode(ISD::MUL, dl, SubVT, ALo, BLo),
17300                            DAG.getNode(ISD::MUL, dl, SubVT, AHi, BHi));
17301       }
17302
17303       MVT ExVT = MVT::getVectorVT(MVT::i16, VT.getVectorNumElements());
17304       return DAG.getNode(
17305           ISD::TRUNCATE, dl, VT,
17306           DAG.getNode(ISD::MUL, dl, ExVT,
17307                       DAG.getNode(ISD::SIGN_EXTEND, dl, ExVT, A),
17308                       DAG.getNode(ISD::SIGN_EXTEND, dl, ExVT, B)));
17309     }
17310
17311     assert(VT == MVT::v16i8 &&
17312            "Pre-AVX2 support only supports v16i8 multiplication");
17313     MVT ExVT = MVT::v8i16;
17314
17315     // Extract the lo parts and sign extend to i16
17316     SDValue ALo, BLo;
17317     if (Subtarget->hasSSE41()) {
17318       ALo = DAG.getNode(X86ISD::VSEXT, dl, ExVT, A);
17319       BLo = DAG.getNode(X86ISD::VSEXT, dl, ExVT, B);
17320     } else {
17321       const int ShufMask[] = {-1, 0, -1, 1, -1, 2, -1, 3,
17322                               -1, 4, -1, 5, -1, 6, -1, 7};
17323       ALo = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
17324       BLo = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
17325       ALo = DAG.getBitcast(ExVT, ALo);
17326       BLo = DAG.getBitcast(ExVT, BLo);
17327       ALo = DAG.getNode(ISD::SRA, dl, ExVT, ALo, DAG.getConstant(8, dl, ExVT));
17328       BLo = DAG.getNode(ISD::SRA, dl, ExVT, BLo, DAG.getConstant(8, dl, ExVT));
17329     }
17330
17331     // Extract the hi parts and sign extend to i16
17332     SDValue AHi, BHi;
17333     if (Subtarget->hasSSE41()) {
17334       const int ShufMask[] = {8,  9,  10, 11, 12, 13, 14, 15,
17335                               -1, -1, -1, -1, -1, -1, -1, -1};
17336       AHi = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
17337       BHi = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
17338       AHi = DAG.getNode(X86ISD::VSEXT, dl, ExVT, AHi);
17339       BHi = DAG.getNode(X86ISD::VSEXT, dl, ExVT, BHi);
17340     } else {
17341       const int ShufMask[] = {-1, 8,  -1, 9,  -1, 10, -1, 11,
17342                               -1, 12, -1, 13, -1, 14, -1, 15};
17343       AHi = DAG.getVectorShuffle(VT, dl, A, A, ShufMask);
17344       BHi = DAG.getVectorShuffle(VT, dl, B, B, ShufMask);
17345       AHi = DAG.getBitcast(ExVT, AHi);
17346       BHi = DAG.getBitcast(ExVT, BHi);
17347       AHi = DAG.getNode(ISD::SRA, dl, ExVT, AHi, DAG.getConstant(8, dl, ExVT));
17348       BHi = DAG.getNode(ISD::SRA, dl, ExVT, BHi, DAG.getConstant(8, dl, ExVT));
17349     }
17350
17351     // Multiply, mask the lower 8bits of the lo/hi results and pack
17352     SDValue RLo = DAG.getNode(ISD::MUL, dl, ExVT, ALo, BLo);
17353     SDValue RHi = DAG.getNode(ISD::MUL, dl, ExVT, AHi, BHi);
17354     RLo = DAG.getNode(ISD::AND, dl, ExVT, RLo, DAG.getConstant(255, dl, ExVT));
17355     RHi = DAG.getNode(ISD::AND, dl, ExVT, RHi, DAG.getConstant(255, dl, ExVT));
17356     return DAG.getNode(X86ISD::PACKUS, dl, VT, RLo, RHi);
17357   }
17358
17359   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
17360   if (VT == MVT::v4i32) {
17361     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
17362            "Should not custom lower when pmuldq is available!");
17363
17364     // Extract the odd parts.
17365     static const int UnpackMask[] = { 1, -1, 3, -1 };
17366     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
17367     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
17368
17369     // Multiply the even parts.
17370     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
17371     // Now multiply odd parts.
17372     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
17373
17374     Evens = DAG.getBitcast(VT, Evens);
17375     Odds = DAG.getBitcast(VT, Odds);
17376
17377     // Merge the two vectors back together with a shuffle. This expands into 2
17378     // shuffles.
17379     static const int ShufMask[] = { 0, 4, 2, 6 };
17380     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
17381   }
17382
17383   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
17384          "Only know how to lower V2I64/V4I64/V8I64 multiply");
17385
17386   //  Ahi = psrlqi(a, 32);
17387   //  Bhi = psrlqi(b, 32);
17388   //
17389   //  AloBlo = pmuludq(a, b);
17390   //  AloBhi = pmuludq(a, Bhi);
17391   //  AhiBlo = pmuludq(Ahi, b);
17392
17393   //  AloBhi = psllqi(AloBhi, 32);
17394   //  AhiBlo = psllqi(AhiBlo, 32);
17395   //  return AloBlo + AloBhi + AhiBlo;
17396
17397   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
17398   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
17399
17400   SDValue AhiBlo = Ahi;
17401   SDValue AloBhi = Bhi;
17402   // Bit cast to 32-bit vectors for MULUDQ
17403   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
17404                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
17405   A = DAG.getBitcast(MulVT, A);
17406   B = DAG.getBitcast(MulVT, B);
17407   Ahi = DAG.getBitcast(MulVT, Ahi);
17408   Bhi = DAG.getBitcast(MulVT, Bhi);
17409
17410   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
17411   // After shifting right const values the result may be all-zero.
17412   if (!ISD::isBuildVectorAllZeros(Ahi.getNode())) {
17413     AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
17414     AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
17415   }
17416   if (!ISD::isBuildVectorAllZeros(Bhi.getNode())) {
17417     AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
17418     AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
17419   }
17420
17421   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
17422   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
17423 }
17424
17425 SDValue X86TargetLowering::LowerWin64_i128OP(SDValue Op, SelectionDAG &DAG) const {
17426   assert(Subtarget->isTargetWin64() && "Unexpected target");
17427   EVT VT = Op.getValueType();
17428   assert(VT.isInteger() && VT.getSizeInBits() == 128 &&
17429          "Unexpected return type for lowering");
17430
17431   RTLIB::Libcall LC;
17432   bool isSigned;
17433   switch (Op->getOpcode()) {
17434   default: llvm_unreachable("Unexpected request for libcall!");
17435   case ISD::SDIV:      isSigned = true;  LC = RTLIB::SDIV_I128;    break;
17436   case ISD::UDIV:      isSigned = false; LC = RTLIB::UDIV_I128;    break;
17437   case ISD::SREM:      isSigned = true;  LC = RTLIB::SREM_I128;    break;
17438   case ISD::UREM:      isSigned = false; LC = RTLIB::UREM_I128;    break;
17439   case ISD::SDIVREM:   isSigned = true;  LC = RTLIB::SDIVREM_I128; break;
17440   case ISD::UDIVREM:   isSigned = false; LC = RTLIB::UDIVREM_I128; break;
17441   }
17442
17443   SDLoc dl(Op);
17444   SDValue InChain = DAG.getEntryNode();
17445
17446   TargetLowering::ArgListTy Args;
17447   TargetLowering::ArgListEntry Entry;
17448   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
17449     EVT ArgVT = Op->getOperand(i).getValueType();
17450     assert(ArgVT.isInteger() && ArgVT.getSizeInBits() == 128 &&
17451            "Unexpected argument type for lowering");
17452     SDValue StackPtr = DAG.CreateStackTemporary(ArgVT, 16);
17453     Entry.Node = StackPtr;
17454     InChain = DAG.getStore(InChain, dl, Op->getOperand(i), StackPtr, MachinePointerInfo(),
17455                            false, false, 16);
17456     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
17457     Entry.Ty = PointerType::get(ArgTy,0);
17458     Entry.isSExt = false;
17459     Entry.isZExt = false;
17460     Args.push_back(Entry);
17461   }
17462
17463   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
17464                                          getPointerTy(DAG.getDataLayout()));
17465
17466   TargetLowering::CallLoweringInfo CLI(DAG);
17467   CLI.setDebugLoc(dl).setChain(InChain)
17468     .setCallee(getLibcallCallingConv(LC),
17469                static_cast<EVT>(MVT::v2i64).getTypeForEVT(*DAG.getContext()),
17470                Callee, std::move(Args), 0)
17471     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
17472
17473   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
17474   return DAG.getBitcast(VT, CallInfo.first);
17475 }
17476
17477 static SDValue LowerMUL_LOHI(SDValue Op, const X86Subtarget *Subtarget,
17478                              SelectionDAG &DAG) {
17479   SDValue Op0 = Op.getOperand(0), Op1 = Op.getOperand(1);
17480   EVT VT = Op0.getValueType();
17481   SDLoc dl(Op);
17482
17483   assert((VT == MVT::v4i32 && Subtarget->hasSSE2()) ||
17484          (VT == MVT::v8i32 && Subtarget->hasInt256()));
17485
17486   // PMULxD operations multiply each even value (starting at 0) of LHS with
17487   // the related value of RHS and produce a widen result.
17488   // E.g., PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
17489   // => <2 x i64> <ae|cg>
17490   //
17491   // In other word, to have all the results, we need to perform two PMULxD:
17492   // 1. one with the even values.
17493   // 2. one with the odd values.
17494   // To achieve #2, with need to place the odd values at an even position.
17495   //
17496   // Place the odd value at an even position (basically, shift all values 1
17497   // step to the left):
17498   const int Mask[] = {1, -1, 3, -1, 5, -1, 7, -1};
17499   // <a|b|c|d> => <b|undef|d|undef>
17500   SDValue Odd0 = DAG.getVectorShuffle(VT, dl, Op0, Op0, Mask);
17501   // <e|f|g|h> => <f|undef|h|undef>
17502   SDValue Odd1 = DAG.getVectorShuffle(VT, dl, Op1, Op1, Mask);
17503
17504   // Emit two multiplies, one for the lower 2 ints and one for the higher 2
17505   // ints.
17506   MVT MulVT = VT == MVT::v4i32 ? MVT::v2i64 : MVT::v4i64;
17507   bool IsSigned = Op->getOpcode() == ISD::SMUL_LOHI;
17508   unsigned Opcode =
17509       (!IsSigned || !Subtarget->hasSSE41()) ? X86ISD::PMULUDQ : X86ISD::PMULDQ;
17510   // PMULUDQ <4 x i32> <a|b|c|d>, <4 x i32> <e|f|g|h>
17511   // => <2 x i64> <ae|cg>
17512   SDValue Mul1 = DAG.getBitcast(VT, DAG.getNode(Opcode, dl, MulVT, Op0, Op1));
17513   // PMULUDQ <4 x i32> <b|undef|d|undef>, <4 x i32> <f|undef|h|undef>
17514   // => <2 x i64> <bf|dh>
17515   SDValue Mul2 = DAG.getBitcast(VT, DAG.getNode(Opcode, dl, MulVT, Odd0, Odd1));
17516
17517   // Shuffle it back into the right order.
17518   SDValue Highs, Lows;
17519   if (VT == MVT::v8i32) {
17520     const int HighMask[] = {1, 9, 3, 11, 5, 13, 7, 15};
17521     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
17522     const int LowMask[] = {0, 8, 2, 10, 4, 12, 6, 14};
17523     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
17524   } else {
17525     const int HighMask[] = {1, 5, 3, 7};
17526     Highs = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, HighMask);
17527     const int LowMask[] = {0, 4, 2, 6};
17528     Lows = DAG.getVectorShuffle(VT, dl, Mul1, Mul2, LowMask);
17529   }
17530
17531   // If we have a signed multiply but no PMULDQ fix up the high parts of a
17532   // unsigned multiply.
17533   if (IsSigned && !Subtarget->hasSSE41()) {
17534     SDValue ShAmt = DAG.getConstant(
17535         31, dl,
17536         DAG.getTargetLoweringInfo().getShiftAmountTy(VT, DAG.getDataLayout()));
17537     SDValue T1 = DAG.getNode(ISD::AND, dl, VT,
17538                              DAG.getNode(ISD::SRA, dl, VT, Op0, ShAmt), Op1);
17539     SDValue T2 = DAG.getNode(ISD::AND, dl, VT,
17540                              DAG.getNode(ISD::SRA, dl, VT, Op1, ShAmt), Op0);
17541
17542     SDValue Fixup = DAG.getNode(ISD::ADD, dl, VT, T1, T2);
17543     Highs = DAG.getNode(ISD::SUB, dl, VT, Highs, Fixup);
17544   }
17545
17546   // The first result of MUL_LOHI is actually the low value, followed by the
17547   // high value.
17548   SDValue Ops[] = {Lows, Highs};
17549   return DAG.getMergeValues(Ops, dl);
17550 }
17551
17552 // Return true if the required (according to Opcode) shift-imm form is natively
17553 // supported by the Subtarget
17554 static bool SupportedVectorShiftWithImm(MVT VT, const X86Subtarget *Subtarget,
17555                                         unsigned Opcode) {
17556   if (VT.getScalarSizeInBits() < 16)
17557     return false;
17558
17559   if (VT.is512BitVector() &&
17560       (VT.getScalarSizeInBits() > 16 || Subtarget->hasBWI()))
17561     return true;
17562
17563   bool LShift = VT.is128BitVector() ||
17564     (VT.is256BitVector() && Subtarget->hasInt256());
17565
17566   bool AShift = LShift && (Subtarget->hasVLX() ||
17567     (VT != MVT::v2i64 && VT != MVT::v4i64));
17568   return (Opcode == ISD::SRA) ? AShift : LShift;
17569 }
17570
17571 // The shift amount is a variable, but it is the same for all vector lanes.
17572 // These instructions are defined together with shift-immediate.
17573 static
17574 bool SupportedVectorShiftWithBaseAmnt(MVT VT, const X86Subtarget *Subtarget,
17575                                       unsigned Opcode) {
17576   return SupportedVectorShiftWithImm(VT, Subtarget, Opcode);
17577 }
17578
17579 // Return true if the required (according to Opcode) variable-shift form is
17580 // natively supported by the Subtarget
17581 static bool SupportedVectorVarShift(MVT VT, const X86Subtarget *Subtarget,
17582                                     unsigned Opcode) {
17583
17584   if (!Subtarget->hasInt256() || VT.getScalarSizeInBits() < 16)
17585     return false;
17586
17587   // vXi16 supported only on AVX-512, BWI
17588   if (VT.getScalarSizeInBits() == 16 && !Subtarget->hasBWI())
17589     return false;
17590
17591   if (VT.is512BitVector() || Subtarget->hasVLX())
17592     return true;
17593
17594   bool LShift = VT.is128BitVector() || VT.is256BitVector();
17595   bool AShift = LShift &&  VT != MVT::v2i64 && VT != MVT::v4i64;
17596   return (Opcode == ISD::SRA) ? AShift : LShift;
17597 }
17598
17599 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
17600                                          const X86Subtarget *Subtarget) {
17601   MVT VT = Op.getSimpleValueType();
17602   SDLoc dl(Op);
17603   SDValue R = Op.getOperand(0);
17604   SDValue Amt = Op.getOperand(1);
17605
17606   unsigned X86Opc = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHLI :
17607     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRLI : X86ISD::VSRAI;
17608
17609   auto ArithmeticShiftRight64 = [&](uint64_t ShiftAmt) {
17610     assert((VT == MVT::v2i64 || VT == MVT::v4i64) && "Unexpected SRA type");
17611     MVT ExVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() * 2);
17612     SDValue Ex = DAG.getBitcast(ExVT, R);
17613
17614     if (ShiftAmt >= 32) {
17615       // Splat sign to upper i32 dst, and SRA upper i32 src to lower i32.
17616       SDValue Upper =
17617           getTargetVShiftByConstNode(X86ISD::VSRAI, dl, ExVT, Ex, 31, DAG);
17618       SDValue Lower = getTargetVShiftByConstNode(X86ISD::VSRAI, dl, ExVT, Ex,
17619                                                  ShiftAmt - 32, DAG);
17620       if (VT == MVT::v2i64)
17621         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower, {5, 1, 7, 3});
17622       if (VT == MVT::v4i64)
17623         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower,
17624                                   {9, 1, 11, 3, 13, 5, 15, 7});
17625     } else {
17626       // SRA upper i32, SHL whole i64 and select lower i32.
17627       SDValue Upper = getTargetVShiftByConstNode(X86ISD::VSRAI, dl, ExVT, Ex,
17628                                                  ShiftAmt, DAG);
17629       SDValue Lower =
17630           getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt, DAG);
17631       Lower = DAG.getBitcast(ExVT, Lower);
17632       if (VT == MVT::v2i64)
17633         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower, {4, 1, 6, 3});
17634       if (VT == MVT::v4i64)
17635         Ex = DAG.getVectorShuffle(ExVT, dl, Upper, Lower,
17636                                   {8, 1, 10, 3, 12, 5, 14, 7});
17637     }
17638     return DAG.getBitcast(VT, Ex);
17639   };
17640
17641   // Optimize shl/srl/sra with constant shift amount.
17642   if (auto *BVAmt = dyn_cast<BuildVectorSDNode>(Amt)) {
17643     if (auto *ShiftConst = BVAmt->getConstantSplatNode()) {
17644       uint64_t ShiftAmt = ShiftConst->getZExtValue();
17645
17646       if (SupportedVectorShiftWithImm(VT, Subtarget, Op.getOpcode()))
17647         return getTargetVShiftByConstNode(X86Opc, dl, VT, R, ShiftAmt, DAG);
17648
17649       // i64 SRA needs to be performed as partial shifts.
17650       if ((VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
17651           Op.getOpcode() == ISD::SRA)
17652         return ArithmeticShiftRight64(ShiftAmt);
17653
17654       if (VT == MVT::v16i8 || (Subtarget->hasInt256() && VT == MVT::v32i8)) {
17655         unsigned NumElts = VT.getVectorNumElements();
17656         MVT ShiftVT = MVT::getVectorVT(MVT::i16, NumElts / 2);
17657
17658         if (Op.getOpcode() == ISD::SHL) {
17659           // Simple i8 add case
17660           if (ShiftAmt == 1)
17661             return DAG.getNode(ISD::ADD, dl, VT, R, R);
17662
17663           // Make a large shift.
17664           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, ShiftVT,
17665                                                    R, ShiftAmt, DAG);
17666           SHL = DAG.getBitcast(VT, SHL);
17667           // Zero out the rightmost bits.
17668           SmallVector<SDValue, 32> V(
17669               NumElts, DAG.getConstant(uint8_t(-1U << ShiftAmt), dl, MVT::i8));
17670           return DAG.getNode(ISD::AND, dl, VT, SHL,
17671                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
17672         }
17673         if (Op.getOpcode() == ISD::SRL) {
17674           // Make a large shift.
17675           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, ShiftVT,
17676                                                    R, ShiftAmt, DAG);
17677           SRL = DAG.getBitcast(VT, SRL);
17678           // Zero out the leftmost bits.
17679           SmallVector<SDValue, 32> V(
17680               NumElts, DAG.getConstant(uint8_t(-1U) >> ShiftAmt, dl, MVT::i8));
17681           return DAG.getNode(ISD::AND, dl, VT, SRL,
17682                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V));
17683         }
17684         if (Op.getOpcode() == ISD::SRA) {
17685           if (ShiftAmt == 7) {
17686             // ashr(R, 7)  === cmp_slt(R, 0)
17687             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
17688             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
17689           }
17690
17691           // ashr(R, Amt) === sub(xor(lshr(R, Amt), Mask), Mask)
17692           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
17693           SmallVector<SDValue, 32> V(NumElts,
17694                                      DAG.getConstant(128 >> ShiftAmt, dl,
17695                                                      MVT::i8));
17696           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, V);
17697           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
17698           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
17699           return Res;
17700         }
17701         llvm_unreachable("Unknown shift opcode.");
17702       }
17703     }
17704   }
17705
17706   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
17707   if (!Subtarget->is64Bit() &&
17708       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64))) {
17709
17710     // Peek through any splat that was introduced for i64 shift vectorization.
17711     int SplatIndex = -1;
17712     if (ShuffleVectorSDNode *SVN = dyn_cast<ShuffleVectorSDNode>(Amt.getNode()))
17713       if (SVN->isSplat()) {
17714         SplatIndex = SVN->getSplatIndex();
17715         Amt = Amt.getOperand(0);
17716         assert(SplatIndex < (int)VT.getVectorNumElements() &&
17717                "Splat shuffle referencing second operand");
17718       }
17719
17720     if (Amt.getOpcode() != ISD::BITCAST ||
17721         Amt.getOperand(0).getOpcode() != ISD::BUILD_VECTOR)
17722       return SDValue();
17723
17724     Amt = Amt.getOperand(0);
17725     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
17726                      VT.getVectorNumElements();
17727     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
17728     uint64_t ShiftAmt = 0;
17729     unsigned BaseOp = (SplatIndex < 0 ? 0 : SplatIndex * Ratio);
17730     for (unsigned i = 0; i != Ratio; ++i) {
17731       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i + BaseOp));
17732       if (!C)
17733         return SDValue();
17734       // 6 == Log2(64)
17735       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
17736     }
17737
17738     // Check remaining shift amounts (if not a splat).
17739     if (SplatIndex < 0) {
17740       for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
17741         uint64_t ShAmt = 0;
17742         for (unsigned j = 0; j != Ratio; ++j) {
17743           ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
17744           if (!C)
17745             return SDValue();
17746           // 6 == Log2(64)
17747           ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
17748         }
17749         if (ShAmt != ShiftAmt)
17750           return SDValue();
17751       }
17752     }
17753
17754     if (SupportedVectorShiftWithImm(VT, Subtarget, Op.getOpcode()))
17755       return getTargetVShiftByConstNode(X86Opc, dl, VT, R, ShiftAmt, DAG);
17756
17757     if (Op.getOpcode() == ISD::SRA)
17758       return ArithmeticShiftRight64(ShiftAmt);
17759   }
17760
17761   return SDValue();
17762 }
17763
17764 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
17765                                         const X86Subtarget* Subtarget) {
17766   MVT VT = Op.getSimpleValueType();
17767   SDLoc dl(Op);
17768   SDValue R = Op.getOperand(0);
17769   SDValue Amt = Op.getOperand(1);
17770
17771   unsigned X86OpcI = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHLI :
17772     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRLI : X86ISD::VSRAI;
17773
17774   unsigned X86OpcV = (Op.getOpcode() == ISD::SHL) ? X86ISD::VSHL :
17775     (Op.getOpcode() == ISD::SRL) ? X86ISD::VSRL : X86ISD::VSRA;
17776
17777   if (SupportedVectorShiftWithBaseAmnt(VT, Subtarget, Op.getOpcode())) {
17778     SDValue BaseShAmt;
17779     EVT EltVT = VT.getVectorElementType();
17780
17781     if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(Amt)) {
17782       // Check if this build_vector node is doing a splat.
17783       // If so, then set BaseShAmt equal to the splat value.
17784       BaseShAmt = BV->getSplatValue();
17785       if (BaseShAmt && BaseShAmt.getOpcode() == ISD::UNDEF)
17786         BaseShAmt = SDValue();
17787     } else {
17788       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
17789         Amt = Amt.getOperand(0);
17790
17791       ShuffleVectorSDNode *SVN = dyn_cast<ShuffleVectorSDNode>(Amt);
17792       if (SVN && SVN->isSplat()) {
17793         unsigned SplatIdx = (unsigned)SVN->getSplatIndex();
17794         SDValue InVec = Amt.getOperand(0);
17795         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
17796           assert((SplatIdx < InVec.getValueType().getVectorNumElements()) &&
17797                  "Unexpected shuffle index found!");
17798           BaseShAmt = InVec.getOperand(SplatIdx);
17799         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
17800            if (ConstantSDNode *C =
17801                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
17802              if (C->getZExtValue() == SplatIdx)
17803                BaseShAmt = InVec.getOperand(1);
17804            }
17805         }
17806
17807         if (!BaseShAmt)
17808           // Avoid introducing an extract element from a shuffle.
17809           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, InVec,
17810                                   DAG.getIntPtrConstant(SplatIdx, dl));
17811       }
17812     }
17813
17814     if (BaseShAmt.getNode()) {
17815       assert(EltVT.bitsLE(MVT::i64) && "Unexpected element type!");
17816       if (EltVT != MVT::i64 && EltVT.bitsGT(MVT::i32))
17817         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, BaseShAmt);
17818       else if (EltVT.bitsLT(MVT::i32))
17819         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
17820
17821       return getTargetVShiftNode(X86OpcI, dl, VT, R, BaseShAmt, DAG);
17822     }
17823   }
17824
17825   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
17826   if (!Subtarget->is64Bit() && VT == MVT::v2i64  &&
17827       Amt.getOpcode() == ISD::BITCAST &&
17828       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
17829     Amt = Amt.getOperand(0);
17830     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
17831                      VT.getVectorNumElements();
17832     std::vector<SDValue> Vals(Ratio);
17833     for (unsigned i = 0; i != Ratio; ++i)
17834       Vals[i] = Amt.getOperand(i);
17835     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
17836       for (unsigned j = 0; j != Ratio; ++j)
17837         if (Vals[j] != Amt.getOperand(i + j))
17838           return SDValue();
17839     }
17840
17841     if (SupportedVectorShiftWithBaseAmnt(VT, Subtarget, Op.getOpcode()))
17842       return DAG.getNode(X86OpcV, dl, VT, R, Op.getOperand(1));
17843   }
17844   return SDValue();
17845 }
17846
17847 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
17848                           SelectionDAG &DAG) {
17849   MVT VT = Op.getSimpleValueType();
17850   SDLoc dl(Op);
17851   SDValue R = Op.getOperand(0);
17852   SDValue Amt = Op.getOperand(1);
17853
17854   assert(VT.isVector() && "Custom lowering only for vector shifts!");
17855   assert(Subtarget->hasSSE2() && "Only custom lower when we have SSE2!");
17856
17857   if (SDValue V = LowerScalarImmediateShift(Op, DAG, Subtarget))
17858     return V;
17859
17860   if (SDValue V = LowerScalarVariableShift(Op, DAG, Subtarget))
17861       return V;
17862
17863   if (SupportedVectorVarShift(VT, Subtarget, Op.getOpcode()))
17864     return Op;
17865
17866   // 2i64 vector logical shifts can efficiently avoid scalarization - do the
17867   // shifts per-lane and then shuffle the partial results back together.
17868   if (VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) {
17869     // Splat the shift amounts so the scalar shifts above will catch it.
17870     SDValue Amt0 = DAG.getVectorShuffle(VT, dl, Amt, Amt, {0, 0});
17871     SDValue Amt1 = DAG.getVectorShuffle(VT, dl, Amt, Amt, {1, 1});
17872     SDValue R0 = DAG.getNode(Op->getOpcode(), dl, VT, R, Amt0);
17873     SDValue R1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Amt1);
17874     return DAG.getVectorShuffle(VT, dl, R0, R1, {0, 3});
17875   }
17876
17877   // i64 vector arithmetic shift can be emulated with the transform:
17878   // M = lshr(SIGN_BIT, Amt)
17879   // ashr(R, Amt) === sub(xor(lshr(R, Amt), M), M)
17880   if ((VT == MVT::v2i64 || (VT == MVT::v4i64 && Subtarget->hasInt256())) &&
17881       Op.getOpcode() == ISD::SRA) {
17882     SDValue S = DAG.getConstant(APInt::getSignBit(64), dl, VT);
17883     SDValue M = DAG.getNode(ISD::SRL, dl, VT, S, Amt);
17884     R = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
17885     R = DAG.getNode(ISD::XOR, dl, VT, R, M);
17886     R = DAG.getNode(ISD::SUB, dl, VT, R, M);
17887     return R;
17888   }
17889
17890   // If possible, lower this packed shift into a vector multiply instead of
17891   // expanding it into a sequence of scalar shifts.
17892   // Do this only if the vector shift count is a constant build_vector.
17893   if (Op.getOpcode() == ISD::SHL &&
17894       (VT == MVT::v8i16 || VT == MVT::v4i32 ||
17895        (Subtarget->hasInt256() && VT == MVT::v16i16)) &&
17896       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
17897     SmallVector<SDValue, 8> Elts;
17898     EVT SVT = VT.getScalarType();
17899     unsigned SVTBits = SVT.getSizeInBits();
17900     const APInt &One = APInt(SVTBits, 1);
17901     unsigned NumElems = VT.getVectorNumElements();
17902
17903     for (unsigned i=0; i !=NumElems; ++i) {
17904       SDValue Op = Amt->getOperand(i);
17905       if (Op->getOpcode() == ISD::UNDEF) {
17906         Elts.push_back(Op);
17907         continue;
17908       }
17909
17910       ConstantSDNode *ND = cast<ConstantSDNode>(Op);
17911       const APInt &C = APInt(SVTBits, ND->getAPIntValue().getZExtValue());
17912       uint64_t ShAmt = C.getZExtValue();
17913       if (ShAmt >= SVTBits) {
17914         Elts.push_back(DAG.getUNDEF(SVT));
17915         continue;
17916       }
17917       Elts.push_back(DAG.getConstant(One.shl(ShAmt), dl, SVT));
17918     }
17919     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Elts);
17920     return DAG.getNode(ISD::MUL, dl, VT, R, BV);
17921   }
17922
17923   // Lower SHL with variable shift amount.
17924   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
17925     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, dl, VT));
17926
17927     Op = DAG.getNode(ISD::ADD, dl, VT, Op,
17928                      DAG.getConstant(0x3f800000U, dl, VT));
17929     Op = DAG.getBitcast(MVT::v4f32, Op);
17930     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
17931     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
17932   }
17933
17934   // If possible, lower this shift as a sequence of two shifts by
17935   // constant plus a MOVSS/MOVSD instead of scalarizing it.
17936   // Example:
17937   //   (v4i32 (srl A, (build_vector < X, Y, Y, Y>)))
17938   //
17939   // Could be rewritten as:
17940   //   (v4i32 (MOVSS (srl A, <Y,Y,Y,Y>), (srl A, <X,X,X,X>)))
17941   //
17942   // The advantage is that the two shifts from the example would be
17943   // lowered as X86ISD::VSRLI nodes. This would be cheaper than scalarizing
17944   // the vector shift into four scalar shifts plus four pairs of vector
17945   // insert/extract.
17946   if ((VT == MVT::v8i16 || VT == MVT::v4i32) &&
17947       ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
17948     unsigned TargetOpcode = X86ISD::MOVSS;
17949     bool CanBeSimplified;
17950     // The splat value for the first packed shift (the 'X' from the example).
17951     SDValue Amt1 = Amt->getOperand(0);
17952     // The splat value for the second packed shift (the 'Y' from the example).
17953     SDValue Amt2 = (VT == MVT::v4i32) ? Amt->getOperand(1) :
17954                                         Amt->getOperand(2);
17955
17956     // See if it is possible to replace this node with a sequence of
17957     // two shifts followed by a MOVSS/MOVSD
17958     if (VT == MVT::v4i32) {
17959       // Check if it is legal to use a MOVSS.
17960       CanBeSimplified = Amt2 == Amt->getOperand(2) &&
17961                         Amt2 == Amt->getOperand(3);
17962       if (!CanBeSimplified) {
17963         // Otherwise, check if we can still simplify this node using a MOVSD.
17964         CanBeSimplified = Amt1 == Amt->getOperand(1) &&
17965                           Amt->getOperand(2) == Amt->getOperand(3);
17966         TargetOpcode = X86ISD::MOVSD;
17967         Amt2 = Amt->getOperand(2);
17968       }
17969     } else {
17970       // Do similar checks for the case where the machine value type
17971       // is MVT::v8i16.
17972       CanBeSimplified = Amt1 == Amt->getOperand(1);
17973       for (unsigned i=3; i != 8 && CanBeSimplified; ++i)
17974         CanBeSimplified = Amt2 == Amt->getOperand(i);
17975
17976       if (!CanBeSimplified) {
17977         TargetOpcode = X86ISD::MOVSD;
17978         CanBeSimplified = true;
17979         Amt2 = Amt->getOperand(4);
17980         for (unsigned i=0; i != 4 && CanBeSimplified; ++i)
17981           CanBeSimplified = Amt1 == Amt->getOperand(i);
17982         for (unsigned j=4; j != 8 && CanBeSimplified; ++j)
17983           CanBeSimplified = Amt2 == Amt->getOperand(j);
17984       }
17985     }
17986
17987     if (CanBeSimplified && isa<ConstantSDNode>(Amt1) &&
17988         isa<ConstantSDNode>(Amt2)) {
17989       // Replace this node with two shifts followed by a MOVSS/MOVSD.
17990       EVT CastVT = MVT::v4i32;
17991       SDValue Splat1 =
17992         DAG.getConstant(cast<ConstantSDNode>(Amt1)->getAPIntValue(), dl, VT);
17993       SDValue Shift1 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat1);
17994       SDValue Splat2 =
17995         DAG.getConstant(cast<ConstantSDNode>(Amt2)->getAPIntValue(), dl, VT);
17996       SDValue Shift2 = DAG.getNode(Op->getOpcode(), dl, VT, R, Splat2);
17997       if (TargetOpcode == X86ISD::MOVSD)
17998         CastVT = MVT::v2i64;
17999       SDValue BitCast1 = DAG.getBitcast(CastVT, Shift1);
18000       SDValue BitCast2 = DAG.getBitcast(CastVT, Shift2);
18001       SDValue Result = getTargetShuffleNode(TargetOpcode, dl, CastVT, BitCast2,
18002                                             BitCast1, DAG);
18003       return DAG.getBitcast(VT, Result);
18004     }
18005   }
18006
18007   // v4i32 Non Uniform Shifts.
18008   // If the shift amount is constant we can shift each lane using the SSE2
18009   // immediate shifts, else we need to zero-extend each lane to the lower i64
18010   // and shift using the SSE2 variable shifts.
18011   // The separate results can then be blended together.
18012   if (VT == MVT::v4i32) {
18013     unsigned Opc = Op.getOpcode();
18014     SDValue Amt0, Amt1, Amt2, Amt3;
18015     if (ISD::isBuildVectorOfConstantSDNodes(Amt.getNode())) {
18016       Amt0 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {0, 0, 0, 0});
18017       Amt1 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {1, 1, 1, 1});
18018       Amt2 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {2, 2, 2, 2});
18019       Amt3 = DAG.getVectorShuffle(VT, dl, Amt, DAG.getUNDEF(VT), {3, 3, 3, 3});
18020     } else {
18021       // ISD::SHL is handled above but we include it here for completeness.
18022       switch (Opc) {
18023       default:
18024         llvm_unreachable("Unknown target vector shift node");
18025       case ISD::SHL:
18026         Opc = X86ISD::VSHL;
18027         break;
18028       case ISD::SRL:
18029         Opc = X86ISD::VSRL;
18030         break;
18031       case ISD::SRA:
18032         Opc = X86ISD::VSRA;
18033         break;
18034       }
18035       // The SSE2 shifts use the lower i64 as the same shift amount for
18036       // all lanes and the upper i64 is ignored. These shuffle masks
18037       // optimally zero-extend each lanes on SSE2/SSE41/AVX targets.
18038       SDValue Z = getZeroVector(VT, Subtarget, DAG, dl);
18039       Amt0 = DAG.getVectorShuffle(VT, dl, Amt, Z, {0, 4, -1, -1});
18040       Amt1 = DAG.getVectorShuffle(VT, dl, Amt, Z, {1, 5, -1, -1});
18041       Amt2 = DAG.getVectorShuffle(VT, dl, Amt, Z, {2, 6, -1, -1});
18042       Amt3 = DAG.getVectorShuffle(VT, dl, Amt, Z, {3, 7, -1, -1});
18043     }
18044
18045     SDValue R0 = DAG.getNode(Opc, dl, VT, R, Amt0);
18046     SDValue R1 = DAG.getNode(Opc, dl, VT, R, Amt1);
18047     SDValue R2 = DAG.getNode(Opc, dl, VT, R, Amt2);
18048     SDValue R3 = DAG.getNode(Opc, dl, VT, R, Amt3);
18049     SDValue R02 = DAG.getVectorShuffle(VT, dl, R0, R2, {0, -1, 6, -1});
18050     SDValue R13 = DAG.getVectorShuffle(VT, dl, R1, R3, {-1, 1, -1, 7});
18051     return DAG.getVectorShuffle(VT, dl, R02, R13, {0, 5, 2, 7});
18052   }
18053
18054   if (VT == MVT::v16i8 || (VT == MVT::v32i8 && Subtarget->hasInt256())) {
18055     MVT ExtVT = MVT::getVectorVT(MVT::i16, VT.getVectorNumElements() / 2);
18056     unsigned ShiftOpcode = Op->getOpcode();
18057
18058     auto SignBitSelect = [&](MVT SelVT, SDValue Sel, SDValue V0, SDValue V1) {
18059       // On SSE41 targets we make use of the fact that VSELECT lowers
18060       // to PBLENDVB which selects bytes based just on the sign bit.
18061       if (Subtarget->hasSSE41()) {
18062         V0 = DAG.getBitcast(VT, V0);
18063         V1 = DAG.getBitcast(VT, V1);
18064         Sel = DAG.getBitcast(VT, Sel);
18065         return DAG.getBitcast(SelVT,
18066                               DAG.getNode(ISD::VSELECT, dl, VT, Sel, V0, V1));
18067       }
18068       // On pre-SSE41 targets we test for the sign bit by comparing to
18069       // zero - a negative value will set all bits of the lanes to true
18070       // and VSELECT uses that in its OR(AND(V0,C),AND(V1,~C)) lowering.
18071       SDValue Z = getZeroVector(SelVT, Subtarget, DAG, dl);
18072       SDValue C = DAG.getNode(X86ISD::PCMPGT, dl, SelVT, Z, Sel);
18073       return DAG.getNode(ISD::VSELECT, dl, SelVT, C, V0, V1);
18074     };
18075
18076     // Turn 'a' into a mask suitable for VSELECT: a = a << 5;
18077     // We can safely do this using i16 shifts as we're only interested in
18078     // the 3 lower bits of each byte.
18079     Amt = DAG.getBitcast(ExtVT, Amt);
18080     Amt = DAG.getNode(ISD::SHL, dl, ExtVT, Amt, DAG.getConstant(5, dl, ExtVT));
18081     Amt = DAG.getBitcast(VT, Amt);
18082
18083     if (Op->getOpcode() == ISD::SHL || Op->getOpcode() == ISD::SRL) {
18084       // r = VSELECT(r, shift(r, 4), a);
18085       SDValue M =
18086           DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(4, dl, VT));
18087       R = SignBitSelect(VT, Amt, M, R);
18088
18089       // a += a
18090       Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18091
18092       // r = VSELECT(r, shift(r, 2), a);
18093       M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(2, dl, VT));
18094       R = SignBitSelect(VT, Amt, M, R);
18095
18096       // a += a
18097       Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18098
18099       // return VSELECT(r, shift(r, 1), a);
18100       M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(1, dl, VT));
18101       R = SignBitSelect(VT, Amt, M, R);
18102       return R;
18103     }
18104
18105     if (Op->getOpcode() == ISD::SRA) {
18106       // For SRA we need to unpack each byte to the higher byte of a i16 vector
18107       // so we can correctly sign extend. We don't care what happens to the
18108       // lower byte.
18109       SDValue ALo = DAG.getNode(X86ISD::UNPCKL, dl, VT, DAG.getUNDEF(VT), Amt);
18110       SDValue AHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, DAG.getUNDEF(VT), Amt);
18111       SDValue RLo = DAG.getNode(X86ISD::UNPCKL, dl, VT, DAG.getUNDEF(VT), R);
18112       SDValue RHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, DAG.getUNDEF(VT), R);
18113       ALo = DAG.getBitcast(ExtVT, ALo);
18114       AHi = DAG.getBitcast(ExtVT, AHi);
18115       RLo = DAG.getBitcast(ExtVT, RLo);
18116       RHi = DAG.getBitcast(ExtVT, RHi);
18117
18118       // r = VSELECT(r, shift(r, 4), a);
18119       SDValue MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
18120                                 DAG.getConstant(4, dl, ExtVT));
18121       SDValue MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
18122                                 DAG.getConstant(4, dl, ExtVT));
18123       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
18124       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
18125
18126       // a += a
18127       ALo = DAG.getNode(ISD::ADD, dl, ExtVT, ALo, ALo);
18128       AHi = DAG.getNode(ISD::ADD, dl, ExtVT, AHi, AHi);
18129
18130       // r = VSELECT(r, shift(r, 2), a);
18131       MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
18132                         DAG.getConstant(2, dl, ExtVT));
18133       MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
18134                         DAG.getConstant(2, dl, ExtVT));
18135       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
18136       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
18137
18138       // a += a
18139       ALo = DAG.getNode(ISD::ADD, dl, ExtVT, ALo, ALo);
18140       AHi = DAG.getNode(ISD::ADD, dl, ExtVT, AHi, AHi);
18141
18142       // r = VSELECT(r, shift(r, 1), a);
18143       MLo = DAG.getNode(ShiftOpcode, dl, ExtVT, RLo,
18144                         DAG.getConstant(1, dl, ExtVT));
18145       MHi = DAG.getNode(ShiftOpcode, dl, ExtVT, RHi,
18146                         DAG.getConstant(1, dl, ExtVT));
18147       RLo = SignBitSelect(ExtVT, ALo, MLo, RLo);
18148       RHi = SignBitSelect(ExtVT, AHi, MHi, RHi);
18149
18150       // Logical shift the result back to the lower byte, leaving a zero upper
18151       // byte
18152       // meaning that we can safely pack with PACKUSWB.
18153       RLo =
18154           DAG.getNode(ISD::SRL, dl, ExtVT, RLo, DAG.getConstant(8, dl, ExtVT));
18155       RHi =
18156           DAG.getNode(ISD::SRL, dl, ExtVT, RHi, DAG.getConstant(8, dl, ExtVT));
18157       return DAG.getNode(X86ISD::PACKUS, dl, VT, RLo, RHi);
18158     }
18159   }
18160
18161   // It's worth extending once and using the v8i32 shifts for 16-bit types, but
18162   // the extra overheads to get from v16i8 to v8i32 make the existing SSE
18163   // solution better.
18164   if (Subtarget->hasInt256() && VT == MVT::v8i16) {
18165     MVT ExtVT = MVT::v8i32;
18166     unsigned ExtOpc =
18167         Op.getOpcode() == ISD::SRA ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
18168     R = DAG.getNode(ExtOpc, dl, ExtVT, R);
18169     Amt = DAG.getNode(ISD::ANY_EXTEND, dl, ExtVT, Amt);
18170     return DAG.getNode(ISD::TRUNCATE, dl, VT,
18171                        DAG.getNode(Op.getOpcode(), dl, ExtVT, R, Amt));
18172   }
18173
18174   if (Subtarget->hasInt256() && VT == MVT::v16i16) {
18175     MVT ExtVT = MVT::v8i32;
18176     SDValue Z = getZeroVector(VT, Subtarget, DAG, dl);
18177     SDValue ALo = DAG.getNode(X86ISD::UNPCKL, dl, VT, Amt, Z);
18178     SDValue AHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, Amt, Z);
18179     SDValue RLo = DAG.getNode(X86ISD::UNPCKL, dl, VT, R, R);
18180     SDValue RHi = DAG.getNode(X86ISD::UNPCKH, dl, VT, R, R);
18181     ALo = DAG.getBitcast(ExtVT, ALo);
18182     AHi = DAG.getBitcast(ExtVT, AHi);
18183     RLo = DAG.getBitcast(ExtVT, RLo);
18184     RHi = DAG.getBitcast(ExtVT, RHi);
18185     SDValue Lo = DAG.getNode(Op.getOpcode(), dl, ExtVT, RLo, ALo);
18186     SDValue Hi = DAG.getNode(Op.getOpcode(), dl, ExtVT, RHi, AHi);
18187     Lo = DAG.getNode(ISD::SRL, dl, ExtVT, Lo, DAG.getConstant(16, dl, ExtVT));
18188     Hi = DAG.getNode(ISD::SRL, dl, ExtVT, Hi, DAG.getConstant(16, dl, ExtVT));
18189     return DAG.getNode(X86ISD::PACKUS, dl, VT, Lo, Hi);
18190   }
18191
18192   if (VT == MVT::v8i16) {
18193     unsigned ShiftOpcode = Op->getOpcode();
18194
18195     auto SignBitSelect = [&](SDValue Sel, SDValue V0, SDValue V1) {
18196       // On SSE41 targets we make use of the fact that VSELECT lowers
18197       // to PBLENDVB which selects bytes based just on the sign bit.
18198       if (Subtarget->hasSSE41()) {
18199         MVT ExtVT = MVT::getVectorVT(MVT::i8, VT.getVectorNumElements() * 2);
18200         V0 = DAG.getBitcast(ExtVT, V0);
18201         V1 = DAG.getBitcast(ExtVT, V1);
18202         Sel = DAG.getBitcast(ExtVT, Sel);
18203         return DAG.getBitcast(
18204             VT, DAG.getNode(ISD::VSELECT, dl, ExtVT, Sel, V0, V1));
18205       }
18206       // On pre-SSE41 targets we splat the sign bit - a negative value will
18207       // set all bits of the lanes to true and VSELECT uses that in
18208       // its OR(AND(V0,C),AND(V1,~C)) lowering.
18209       SDValue C =
18210           DAG.getNode(ISD::SRA, dl, VT, Sel, DAG.getConstant(15, dl, VT));
18211       return DAG.getNode(ISD::VSELECT, dl, VT, C, V0, V1);
18212     };
18213
18214     // Turn 'a' into a mask suitable for VSELECT: a = a << 12;
18215     if (Subtarget->hasSSE41()) {
18216       // On SSE41 targets we need to replicate the shift mask in both
18217       // bytes for PBLENDVB.
18218       Amt = DAG.getNode(
18219           ISD::OR, dl, VT,
18220           DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(4, dl, VT)),
18221           DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(12, dl, VT)));
18222     } else {
18223       Amt = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(12, dl, VT));
18224     }
18225
18226     // r = VSELECT(r, shift(r, 8), a);
18227     SDValue M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(8, dl, VT));
18228     R = SignBitSelect(Amt, M, R);
18229
18230     // a += a
18231     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18232
18233     // r = VSELECT(r, shift(r, 4), a);
18234     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(4, dl, VT));
18235     R = SignBitSelect(Amt, M, R);
18236
18237     // a += a
18238     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18239
18240     // r = VSELECT(r, shift(r, 2), a);
18241     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(2, dl, VT));
18242     R = SignBitSelect(Amt, M, R);
18243
18244     // a += a
18245     Amt = DAG.getNode(ISD::ADD, dl, VT, Amt, Amt);
18246
18247     // return VSELECT(r, shift(r, 1), a);
18248     M = DAG.getNode(ShiftOpcode, dl, VT, R, DAG.getConstant(1, dl, VT));
18249     R = SignBitSelect(Amt, M, R);
18250     return R;
18251   }
18252
18253   // Decompose 256-bit shifts into smaller 128-bit shifts.
18254   if (VT.is256BitVector()) {
18255     unsigned NumElems = VT.getVectorNumElements();
18256     MVT EltVT = VT.getVectorElementType();
18257     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
18258
18259     // Extract the two vectors
18260     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
18261     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
18262
18263     // Recreate the shift amount vectors
18264     SDValue Amt1, Amt2;
18265     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
18266       // Constant shift amount
18267       SmallVector<SDValue, 8> Ops(Amt->op_begin(), Amt->op_begin() + NumElems);
18268       ArrayRef<SDValue> Amt1Csts = makeArrayRef(Ops).slice(0, NumElems / 2);
18269       ArrayRef<SDValue> Amt2Csts = makeArrayRef(Ops).slice(NumElems / 2);
18270
18271       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt1Csts);
18272       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Amt2Csts);
18273     } else {
18274       // Variable shift amount
18275       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
18276       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
18277     }
18278
18279     // Issue new vector shifts for the smaller types
18280     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
18281     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
18282
18283     // Concatenate the result back
18284     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
18285   }
18286
18287   return SDValue();
18288 }
18289
18290 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
18291   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
18292   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
18293   // looks for this combo and may remove the "setcc" instruction if the "setcc"
18294   // has only one use.
18295   SDNode *N = Op.getNode();
18296   SDValue LHS = N->getOperand(0);
18297   SDValue RHS = N->getOperand(1);
18298   unsigned BaseOp = 0;
18299   unsigned Cond = 0;
18300   SDLoc DL(Op);
18301   switch (Op.getOpcode()) {
18302   default: llvm_unreachable("Unknown ovf instruction!");
18303   case ISD::SADDO:
18304     // A subtract of one will be selected as a INC. Note that INC doesn't
18305     // set CF, so we can't do this for UADDO.
18306     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
18307       if (C->isOne()) {
18308         BaseOp = X86ISD::INC;
18309         Cond = X86::COND_O;
18310         break;
18311       }
18312     BaseOp = X86ISD::ADD;
18313     Cond = X86::COND_O;
18314     break;
18315   case ISD::UADDO:
18316     BaseOp = X86ISD::ADD;
18317     Cond = X86::COND_B;
18318     break;
18319   case ISD::SSUBO:
18320     // A subtract of one will be selected as a DEC. Note that DEC doesn't
18321     // set CF, so we can't do this for USUBO.
18322     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
18323       if (C->isOne()) {
18324         BaseOp = X86ISD::DEC;
18325         Cond = X86::COND_O;
18326         break;
18327       }
18328     BaseOp = X86ISD::SUB;
18329     Cond = X86::COND_O;
18330     break;
18331   case ISD::USUBO:
18332     BaseOp = X86ISD::SUB;
18333     Cond = X86::COND_B;
18334     break;
18335   case ISD::SMULO:
18336     BaseOp = N->getValueType(0) == MVT::i8 ? X86ISD::SMUL8 : X86ISD::SMUL;
18337     Cond = X86::COND_O;
18338     break;
18339   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
18340     if (N->getValueType(0) == MVT::i8) {
18341       BaseOp = X86ISD::UMUL8;
18342       Cond = X86::COND_O;
18343       break;
18344     }
18345     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
18346                                  MVT::i32);
18347     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
18348
18349     SDValue SetCC =
18350       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
18351                   DAG.getConstant(X86::COND_O, DL, MVT::i32),
18352                   SDValue(Sum.getNode(), 2));
18353
18354     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
18355   }
18356   }
18357
18358   // Also sets EFLAGS.
18359   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
18360   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
18361
18362   SDValue SetCC =
18363     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
18364                 DAG.getConstant(Cond, DL, MVT::i32),
18365                 SDValue(Sum.getNode(), 1));
18366
18367   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
18368 }
18369
18370 /// Returns true if the operand type is exactly twice the native width, and
18371 /// the corresponding cmpxchg8b or cmpxchg16b instruction is available.
18372 /// Used to know whether to use cmpxchg8/16b when expanding atomic operations
18373 /// (otherwise we leave them alone to become __sync_fetch_and_... calls).
18374 bool X86TargetLowering::needsCmpXchgNb(Type *MemType) const {
18375   unsigned OpWidth = MemType->getPrimitiveSizeInBits();
18376
18377   if (OpWidth == 64)
18378     return !Subtarget->is64Bit(); // FIXME this should be Subtarget.hasCmpxchg8b
18379   else if (OpWidth == 128)
18380     return Subtarget->hasCmpxchg16b();
18381   else
18382     return false;
18383 }
18384
18385 bool X86TargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
18386   return needsCmpXchgNb(SI->getValueOperand()->getType());
18387 }
18388
18389 // Note: this turns large loads into lock cmpxchg8b/16b.
18390 // FIXME: On 32 bits x86, fild/movq might be faster than lock cmpxchg8b.
18391 bool X86TargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
18392   auto PTy = cast<PointerType>(LI->getPointerOperand()->getType());
18393   return needsCmpXchgNb(PTy->getElementType());
18394 }
18395
18396 TargetLoweringBase::AtomicRMWExpansionKind
18397 X86TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
18398   unsigned NativeWidth = Subtarget->is64Bit() ? 64 : 32;
18399   Type *MemType = AI->getType();
18400
18401   // If the operand is too big, we must see if cmpxchg8/16b is available
18402   // and default to library calls otherwise.
18403   if (MemType->getPrimitiveSizeInBits() > NativeWidth) {
18404     return needsCmpXchgNb(MemType) ? AtomicRMWExpansionKind::CmpXChg
18405                                    : AtomicRMWExpansionKind::None;
18406   }
18407
18408   AtomicRMWInst::BinOp Op = AI->getOperation();
18409   switch (Op) {
18410   default:
18411     llvm_unreachable("Unknown atomic operation");
18412   case AtomicRMWInst::Xchg:
18413   case AtomicRMWInst::Add:
18414   case AtomicRMWInst::Sub:
18415     // It's better to use xadd, xsub or xchg for these in all cases.
18416     return AtomicRMWExpansionKind::None;
18417   case AtomicRMWInst::Or:
18418   case AtomicRMWInst::And:
18419   case AtomicRMWInst::Xor:
18420     // If the atomicrmw's result isn't actually used, we can just add a "lock"
18421     // prefix to a normal instruction for these operations.
18422     return !AI->use_empty() ? AtomicRMWExpansionKind::CmpXChg
18423                             : AtomicRMWExpansionKind::None;
18424   case AtomicRMWInst::Nand:
18425   case AtomicRMWInst::Max:
18426   case AtomicRMWInst::Min:
18427   case AtomicRMWInst::UMax:
18428   case AtomicRMWInst::UMin:
18429     // These always require a non-trivial set of data operations on x86. We must
18430     // use a cmpxchg loop.
18431     return AtomicRMWExpansionKind::CmpXChg;
18432   }
18433 }
18434
18435 static bool hasMFENCE(const X86Subtarget& Subtarget) {
18436   // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
18437   // no-sse2). There isn't any reason to disable it if the target processor
18438   // supports it.
18439   return Subtarget.hasSSE2() || Subtarget.is64Bit();
18440 }
18441
18442 LoadInst *
18443 X86TargetLowering::lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *AI) const {
18444   unsigned NativeWidth = Subtarget->is64Bit() ? 64 : 32;
18445   Type *MemType = AI->getType();
18446   // Accesses larger than the native width are turned into cmpxchg/libcalls, so
18447   // there is no benefit in turning such RMWs into loads, and it is actually
18448   // harmful as it introduces a mfence.
18449   if (MemType->getPrimitiveSizeInBits() > NativeWidth)
18450     return nullptr;
18451
18452   auto Builder = IRBuilder<>(AI);
18453   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
18454   auto SynchScope = AI->getSynchScope();
18455   // We must restrict the ordering to avoid generating loads with Release or
18456   // ReleaseAcquire orderings.
18457   auto Order = AtomicCmpXchgInst::getStrongestFailureOrdering(AI->getOrdering());
18458   auto Ptr = AI->getPointerOperand();
18459
18460   // Before the load we need a fence. Here is an example lifted from
18461   // http://www.hpl.hp.com/techreports/2012/HPL-2012-68.pdf showing why a fence
18462   // is required:
18463   // Thread 0:
18464   //   x.store(1, relaxed);
18465   //   r1 = y.fetch_add(0, release);
18466   // Thread 1:
18467   //   y.fetch_add(42, acquire);
18468   //   r2 = x.load(relaxed);
18469   // r1 = r2 = 0 is impossible, but becomes possible if the idempotent rmw is
18470   // lowered to just a load without a fence. A mfence flushes the store buffer,
18471   // making the optimization clearly correct.
18472   // FIXME: it is required if isAtLeastRelease(Order) but it is not clear
18473   // otherwise, we might be able to be more aggressive on relaxed idempotent
18474   // rmw. In practice, they do not look useful, so we don't try to be
18475   // especially clever.
18476   if (SynchScope == SingleThread)
18477     // FIXME: we could just insert an X86ISD::MEMBARRIER here, except we are at
18478     // the IR level, so we must wrap it in an intrinsic.
18479     return nullptr;
18480
18481   if (!hasMFENCE(*Subtarget))
18482     // FIXME: it might make sense to use a locked operation here but on a
18483     // different cache-line to prevent cache-line bouncing. In practice it
18484     // is probably a small win, and x86 processors without mfence are rare
18485     // enough that we do not bother.
18486     return nullptr;
18487
18488   Function *MFence =
18489       llvm::Intrinsic::getDeclaration(M, Intrinsic::x86_sse2_mfence);
18490   Builder.CreateCall(MFence, {});
18491
18492   // Finally we can emit the atomic load.
18493   LoadInst *Loaded = Builder.CreateAlignedLoad(Ptr,
18494           AI->getType()->getPrimitiveSizeInBits());
18495   Loaded->setAtomic(Order, SynchScope);
18496   AI->replaceAllUsesWith(Loaded);
18497   AI->eraseFromParent();
18498   return Loaded;
18499 }
18500
18501 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
18502                                  SelectionDAG &DAG) {
18503   SDLoc dl(Op);
18504   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
18505     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
18506   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
18507     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
18508
18509   // The only fence that needs an instruction is a sequentially-consistent
18510   // cross-thread fence.
18511   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
18512     if (hasMFENCE(*Subtarget))
18513       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
18514
18515     SDValue Chain = Op.getOperand(0);
18516     SDValue Zero = DAG.getConstant(0, dl, MVT::i32);
18517     SDValue Ops[] = {
18518       DAG.getRegister(X86::ESP, MVT::i32),     // Base
18519       DAG.getTargetConstant(1, dl, MVT::i8),   // Scale
18520       DAG.getRegister(0, MVT::i32),            // Index
18521       DAG.getTargetConstant(0, dl, MVT::i32),  // Disp
18522       DAG.getRegister(0, MVT::i32),            // Segment.
18523       Zero,
18524       Chain
18525     };
18526     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
18527     return SDValue(Res, 0);
18528   }
18529
18530   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
18531   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
18532 }
18533
18534 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
18535                              SelectionDAG &DAG) {
18536   MVT T = Op.getSimpleValueType();
18537   SDLoc DL(Op);
18538   unsigned Reg = 0;
18539   unsigned size = 0;
18540   switch(T.SimpleTy) {
18541   default: llvm_unreachable("Invalid value type!");
18542   case MVT::i8:  Reg = X86::AL;  size = 1; break;
18543   case MVT::i16: Reg = X86::AX;  size = 2; break;
18544   case MVT::i32: Reg = X86::EAX; size = 4; break;
18545   case MVT::i64:
18546     assert(Subtarget->is64Bit() && "Node not type legal!");
18547     Reg = X86::RAX; size = 8;
18548     break;
18549   }
18550   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
18551                                   Op.getOperand(2), SDValue());
18552   SDValue Ops[] = { cpIn.getValue(0),
18553                     Op.getOperand(1),
18554                     Op.getOperand(3),
18555                     DAG.getTargetConstant(size, DL, MVT::i8),
18556                     cpIn.getValue(1) };
18557   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
18558   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
18559   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
18560                                            Ops, T, MMO);
18561
18562   SDValue cpOut =
18563     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
18564   SDValue EFLAGS = DAG.getCopyFromReg(cpOut.getValue(1), DL, X86::EFLAGS,
18565                                       MVT::i32, cpOut.getValue(2));
18566   SDValue Success = DAG.getNode(X86ISD::SETCC, DL, Op->getValueType(1),
18567                                 DAG.getConstant(X86::COND_E, DL, MVT::i8),
18568                                 EFLAGS);
18569
18570   DAG.ReplaceAllUsesOfValueWith(Op.getValue(0), cpOut);
18571   DAG.ReplaceAllUsesOfValueWith(Op.getValue(1), Success);
18572   DAG.ReplaceAllUsesOfValueWith(Op.getValue(2), EFLAGS.getValue(1));
18573   return SDValue();
18574 }
18575
18576 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
18577                             SelectionDAG &DAG) {
18578   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
18579   MVT DstVT = Op.getSimpleValueType();
18580
18581   if (SrcVT == MVT::v2i32 || SrcVT == MVT::v4i16 || SrcVT == MVT::v8i8) {
18582     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
18583     if (DstVT != MVT::f64)
18584       // This conversion needs to be expanded.
18585       return SDValue();
18586
18587     SDValue InVec = Op->getOperand(0);
18588     SDLoc dl(Op);
18589     unsigned NumElts = SrcVT.getVectorNumElements();
18590     EVT SVT = SrcVT.getVectorElementType();
18591
18592     // Widen the vector in input in the case of MVT::v2i32.
18593     // Example: from MVT::v2i32 to MVT::v4i32.
18594     SmallVector<SDValue, 16> Elts;
18595     for (unsigned i = 0, e = NumElts; i != e; ++i)
18596       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT, InVec,
18597                                  DAG.getIntPtrConstant(i, dl)));
18598
18599     // Explicitly mark the extra elements as Undef.
18600     Elts.append(NumElts, DAG.getUNDEF(SVT));
18601
18602     EVT NewVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
18603     SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT, Elts);
18604     SDValue ToV2F64 = DAG.getBitcast(MVT::v2f64, BV);
18605     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, ToV2F64,
18606                        DAG.getIntPtrConstant(0, dl));
18607   }
18608
18609   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
18610          Subtarget->hasMMX() && "Unexpected custom BITCAST");
18611   assert((DstVT == MVT::i64 ||
18612           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
18613          "Unexpected custom BITCAST");
18614   // i64 <=> MMX conversions are Legal.
18615   if (SrcVT==MVT::i64 && DstVT.isVector())
18616     return Op;
18617   if (DstVT==MVT::i64 && SrcVT.isVector())
18618     return Op;
18619   // MMX <=> MMX conversions are Legal.
18620   if (SrcVT.isVector() && DstVT.isVector())
18621     return Op;
18622   // All other conversions need to be expanded.
18623   return SDValue();
18624 }
18625
18626 /// Compute the horizontal sum of bytes in V for the elements of VT.
18627 ///
18628 /// Requires V to be a byte vector and VT to be an integer vector type with
18629 /// wider elements than V's type. The width of the elements of VT determines
18630 /// how many bytes of V are summed horizontally to produce each element of the
18631 /// result.
18632 static SDValue LowerHorizontalByteSum(SDValue V, MVT VT,
18633                                       const X86Subtarget *Subtarget,
18634                                       SelectionDAG &DAG) {
18635   SDLoc DL(V);
18636   MVT ByteVecVT = V.getSimpleValueType();
18637   MVT EltVT = VT.getVectorElementType();
18638   int NumElts = VT.getVectorNumElements();
18639   assert(ByteVecVT.getVectorElementType() == MVT::i8 &&
18640          "Expected value to have byte element type.");
18641   assert(EltVT != MVT::i8 &&
18642          "Horizontal byte sum only makes sense for wider elements!");
18643   unsigned VecSize = VT.getSizeInBits();
18644   assert(ByteVecVT.getSizeInBits() == VecSize && "Cannot change vector size!");
18645
18646   // PSADBW instruction horizontally add all bytes and leave the result in i64
18647   // chunks, thus directly computes the pop count for v2i64 and v4i64.
18648   if (EltVT == MVT::i64) {
18649     SDValue Zeros = getZeroVector(ByteVecVT, Subtarget, DAG, DL);
18650     V = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT, V, Zeros);
18651     return DAG.getBitcast(VT, V);
18652   }
18653
18654   if (EltVT == MVT::i32) {
18655     // We unpack the low half and high half into i32s interleaved with zeros so
18656     // that we can use PSADBW to horizontally sum them. The most useful part of
18657     // this is that it lines up the results of two PSADBW instructions to be
18658     // two v2i64 vectors which concatenated are the 4 population counts. We can
18659     // then use PACKUSWB to shrink and concatenate them into a v4i32 again.
18660     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, DL);
18661     SDValue Low = DAG.getNode(X86ISD::UNPCKL, DL, VT, V, Zeros);
18662     SDValue High = DAG.getNode(X86ISD::UNPCKH, DL, VT, V, Zeros);
18663
18664     // Do the horizontal sums into two v2i64s.
18665     Zeros = getZeroVector(ByteVecVT, Subtarget, DAG, DL);
18666     Low = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT,
18667                       DAG.getBitcast(ByteVecVT, Low), Zeros);
18668     High = DAG.getNode(X86ISD::PSADBW, DL, ByteVecVT,
18669                        DAG.getBitcast(ByteVecVT, High), Zeros);
18670
18671     // Merge them together.
18672     MVT ShortVecVT = MVT::getVectorVT(MVT::i16, VecSize / 16);
18673     V = DAG.getNode(X86ISD::PACKUS, DL, ByteVecVT,
18674                     DAG.getBitcast(ShortVecVT, Low),
18675                     DAG.getBitcast(ShortVecVT, High));
18676
18677     return DAG.getBitcast(VT, V);
18678   }
18679
18680   // The only element type left is i16.
18681   assert(EltVT == MVT::i16 && "Unknown how to handle type");
18682
18683   // To obtain pop count for each i16 element starting from the pop count for
18684   // i8 elements, shift the i16s left by 8, sum as i8s, and then shift as i16s
18685   // right by 8. It is important to shift as i16s as i8 vector shift isn't
18686   // directly supported.
18687   SmallVector<SDValue, 16> Shifters(NumElts, DAG.getConstant(8, DL, EltVT));
18688   SDValue Shifter = DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Shifters);
18689   SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, DAG.getBitcast(VT, V), Shifter);
18690   V = DAG.getNode(ISD::ADD, DL, ByteVecVT, DAG.getBitcast(ByteVecVT, Shl),
18691                   DAG.getBitcast(ByteVecVT, V));
18692   return DAG.getNode(ISD::SRL, DL, VT, DAG.getBitcast(VT, V), Shifter);
18693 }
18694
18695 static SDValue LowerVectorCTPOPInRegLUT(SDValue Op, SDLoc DL,
18696                                         const X86Subtarget *Subtarget,
18697                                         SelectionDAG &DAG) {
18698   MVT VT = Op.getSimpleValueType();
18699   MVT EltVT = VT.getVectorElementType();
18700   unsigned VecSize = VT.getSizeInBits();
18701
18702   // Implement a lookup table in register by using an algorithm based on:
18703   // http://wm.ite.pl/articles/sse-popcount.html
18704   //
18705   // The general idea is that every lower byte nibble in the input vector is an
18706   // index into a in-register pre-computed pop count table. We then split up the
18707   // input vector in two new ones: (1) a vector with only the shifted-right
18708   // higher nibbles for each byte and (2) a vector with the lower nibbles (and
18709   // masked out higher ones) for each byte. PSHUB is used separately with both
18710   // to index the in-register table. Next, both are added and the result is a
18711   // i8 vector where each element contains the pop count for input byte.
18712   //
18713   // To obtain the pop count for elements != i8, we follow up with the same
18714   // approach and use additional tricks as described below.
18715   //
18716   const int LUT[16] = {/* 0 */ 0, /* 1 */ 1, /* 2 */ 1, /* 3 */ 2,
18717                        /* 4 */ 1, /* 5 */ 2, /* 6 */ 2, /* 7 */ 3,
18718                        /* 8 */ 1, /* 9 */ 2, /* a */ 2, /* b */ 3,
18719                        /* c */ 2, /* d */ 3, /* e */ 3, /* f */ 4};
18720
18721   int NumByteElts = VecSize / 8;
18722   MVT ByteVecVT = MVT::getVectorVT(MVT::i8, NumByteElts);
18723   SDValue In = DAG.getBitcast(ByteVecVT, Op);
18724   SmallVector<SDValue, 16> LUTVec;
18725   for (int i = 0; i < NumByteElts; ++i)
18726     LUTVec.push_back(DAG.getConstant(LUT[i % 16], DL, MVT::i8));
18727   SDValue InRegLUT = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, LUTVec);
18728   SmallVector<SDValue, 16> Mask0F(NumByteElts,
18729                                   DAG.getConstant(0x0F, DL, MVT::i8));
18730   SDValue M0F = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, Mask0F);
18731
18732   // High nibbles
18733   SmallVector<SDValue, 16> Four(NumByteElts, DAG.getConstant(4, DL, MVT::i8));
18734   SDValue FourV = DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVecVT, Four);
18735   SDValue HighNibbles = DAG.getNode(ISD::SRL, DL, ByteVecVT, In, FourV);
18736
18737   // Low nibbles
18738   SDValue LowNibbles = DAG.getNode(ISD::AND, DL, ByteVecVT, In, M0F);
18739
18740   // The input vector is used as the shuffle mask that index elements into the
18741   // LUT. After counting low and high nibbles, add the vector to obtain the
18742   // final pop count per i8 element.
18743   SDValue HighPopCnt =
18744       DAG.getNode(X86ISD::PSHUFB, DL, ByteVecVT, InRegLUT, HighNibbles);
18745   SDValue LowPopCnt =
18746       DAG.getNode(X86ISD::PSHUFB, DL, ByteVecVT, InRegLUT, LowNibbles);
18747   SDValue PopCnt = DAG.getNode(ISD::ADD, DL, ByteVecVT, HighPopCnt, LowPopCnt);
18748
18749   if (EltVT == MVT::i8)
18750     return PopCnt;
18751
18752   return LowerHorizontalByteSum(PopCnt, VT, Subtarget, DAG);
18753 }
18754
18755 static SDValue LowerVectorCTPOPBitmath(SDValue Op, SDLoc DL,
18756                                        const X86Subtarget *Subtarget,
18757                                        SelectionDAG &DAG) {
18758   MVT VT = Op.getSimpleValueType();
18759   assert(VT.is128BitVector() &&
18760          "Only 128-bit vector bitmath lowering supported.");
18761
18762   int VecSize = VT.getSizeInBits();
18763   MVT EltVT = VT.getVectorElementType();
18764   int Len = EltVT.getSizeInBits();
18765
18766   // This is the vectorized version of the "best" algorithm from
18767   // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
18768   // with a minor tweak to use a series of adds + shifts instead of vector
18769   // multiplications. Implemented for all integer vector types. We only use
18770   // this when we don't have SSSE3 which allows a LUT-based lowering that is
18771   // much faster, even faster than using native popcnt instructions.
18772
18773   auto GetShift = [&](unsigned OpCode, SDValue V, int Shifter) {
18774     MVT VT = V.getSimpleValueType();
18775     SmallVector<SDValue, 32> Shifters(
18776         VT.getVectorNumElements(),
18777         DAG.getConstant(Shifter, DL, VT.getVectorElementType()));
18778     return DAG.getNode(OpCode, DL, VT, V,
18779                        DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Shifters));
18780   };
18781   auto GetMask = [&](SDValue V, APInt Mask) {
18782     MVT VT = V.getSimpleValueType();
18783     SmallVector<SDValue, 32> Masks(
18784         VT.getVectorNumElements(),
18785         DAG.getConstant(Mask, DL, VT.getVectorElementType()));
18786     return DAG.getNode(ISD::AND, DL, VT, V,
18787                        DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Masks));
18788   };
18789
18790   // We don't want to incur the implicit masks required to SRL vNi8 vectors on
18791   // x86, so set the SRL type to have elements at least i16 wide. This is
18792   // correct because all of our SRLs are followed immediately by a mask anyways
18793   // that handles any bits that sneak into the high bits of the byte elements.
18794   MVT SrlVT = Len > 8 ? VT : MVT::getVectorVT(MVT::i16, VecSize / 16);
18795
18796   SDValue V = Op;
18797
18798   // v = v - ((v >> 1) & 0x55555555...)
18799   SDValue Srl =
18800       DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 1));
18801   SDValue And = GetMask(Srl, APInt::getSplat(Len, APInt(8, 0x55)));
18802   V = DAG.getNode(ISD::SUB, DL, VT, V, And);
18803
18804   // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
18805   SDValue AndLHS = GetMask(V, APInt::getSplat(Len, APInt(8, 0x33)));
18806   Srl = DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 2));
18807   SDValue AndRHS = GetMask(Srl, APInt::getSplat(Len, APInt(8, 0x33)));
18808   V = DAG.getNode(ISD::ADD, DL, VT, AndLHS, AndRHS);
18809
18810   // v = (v + (v >> 4)) & 0x0F0F0F0F...
18811   Srl = DAG.getBitcast(VT, GetShift(ISD::SRL, DAG.getBitcast(SrlVT, V), 4));
18812   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, V, Srl);
18813   V = GetMask(Add, APInt::getSplat(Len, APInt(8, 0x0F)));
18814
18815   // At this point, V contains the byte-wise population count, and we are
18816   // merely doing a horizontal sum if necessary to get the wider element
18817   // counts.
18818   if (EltVT == MVT::i8)
18819     return V;
18820
18821   return LowerHorizontalByteSum(
18822       DAG.getBitcast(MVT::getVectorVT(MVT::i8, VecSize / 8), V), VT, Subtarget,
18823       DAG);
18824 }
18825
18826 static SDValue LowerVectorCTPOP(SDValue Op, const X86Subtarget *Subtarget,
18827                                 SelectionDAG &DAG) {
18828   MVT VT = Op.getSimpleValueType();
18829   // FIXME: Need to add AVX-512 support here!
18830   assert((VT.is256BitVector() || VT.is128BitVector()) &&
18831          "Unknown CTPOP type to handle");
18832   SDLoc DL(Op.getNode());
18833   SDValue Op0 = Op.getOperand(0);
18834
18835   if (!Subtarget->hasSSSE3()) {
18836     // We can't use the fast LUT approach, so fall back on vectorized bitmath.
18837     assert(VT.is128BitVector() && "Only 128-bit vectors supported in SSE!");
18838     return LowerVectorCTPOPBitmath(Op0, DL, Subtarget, DAG);
18839   }
18840
18841   if (VT.is256BitVector() && !Subtarget->hasInt256()) {
18842     unsigned NumElems = VT.getVectorNumElements();
18843
18844     // Extract each 128-bit vector, compute pop count and concat the result.
18845     SDValue LHS = Extract128BitVector(Op0, 0, DAG, DL);
18846     SDValue RHS = Extract128BitVector(Op0, NumElems/2, DAG, DL);
18847
18848     return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT,
18849                        LowerVectorCTPOPInRegLUT(LHS, DL, Subtarget, DAG),
18850                        LowerVectorCTPOPInRegLUT(RHS, DL, Subtarget, DAG));
18851   }
18852
18853   return LowerVectorCTPOPInRegLUT(Op0, DL, Subtarget, DAG);
18854 }
18855
18856 static SDValue LowerCTPOP(SDValue Op, const X86Subtarget *Subtarget,
18857                           SelectionDAG &DAG) {
18858   assert(Op.getValueType().isVector() &&
18859          "We only do custom lowering for vector population count.");
18860   return LowerVectorCTPOP(Op, Subtarget, DAG);
18861 }
18862
18863 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
18864   SDNode *Node = Op.getNode();
18865   SDLoc dl(Node);
18866   EVT T = Node->getValueType(0);
18867   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
18868                               DAG.getConstant(0, dl, T), Node->getOperand(2));
18869   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
18870                        cast<AtomicSDNode>(Node)->getMemoryVT(),
18871                        Node->getOperand(0),
18872                        Node->getOperand(1), negOp,
18873                        cast<AtomicSDNode>(Node)->getMemOperand(),
18874                        cast<AtomicSDNode>(Node)->getOrdering(),
18875                        cast<AtomicSDNode>(Node)->getSynchScope());
18876 }
18877
18878 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
18879   SDNode *Node = Op.getNode();
18880   SDLoc dl(Node);
18881   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
18882
18883   // Convert seq_cst store -> xchg
18884   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
18885   // FIXME: On 32-bit, store -> fist or movq would be more efficient
18886   //        (The only way to get a 16-byte store is cmpxchg16b)
18887   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
18888   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
18889       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
18890     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
18891                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
18892                                  Node->getOperand(0),
18893                                  Node->getOperand(1), Node->getOperand(2),
18894                                  cast<AtomicSDNode>(Node)->getMemOperand(),
18895                                  cast<AtomicSDNode>(Node)->getOrdering(),
18896                                  cast<AtomicSDNode>(Node)->getSynchScope());
18897     return Swap.getValue(1);
18898   }
18899   // Other atomic stores have a simple pattern.
18900   return Op;
18901 }
18902
18903 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
18904   EVT VT = Op.getNode()->getSimpleValueType(0);
18905
18906   // Let legalize expand this if it isn't a legal type yet.
18907   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18908     return SDValue();
18909
18910   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
18911
18912   unsigned Opc;
18913   bool ExtraOp = false;
18914   switch (Op.getOpcode()) {
18915   default: llvm_unreachable("Invalid code");
18916   case ISD::ADDC: Opc = X86ISD::ADD; break;
18917   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
18918   case ISD::SUBC: Opc = X86ISD::SUB; break;
18919   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
18920   }
18921
18922   if (!ExtraOp)
18923     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
18924                        Op.getOperand(1));
18925   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
18926                      Op.getOperand(1), Op.getOperand(2));
18927 }
18928
18929 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
18930                             SelectionDAG &DAG) {
18931   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
18932
18933   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
18934   // which returns the values as { float, float } (in XMM0) or
18935   // { double, double } (which is returned in XMM0, XMM1).
18936   SDLoc dl(Op);
18937   SDValue Arg = Op.getOperand(0);
18938   EVT ArgVT = Arg.getValueType();
18939   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
18940
18941   TargetLowering::ArgListTy Args;
18942   TargetLowering::ArgListEntry Entry;
18943
18944   Entry.Node = Arg;
18945   Entry.Ty = ArgTy;
18946   Entry.isSExt = false;
18947   Entry.isZExt = false;
18948   Args.push_back(Entry);
18949
18950   bool isF64 = ArgVT == MVT::f64;
18951   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
18952   // the small struct {f32, f32} is returned in (eax, edx). For f64,
18953   // the results are returned via SRet in memory.
18954   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
18955   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18956   SDValue Callee =
18957       DAG.getExternalSymbol(LibcallName, TLI.getPointerTy(DAG.getDataLayout()));
18958
18959   Type *RetTy = isF64
18960     ? (Type*)StructType::get(ArgTy, ArgTy, nullptr)
18961     : (Type*)VectorType::get(ArgTy, 4);
18962
18963   TargetLowering::CallLoweringInfo CLI(DAG);
18964   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
18965     .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
18966
18967   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
18968
18969   if (isF64)
18970     // Returned in xmm0 and xmm1.
18971     return CallResult.first;
18972
18973   // Returned in bits 0:31 and 32:64 xmm0.
18974   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
18975                                CallResult.first, DAG.getIntPtrConstant(0, dl));
18976   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
18977                                CallResult.first, DAG.getIntPtrConstant(1, dl));
18978   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
18979   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
18980 }
18981
18982 static SDValue LowerMSCATTER(SDValue Op, const X86Subtarget *Subtarget,
18983                              SelectionDAG &DAG) {
18984   assert(Subtarget->hasAVX512() &&
18985          "MGATHER/MSCATTER are supported on AVX-512 arch only");
18986
18987   MaskedScatterSDNode *N = cast<MaskedScatterSDNode>(Op.getNode());
18988   EVT VT = N->getValue().getValueType();
18989   assert(VT.getScalarSizeInBits() >= 32 && "Unsupported scatter op");
18990   SDLoc dl(Op);
18991
18992   // X86 scatter kills mask register, so its type should be added to
18993   // the list of return values
18994   if (N->getNumValues() == 1) {
18995     SDValue Index = N->getIndex();
18996     if (!Subtarget->hasVLX() && !VT.is512BitVector() &&
18997         !Index.getValueType().is512BitVector())
18998       Index = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i64, Index);
18999
19000     SDVTList VTs = DAG.getVTList(N->getMask().getValueType(), MVT::Other);
19001     SDValue Ops[] = { N->getOperand(0), N->getOperand(1),  N->getOperand(2),
19002                       N->getOperand(3), Index };
19003
19004     SDValue NewScatter = DAG.getMaskedScatter(VTs, VT, dl, Ops, N->getMemOperand());
19005     DAG.ReplaceAllUsesWith(Op, SDValue(NewScatter.getNode(), 1));
19006     return SDValue(NewScatter.getNode(), 0);
19007   }
19008   return Op;
19009 }
19010
19011 static SDValue LowerMGATHER(SDValue Op, const X86Subtarget *Subtarget,
19012                             SelectionDAG &DAG) {
19013   assert(Subtarget->hasAVX512() &&
19014          "MGATHER/MSCATTER are supported on AVX-512 arch only");
19015
19016   MaskedGatherSDNode *N = cast<MaskedGatherSDNode>(Op.getNode());
19017   EVT VT = Op.getValueType();
19018   assert(VT.getScalarSizeInBits() >= 32 && "Unsupported gather op");
19019   SDLoc dl(Op);
19020
19021   SDValue Index = N->getIndex();
19022   if (!Subtarget->hasVLX() && !VT.is512BitVector() &&
19023       !Index.getValueType().is512BitVector()) {
19024     Index = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i64, Index);
19025     SDValue Ops[] = { N->getOperand(0), N->getOperand(1),  N->getOperand(2),
19026                       N->getOperand(3), Index };
19027     DAG.UpdateNodeOperands(N, Ops);
19028   }
19029   return Op;
19030 }
19031
19032 SDValue X86TargetLowering::LowerGC_TRANSITION_START(SDValue Op,
19033                                                     SelectionDAG &DAG) const {
19034   // TODO: Eventually, the lowering of these nodes should be informed by or
19035   // deferred to the GC strategy for the function in which they appear. For
19036   // now, however, they must be lowered to something. Since they are logically
19037   // no-ops in the case of a null GC strategy (or a GC strategy which does not
19038   // require special handling for these nodes), lower them as literal NOOPs for
19039   // the time being.
19040   SmallVector<SDValue, 2> Ops;
19041
19042   Ops.push_back(Op.getOperand(0));
19043   if (Op->getGluedNode())
19044     Ops.push_back(Op->getOperand(Op->getNumOperands() - 1));
19045
19046   SDLoc OpDL(Op);
19047   SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
19048   SDValue NOOP(DAG.getMachineNode(X86::NOOP, SDLoc(Op), VTs, Ops), 0);
19049
19050   return NOOP;
19051 }
19052
19053 SDValue X86TargetLowering::LowerGC_TRANSITION_END(SDValue Op,
19054                                                   SelectionDAG &DAG) const {
19055   // TODO: Eventually, the lowering of these nodes should be informed by or
19056   // deferred to the GC strategy for the function in which they appear. For
19057   // now, however, they must be lowered to something. Since they are logically
19058   // no-ops in the case of a null GC strategy (or a GC strategy which does not
19059   // require special handling for these nodes), lower them as literal NOOPs for
19060   // the time being.
19061   SmallVector<SDValue, 2> Ops;
19062
19063   Ops.push_back(Op.getOperand(0));
19064   if (Op->getGluedNode())
19065     Ops.push_back(Op->getOperand(Op->getNumOperands() - 1));
19066
19067   SDLoc OpDL(Op);
19068   SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
19069   SDValue NOOP(DAG.getMachineNode(X86::NOOP, SDLoc(Op), VTs, Ops), 0);
19070
19071   return NOOP;
19072 }
19073
19074 /// LowerOperation - Provide custom lowering hooks for some operations.
19075 ///
19076 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
19077   switch (Op.getOpcode()) {
19078   default: llvm_unreachable("Should not custom lower this!");
19079   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
19080   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
19081     return LowerCMP_SWAP(Op, Subtarget, DAG);
19082   case ISD::CTPOP:              return LowerCTPOP(Op, Subtarget, DAG);
19083   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
19084   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
19085   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
19086   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, Subtarget, DAG);
19087   case ISD::VECTOR_SHUFFLE:     return lowerVectorShuffle(Op, Subtarget, DAG);
19088   case ISD::VSELECT:            return LowerVSELECT(Op, DAG);
19089   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
19090   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
19091   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
19092   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
19093   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
19094   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
19095   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
19096   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
19097   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
19098   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
19099   case ISD::SHL_PARTS:
19100   case ISD::SRA_PARTS:
19101   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
19102   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
19103   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
19104   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
19105   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
19106   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
19107   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
19108   case ISD::SIGN_EXTEND_VECTOR_INREG:
19109     return LowerSIGN_EXTEND_VECTOR_INREG(Op, Subtarget, DAG);
19110   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
19111   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
19112   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
19113   case ISD::LOAD:               return LowerExtendedLoad(Op, Subtarget, DAG);
19114   case ISD::FABS:
19115   case ISD::FNEG:               return LowerFABSorFNEG(Op, DAG);
19116   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
19117   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
19118   case ISD::SETCC:              return LowerSETCC(Op, DAG);
19119   case ISD::SELECT:             return LowerSELECT(Op, DAG);
19120   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
19121   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
19122   case ISD::VASTART:            return LowerVASTART(Op, DAG);
19123   case ISD::VAARG:              return LowerVAARG(Op, DAG);
19124   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
19125   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, Subtarget, DAG);
19126   case ISD::INTRINSIC_VOID:
19127   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
19128   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
19129   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
19130   case ISD::FRAME_TO_ARGS_OFFSET:
19131                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
19132   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
19133   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
19134   case ISD::CATCHRET:           return LowerCATCHRET(Op, DAG);
19135   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
19136   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
19137   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
19138   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
19139   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
19140   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
19141   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
19142   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
19143   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
19144   case ISD::UMUL_LOHI:
19145   case ISD::SMUL_LOHI:          return LowerMUL_LOHI(Op, Subtarget, DAG);
19146   case ISD::SRA:
19147   case ISD::SRL:
19148   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
19149   case ISD::SADDO:
19150   case ISD::UADDO:
19151   case ISD::SSUBO:
19152   case ISD::USUBO:
19153   case ISD::SMULO:
19154   case ISD::UMULO:              return LowerXALUO(Op, DAG);
19155   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
19156   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
19157   case ISD::ADDC:
19158   case ISD::ADDE:
19159   case ISD::SUBC:
19160   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
19161   case ISD::ADD:                return LowerADD(Op, DAG);
19162   case ISD::SUB:                return LowerSUB(Op, DAG);
19163   case ISD::SMAX:
19164   case ISD::SMIN:
19165   case ISD::UMAX:
19166   case ISD::UMIN:               return LowerMINMAX(Op, DAG);
19167   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
19168   case ISD::MGATHER:            return LowerMGATHER(Op, Subtarget, DAG);
19169   case ISD::MSCATTER:           return LowerMSCATTER(Op, Subtarget, DAG);
19170   case ISD::GC_TRANSITION_START:
19171                                 return LowerGC_TRANSITION_START(Op, DAG);
19172   case ISD::GC_TRANSITION_END:  return LowerGC_TRANSITION_END(Op, DAG);
19173   }
19174 }
19175
19176 /// ReplaceNodeResults - Replace a node with an illegal result type
19177 /// with a new node built out of custom code.
19178 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
19179                                            SmallVectorImpl<SDValue>&Results,
19180                                            SelectionDAG &DAG) const {
19181   SDLoc dl(N);
19182   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19183   switch (N->getOpcode()) {
19184   default:
19185     llvm_unreachable("Do not know how to custom type legalize this operation!");
19186   // We might have generated v2f32 FMIN/FMAX operations. Widen them to v4f32.
19187   case X86ISD::FMINC:
19188   case X86ISD::FMIN:
19189   case X86ISD::FMAXC:
19190   case X86ISD::FMAX: {
19191     EVT VT = N->getValueType(0);
19192     if (VT != MVT::v2f32)
19193       llvm_unreachable("Unexpected type (!= v2f32) on FMIN/FMAX.");
19194     SDValue UNDEF = DAG.getUNDEF(VT);
19195     SDValue LHS = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4f32,
19196                               N->getOperand(0), UNDEF);
19197     SDValue RHS = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v4f32,
19198                               N->getOperand(1), UNDEF);
19199     Results.push_back(DAG.getNode(N->getOpcode(), dl, MVT::v4f32, LHS, RHS));
19200     return;
19201   }
19202   case ISD::SIGN_EXTEND_INREG:
19203   case ISD::ADDC:
19204   case ISD::ADDE:
19205   case ISD::SUBC:
19206   case ISD::SUBE:
19207     // We don't want to expand or promote these.
19208     return;
19209   case ISD::SDIV:
19210   case ISD::UDIV:
19211   case ISD::SREM:
19212   case ISD::UREM:
19213   case ISD::SDIVREM:
19214   case ISD::UDIVREM: {
19215     SDValue V = LowerWin64_i128OP(SDValue(N,0), DAG);
19216     Results.push_back(V);
19217     return;
19218   }
19219   case ISD::FP_TO_SINT:
19220   case ISD::FP_TO_UINT: {
19221     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
19222
19223     std::pair<SDValue,SDValue> Vals =
19224         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
19225     SDValue FIST = Vals.first, StackSlot = Vals.second;
19226     if (FIST.getNode()) {
19227       EVT VT = N->getValueType(0);
19228       // Return a load from the stack slot.
19229       if (StackSlot.getNode())
19230         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
19231                                       MachinePointerInfo(),
19232                                       false, false, false, 0));
19233       else
19234         Results.push_back(FIST);
19235     }
19236     return;
19237   }
19238   case ISD::UINT_TO_FP: {
19239     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
19240     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
19241         N->getValueType(0) != MVT::v2f32)
19242       return;
19243     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
19244                                  N->getOperand(0));
19245     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), dl,
19246                                      MVT::f64);
19247     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
19248     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
19249                              DAG.getBitcast(MVT::v2i64, VBias));
19250     Or = DAG.getBitcast(MVT::v2f64, Or);
19251     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
19252     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
19253     return;
19254   }
19255   case ISD::FP_ROUND: {
19256     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
19257         return;
19258     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
19259     Results.push_back(V);
19260     return;
19261   }
19262   case ISD::FP_EXTEND: {
19263     // Right now, only MVT::v2f32 has OperationAction for FP_EXTEND.
19264     // No other ValueType for FP_EXTEND should reach this point.
19265     assert(N->getValueType(0) == MVT::v2f32 &&
19266            "Do not know how to legalize this Node");
19267     return;
19268   }
19269   case ISD::INTRINSIC_W_CHAIN: {
19270     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
19271     switch (IntNo) {
19272     default : llvm_unreachable("Do not know how to custom type "
19273                                "legalize this intrinsic operation!");
19274     case Intrinsic::x86_rdtsc:
19275       return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
19276                                      Results);
19277     case Intrinsic::x86_rdtscp:
19278       return getReadTimeStampCounter(N, dl, X86ISD::RDTSCP_DAG, DAG, Subtarget,
19279                                      Results);
19280     case Intrinsic::x86_rdpmc:
19281       return getReadPerformanceCounter(N, dl, DAG, Subtarget, Results);
19282     }
19283   }
19284   case ISD::READCYCLECOUNTER: {
19285     return getReadTimeStampCounter(N, dl, X86ISD::RDTSC_DAG, DAG, Subtarget,
19286                                    Results);
19287   }
19288   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
19289     EVT T = N->getValueType(0);
19290     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
19291     bool Regs64bit = T == MVT::i128;
19292     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
19293     SDValue cpInL, cpInH;
19294     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
19295                         DAG.getConstant(0, dl, HalfT));
19296     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
19297                         DAG.getConstant(1, dl, HalfT));
19298     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
19299                              Regs64bit ? X86::RAX : X86::EAX,
19300                              cpInL, SDValue());
19301     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
19302                              Regs64bit ? X86::RDX : X86::EDX,
19303                              cpInH, cpInL.getValue(1));
19304     SDValue swapInL, swapInH;
19305     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
19306                           DAG.getConstant(0, dl, HalfT));
19307     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
19308                           DAG.getConstant(1, dl, HalfT));
19309     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
19310                                Regs64bit ? X86::RBX : X86::EBX,
19311                                swapInL, cpInH.getValue(1));
19312     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
19313                                Regs64bit ? X86::RCX : X86::ECX,
19314                                swapInH, swapInL.getValue(1));
19315     SDValue Ops[] = { swapInH.getValue(0),
19316                       N->getOperand(1),
19317                       swapInH.getValue(1) };
19318     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
19319     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
19320     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
19321                                   X86ISD::LCMPXCHG8_DAG;
19322     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, T, MMO);
19323     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
19324                                         Regs64bit ? X86::RAX : X86::EAX,
19325                                         HalfT, Result.getValue(1));
19326     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
19327                                         Regs64bit ? X86::RDX : X86::EDX,
19328                                         HalfT, cpOutL.getValue(2));
19329     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
19330
19331     SDValue EFLAGS = DAG.getCopyFromReg(cpOutH.getValue(1), dl, X86::EFLAGS,
19332                                         MVT::i32, cpOutH.getValue(2));
19333     SDValue Success =
19334         DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
19335                     DAG.getConstant(X86::COND_E, dl, MVT::i8), EFLAGS);
19336     Success = DAG.getZExtOrTrunc(Success, dl, N->getValueType(1));
19337
19338     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF));
19339     Results.push_back(Success);
19340     Results.push_back(EFLAGS.getValue(1));
19341     return;
19342   }
19343   case ISD::ATOMIC_SWAP:
19344   case ISD::ATOMIC_LOAD_ADD:
19345   case ISD::ATOMIC_LOAD_SUB:
19346   case ISD::ATOMIC_LOAD_AND:
19347   case ISD::ATOMIC_LOAD_OR:
19348   case ISD::ATOMIC_LOAD_XOR:
19349   case ISD::ATOMIC_LOAD_NAND:
19350   case ISD::ATOMIC_LOAD_MIN:
19351   case ISD::ATOMIC_LOAD_MAX:
19352   case ISD::ATOMIC_LOAD_UMIN:
19353   case ISD::ATOMIC_LOAD_UMAX:
19354   case ISD::ATOMIC_LOAD: {
19355     // Delegate to generic TypeLegalization. Situations we can really handle
19356     // should have already been dealt with by AtomicExpandPass.cpp.
19357     break;
19358   }
19359   case ISD::BITCAST: {
19360     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
19361     EVT DstVT = N->getValueType(0);
19362     EVT SrcVT = N->getOperand(0)->getValueType(0);
19363
19364     if (SrcVT != MVT::f64 ||
19365         (DstVT != MVT::v2i32 && DstVT != MVT::v4i16 && DstVT != MVT::v8i8))
19366       return;
19367
19368     unsigned NumElts = DstVT.getVectorNumElements();
19369     EVT SVT = DstVT.getVectorElementType();
19370     EVT WiderVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumElts * 2);
19371     SDValue Expanded = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
19372                                    MVT::v2f64, N->getOperand(0));
19373     SDValue ToVecInt = DAG.getBitcast(WiderVT, Expanded);
19374
19375     if (ExperimentalVectorWideningLegalization) {
19376       // If we are legalizing vectors by widening, we already have the desired
19377       // legal vector type, just return it.
19378       Results.push_back(ToVecInt);
19379       return;
19380     }
19381
19382     SmallVector<SDValue, 8> Elts;
19383     for (unsigned i = 0, e = NumElts; i != e; ++i)
19384       Elts.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, SVT,
19385                                    ToVecInt, DAG.getIntPtrConstant(i, dl)));
19386
19387     Results.push_back(DAG.getNode(ISD::BUILD_VECTOR, dl, DstVT, Elts));
19388   }
19389   }
19390 }
19391
19392 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
19393   switch ((X86ISD::NodeType)Opcode) {
19394   case X86ISD::FIRST_NUMBER:       break;
19395   case X86ISD::BSF:                return "X86ISD::BSF";
19396   case X86ISD::BSR:                return "X86ISD::BSR";
19397   case X86ISD::SHLD:               return "X86ISD::SHLD";
19398   case X86ISD::SHRD:               return "X86ISD::SHRD";
19399   case X86ISD::FAND:               return "X86ISD::FAND";
19400   case X86ISD::FANDN:              return "X86ISD::FANDN";
19401   case X86ISD::FOR:                return "X86ISD::FOR";
19402   case X86ISD::FXOR:               return "X86ISD::FXOR";
19403   case X86ISD::FILD:               return "X86ISD::FILD";
19404   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
19405   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
19406   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
19407   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
19408   case X86ISD::FLD:                return "X86ISD::FLD";
19409   case X86ISD::FST:                return "X86ISD::FST";
19410   case X86ISD::CALL:               return "X86ISD::CALL";
19411   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
19412   case X86ISD::RDTSCP_DAG:         return "X86ISD::RDTSCP_DAG";
19413   case X86ISD::RDPMC_DAG:          return "X86ISD::RDPMC_DAG";
19414   case X86ISD::BT:                 return "X86ISD::BT";
19415   case X86ISD::CMP:                return "X86ISD::CMP";
19416   case X86ISD::COMI:               return "X86ISD::COMI";
19417   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
19418   case X86ISD::CMPM:               return "X86ISD::CMPM";
19419   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
19420   case X86ISD::CMPM_RND:           return "X86ISD::CMPM_RND";
19421   case X86ISD::SETCC:              return "X86ISD::SETCC";
19422   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
19423   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
19424   case X86ISD::FGETSIGNx86:        return "X86ISD::FGETSIGNx86";
19425   case X86ISD::CMOV:               return "X86ISD::CMOV";
19426   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
19427   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
19428   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
19429   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
19430   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
19431   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
19432   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
19433   case X86ISD::MOVDQ2Q:            return "X86ISD::MOVDQ2Q";
19434   case X86ISD::MMX_MOVD2W:         return "X86ISD::MMX_MOVD2W";
19435   case X86ISD::MMX_MOVW2D:         return "X86ISD::MMX_MOVW2D";
19436   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
19437   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
19438   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
19439   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
19440   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
19441   case X86ISD::MMX_PINSRW:         return "X86ISD::MMX_PINSRW";
19442   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
19443   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
19444   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
19445   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
19446   case X86ISD::SHRUNKBLEND:        return "X86ISD::SHRUNKBLEND";
19447   case X86ISD::ADDUS:              return "X86ISD::ADDUS";
19448   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
19449   case X86ISD::HADD:               return "X86ISD::HADD";
19450   case X86ISD::HSUB:               return "X86ISD::HSUB";
19451   case X86ISD::FHADD:              return "X86ISD::FHADD";
19452   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
19453   case X86ISD::ABS:                return "X86ISD::ABS";
19454   case X86ISD::CONFLICT:           return "X86ISD::CONFLICT";
19455   case X86ISD::FMAX:               return "X86ISD::FMAX";
19456   case X86ISD::FMAX_RND:           return "X86ISD::FMAX_RND";
19457   case X86ISD::FMIN:               return "X86ISD::FMIN";
19458   case X86ISD::FMIN_RND:           return "X86ISD::FMIN_RND";
19459   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
19460   case X86ISD::FMINC:              return "X86ISD::FMINC";
19461   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
19462   case X86ISD::FRCP:               return "X86ISD::FRCP";
19463   case X86ISD::EXTRQI:             return "X86ISD::EXTRQI";
19464   case X86ISD::INSERTQI:           return "X86ISD::INSERTQI";
19465   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
19466   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
19467   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
19468   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
19469   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
19470   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
19471   case X86ISD::CATCHRET:           return "X86ISD::CATCHRET";
19472   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
19473   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
19474   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
19475   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
19476   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
19477   case X86ISD::LCMPXCHG16_DAG:     return "X86ISD::LCMPXCHG16_DAG";
19478   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
19479   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
19480   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
19481   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
19482   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
19483   case X86ISD::VTRUNCS:            return "X86ISD::VTRUNCS";
19484   case X86ISD::VTRUNCUS:           return "X86ISD::VTRUNCUS";
19485   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
19486   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
19487   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
19488   case X86ISD::CVTDQ2PD:           return "X86ISD::CVTDQ2PD";
19489   case X86ISD::CVTUDQ2PD:          return "X86ISD::CVTUDQ2PD";
19490   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
19491   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
19492   case X86ISD::VSHL:               return "X86ISD::VSHL";
19493   case X86ISD::VSRL:               return "X86ISD::VSRL";
19494   case X86ISD::VSRA:               return "X86ISD::VSRA";
19495   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
19496   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
19497   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
19498   case X86ISD::CMPP:               return "X86ISD::CMPP";
19499   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
19500   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
19501   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
19502   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
19503   case X86ISD::ADD:                return "X86ISD::ADD";
19504   case X86ISD::SUB:                return "X86ISD::SUB";
19505   case X86ISD::ADC:                return "X86ISD::ADC";
19506   case X86ISD::SBB:                return "X86ISD::SBB";
19507   case X86ISD::SMUL:               return "X86ISD::SMUL";
19508   case X86ISD::UMUL:               return "X86ISD::UMUL";
19509   case X86ISD::SMUL8:              return "X86ISD::SMUL8";
19510   case X86ISD::UMUL8:              return "X86ISD::UMUL8";
19511   case X86ISD::SDIVREM8_SEXT_HREG: return "X86ISD::SDIVREM8_SEXT_HREG";
19512   case X86ISD::UDIVREM8_ZEXT_HREG: return "X86ISD::UDIVREM8_ZEXT_HREG";
19513   case X86ISD::INC:                return "X86ISD::INC";
19514   case X86ISD::DEC:                return "X86ISD::DEC";
19515   case X86ISD::OR:                 return "X86ISD::OR";
19516   case X86ISD::XOR:                return "X86ISD::XOR";
19517   case X86ISD::AND:                return "X86ISD::AND";
19518   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
19519   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
19520   case X86ISD::PTEST:              return "X86ISD::PTEST";
19521   case X86ISD::TESTP:              return "X86ISD::TESTP";
19522   case X86ISD::TESTM:              return "X86ISD::TESTM";
19523   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
19524   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
19525   case X86ISD::KTEST:              return "X86ISD::KTEST";
19526   case X86ISD::PACKSS:             return "X86ISD::PACKSS";
19527   case X86ISD::PACKUS:             return "X86ISD::PACKUS";
19528   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
19529   case X86ISD::VALIGN:             return "X86ISD::VALIGN";
19530   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
19531   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
19532   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
19533   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
19534   case X86ISD::SHUF128:            return "X86ISD::SHUF128";
19535   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
19536   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
19537   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
19538   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
19539   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
19540   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
19541   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
19542   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
19543   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
19544   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
19545   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
19546   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
19547   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
19548   case X86ISD::SUBV_BROADCAST:     return "X86ISD::SUBV_BROADCAST";
19549   case X86ISD::VEXTRACT:           return "X86ISD::VEXTRACT";
19550   case X86ISD::VPERMILPV:          return "X86ISD::VPERMILPV";
19551   case X86ISD::VPERMILPI:          return "X86ISD::VPERMILPI";
19552   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
19553   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
19554   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
19555   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
19556   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
19557   case X86ISD::VFIXUPIMM:          return "X86ISD::VFIXUPIMM";
19558   case X86ISD::VRANGE:             return "X86ISD::VRANGE";
19559   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
19560   case X86ISD::PMULDQ:             return "X86ISD::PMULDQ";
19561   case X86ISD::PSADBW:             return "X86ISD::PSADBW";
19562   case X86ISD::DBPSADBW:           return "X86ISD::DBPSADBW";
19563   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
19564   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
19565   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
19566   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
19567   case X86ISD::MFENCE:             return "X86ISD::MFENCE";
19568   case X86ISD::SFENCE:             return "X86ISD::SFENCE";
19569   case X86ISD::LFENCE:             return "X86ISD::LFENCE";
19570   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
19571   case X86ISD::SAHF:               return "X86ISD::SAHF";
19572   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
19573   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
19574   case X86ISD::VPMADDUBSW:         return "X86ISD::VPMADDUBSW";
19575   case X86ISD::VPMADDWD:           return "X86ISD::VPMADDWD";
19576   case X86ISD::FMADD:              return "X86ISD::FMADD";
19577   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
19578   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
19579   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
19580   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
19581   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
19582   case X86ISD::FMADD_RND:          return "X86ISD::FMADD_RND";
19583   case X86ISD::FNMADD_RND:         return "X86ISD::FNMADD_RND";
19584   case X86ISD::FMSUB_RND:          return "X86ISD::FMSUB_RND";
19585   case X86ISD::FNMSUB_RND:         return "X86ISD::FNMSUB_RND";
19586   case X86ISD::FMADDSUB_RND:       return "X86ISD::FMADDSUB_RND";
19587   case X86ISD::FMSUBADD_RND:       return "X86ISD::FMSUBADD_RND";
19588   case X86ISD::VRNDSCALE:          return "X86ISD::VRNDSCALE";
19589   case X86ISD::VREDUCE:            return "X86ISD::VREDUCE";
19590   case X86ISD::VGETMANT:           return "X86ISD::VGETMANT";
19591   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
19592   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
19593   case X86ISD::XTEST:              return "X86ISD::XTEST";
19594   case X86ISD::COMPRESS:           return "X86ISD::COMPRESS";
19595   case X86ISD::EXPAND:             return "X86ISD::EXPAND";
19596   case X86ISD::SELECT:             return "X86ISD::SELECT";
19597   case X86ISD::ADDSUB:             return "X86ISD::ADDSUB";
19598   case X86ISD::RCP28:              return "X86ISD::RCP28";
19599   case X86ISD::EXP2:               return "X86ISD::EXP2";
19600   case X86ISD::RSQRT28:            return "X86ISD::RSQRT28";
19601   case X86ISD::FADD_RND:           return "X86ISD::FADD_RND";
19602   case X86ISD::FSUB_RND:           return "X86ISD::FSUB_RND";
19603   case X86ISD::FMUL_RND:           return "X86ISD::FMUL_RND";
19604   case X86ISD::FDIV_RND:           return "X86ISD::FDIV_RND";
19605   case X86ISD::FSQRT_RND:          return "X86ISD::FSQRT_RND";
19606   case X86ISD::FGETEXP_RND:        return "X86ISD::FGETEXP_RND";
19607   case X86ISD::SCALEF:             return "X86ISD::SCALEF";
19608   case X86ISD::ADDS:               return "X86ISD::ADDS";
19609   case X86ISD::SUBS:               return "X86ISD::SUBS";
19610   case X86ISD::AVG:                return "X86ISD::AVG";
19611   case X86ISD::MULHRS:             return "X86ISD::MULHRS";
19612   case X86ISD::SINT_TO_FP_RND:     return "X86ISD::SINT_TO_FP_RND";
19613   case X86ISD::UINT_TO_FP_RND:     return "X86ISD::UINT_TO_FP_RND";
19614   case X86ISD::FP_TO_SINT_RND:     return "X86ISD::FP_TO_SINT_RND";
19615   case X86ISD::FP_TO_UINT_RND:     return "X86ISD::FP_TO_UINT_RND";
19616   }
19617   return nullptr;
19618 }
19619
19620 // isLegalAddressingMode - Return true if the addressing mode represented
19621 // by AM is legal for this target, for a load/store of the specified type.
19622 bool X86TargetLowering::isLegalAddressingMode(const DataLayout &DL,
19623                                               const AddrMode &AM, Type *Ty,
19624                                               unsigned AS) const {
19625   // X86 supports extremely general addressing modes.
19626   CodeModel::Model M = getTargetMachine().getCodeModel();
19627   Reloc::Model R = getTargetMachine().getRelocationModel();
19628
19629   // X86 allows a sign-extended 32-bit immediate field as a displacement.
19630   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != nullptr))
19631     return false;
19632
19633   if (AM.BaseGV) {
19634     unsigned GVFlags =
19635       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
19636
19637     // If a reference to this global requires an extra load, we can't fold it.
19638     if (isGlobalStubReference(GVFlags))
19639       return false;
19640
19641     // If BaseGV requires a register for the PIC base, we cannot also have a
19642     // BaseReg specified.
19643     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
19644       return false;
19645
19646     // If lower 4G is not available, then we must use rip-relative addressing.
19647     if ((M != CodeModel::Small || R != Reloc::Static) &&
19648         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
19649       return false;
19650   }
19651
19652   switch (AM.Scale) {
19653   case 0:
19654   case 1:
19655   case 2:
19656   case 4:
19657   case 8:
19658     // These scales always work.
19659     break;
19660   case 3:
19661   case 5:
19662   case 9:
19663     // These scales are formed with basereg+scalereg.  Only accept if there is
19664     // no basereg yet.
19665     if (AM.HasBaseReg)
19666       return false;
19667     break;
19668   default:  // Other stuff never works.
19669     return false;
19670   }
19671
19672   return true;
19673 }
19674
19675 bool X86TargetLowering::isVectorShiftByScalarCheap(Type *Ty) const {
19676   unsigned Bits = Ty->getScalarSizeInBits();
19677
19678   // 8-bit shifts are always expensive, but versions with a scalar amount aren't
19679   // particularly cheaper than those without.
19680   if (Bits == 8)
19681     return false;
19682
19683   // On AVX2 there are new vpsllv[dq] instructions (and other shifts), that make
19684   // variable shifts just as cheap as scalar ones.
19685   if (Subtarget->hasInt256() && (Bits == 32 || Bits == 64))
19686     return false;
19687
19688   // Otherwise, it's significantly cheaper to shift by a scalar amount than by a
19689   // fully general vector.
19690   return true;
19691 }
19692
19693 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
19694   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
19695     return false;
19696   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
19697   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
19698   return NumBits1 > NumBits2;
19699 }
19700
19701 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
19702   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
19703     return false;
19704
19705   if (!isTypeLegal(EVT::getEVT(Ty1)))
19706     return false;
19707
19708   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
19709
19710   // Assuming the caller doesn't have a zeroext or signext return parameter,
19711   // truncation all the way down to i1 is valid.
19712   return true;
19713 }
19714
19715 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
19716   return isInt<32>(Imm);
19717 }
19718
19719 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
19720   // Can also use sub to handle negated immediates.
19721   return isInt<32>(Imm);
19722 }
19723
19724 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
19725   if (!VT1.isInteger() || !VT2.isInteger())
19726     return false;
19727   unsigned NumBits1 = VT1.getSizeInBits();
19728   unsigned NumBits2 = VT2.getSizeInBits();
19729   return NumBits1 > NumBits2;
19730 }
19731
19732 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
19733   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
19734   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
19735 }
19736
19737 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
19738   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
19739   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
19740 }
19741
19742 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
19743   EVT VT1 = Val.getValueType();
19744   if (isZExtFree(VT1, VT2))
19745     return true;
19746
19747   if (Val.getOpcode() != ISD::LOAD)
19748     return false;
19749
19750   if (!VT1.isSimple() || !VT1.isInteger() ||
19751       !VT2.isSimple() || !VT2.isInteger())
19752     return false;
19753
19754   switch (VT1.getSimpleVT().SimpleTy) {
19755   default: break;
19756   case MVT::i8:
19757   case MVT::i16:
19758   case MVT::i32:
19759     // X86 has 8, 16, and 32-bit zero-extending loads.
19760     return true;
19761   }
19762
19763   return false;
19764 }
19765
19766 bool X86TargetLowering::isVectorLoadExtDesirable(SDValue) const { return true; }
19767
19768 bool
19769 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
19770   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4() || Subtarget->hasAVX512()))
19771     return false;
19772
19773   VT = VT.getScalarType();
19774
19775   if (!VT.isSimple())
19776     return false;
19777
19778   switch (VT.getSimpleVT().SimpleTy) {
19779   case MVT::f32:
19780   case MVT::f64:
19781     return true;
19782   default:
19783     break;
19784   }
19785
19786   return false;
19787 }
19788
19789 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
19790   // i16 instructions are longer (0x66 prefix) and potentially slower.
19791   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
19792 }
19793
19794 /// isShuffleMaskLegal - Targets can use this to indicate that they only
19795 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
19796 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
19797 /// are assumed to be legal.
19798 bool
19799 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
19800                                       EVT VT) const {
19801   if (!VT.isSimple())
19802     return false;
19803
19804   // Not for i1 vectors
19805   if (VT.getScalarType() == MVT::i1)
19806     return false;
19807
19808   // Very little shuffling can be done for 64-bit vectors right now.
19809   if (VT.getSizeInBits() == 64)
19810     return false;
19811
19812   // We only care that the types being shuffled are legal. The lowering can
19813   // handle any possible shuffle mask that results.
19814   return isTypeLegal(VT.getSimpleVT());
19815 }
19816
19817 bool
19818 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
19819                                           EVT VT) const {
19820   // Just delegate to the generic legality, clear masks aren't special.
19821   return isShuffleMaskLegal(Mask, VT);
19822 }
19823
19824 //===----------------------------------------------------------------------===//
19825 //                           X86 Scheduler Hooks
19826 //===----------------------------------------------------------------------===//
19827
19828 /// Utility function to emit xbegin specifying the start of an RTM region.
19829 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
19830                                      const TargetInstrInfo *TII) {
19831   DebugLoc DL = MI->getDebugLoc();
19832
19833   const BasicBlock *BB = MBB->getBasicBlock();
19834   MachineFunction::iterator I = MBB;
19835   ++I;
19836
19837   // For the v = xbegin(), we generate
19838   //
19839   // thisMBB:
19840   //  xbegin sinkMBB
19841   //
19842   // mainMBB:
19843   //  eax = -1
19844   //
19845   // sinkMBB:
19846   //  v = eax
19847
19848   MachineBasicBlock *thisMBB = MBB;
19849   MachineFunction *MF = MBB->getParent();
19850   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
19851   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
19852   MF->insert(I, mainMBB);
19853   MF->insert(I, sinkMBB);
19854
19855   // Transfer the remainder of BB and its successor edges to sinkMBB.
19856   sinkMBB->splice(sinkMBB->begin(), MBB,
19857                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
19858   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
19859
19860   // thisMBB:
19861   //  xbegin sinkMBB
19862   //  # fallthrough to mainMBB
19863   //  # abortion to sinkMBB
19864   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
19865   thisMBB->addSuccessor(mainMBB);
19866   thisMBB->addSuccessor(sinkMBB);
19867
19868   // mainMBB:
19869   //  EAX = -1
19870   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
19871   mainMBB->addSuccessor(sinkMBB);
19872
19873   // sinkMBB:
19874   // EAX is live into the sinkMBB
19875   sinkMBB->addLiveIn(X86::EAX);
19876   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
19877           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
19878     .addReg(X86::EAX);
19879
19880   MI->eraseFromParent();
19881   return sinkMBB;
19882 }
19883
19884 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
19885 // or XMM0_V32I8 in AVX all of this code can be replaced with that
19886 // in the .td file.
19887 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
19888                                        const TargetInstrInfo *TII) {
19889   unsigned Opc;
19890   switch (MI->getOpcode()) {
19891   default: llvm_unreachable("illegal opcode!");
19892   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
19893   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
19894   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
19895   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
19896   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
19897   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
19898   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
19899   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
19900   }
19901
19902   DebugLoc dl = MI->getDebugLoc();
19903   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
19904
19905   unsigned NumArgs = MI->getNumOperands();
19906   for (unsigned i = 1; i < NumArgs; ++i) {
19907     MachineOperand &Op = MI->getOperand(i);
19908     if (!(Op.isReg() && Op.isImplicit()))
19909       MIB.addOperand(Op);
19910   }
19911   if (MI->hasOneMemOperand())
19912     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
19913
19914   BuildMI(*BB, MI, dl,
19915     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
19916     .addReg(X86::XMM0);
19917
19918   MI->eraseFromParent();
19919   return BB;
19920 }
19921
19922 // FIXME: Custom handling because TableGen doesn't support multiple implicit
19923 // defs in an instruction pattern
19924 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
19925                                        const TargetInstrInfo *TII) {
19926   unsigned Opc;
19927   switch (MI->getOpcode()) {
19928   default: llvm_unreachable("illegal opcode!");
19929   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
19930   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
19931   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
19932   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
19933   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
19934   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
19935   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
19936   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
19937   }
19938
19939   DebugLoc dl = MI->getDebugLoc();
19940   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
19941
19942   unsigned NumArgs = MI->getNumOperands(); // remove the results
19943   for (unsigned i = 1; i < NumArgs; ++i) {
19944     MachineOperand &Op = MI->getOperand(i);
19945     if (!(Op.isReg() && Op.isImplicit()))
19946       MIB.addOperand(Op);
19947   }
19948   if (MI->hasOneMemOperand())
19949     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
19950
19951   BuildMI(*BB, MI, dl,
19952     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
19953     .addReg(X86::ECX);
19954
19955   MI->eraseFromParent();
19956   return BB;
19957 }
19958
19959 static MachineBasicBlock *EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
19960                                       const X86Subtarget *Subtarget) {
19961   DebugLoc dl = MI->getDebugLoc();
19962   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
19963   // Address into RAX/EAX, other two args into ECX, EDX.
19964   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
19965   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
19966   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
19967   for (int i = 0; i < X86::AddrNumOperands; ++i)
19968     MIB.addOperand(MI->getOperand(i));
19969
19970   unsigned ValOps = X86::AddrNumOperands;
19971   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
19972     .addReg(MI->getOperand(ValOps).getReg());
19973   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
19974     .addReg(MI->getOperand(ValOps+1).getReg());
19975
19976   // The instruction doesn't actually take any operands though.
19977   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
19978
19979   MI->eraseFromParent(); // The pseudo is gone now.
19980   return BB;
19981 }
19982
19983 MachineBasicBlock *
19984 X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr *MI,
19985                                                  MachineBasicBlock *MBB) const {
19986   // Emit va_arg instruction on X86-64.
19987
19988   // Operands to this pseudo-instruction:
19989   // 0  ) Output        : destination address (reg)
19990   // 1-5) Input         : va_list address (addr, i64mem)
19991   // 6  ) ArgSize       : Size (in bytes) of vararg type
19992   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
19993   // 8  ) Align         : Alignment of type
19994   // 9  ) EFLAGS (implicit-def)
19995
19996   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
19997   static_assert(X86::AddrNumOperands == 5,
19998                 "VAARG_64 assumes 5 address operands");
19999
20000   unsigned DestReg = MI->getOperand(0).getReg();
20001   MachineOperand &Base = MI->getOperand(1);
20002   MachineOperand &Scale = MI->getOperand(2);
20003   MachineOperand &Index = MI->getOperand(3);
20004   MachineOperand &Disp = MI->getOperand(4);
20005   MachineOperand &Segment = MI->getOperand(5);
20006   unsigned ArgSize = MI->getOperand(6).getImm();
20007   unsigned ArgMode = MI->getOperand(7).getImm();
20008   unsigned Align = MI->getOperand(8).getImm();
20009
20010   // Memory Reference
20011   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
20012   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
20013   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
20014
20015   // Machine Information
20016   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20017   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
20018   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
20019   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
20020   DebugLoc DL = MI->getDebugLoc();
20021
20022   // struct va_list {
20023   //   i32   gp_offset
20024   //   i32   fp_offset
20025   //   i64   overflow_area (address)
20026   //   i64   reg_save_area (address)
20027   // }
20028   // sizeof(va_list) = 24
20029   // alignment(va_list) = 8
20030
20031   unsigned TotalNumIntRegs = 6;
20032   unsigned TotalNumXMMRegs = 8;
20033   bool UseGPOffset = (ArgMode == 1);
20034   bool UseFPOffset = (ArgMode == 2);
20035   unsigned MaxOffset = TotalNumIntRegs * 8 +
20036                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
20037
20038   /* Align ArgSize to a multiple of 8 */
20039   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
20040   bool NeedsAlign = (Align > 8);
20041
20042   MachineBasicBlock *thisMBB = MBB;
20043   MachineBasicBlock *overflowMBB;
20044   MachineBasicBlock *offsetMBB;
20045   MachineBasicBlock *endMBB;
20046
20047   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
20048   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
20049   unsigned OffsetReg = 0;
20050
20051   if (!UseGPOffset && !UseFPOffset) {
20052     // If we only pull from the overflow region, we don't create a branch.
20053     // We don't need to alter control flow.
20054     OffsetDestReg = 0; // unused
20055     OverflowDestReg = DestReg;
20056
20057     offsetMBB = nullptr;
20058     overflowMBB = thisMBB;
20059     endMBB = thisMBB;
20060   } else {
20061     // First emit code to check if gp_offset (or fp_offset) is below the bound.
20062     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
20063     // If not, pull from overflow_area. (branch to overflowMBB)
20064     //
20065     //       thisMBB
20066     //         |     .
20067     //         |        .
20068     //     offsetMBB   overflowMBB
20069     //         |        .
20070     //         |     .
20071     //        endMBB
20072
20073     // Registers for the PHI in endMBB
20074     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
20075     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
20076
20077     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
20078     MachineFunction *MF = MBB->getParent();
20079     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20080     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20081     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20082
20083     MachineFunction::iterator MBBIter = MBB;
20084     ++MBBIter;
20085
20086     // Insert the new basic blocks
20087     MF->insert(MBBIter, offsetMBB);
20088     MF->insert(MBBIter, overflowMBB);
20089     MF->insert(MBBIter, endMBB);
20090
20091     // Transfer the remainder of MBB and its successor edges to endMBB.
20092     endMBB->splice(endMBB->begin(), thisMBB,
20093                    std::next(MachineBasicBlock::iterator(MI)), thisMBB->end());
20094     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
20095
20096     // Make offsetMBB and overflowMBB successors of thisMBB
20097     thisMBB->addSuccessor(offsetMBB);
20098     thisMBB->addSuccessor(overflowMBB);
20099
20100     // endMBB is a successor of both offsetMBB and overflowMBB
20101     offsetMBB->addSuccessor(endMBB);
20102     overflowMBB->addSuccessor(endMBB);
20103
20104     // Load the offset value into a register
20105     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
20106     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
20107       .addOperand(Base)
20108       .addOperand(Scale)
20109       .addOperand(Index)
20110       .addDisp(Disp, UseFPOffset ? 4 : 0)
20111       .addOperand(Segment)
20112       .setMemRefs(MMOBegin, MMOEnd);
20113
20114     // Check if there is enough room left to pull this argument.
20115     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
20116       .addReg(OffsetReg)
20117       .addImm(MaxOffset + 8 - ArgSizeA8);
20118
20119     // Branch to "overflowMBB" if offset >= max
20120     // Fall through to "offsetMBB" otherwise
20121     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
20122       .addMBB(overflowMBB);
20123   }
20124
20125   // In offsetMBB, emit code to use the reg_save_area.
20126   if (offsetMBB) {
20127     assert(OffsetReg != 0);
20128
20129     // Read the reg_save_area address.
20130     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
20131     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
20132       .addOperand(Base)
20133       .addOperand(Scale)
20134       .addOperand(Index)
20135       .addDisp(Disp, 16)
20136       .addOperand(Segment)
20137       .setMemRefs(MMOBegin, MMOEnd);
20138
20139     // Zero-extend the offset
20140     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
20141       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
20142         .addImm(0)
20143         .addReg(OffsetReg)
20144         .addImm(X86::sub_32bit);
20145
20146     // Add the offset to the reg_save_area to get the final address.
20147     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
20148       .addReg(OffsetReg64)
20149       .addReg(RegSaveReg);
20150
20151     // Compute the offset for the next argument
20152     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
20153     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
20154       .addReg(OffsetReg)
20155       .addImm(UseFPOffset ? 16 : 8);
20156
20157     // Store it back into the va_list.
20158     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
20159       .addOperand(Base)
20160       .addOperand(Scale)
20161       .addOperand(Index)
20162       .addDisp(Disp, UseFPOffset ? 4 : 0)
20163       .addOperand(Segment)
20164       .addReg(NextOffsetReg)
20165       .setMemRefs(MMOBegin, MMOEnd);
20166
20167     // Jump to endMBB
20168     BuildMI(offsetMBB, DL, TII->get(X86::JMP_1))
20169       .addMBB(endMBB);
20170   }
20171
20172   //
20173   // Emit code to use overflow area
20174   //
20175
20176   // Load the overflow_area address into a register.
20177   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
20178   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
20179     .addOperand(Base)
20180     .addOperand(Scale)
20181     .addOperand(Index)
20182     .addDisp(Disp, 8)
20183     .addOperand(Segment)
20184     .setMemRefs(MMOBegin, MMOEnd);
20185
20186   // If we need to align it, do so. Otherwise, just copy the address
20187   // to OverflowDestReg.
20188   if (NeedsAlign) {
20189     // Align the overflow address
20190     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
20191     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
20192
20193     // aligned_addr = (addr + (align-1)) & ~(align-1)
20194     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
20195       .addReg(OverflowAddrReg)
20196       .addImm(Align-1);
20197
20198     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
20199       .addReg(TmpReg)
20200       .addImm(~(uint64_t)(Align-1));
20201   } else {
20202     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
20203       .addReg(OverflowAddrReg);
20204   }
20205
20206   // Compute the next overflow address after this argument.
20207   // (the overflow address should be kept 8-byte aligned)
20208   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
20209   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
20210     .addReg(OverflowDestReg)
20211     .addImm(ArgSizeA8);
20212
20213   // Store the new overflow address.
20214   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
20215     .addOperand(Base)
20216     .addOperand(Scale)
20217     .addOperand(Index)
20218     .addDisp(Disp, 8)
20219     .addOperand(Segment)
20220     .addReg(NextAddrReg)
20221     .setMemRefs(MMOBegin, MMOEnd);
20222
20223   // If we branched, emit the PHI to the front of endMBB.
20224   if (offsetMBB) {
20225     BuildMI(*endMBB, endMBB->begin(), DL,
20226             TII->get(X86::PHI), DestReg)
20227       .addReg(OffsetDestReg).addMBB(offsetMBB)
20228       .addReg(OverflowDestReg).addMBB(overflowMBB);
20229   }
20230
20231   // Erase the pseudo instruction
20232   MI->eraseFromParent();
20233
20234   return endMBB;
20235 }
20236
20237 MachineBasicBlock *
20238 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
20239                                                  MachineInstr *MI,
20240                                                  MachineBasicBlock *MBB) const {
20241   // Emit code to save XMM registers to the stack. The ABI says that the
20242   // number of registers to save is given in %al, so it's theoretically
20243   // possible to do an indirect jump trick to avoid saving all of them,
20244   // however this code takes a simpler approach and just executes all
20245   // of the stores if %al is non-zero. It's less code, and it's probably
20246   // easier on the hardware branch predictor, and stores aren't all that
20247   // expensive anyway.
20248
20249   // Create the new basic blocks. One block contains all the XMM stores,
20250   // and one block is the final destination regardless of whether any
20251   // stores were performed.
20252   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
20253   MachineFunction *F = MBB->getParent();
20254   MachineFunction::iterator MBBIter = MBB;
20255   ++MBBIter;
20256   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
20257   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
20258   F->insert(MBBIter, XMMSaveMBB);
20259   F->insert(MBBIter, EndMBB);
20260
20261   // Transfer the remainder of MBB and its successor edges to EndMBB.
20262   EndMBB->splice(EndMBB->begin(), MBB,
20263                  std::next(MachineBasicBlock::iterator(MI)), MBB->end());
20264   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
20265
20266   // The original block will now fall through to the XMM save block.
20267   MBB->addSuccessor(XMMSaveMBB);
20268   // The XMMSaveMBB will fall through to the end block.
20269   XMMSaveMBB->addSuccessor(EndMBB);
20270
20271   // Now add the instructions.
20272   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20273   DebugLoc DL = MI->getDebugLoc();
20274
20275   unsigned CountReg = MI->getOperand(0).getReg();
20276   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
20277   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
20278
20279   if (!Subtarget->isCallingConvWin64(F->getFunction()->getCallingConv())) {
20280     // If %al is 0, branch around the XMM save block.
20281     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
20282     BuildMI(MBB, DL, TII->get(X86::JE_1)).addMBB(EndMBB);
20283     MBB->addSuccessor(EndMBB);
20284   }
20285
20286   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
20287   // that was just emitted, but clearly shouldn't be "saved".
20288   assert((MI->getNumOperands() <= 3 ||
20289           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
20290           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
20291          && "Expected last argument to be EFLAGS");
20292   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
20293   // In the XMM save block, save all the XMM argument registers.
20294   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
20295     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
20296     MachineMemOperand *MMO = F->getMachineMemOperand(
20297         MachinePointerInfo::getFixedStack(*F, RegSaveFrameIndex, Offset),
20298         MachineMemOperand::MOStore,
20299         /*Size=*/16, /*Align=*/16);
20300     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
20301       .addFrameIndex(RegSaveFrameIndex)
20302       .addImm(/*Scale=*/1)
20303       .addReg(/*IndexReg=*/0)
20304       .addImm(/*Disp=*/Offset)
20305       .addReg(/*Segment=*/0)
20306       .addReg(MI->getOperand(i).getReg())
20307       .addMemOperand(MMO);
20308   }
20309
20310   MI->eraseFromParent();   // The pseudo instruction is gone now.
20311
20312   return EndMBB;
20313 }
20314
20315 // The EFLAGS operand of SelectItr might be missing a kill marker
20316 // because there were multiple uses of EFLAGS, and ISel didn't know
20317 // which to mark. Figure out whether SelectItr should have had a
20318 // kill marker, and set it if it should. Returns the correct kill
20319 // marker value.
20320 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
20321                                      MachineBasicBlock* BB,
20322                                      const TargetRegisterInfo* TRI) {
20323   // Scan forward through BB for a use/def of EFLAGS.
20324   MachineBasicBlock::iterator miI(std::next(SelectItr));
20325   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
20326     const MachineInstr& mi = *miI;
20327     if (mi.readsRegister(X86::EFLAGS))
20328       return false;
20329     if (mi.definesRegister(X86::EFLAGS))
20330       break; // Should have kill-flag - update below.
20331   }
20332
20333   // If we hit the end of the block, check whether EFLAGS is live into a
20334   // successor.
20335   if (miI == BB->end()) {
20336     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
20337                                           sEnd = BB->succ_end();
20338          sItr != sEnd; ++sItr) {
20339       MachineBasicBlock* succ = *sItr;
20340       if (succ->isLiveIn(X86::EFLAGS))
20341         return false;
20342     }
20343   }
20344
20345   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
20346   // out. SelectMI should have a kill flag on EFLAGS.
20347   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
20348   return true;
20349 }
20350
20351 // Return true if it is OK for this CMOV pseudo-opcode to be cascaded
20352 // together with other CMOV pseudo-opcodes into a single basic-block with
20353 // conditional jump around it.
20354 static bool isCMOVPseudo(MachineInstr *MI) {
20355   switch (MI->getOpcode()) {
20356   case X86::CMOV_FR32:
20357   case X86::CMOV_FR64:
20358   case X86::CMOV_GR8:
20359   case X86::CMOV_GR16:
20360   case X86::CMOV_GR32:
20361   case X86::CMOV_RFP32:
20362   case X86::CMOV_RFP64:
20363   case X86::CMOV_RFP80:
20364   case X86::CMOV_V2F64:
20365   case X86::CMOV_V2I64:
20366   case X86::CMOV_V4F32:
20367   case X86::CMOV_V4F64:
20368   case X86::CMOV_V4I64:
20369   case X86::CMOV_V16F32:
20370   case X86::CMOV_V8F32:
20371   case X86::CMOV_V8F64:
20372   case X86::CMOV_V8I64:
20373   case X86::CMOV_V8I1:
20374   case X86::CMOV_V16I1:
20375   case X86::CMOV_V32I1:
20376   case X86::CMOV_V64I1:
20377     return true;
20378
20379   default:
20380     return false;
20381   }
20382 }
20383
20384 MachineBasicBlock *
20385 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
20386                                      MachineBasicBlock *BB) const {
20387   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20388   DebugLoc DL = MI->getDebugLoc();
20389
20390   // To "insert" a SELECT_CC instruction, we actually have to insert the
20391   // diamond control-flow pattern.  The incoming instruction knows the
20392   // destination vreg to set, the condition code register to branch on, the
20393   // true/false values to select between, and a branch opcode to use.
20394   const BasicBlock *LLVM_BB = BB->getBasicBlock();
20395   MachineFunction::iterator It = BB;
20396   ++It;
20397
20398   //  thisMBB:
20399   //  ...
20400   //   TrueVal = ...
20401   //   cmpTY ccX, r1, r2
20402   //   bCC copy1MBB
20403   //   fallthrough --> copy0MBB
20404   MachineBasicBlock *thisMBB = BB;
20405   MachineFunction *F = BB->getParent();
20406
20407   // This code lowers all pseudo-CMOV instructions. Generally it lowers these
20408   // as described above, by inserting a BB, and then making a PHI at the join
20409   // point to select the true and false operands of the CMOV in the PHI.
20410   //
20411   // The code also handles two different cases of multiple CMOV opcodes
20412   // in a row.
20413   //
20414   // Case 1:
20415   // In this case, there are multiple CMOVs in a row, all which are based on
20416   // the same condition setting (or the exact opposite condition setting).
20417   // In this case we can lower all the CMOVs using a single inserted BB, and
20418   // then make a number of PHIs at the join point to model the CMOVs. The only
20419   // trickiness here, is that in a case like:
20420   //
20421   // t2 = CMOV cond1 t1, f1
20422   // t3 = CMOV cond1 t2, f2
20423   //
20424   // when rewriting this into PHIs, we have to perform some renaming on the
20425   // temps since you cannot have a PHI operand refer to a PHI result earlier
20426   // in the same block.  The "simple" but wrong lowering would be:
20427   //
20428   // t2 = PHI t1(BB1), f1(BB2)
20429   // t3 = PHI t2(BB1), f2(BB2)
20430   //
20431   // but clearly t2 is not defined in BB1, so that is incorrect. The proper
20432   // renaming is to note that on the path through BB1, t2 is really just a
20433   // copy of t1, and do that renaming, properly generating:
20434   //
20435   // t2 = PHI t1(BB1), f1(BB2)
20436   // t3 = PHI t1(BB1), f2(BB2)
20437   //
20438   // Case 2, we lower cascaded CMOVs such as
20439   //
20440   //   (CMOV (CMOV F, T, cc1), T, cc2)
20441   //
20442   // to two successives branches.  For that, we look for another CMOV as the
20443   // following instruction.
20444   //
20445   // Without this, we would add a PHI between the two jumps, which ends up
20446   // creating a few copies all around. For instance, for
20447   //
20448   //    (sitofp (zext (fcmp une)))
20449   //
20450   // we would generate:
20451   //
20452   //         ucomiss %xmm1, %xmm0
20453   //         movss  <1.0f>, %xmm0
20454   //         movaps  %xmm0, %xmm1
20455   //         jne     .LBB5_2
20456   //         xorps   %xmm1, %xmm1
20457   // .LBB5_2:
20458   //         jp      .LBB5_4
20459   //         movaps  %xmm1, %xmm0
20460   // .LBB5_4:
20461   //         retq
20462   //
20463   // because this custom-inserter would have generated:
20464   //
20465   //   A
20466   //   | \
20467   //   |  B
20468   //   | /
20469   //   C
20470   //   | \
20471   //   |  D
20472   //   | /
20473   //   E
20474   //
20475   // A: X = ...; Y = ...
20476   // B: empty
20477   // C: Z = PHI [X, A], [Y, B]
20478   // D: empty
20479   // E: PHI [X, C], [Z, D]
20480   //
20481   // If we lower both CMOVs in a single step, we can instead generate:
20482   //
20483   //   A
20484   //   | \
20485   //   |  C
20486   //   | /|
20487   //   |/ |
20488   //   |  |
20489   //   |  D
20490   //   | /
20491   //   E
20492   //
20493   // A: X = ...; Y = ...
20494   // D: empty
20495   // E: PHI [X, A], [X, C], [Y, D]
20496   //
20497   // Which, in our sitofp/fcmp example, gives us something like:
20498   //
20499   //         ucomiss %xmm1, %xmm0
20500   //         movss  <1.0f>, %xmm0
20501   //         jne     .LBB5_4
20502   //         jp      .LBB5_4
20503   //         xorps   %xmm0, %xmm0
20504   // .LBB5_4:
20505   //         retq
20506   //
20507   MachineInstr *CascadedCMOV = nullptr;
20508   MachineInstr *LastCMOV = MI;
20509   X86::CondCode CC = X86::CondCode(MI->getOperand(3).getImm());
20510   X86::CondCode OppCC = X86::GetOppositeBranchCondition(CC);
20511   MachineBasicBlock::iterator NextMIIt =
20512       std::next(MachineBasicBlock::iterator(MI));
20513
20514   // Check for case 1, where there are multiple CMOVs with the same condition
20515   // first.  Of the two cases of multiple CMOV lowerings, case 1 reduces the
20516   // number of jumps the most.
20517
20518   if (isCMOVPseudo(MI)) {
20519     // See if we have a string of CMOVS with the same condition.
20520     while (NextMIIt != BB->end() &&
20521            isCMOVPseudo(NextMIIt) &&
20522            (NextMIIt->getOperand(3).getImm() == CC ||
20523             NextMIIt->getOperand(3).getImm() == OppCC)) {
20524       LastCMOV = &*NextMIIt;
20525       ++NextMIIt;
20526     }
20527   }
20528
20529   // This checks for case 2, but only do this if we didn't already find
20530   // case 1, as indicated by LastCMOV == MI.
20531   if (LastCMOV == MI &&
20532       NextMIIt != BB->end() && NextMIIt->getOpcode() == MI->getOpcode() &&
20533       NextMIIt->getOperand(2).getReg() == MI->getOperand(2).getReg() &&
20534       NextMIIt->getOperand(1).getReg() == MI->getOperand(0).getReg()) {
20535     CascadedCMOV = &*NextMIIt;
20536   }
20537
20538   MachineBasicBlock *jcc1MBB = nullptr;
20539
20540   // If we have a cascaded CMOV, we lower it to two successive branches to
20541   // the same block.  EFLAGS is used by both, so mark it as live in the second.
20542   if (CascadedCMOV) {
20543     jcc1MBB = F->CreateMachineBasicBlock(LLVM_BB);
20544     F->insert(It, jcc1MBB);
20545     jcc1MBB->addLiveIn(X86::EFLAGS);
20546   }
20547
20548   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
20549   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
20550   F->insert(It, copy0MBB);
20551   F->insert(It, sinkMBB);
20552
20553   // If the EFLAGS register isn't dead in the terminator, then claim that it's
20554   // live into the sink and copy blocks.
20555   const TargetRegisterInfo *TRI = Subtarget->getRegisterInfo();
20556
20557   MachineInstr *LastEFLAGSUser = CascadedCMOV ? CascadedCMOV : LastCMOV;
20558   if (!LastEFLAGSUser->killsRegister(X86::EFLAGS) &&
20559       !checkAndUpdateEFLAGSKill(LastEFLAGSUser, BB, TRI)) {
20560     copy0MBB->addLiveIn(X86::EFLAGS);
20561     sinkMBB->addLiveIn(X86::EFLAGS);
20562   }
20563
20564   // Transfer the remainder of BB and its successor edges to sinkMBB.
20565   sinkMBB->splice(sinkMBB->begin(), BB,
20566                   std::next(MachineBasicBlock::iterator(LastCMOV)), BB->end());
20567   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
20568
20569   // Add the true and fallthrough blocks as its successors.
20570   if (CascadedCMOV) {
20571     // The fallthrough block may be jcc1MBB, if we have a cascaded CMOV.
20572     BB->addSuccessor(jcc1MBB);
20573
20574     // In that case, jcc1MBB will itself fallthrough the copy0MBB, and
20575     // jump to the sinkMBB.
20576     jcc1MBB->addSuccessor(copy0MBB);
20577     jcc1MBB->addSuccessor(sinkMBB);
20578   } else {
20579     BB->addSuccessor(copy0MBB);
20580   }
20581
20582   // The true block target of the first (or only) branch is always sinkMBB.
20583   BB->addSuccessor(sinkMBB);
20584
20585   // Create the conditional branch instruction.
20586   unsigned Opc = X86::GetCondBranchFromCond(CC);
20587   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
20588
20589   if (CascadedCMOV) {
20590     unsigned Opc2 = X86::GetCondBranchFromCond(
20591         (X86::CondCode)CascadedCMOV->getOperand(3).getImm());
20592     BuildMI(jcc1MBB, DL, TII->get(Opc2)).addMBB(sinkMBB);
20593   }
20594
20595   //  copy0MBB:
20596   //   %FalseValue = ...
20597   //   # fallthrough to sinkMBB
20598   copy0MBB->addSuccessor(sinkMBB);
20599
20600   //  sinkMBB:
20601   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
20602   //  ...
20603   MachineBasicBlock::iterator MIItBegin = MachineBasicBlock::iterator(MI);
20604   MachineBasicBlock::iterator MIItEnd =
20605     std::next(MachineBasicBlock::iterator(LastCMOV));
20606   MachineBasicBlock::iterator SinkInsertionPoint = sinkMBB->begin();
20607   DenseMap<unsigned, std::pair<unsigned, unsigned>> RegRewriteTable;
20608   MachineInstrBuilder MIB;
20609
20610   // As we are creating the PHIs, we have to be careful if there is more than
20611   // one.  Later CMOVs may reference the results of earlier CMOVs, but later
20612   // PHIs have to reference the individual true/false inputs from earlier PHIs.
20613   // That also means that PHI construction must work forward from earlier to
20614   // later, and that the code must maintain a mapping from earlier PHI's
20615   // destination registers, and the registers that went into the PHI.
20616
20617   for (MachineBasicBlock::iterator MIIt = MIItBegin; MIIt != MIItEnd; ++MIIt) {
20618     unsigned DestReg = MIIt->getOperand(0).getReg();
20619     unsigned Op1Reg = MIIt->getOperand(1).getReg();
20620     unsigned Op2Reg = MIIt->getOperand(2).getReg();
20621
20622     // If this CMOV we are generating is the opposite condition from
20623     // the jump we generated, then we have to swap the operands for the
20624     // PHI that is going to be generated.
20625     if (MIIt->getOperand(3).getImm() == OppCC)
20626         std::swap(Op1Reg, Op2Reg);
20627
20628     if (RegRewriteTable.find(Op1Reg) != RegRewriteTable.end())
20629       Op1Reg = RegRewriteTable[Op1Reg].first;
20630
20631     if (RegRewriteTable.find(Op2Reg) != RegRewriteTable.end())
20632       Op2Reg = RegRewriteTable[Op2Reg].second;
20633
20634     MIB = BuildMI(*sinkMBB, SinkInsertionPoint, DL,
20635                   TII->get(X86::PHI), DestReg)
20636           .addReg(Op1Reg).addMBB(copy0MBB)
20637           .addReg(Op2Reg).addMBB(thisMBB);
20638
20639     // Add this PHI to the rewrite table.
20640     RegRewriteTable[DestReg] = std::make_pair(Op1Reg, Op2Reg);
20641   }
20642
20643   // If we have a cascaded CMOV, the second Jcc provides the same incoming
20644   // value as the first Jcc (the True operand of the SELECT_CC/CMOV nodes).
20645   if (CascadedCMOV) {
20646     MIB.addReg(MI->getOperand(2).getReg()).addMBB(jcc1MBB);
20647     // Copy the PHI result to the register defined by the second CMOV.
20648     BuildMI(*sinkMBB, std::next(MachineBasicBlock::iterator(MIB.getInstr())),
20649             DL, TII->get(TargetOpcode::COPY),
20650             CascadedCMOV->getOperand(0).getReg())
20651         .addReg(MI->getOperand(0).getReg());
20652     CascadedCMOV->eraseFromParent();
20653   }
20654
20655   // Now remove the CMOV(s).
20656   for (MachineBasicBlock::iterator MIIt = MIItBegin; MIIt != MIItEnd; )
20657     (MIIt++)->eraseFromParent();
20658
20659   return sinkMBB;
20660 }
20661
20662 MachineBasicBlock *
20663 X86TargetLowering::EmitLoweredAtomicFP(MachineInstr *MI,
20664                                        MachineBasicBlock *BB) const {
20665   // Combine the following atomic floating-point modification pattern:
20666   //   a.store(reg OP a.load(acquire), release)
20667   // Transform them into:
20668   //   OPss (%gpr), %xmm
20669   //   movss %xmm, (%gpr)
20670   // Or sd equivalent for 64-bit operations.
20671   unsigned MOp, FOp;
20672   switch (MI->getOpcode()) {
20673   default: llvm_unreachable("unexpected instr type for EmitLoweredAtomicFP");
20674   case X86::RELEASE_FADD32mr: MOp = X86::MOVSSmr; FOp = X86::ADDSSrm; break;
20675   case X86::RELEASE_FADD64mr: MOp = X86::MOVSDmr; FOp = X86::ADDSDrm; break;
20676   }
20677   const X86InstrInfo *TII = Subtarget->getInstrInfo();
20678   DebugLoc DL = MI->getDebugLoc();
20679   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
20680   unsigned MSrc = MI->getOperand(0).getReg();
20681   unsigned VSrc = MI->getOperand(5).getReg();
20682   MachineInstrBuilder MIM = BuildMI(*BB, MI, DL, TII->get(MOp))
20683                                 .addReg(/*Base=*/MSrc)
20684                                 .addImm(/*Scale=*/1)
20685                                 .addReg(/*Index=*/0)
20686                                 .addImm(0)
20687                                 .addReg(0);
20688   MachineInstr *MIO = BuildMI(*BB, (MachineInstr *)MIM, DL, TII->get(FOp),
20689                               MRI.createVirtualRegister(MRI.getRegClass(VSrc)))
20690                           .addReg(VSrc)
20691                           .addReg(/*Base=*/MSrc)
20692                           .addImm(/*Scale=*/1)
20693                           .addReg(/*Index=*/0)
20694                           .addImm(/*Disp=*/0)
20695                           .addReg(/*Segment=*/0);
20696   MIM.addReg(MIO->getOperand(0).getReg(), RegState::Kill);
20697   MI->eraseFromParent(); // The pseudo instruction is gone now.
20698   return BB;
20699 }
20700
20701 MachineBasicBlock *
20702 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI,
20703                                         MachineBasicBlock *BB) const {
20704   MachineFunction *MF = BB->getParent();
20705   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20706   DebugLoc DL = MI->getDebugLoc();
20707   const BasicBlock *LLVM_BB = BB->getBasicBlock();
20708
20709   assert(MF->shouldSplitStack());
20710
20711   const bool Is64Bit = Subtarget->is64Bit();
20712   const bool IsLP64 = Subtarget->isTarget64BitLP64();
20713
20714   const unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
20715   const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30;
20716
20717   // BB:
20718   //  ... [Till the alloca]
20719   // If stacklet is not large enough, jump to mallocMBB
20720   //
20721   // bumpMBB:
20722   //  Allocate by subtracting from RSP
20723   //  Jump to continueMBB
20724   //
20725   // mallocMBB:
20726   //  Allocate by call to runtime
20727   //
20728   // continueMBB:
20729   //  ...
20730   //  [rest of original BB]
20731   //
20732
20733   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20734   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20735   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
20736
20737   MachineRegisterInfo &MRI = MF->getRegInfo();
20738   const TargetRegisterClass *AddrRegClass =
20739       getRegClassFor(getPointerTy(MF->getDataLayout()));
20740
20741   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
20742     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
20743     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
20744     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
20745     sizeVReg = MI->getOperand(1).getReg(),
20746     physSPReg = IsLP64 || Subtarget->isTargetNaCl64() ? X86::RSP : X86::ESP;
20747
20748   MachineFunction::iterator MBBIter = BB;
20749   ++MBBIter;
20750
20751   MF->insert(MBBIter, bumpMBB);
20752   MF->insert(MBBIter, mallocMBB);
20753   MF->insert(MBBIter, continueMBB);
20754
20755   continueMBB->splice(continueMBB->begin(), BB,
20756                       std::next(MachineBasicBlock::iterator(MI)), BB->end());
20757   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
20758
20759   // Add code to the main basic block to check if the stack limit has been hit,
20760   // and if so, jump to mallocMBB otherwise to bumpMBB.
20761   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
20762   BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
20763     .addReg(tmpSPVReg).addReg(sizeVReg);
20764   BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr))
20765     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
20766     .addReg(SPLimitVReg);
20767   BuildMI(BB, DL, TII->get(X86::JG_1)).addMBB(mallocMBB);
20768
20769   // bumpMBB simply decreases the stack pointer, since we know the current
20770   // stacklet has enough space.
20771   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
20772     .addReg(SPLimitVReg);
20773   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
20774     .addReg(SPLimitVReg);
20775   BuildMI(bumpMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB);
20776
20777   // Calls into a routine in libgcc to allocate more space from the heap.
20778   const uint32_t *RegMask =
20779       Subtarget->getRegisterInfo()->getCallPreservedMask(*MF, CallingConv::C);
20780   if (IsLP64) {
20781     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
20782       .addReg(sizeVReg);
20783     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
20784       .addExternalSymbol("__morestack_allocate_stack_space")
20785       .addRegMask(RegMask)
20786       .addReg(X86::RDI, RegState::Implicit)
20787       .addReg(X86::RAX, RegState::ImplicitDefine);
20788   } else if (Is64Bit) {
20789     BuildMI(mallocMBB, DL, TII->get(X86::MOV32rr), X86::EDI)
20790       .addReg(sizeVReg);
20791     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
20792       .addExternalSymbol("__morestack_allocate_stack_space")
20793       .addRegMask(RegMask)
20794       .addReg(X86::EDI, RegState::Implicit)
20795       .addReg(X86::EAX, RegState::ImplicitDefine);
20796   } else {
20797     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
20798       .addImm(12);
20799     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
20800     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
20801       .addExternalSymbol("__morestack_allocate_stack_space")
20802       .addRegMask(RegMask)
20803       .addReg(X86::EAX, RegState::ImplicitDefine);
20804   }
20805
20806   if (!Is64Bit)
20807     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
20808       .addImm(16);
20809
20810   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
20811     .addReg(IsLP64 ? X86::RAX : X86::EAX);
20812   BuildMI(mallocMBB, DL, TII->get(X86::JMP_1)).addMBB(continueMBB);
20813
20814   // Set up the CFG correctly.
20815   BB->addSuccessor(bumpMBB);
20816   BB->addSuccessor(mallocMBB);
20817   mallocMBB->addSuccessor(continueMBB);
20818   bumpMBB->addSuccessor(continueMBB);
20819
20820   // Take care of the PHI nodes.
20821   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
20822           MI->getOperand(0).getReg())
20823     .addReg(mallocPtrVReg).addMBB(mallocMBB)
20824     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
20825
20826   // Delete the original pseudo instruction.
20827   MI->eraseFromParent();
20828
20829   // And we're done.
20830   return continueMBB;
20831 }
20832
20833 MachineBasicBlock *
20834 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
20835                                         MachineBasicBlock *BB) const {
20836   DebugLoc DL = MI->getDebugLoc();
20837
20838   assert(!Subtarget->isTargetMachO());
20839
20840   Subtarget->getFrameLowering()->emitStackProbeCall(*BB->getParent(), *BB, MI,
20841                                                     DL);
20842
20843   MI->eraseFromParent();   // The pseudo instruction is gone now.
20844   return BB;
20845 }
20846
20847 MachineBasicBlock *
20848 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
20849                                       MachineBasicBlock *BB) const {
20850   // This is pretty easy.  We're taking the value that we received from
20851   // our load from the relocation, sticking it in either RDI (x86-64)
20852   // or EAX and doing an indirect call.  The return value will then
20853   // be in the normal return register.
20854   MachineFunction *F = BB->getParent();
20855   const X86InstrInfo *TII = Subtarget->getInstrInfo();
20856   DebugLoc DL = MI->getDebugLoc();
20857
20858   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
20859   assert(MI->getOperand(3).isGlobal() && "This should be a global");
20860
20861   // Get a register mask for the lowered call.
20862   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
20863   // proper register mask.
20864   const uint32_t *RegMask =
20865       Subtarget->getRegisterInfo()->getCallPreservedMask(*F, CallingConv::C);
20866   if (Subtarget->is64Bit()) {
20867     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
20868                                       TII->get(X86::MOV64rm), X86::RDI)
20869     .addReg(X86::RIP)
20870     .addImm(0).addReg(0)
20871     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
20872                       MI->getOperand(3).getTargetFlags())
20873     .addReg(0);
20874     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
20875     addDirectMem(MIB, X86::RDI);
20876     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
20877   } else if (F->getTarget().getRelocationModel() != Reloc::PIC_) {
20878     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
20879                                       TII->get(X86::MOV32rm), X86::EAX)
20880     .addReg(0)
20881     .addImm(0).addReg(0)
20882     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
20883                       MI->getOperand(3).getTargetFlags())
20884     .addReg(0);
20885     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
20886     addDirectMem(MIB, X86::EAX);
20887     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
20888   } else {
20889     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
20890                                       TII->get(X86::MOV32rm), X86::EAX)
20891     .addReg(TII->getGlobalBaseReg(F))
20892     .addImm(0).addReg(0)
20893     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
20894                       MI->getOperand(3).getTargetFlags())
20895     .addReg(0);
20896     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
20897     addDirectMem(MIB, X86::EAX);
20898     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
20899   }
20900
20901   MI->eraseFromParent(); // The pseudo instruction is gone now.
20902   return BB;
20903 }
20904
20905 MachineBasicBlock *
20906 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
20907                                     MachineBasicBlock *MBB) const {
20908   DebugLoc DL = MI->getDebugLoc();
20909   MachineFunction *MF = MBB->getParent();
20910   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
20911   MachineRegisterInfo &MRI = MF->getRegInfo();
20912
20913   const BasicBlock *BB = MBB->getBasicBlock();
20914   MachineFunction::iterator I = MBB;
20915   ++I;
20916
20917   // Memory Reference
20918   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
20919   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
20920
20921   unsigned DstReg;
20922   unsigned MemOpndSlot = 0;
20923
20924   unsigned CurOp = 0;
20925
20926   DstReg = MI->getOperand(CurOp++).getReg();
20927   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
20928   assert(RC->hasType(MVT::i32) && "Invalid destination!");
20929   unsigned mainDstReg = MRI.createVirtualRegister(RC);
20930   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
20931
20932   MemOpndSlot = CurOp;
20933
20934   MVT PVT = getPointerTy(MF->getDataLayout());
20935   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
20936          "Invalid Pointer Size!");
20937
20938   // For v = setjmp(buf), we generate
20939   //
20940   // thisMBB:
20941   //  buf[LabelOffset] = restoreMBB
20942   //  SjLjSetup restoreMBB
20943   //
20944   // mainMBB:
20945   //  v_main = 0
20946   //
20947   // sinkMBB:
20948   //  v = phi(main, restore)
20949   //
20950   // restoreMBB:
20951   //  if base pointer being used, load it from frame
20952   //  v_restore = 1
20953
20954   MachineBasicBlock *thisMBB = MBB;
20955   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
20956   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
20957   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
20958   MF->insert(I, mainMBB);
20959   MF->insert(I, sinkMBB);
20960   MF->push_back(restoreMBB);
20961
20962   MachineInstrBuilder MIB;
20963
20964   // Transfer the remainder of BB and its successor edges to sinkMBB.
20965   sinkMBB->splice(sinkMBB->begin(), MBB,
20966                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
20967   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
20968
20969   // thisMBB:
20970   unsigned PtrStoreOpc = 0;
20971   unsigned LabelReg = 0;
20972   const int64_t LabelOffset = 1 * PVT.getStoreSize();
20973   Reloc::Model RM = MF->getTarget().getRelocationModel();
20974   bool UseImmLabel = (MF->getTarget().getCodeModel() == CodeModel::Small) &&
20975                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
20976
20977   // Prepare IP either in reg or imm.
20978   if (!UseImmLabel) {
20979     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
20980     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
20981     LabelReg = MRI.createVirtualRegister(PtrRC);
20982     if (Subtarget->is64Bit()) {
20983       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
20984               .addReg(X86::RIP)
20985               .addImm(0)
20986               .addReg(0)
20987               .addMBB(restoreMBB)
20988               .addReg(0);
20989     } else {
20990       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
20991       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
20992               .addReg(XII->getGlobalBaseReg(MF))
20993               .addImm(0)
20994               .addReg(0)
20995               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
20996               .addReg(0);
20997     }
20998   } else
20999     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
21000   // Store IP
21001   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
21002   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
21003     if (i == X86::AddrDisp)
21004       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
21005     else
21006       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
21007   }
21008   if (!UseImmLabel)
21009     MIB.addReg(LabelReg);
21010   else
21011     MIB.addMBB(restoreMBB);
21012   MIB.setMemRefs(MMOBegin, MMOEnd);
21013   // Setup
21014   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
21015           .addMBB(restoreMBB);
21016
21017   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
21018   MIB.addRegMask(RegInfo->getNoPreservedMask());
21019   thisMBB->addSuccessor(mainMBB);
21020   thisMBB->addSuccessor(restoreMBB);
21021
21022   // mainMBB:
21023   //  EAX = 0
21024   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
21025   mainMBB->addSuccessor(sinkMBB);
21026
21027   // sinkMBB:
21028   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
21029           TII->get(X86::PHI), DstReg)
21030     .addReg(mainDstReg).addMBB(mainMBB)
21031     .addReg(restoreDstReg).addMBB(restoreMBB);
21032
21033   // restoreMBB:
21034   if (RegInfo->hasBasePointer(*MF)) {
21035     const bool Uses64BitFramePtr =
21036         Subtarget->isTarget64BitLP64() || Subtarget->isTargetNaCl64();
21037     X86MachineFunctionInfo *X86FI = MF->getInfo<X86MachineFunctionInfo>();
21038     X86FI->setRestoreBasePointer(MF);
21039     unsigned FramePtr = RegInfo->getFrameRegister(*MF);
21040     unsigned BasePtr = RegInfo->getBaseRegister();
21041     unsigned Opm = Uses64BitFramePtr ? X86::MOV64rm : X86::MOV32rm;
21042     addRegOffset(BuildMI(restoreMBB, DL, TII->get(Opm), BasePtr),
21043                  FramePtr, true, X86FI->getRestoreBasePointerOffset())
21044       .setMIFlag(MachineInstr::FrameSetup);
21045   }
21046   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
21047   BuildMI(restoreMBB, DL, TII->get(X86::JMP_1)).addMBB(sinkMBB);
21048   restoreMBB->addSuccessor(sinkMBB);
21049
21050   MI->eraseFromParent();
21051   return sinkMBB;
21052 }
21053
21054 MachineBasicBlock *
21055 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
21056                                      MachineBasicBlock *MBB) const {
21057   DebugLoc DL = MI->getDebugLoc();
21058   MachineFunction *MF = MBB->getParent();
21059   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
21060   MachineRegisterInfo &MRI = MF->getRegInfo();
21061
21062   // Memory Reference
21063   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
21064   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
21065
21066   MVT PVT = getPointerTy(MF->getDataLayout());
21067   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
21068          "Invalid Pointer Size!");
21069
21070   const TargetRegisterClass *RC =
21071     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
21072   unsigned Tmp = MRI.createVirtualRegister(RC);
21073   // Since FP is only updated here but NOT referenced, it's treated as GPR.
21074   const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo();
21075   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
21076   unsigned SP = RegInfo->getStackRegister();
21077
21078   MachineInstrBuilder MIB;
21079
21080   const int64_t LabelOffset = 1 * PVT.getStoreSize();
21081   const int64_t SPOffset = 2 * PVT.getStoreSize();
21082
21083   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
21084   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
21085
21086   // Reload FP
21087   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
21088   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
21089     MIB.addOperand(MI->getOperand(i));
21090   MIB.setMemRefs(MMOBegin, MMOEnd);
21091   // Reload IP
21092   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
21093   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
21094     if (i == X86::AddrDisp)
21095       MIB.addDisp(MI->getOperand(i), LabelOffset);
21096     else
21097       MIB.addOperand(MI->getOperand(i));
21098   }
21099   MIB.setMemRefs(MMOBegin, MMOEnd);
21100   // Reload SP
21101   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
21102   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
21103     if (i == X86::AddrDisp)
21104       MIB.addDisp(MI->getOperand(i), SPOffset);
21105     else
21106       MIB.addOperand(MI->getOperand(i));
21107   }
21108   MIB.setMemRefs(MMOBegin, MMOEnd);
21109   // Jump
21110   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
21111
21112   MI->eraseFromParent();
21113   return MBB;
21114 }
21115
21116 // Replace 213-type (isel default) FMA3 instructions with 231-type for
21117 // accumulator loops. Writing back to the accumulator allows the coalescer
21118 // to remove extra copies in the loop.
21119 // FIXME: Do this on AVX512.  We don't support 231 variants yet (PR23937).
21120 MachineBasicBlock *
21121 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
21122                                  MachineBasicBlock *MBB) const {
21123   MachineOperand &AddendOp = MI->getOperand(3);
21124
21125   // Bail out early if the addend isn't a register - we can't switch these.
21126   if (!AddendOp.isReg())
21127     return MBB;
21128
21129   MachineFunction &MF = *MBB->getParent();
21130   MachineRegisterInfo &MRI = MF.getRegInfo();
21131
21132   // Check whether the addend is defined by a PHI:
21133   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
21134   MachineInstr &AddendDef = *MRI.def_instr_begin(AddendOp.getReg());
21135   if (!AddendDef.isPHI())
21136     return MBB;
21137
21138   // Look for the following pattern:
21139   // loop:
21140   //   %addend = phi [%entry, 0], [%loop, %result]
21141   //   ...
21142   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
21143
21144   // Replace with:
21145   //   loop:
21146   //   %addend = phi [%entry, 0], [%loop, %result]
21147   //   ...
21148   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
21149
21150   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
21151     assert(AddendDef.getOperand(i).isReg());
21152     MachineOperand PHISrcOp = AddendDef.getOperand(i);
21153     MachineInstr &PHISrcInst = *MRI.def_instr_begin(PHISrcOp.getReg());
21154     if (&PHISrcInst == MI) {
21155       // Found a matching instruction.
21156       unsigned NewFMAOpc = 0;
21157       switch (MI->getOpcode()) {
21158         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
21159         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
21160         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
21161         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
21162         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
21163         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
21164         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
21165         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
21166         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
21167         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
21168         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
21169         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
21170         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
21171         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
21172         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
21173         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
21174         case X86::VFMADDSUBPDr213r: NewFMAOpc = X86::VFMADDSUBPDr231r; break;
21175         case X86::VFMADDSUBPSr213r: NewFMAOpc = X86::VFMADDSUBPSr231r; break;
21176         case X86::VFMSUBADDPDr213r: NewFMAOpc = X86::VFMSUBADDPDr231r; break;
21177         case X86::VFMSUBADDPSr213r: NewFMAOpc = X86::VFMSUBADDPSr231r; break;
21178
21179         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
21180         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
21181         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
21182         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
21183         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
21184         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
21185         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
21186         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
21187         case X86::VFMADDSUBPDr213rY: NewFMAOpc = X86::VFMADDSUBPDr231rY; break;
21188         case X86::VFMADDSUBPSr213rY: NewFMAOpc = X86::VFMADDSUBPSr231rY; break;
21189         case X86::VFMSUBADDPDr213rY: NewFMAOpc = X86::VFMSUBADDPDr231rY; break;
21190         case X86::VFMSUBADDPSr213rY: NewFMAOpc = X86::VFMSUBADDPSr231rY; break;
21191         default: llvm_unreachable("Unrecognized FMA variant.");
21192       }
21193
21194       const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
21195       MachineInstrBuilder MIB =
21196         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
21197         .addOperand(MI->getOperand(0))
21198         .addOperand(MI->getOperand(3))
21199         .addOperand(MI->getOperand(2))
21200         .addOperand(MI->getOperand(1));
21201       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
21202       MI->eraseFromParent();
21203     }
21204   }
21205
21206   return MBB;
21207 }
21208
21209 MachineBasicBlock *
21210 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
21211                                                MachineBasicBlock *BB) const {
21212   switch (MI->getOpcode()) {
21213   default: llvm_unreachable("Unexpected instr type to insert");
21214   case X86::TAILJMPd64:
21215   case X86::TAILJMPr64:
21216   case X86::TAILJMPm64:
21217   case X86::TAILJMPd64_REX:
21218   case X86::TAILJMPr64_REX:
21219   case X86::TAILJMPm64_REX:
21220     llvm_unreachable("TAILJMP64 would not be touched here.");
21221   case X86::TCRETURNdi64:
21222   case X86::TCRETURNri64:
21223   case X86::TCRETURNmi64:
21224     return BB;
21225   case X86::WIN_ALLOCA:
21226     return EmitLoweredWinAlloca(MI, BB);
21227   case X86::SEG_ALLOCA_32:
21228   case X86::SEG_ALLOCA_64:
21229     return EmitLoweredSegAlloca(MI, BB);
21230   case X86::TLSCall_32:
21231   case X86::TLSCall_64:
21232     return EmitLoweredTLSCall(MI, BB);
21233   case X86::CMOV_FR32:
21234   case X86::CMOV_FR64:
21235   case X86::CMOV_GR8:
21236   case X86::CMOV_GR16:
21237   case X86::CMOV_GR32:
21238   case X86::CMOV_RFP32:
21239   case X86::CMOV_RFP64:
21240   case X86::CMOV_RFP80:
21241   case X86::CMOV_V2F64:
21242   case X86::CMOV_V2I64:
21243   case X86::CMOV_V4F32:
21244   case X86::CMOV_V4F64:
21245   case X86::CMOV_V4I64:
21246   case X86::CMOV_V16F32:
21247   case X86::CMOV_V8F32:
21248   case X86::CMOV_V8F64:
21249   case X86::CMOV_V8I64:
21250   case X86::CMOV_V8I1:
21251   case X86::CMOV_V16I1:
21252   case X86::CMOV_V32I1:
21253   case X86::CMOV_V64I1:
21254     return EmitLoweredSelect(MI, BB);
21255
21256   case X86::RELEASE_FADD32mr:
21257   case X86::RELEASE_FADD64mr:
21258     return EmitLoweredAtomicFP(MI, BB);
21259
21260   case X86::FP32_TO_INT16_IN_MEM:
21261   case X86::FP32_TO_INT32_IN_MEM:
21262   case X86::FP32_TO_INT64_IN_MEM:
21263   case X86::FP64_TO_INT16_IN_MEM:
21264   case X86::FP64_TO_INT32_IN_MEM:
21265   case X86::FP64_TO_INT64_IN_MEM:
21266   case X86::FP80_TO_INT16_IN_MEM:
21267   case X86::FP80_TO_INT32_IN_MEM:
21268   case X86::FP80_TO_INT64_IN_MEM: {
21269     MachineFunction *F = BB->getParent();
21270     const TargetInstrInfo *TII = Subtarget->getInstrInfo();
21271     DebugLoc DL = MI->getDebugLoc();
21272
21273     // Change the floating point control register to use "round towards zero"
21274     // mode when truncating to an integer value.
21275     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
21276     addFrameReference(BuildMI(*BB, MI, DL,
21277                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
21278
21279     // Load the old value of the high byte of the control word...
21280     unsigned OldCW =
21281       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
21282     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
21283                       CWFrameIdx);
21284
21285     // Set the high part to be round to zero...
21286     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
21287       .addImm(0xC7F);
21288
21289     // Reload the modified control word now...
21290     addFrameReference(BuildMI(*BB, MI, DL,
21291                               TII->get(X86::FLDCW16m)), CWFrameIdx);
21292
21293     // Restore the memory image of control word to original value
21294     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
21295       .addReg(OldCW);
21296
21297     // Get the X86 opcode to use.
21298     unsigned Opc;
21299     switch (MI->getOpcode()) {
21300     default: llvm_unreachable("illegal opcode!");
21301     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
21302     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
21303     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
21304     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
21305     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
21306     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
21307     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
21308     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
21309     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
21310     }
21311
21312     X86AddressMode AM;
21313     MachineOperand &Op = MI->getOperand(0);
21314     if (Op.isReg()) {
21315       AM.BaseType = X86AddressMode::RegBase;
21316       AM.Base.Reg = Op.getReg();
21317     } else {
21318       AM.BaseType = X86AddressMode::FrameIndexBase;
21319       AM.Base.FrameIndex = Op.getIndex();
21320     }
21321     Op = MI->getOperand(1);
21322     if (Op.isImm())
21323       AM.Scale = Op.getImm();
21324     Op = MI->getOperand(2);
21325     if (Op.isImm())
21326       AM.IndexReg = Op.getImm();
21327     Op = MI->getOperand(3);
21328     if (Op.isGlobal()) {
21329       AM.GV = Op.getGlobal();
21330     } else {
21331       AM.Disp = Op.getImm();
21332     }
21333     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
21334                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
21335
21336     // Reload the original control word now.
21337     addFrameReference(BuildMI(*BB, MI, DL,
21338                               TII->get(X86::FLDCW16m)), CWFrameIdx);
21339
21340     MI->eraseFromParent();   // The pseudo instruction is gone now.
21341     return BB;
21342   }
21343     // String/text processing lowering.
21344   case X86::PCMPISTRM128REG:
21345   case X86::VPCMPISTRM128REG:
21346   case X86::PCMPISTRM128MEM:
21347   case X86::VPCMPISTRM128MEM:
21348   case X86::PCMPESTRM128REG:
21349   case X86::VPCMPESTRM128REG:
21350   case X86::PCMPESTRM128MEM:
21351   case X86::VPCMPESTRM128MEM:
21352     assert(Subtarget->hasSSE42() &&
21353            "Target must have SSE4.2 or AVX features enabled");
21354     return EmitPCMPSTRM(MI, BB, Subtarget->getInstrInfo());
21355
21356   // String/text processing lowering.
21357   case X86::PCMPISTRIREG:
21358   case X86::VPCMPISTRIREG:
21359   case X86::PCMPISTRIMEM:
21360   case X86::VPCMPISTRIMEM:
21361   case X86::PCMPESTRIREG:
21362   case X86::VPCMPESTRIREG:
21363   case X86::PCMPESTRIMEM:
21364   case X86::VPCMPESTRIMEM:
21365     assert(Subtarget->hasSSE42() &&
21366            "Target must have SSE4.2 or AVX features enabled");
21367     return EmitPCMPSTRI(MI, BB, Subtarget->getInstrInfo());
21368
21369   // Thread synchronization.
21370   case X86::MONITOR:
21371     return EmitMonitor(MI, BB, Subtarget);
21372
21373   // xbegin
21374   case X86::XBEGIN:
21375     return EmitXBegin(MI, BB, Subtarget->getInstrInfo());
21376
21377   case X86::VASTART_SAVE_XMM_REGS:
21378     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
21379
21380   case X86::VAARG_64:
21381     return EmitVAARG64WithCustomInserter(MI, BB);
21382
21383   case X86::EH_SjLj_SetJmp32:
21384   case X86::EH_SjLj_SetJmp64:
21385     return emitEHSjLjSetJmp(MI, BB);
21386
21387   case X86::EH_SjLj_LongJmp32:
21388   case X86::EH_SjLj_LongJmp64:
21389     return emitEHSjLjLongJmp(MI, BB);
21390
21391   case TargetOpcode::STATEPOINT:
21392     // As an implementation detail, STATEPOINT shares the STACKMAP format at
21393     // this point in the process.  We diverge later.
21394     return emitPatchPoint(MI, BB);
21395
21396   case TargetOpcode::STACKMAP:
21397   case TargetOpcode::PATCHPOINT:
21398     return emitPatchPoint(MI, BB);
21399
21400   case X86::VFMADDPDr213r:
21401   case X86::VFMADDPSr213r:
21402   case X86::VFMADDSDr213r:
21403   case X86::VFMADDSSr213r:
21404   case X86::VFMSUBPDr213r:
21405   case X86::VFMSUBPSr213r:
21406   case X86::VFMSUBSDr213r:
21407   case X86::VFMSUBSSr213r:
21408   case X86::VFNMADDPDr213r:
21409   case X86::VFNMADDPSr213r:
21410   case X86::VFNMADDSDr213r:
21411   case X86::VFNMADDSSr213r:
21412   case X86::VFNMSUBPDr213r:
21413   case X86::VFNMSUBPSr213r:
21414   case X86::VFNMSUBSDr213r:
21415   case X86::VFNMSUBSSr213r:
21416   case X86::VFMADDSUBPDr213r:
21417   case X86::VFMADDSUBPSr213r:
21418   case X86::VFMSUBADDPDr213r:
21419   case X86::VFMSUBADDPSr213r:
21420   case X86::VFMADDPDr213rY:
21421   case X86::VFMADDPSr213rY:
21422   case X86::VFMSUBPDr213rY:
21423   case X86::VFMSUBPSr213rY:
21424   case X86::VFNMADDPDr213rY:
21425   case X86::VFNMADDPSr213rY:
21426   case X86::VFNMSUBPDr213rY:
21427   case X86::VFNMSUBPSr213rY:
21428   case X86::VFMADDSUBPDr213rY:
21429   case X86::VFMADDSUBPSr213rY:
21430   case X86::VFMSUBADDPDr213rY:
21431   case X86::VFMSUBADDPSr213rY:
21432     return emitFMA3Instr(MI, BB);
21433   }
21434 }
21435
21436 //===----------------------------------------------------------------------===//
21437 //                           X86 Optimization Hooks
21438 //===----------------------------------------------------------------------===//
21439
21440 void X86TargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
21441                                                       APInt &KnownZero,
21442                                                       APInt &KnownOne,
21443                                                       const SelectionDAG &DAG,
21444                                                       unsigned Depth) const {
21445   unsigned BitWidth = KnownZero.getBitWidth();
21446   unsigned Opc = Op.getOpcode();
21447   assert((Opc >= ISD::BUILTIN_OP_END ||
21448           Opc == ISD::INTRINSIC_WO_CHAIN ||
21449           Opc == ISD::INTRINSIC_W_CHAIN ||
21450           Opc == ISD::INTRINSIC_VOID) &&
21451          "Should use MaskedValueIsZero if you don't know whether Op"
21452          " is a target node!");
21453
21454   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
21455   switch (Opc) {
21456   default: break;
21457   case X86ISD::ADD:
21458   case X86ISD::SUB:
21459   case X86ISD::ADC:
21460   case X86ISD::SBB:
21461   case X86ISD::SMUL:
21462   case X86ISD::UMUL:
21463   case X86ISD::INC:
21464   case X86ISD::DEC:
21465   case X86ISD::OR:
21466   case X86ISD::XOR:
21467   case X86ISD::AND:
21468     // These nodes' second result is a boolean.
21469     if (Op.getResNo() == 0)
21470       break;
21471     // Fallthrough
21472   case X86ISD::SETCC:
21473     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
21474     break;
21475   case ISD::INTRINSIC_WO_CHAIN: {
21476     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
21477     unsigned NumLoBits = 0;
21478     switch (IntId) {
21479     default: break;
21480     case Intrinsic::x86_sse_movmsk_ps:
21481     case Intrinsic::x86_avx_movmsk_ps_256:
21482     case Intrinsic::x86_sse2_movmsk_pd:
21483     case Intrinsic::x86_avx_movmsk_pd_256:
21484     case Intrinsic::x86_mmx_pmovmskb:
21485     case Intrinsic::x86_sse2_pmovmskb_128:
21486     case Intrinsic::x86_avx2_pmovmskb: {
21487       // High bits of movmskp{s|d}, pmovmskb are known zero.
21488       switch (IntId) {
21489         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
21490         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
21491         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
21492         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
21493         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
21494         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
21495         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
21496         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
21497       }
21498       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
21499       break;
21500     }
21501     }
21502     break;
21503   }
21504   }
21505 }
21506
21507 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(
21508   SDValue Op,
21509   const SelectionDAG &,
21510   unsigned Depth) const {
21511   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
21512   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
21513     return Op.getValueType().getScalarType().getSizeInBits();
21514
21515   // Fallback case.
21516   return 1;
21517 }
21518
21519 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
21520 /// node is a GlobalAddress + offset.
21521 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
21522                                        const GlobalValue* &GA,
21523                                        int64_t &Offset) const {
21524   if (N->getOpcode() == X86ISD::Wrapper) {
21525     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
21526       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
21527       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
21528       return true;
21529     }
21530   }
21531   return TargetLowering::isGAPlusOffset(N, GA, Offset);
21532 }
21533
21534 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
21535 /// same as extracting the high 128-bit part of 256-bit vector and then
21536 /// inserting the result into the low part of a new 256-bit vector
21537 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
21538   EVT VT = SVOp->getValueType(0);
21539   unsigned NumElems = VT.getVectorNumElements();
21540
21541   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
21542   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
21543     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
21544         SVOp->getMaskElt(j) >= 0)
21545       return false;
21546
21547   return true;
21548 }
21549
21550 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
21551 /// same as extracting the low 128-bit part of 256-bit vector and then
21552 /// inserting the result into the high part of a new 256-bit vector
21553 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
21554   EVT VT = SVOp->getValueType(0);
21555   unsigned NumElems = VT.getVectorNumElements();
21556
21557   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
21558   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
21559     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
21560         SVOp->getMaskElt(j) >= 0)
21561       return false;
21562
21563   return true;
21564 }
21565
21566 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
21567 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
21568                                         TargetLowering::DAGCombinerInfo &DCI,
21569                                         const X86Subtarget* Subtarget) {
21570   SDLoc dl(N);
21571   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
21572   SDValue V1 = SVOp->getOperand(0);
21573   SDValue V2 = SVOp->getOperand(1);
21574   EVT VT = SVOp->getValueType(0);
21575   unsigned NumElems = VT.getVectorNumElements();
21576
21577   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
21578       V2.getOpcode() == ISD::CONCAT_VECTORS) {
21579     //
21580     //                   0,0,0,...
21581     //                      |
21582     //    V      UNDEF    BUILD_VECTOR    UNDEF
21583     //     \      /           \           /
21584     //  CONCAT_VECTOR         CONCAT_VECTOR
21585     //         \                  /
21586     //          \                /
21587     //          RESULT: V + zero extended
21588     //
21589     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
21590         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
21591         V1.getOperand(1).getOpcode() != ISD::UNDEF)
21592       return SDValue();
21593
21594     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
21595       return SDValue();
21596
21597     // To match the shuffle mask, the first half of the mask should
21598     // be exactly the first vector, and all the rest a splat with the
21599     // first element of the second one.
21600     for (unsigned i = 0; i != NumElems/2; ++i)
21601       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
21602           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
21603         return SDValue();
21604
21605     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
21606     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
21607       if (Ld->hasNUsesOfValue(1, 0)) {
21608         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
21609         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
21610         SDValue ResNode =
21611           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
21612                                   Ld->getMemoryVT(),
21613                                   Ld->getPointerInfo(),
21614                                   Ld->getAlignment(),
21615                                   false/*isVolatile*/, true/*ReadMem*/,
21616                                   false/*WriteMem*/);
21617
21618         // Make sure the newly-created LOAD is in the same position as Ld in
21619         // terms of dependency. We create a TokenFactor for Ld and ResNode,
21620         // and update uses of Ld's output chain to use the TokenFactor.
21621         if (Ld->hasAnyUseOfValue(1)) {
21622           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
21623                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
21624           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
21625           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
21626                                  SDValue(ResNode.getNode(), 1));
21627         }
21628
21629         return DAG.getBitcast(VT, ResNode);
21630       }
21631     }
21632
21633     // Emit a zeroed vector and insert the desired subvector on its
21634     // first half.
21635     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
21636     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
21637     return DCI.CombineTo(N, InsV);
21638   }
21639
21640   //===--------------------------------------------------------------------===//
21641   // Combine some shuffles into subvector extracts and inserts:
21642   //
21643
21644   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
21645   if (isShuffleHigh128VectorInsertLow(SVOp)) {
21646     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
21647     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
21648     return DCI.CombineTo(N, InsV);
21649   }
21650
21651   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
21652   if (isShuffleLow128VectorInsertHigh(SVOp)) {
21653     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
21654     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
21655     return DCI.CombineTo(N, InsV);
21656   }
21657
21658   return SDValue();
21659 }
21660
21661 /// \brief Combine an arbitrary chain of shuffles into a single instruction if
21662 /// possible.
21663 ///
21664 /// This is the leaf of the recursive combinine below. When we have found some
21665 /// chain of single-use x86 shuffle instructions and accumulated the combined
21666 /// shuffle mask represented by them, this will try to pattern match that mask
21667 /// into either a single instruction if there is a special purpose instruction
21668 /// for this operation, or into a PSHUFB instruction which is a fully general
21669 /// instruction but should only be used to replace chains over a certain depth.
21670 static bool combineX86ShuffleChain(SDValue Op, SDValue Root, ArrayRef<int> Mask,
21671                                    int Depth, bool HasPSHUFB, SelectionDAG &DAG,
21672                                    TargetLowering::DAGCombinerInfo &DCI,
21673                                    const X86Subtarget *Subtarget) {
21674   assert(!Mask.empty() && "Cannot combine an empty shuffle mask!");
21675
21676   // Find the operand that enters the chain. Note that multiple uses are OK
21677   // here, we're not going to remove the operand we find.
21678   SDValue Input = Op.getOperand(0);
21679   while (Input.getOpcode() == ISD::BITCAST)
21680     Input = Input.getOperand(0);
21681
21682   MVT VT = Input.getSimpleValueType();
21683   MVT RootVT = Root.getSimpleValueType();
21684   SDLoc DL(Root);
21685
21686   // Just remove no-op shuffle masks.
21687   if (Mask.size() == 1) {
21688     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Input),
21689                   /*AddTo*/ true);
21690     return true;
21691   }
21692
21693   // Use the float domain if the operand type is a floating point type.
21694   bool FloatDomain = VT.isFloatingPoint();
21695
21696   // For floating point shuffles, we don't have free copies in the shuffle
21697   // instructions or the ability to load as part of the instruction, so
21698   // canonicalize their shuffles to UNPCK or MOV variants.
21699   //
21700   // Note that even with AVX we prefer the PSHUFD form of shuffle for integer
21701   // vectors because it can have a load folded into it that UNPCK cannot. This
21702   // doesn't preclude something switching to the shorter encoding post-RA.
21703   //
21704   // FIXME: Should teach these routines about AVX vector widths.
21705   if (FloatDomain && VT.getSizeInBits() == 128) {
21706     if (Mask.equals({0, 0}) || Mask.equals({1, 1})) {
21707       bool Lo = Mask.equals({0, 0});
21708       unsigned Shuffle;
21709       MVT ShuffleVT;
21710       // Check if we have SSE3 which will let us use MOVDDUP. That instruction
21711       // is no slower than UNPCKLPD but has the option to fold the input operand
21712       // into even an unaligned memory load.
21713       if (Lo && Subtarget->hasSSE3()) {
21714         Shuffle = X86ISD::MOVDDUP;
21715         ShuffleVT = MVT::v2f64;
21716       } else {
21717         // We have MOVLHPS and MOVHLPS throughout SSE and they encode smaller
21718         // than the UNPCK variants.
21719         Shuffle = Lo ? X86ISD::MOVLHPS : X86ISD::MOVHLPS;
21720         ShuffleVT = MVT::v4f32;
21721       }
21722       if (Depth == 1 && Root->getOpcode() == Shuffle)
21723         return false; // Nothing to do!
21724       Op = DAG.getBitcast(ShuffleVT, Input);
21725       DCI.AddToWorklist(Op.getNode());
21726       if (Shuffle == X86ISD::MOVDDUP)
21727         Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op);
21728       else
21729         Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
21730       DCI.AddToWorklist(Op.getNode());
21731       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
21732                     /*AddTo*/ true);
21733       return true;
21734     }
21735     if (Subtarget->hasSSE3() &&
21736         (Mask.equals({0, 0, 2, 2}) || Mask.equals({1, 1, 3, 3}))) {
21737       bool Lo = Mask.equals({0, 0, 2, 2});
21738       unsigned Shuffle = Lo ? X86ISD::MOVSLDUP : X86ISD::MOVSHDUP;
21739       MVT ShuffleVT = MVT::v4f32;
21740       if (Depth == 1 && Root->getOpcode() == Shuffle)
21741         return false; // Nothing to do!
21742       Op = DAG.getBitcast(ShuffleVT, Input);
21743       DCI.AddToWorklist(Op.getNode());
21744       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op);
21745       DCI.AddToWorklist(Op.getNode());
21746       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
21747                     /*AddTo*/ true);
21748       return true;
21749     }
21750     if (Mask.equals({0, 0, 1, 1}) || Mask.equals({2, 2, 3, 3})) {
21751       bool Lo = Mask.equals({0, 0, 1, 1});
21752       unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
21753       MVT ShuffleVT = MVT::v4f32;
21754       if (Depth == 1 && Root->getOpcode() == Shuffle)
21755         return false; // Nothing to do!
21756       Op = DAG.getBitcast(ShuffleVT, Input);
21757       DCI.AddToWorklist(Op.getNode());
21758       Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
21759       DCI.AddToWorklist(Op.getNode());
21760       DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
21761                     /*AddTo*/ true);
21762       return true;
21763     }
21764   }
21765
21766   // We always canonicalize the 8 x i16 and 16 x i8 shuffles into their UNPCK
21767   // variants as none of these have single-instruction variants that are
21768   // superior to the UNPCK formulation.
21769   if (!FloatDomain && VT.getSizeInBits() == 128 &&
21770       (Mask.equals({0, 0, 1, 1, 2, 2, 3, 3}) ||
21771        Mask.equals({4, 4, 5, 5, 6, 6, 7, 7}) ||
21772        Mask.equals({0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7}) ||
21773        Mask.equals(
21774            {8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15}))) {
21775     bool Lo = Mask[0] == 0;
21776     unsigned Shuffle = Lo ? X86ISD::UNPCKL : X86ISD::UNPCKH;
21777     if (Depth == 1 && Root->getOpcode() == Shuffle)
21778       return false; // Nothing to do!
21779     MVT ShuffleVT;
21780     switch (Mask.size()) {
21781     case 8:
21782       ShuffleVT = MVT::v8i16;
21783       break;
21784     case 16:
21785       ShuffleVT = MVT::v16i8;
21786       break;
21787     default:
21788       llvm_unreachable("Impossible mask size!");
21789     };
21790     Op = DAG.getBitcast(ShuffleVT, Input);
21791     DCI.AddToWorklist(Op.getNode());
21792     Op = DAG.getNode(Shuffle, DL, ShuffleVT, Op, Op);
21793     DCI.AddToWorklist(Op.getNode());
21794     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
21795                   /*AddTo*/ true);
21796     return true;
21797   }
21798
21799   // Don't try to re-form single instruction chains under any circumstances now
21800   // that we've done encoding canonicalization for them.
21801   if (Depth < 2)
21802     return false;
21803
21804   // If we have 3 or more shuffle instructions or a chain involving PSHUFB, we
21805   // can replace them with a single PSHUFB instruction profitably. Intel's
21806   // manuals suggest only using PSHUFB if doing so replacing 5 instructions, but
21807   // in practice PSHUFB tends to be *very* fast so we're more aggressive.
21808   if ((Depth >= 3 || HasPSHUFB) && Subtarget->hasSSSE3()) {
21809     SmallVector<SDValue, 16> PSHUFBMask;
21810     int NumBytes = VT.getSizeInBits() / 8;
21811     int Ratio = NumBytes / Mask.size();
21812     for (int i = 0; i < NumBytes; ++i) {
21813       if (Mask[i / Ratio] == SM_SentinelUndef) {
21814         PSHUFBMask.push_back(DAG.getUNDEF(MVT::i8));
21815         continue;
21816       }
21817       int M = Mask[i / Ratio] != SM_SentinelZero
21818                   ? Ratio * Mask[i / Ratio] + i % Ratio
21819                   : 255;
21820       PSHUFBMask.push_back(DAG.getConstant(M, DL, MVT::i8));
21821     }
21822     MVT ByteVT = MVT::getVectorVT(MVT::i8, NumBytes);
21823     Op = DAG.getBitcast(ByteVT, Input);
21824     DCI.AddToWorklist(Op.getNode());
21825     SDValue PSHUFBMaskOp =
21826         DAG.getNode(ISD::BUILD_VECTOR, DL, ByteVT, PSHUFBMask);
21827     DCI.AddToWorklist(PSHUFBMaskOp.getNode());
21828     Op = DAG.getNode(X86ISD::PSHUFB, DL, ByteVT, Op, PSHUFBMaskOp);
21829     DCI.AddToWorklist(Op.getNode());
21830     DCI.CombineTo(Root.getNode(), DAG.getBitcast(RootVT, Op),
21831                   /*AddTo*/ true);
21832     return true;
21833   }
21834
21835   // Failed to find any combines.
21836   return false;
21837 }
21838
21839 /// \brief Fully generic combining of x86 shuffle instructions.
21840 ///
21841 /// This should be the last combine run over the x86 shuffle instructions. Once
21842 /// they have been fully optimized, this will recursively consider all chains
21843 /// of single-use shuffle instructions, build a generic model of the cumulative
21844 /// shuffle operation, and check for simpler instructions which implement this
21845 /// operation. We use this primarily for two purposes:
21846 ///
21847 /// 1) Collapse generic shuffles to specialized single instructions when
21848 ///    equivalent. In most cases, this is just an encoding size win, but
21849 ///    sometimes we will collapse multiple generic shuffles into a single
21850 ///    special-purpose shuffle.
21851 /// 2) Look for sequences of shuffle instructions with 3 or more total
21852 ///    instructions, and replace them with the slightly more expensive SSSE3
21853 ///    PSHUFB instruction if available. We do this as the last combining step
21854 ///    to ensure we avoid using PSHUFB if we can implement the shuffle with
21855 ///    a suitable short sequence of other instructions. The PHUFB will either
21856 ///    use a register or have to read from memory and so is slightly (but only
21857 ///    slightly) more expensive than the other shuffle instructions.
21858 ///
21859 /// Because this is inherently a quadratic operation (for each shuffle in
21860 /// a chain, we recurse up the chain), the depth is limited to 8 instructions.
21861 /// This should never be an issue in practice as the shuffle lowering doesn't
21862 /// produce sequences of more than 8 instructions.
21863 ///
21864 /// FIXME: We will currently miss some cases where the redundant shuffling
21865 /// would simplify under the threshold for PSHUFB formation because of
21866 /// combine-ordering. To fix this, we should do the redundant instruction
21867 /// combining in this recursive walk.
21868 static bool combineX86ShufflesRecursively(SDValue Op, SDValue Root,
21869                                           ArrayRef<int> RootMask,
21870                                           int Depth, bool HasPSHUFB,
21871                                           SelectionDAG &DAG,
21872                                           TargetLowering::DAGCombinerInfo &DCI,
21873                                           const X86Subtarget *Subtarget) {
21874   // Bound the depth of our recursive combine because this is ultimately
21875   // quadratic in nature.
21876   if (Depth > 8)
21877     return false;
21878
21879   // Directly rip through bitcasts to find the underlying operand.
21880   while (Op.getOpcode() == ISD::BITCAST && Op.getOperand(0).hasOneUse())
21881     Op = Op.getOperand(0);
21882
21883   MVT VT = Op.getSimpleValueType();
21884   if (!VT.isVector())
21885     return false; // Bail if we hit a non-vector.
21886
21887   assert(Root.getSimpleValueType().isVector() &&
21888          "Shuffles operate on vector types!");
21889   assert(VT.getSizeInBits() == Root.getSimpleValueType().getSizeInBits() &&
21890          "Can only combine shuffles of the same vector register size.");
21891
21892   if (!isTargetShuffle(Op.getOpcode()))
21893     return false;
21894   SmallVector<int, 16> OpMask;
21895   bool IsUnary;
21896   bool HaveMask = getTargetShuffleMask(Op.getNode(), VT, OpMask, IsUnary);
21897   // We only can combine unary shuffles which we can decode the mask for.
21898   if (!HaveMask || !IsUnary)
21899     return false;
21900
21901   assert(VT.getVectorNumElements() == OpMask.size() &&
21902          "Different mask size from vector size!");
21903   assert(((RootMask.size() > OpMask.size() &&
21904            RootMask.size() % OpMask.size() == 0) ||
21905           (OpMask.size() > RootMask.size() &&
21906            OpMask.size() % RootMask.size() == 0) ||
21907           OpMask.size() == RootMask.size()) &&
21908          "The smaller number of elements must divide the larger.");
21909   int RootRatio = std::max<int>(1, OpMask.size() / RootMask.size());
21910   int OpRatio = std::max<int>(1, RootMask.size() / OpMask.size());
21911   assert(((RootRatio == 1 && OpRatio == 1) ||
21912           (RootRatio == 1) != (OpRatio == 1)) &&
21913          "Must not have a ratio for both incoming and op masks!");
21914
21915   SmallVector<int, 16> Mask;
21916   Mask.reserve(std::max(OpMask.size(), RootMask.size()));
21917
21918   // Merge this shuffle operation's mask into our accumulated mask. Note that
21919   // this shuffle's mask will be the first applied to the input, followed by the
21920   // root mask to get us all the way to the root value arrangement. The reason
21921   // for this order is that we are recursing up the operation chain.
21922   for (int i = 0, e = std::max(OpMask.size(), RootMask.size()); i < e; ++i) {
21923     int RootIdx = i / RootRatio;
21924     if (RootMask[RootIdx] < 0) {
21925       // This is a zero or undef lane, we're done.
21926       Mask.push_back(RootMask[RootIdx]);
21927       continue;
21928     }
21929
21930     int RootMaskedIdx = RootMask[RootIdx] * RootRatio + i % RootRatio;
21931     int OpIdx = RootMaskedIdx / OpRatio;
21932     if (OpMask[OpIdx] < 0) {
21933       // The incoming lanes are zero or undef, it doesn't matter which ones we
21934       // are using.
21935       Mask.push_back(OpMask[OpIdx]);
21936       continue;
21937     }
21938
21939     // Ok, we have non-zero lanes, map them through.
21940     Mask.push_back(OpMask[OpIdx] * OpRatio +
21941                    RootMaskedIdx % OpRatio);
21942   }
21943
21944   // See if we can recurse into the operand to combine more things.
21945   switch (Op.getOpcode()) {
21946     case X86ISD::PSHUFB:
21947       HasPSHUFB = true;
21948     case X86ISD::PSHUFD:
21949     case X86ISD::PSHUFHW:
21950     case X86ISD::PSHUFLW:
21951       if (Op.getOperand(0).hasOneUse() &&
21952           combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
21953                                         HasPSHUFB, DAG, DCI, Subtarget))
21954         return true;
21955       break;
21956
21957     case X86ISD::UNPCKL:
21958     case X86ISD::UNPCKH:
21959       assert(Op.getOperand(0) == Op.getOperand(1) && "We only combine unary shuffles!");
21960       // We can't check for single use, we have to check that this shuffle is the only user.
21961       if (Op->isOnlyUserOf(Op.getOperand(0).getNode()) &&
21962           combineX86ShufflesRecursively(Op.getOperand(0), Root, Mask, Depth + 1,
21963                                         HasPSHUFB, DAG, DCI, Subtarget))
21964           return true;
21965       break;
21966   }
21967
21968   // Minor canonicalization of the accumulated shuffle mask to make it easier
21969   // to match below. All this does is detect masks with squential pairs of
21970   // elements, and shrink them to the half-width mask. It does this in a loop
21971   // so it will reduce the size of the mask to the minimal width mask which
21972   // performs an equivalent shuffle.
21973   SmallVector<int, 16> WidenedMask;
21974   while (Mask.size() > 1 && canWidenShuffleElements(Mask, WidenedMask)) {
21975     Mask = std::move(WidenedMask);
21976     WidenedMask.clear();
21977   }
21978
21979   return combineX86ShuffleChain(Op, Root, Mask, Depth, HasPSHUFB, DAG, DCI,
21980                                 Subtarget);
21981 }
21982
21983 /// \brief Get the PSHUF-style mask from PSHUF node.
21984 ///
21985 /// This is a very minor wrapper around getTargetShuffleMask to easy forming v4
21986 /// PSHUF-style masks that can be reused with such instructions.
21987 static SmallVector<int, 4> getPSHUFShuffleMask(SDValue N) {
21988   MVT VT = N.getSimpleValueType();
21989   SmallVector<int, 4> Mask;
21990   bool IsUnary;
21991   bool HaveMask = getTargetShuffleMask(N.getNode(), VT, Mask, IsUnary);
21992   (void)HaveMask;
21993   assert(HaveMask);
21994
21995   // If we have more than 128-bits, only the low 128-bits of shuffle mask
21996   // matter. Check that the upper masks are repeats and remove them.
21997   if (VT.getSizeInBits() > 128) {
21998     int LaneElts = 128 / VT.getScalarSizeInBits();
21999 #ifndef NDEBUG
22000     for (int i = 1, NumLanes = VT.getSizeInBits() / 128; i < NumLanes; ++i)
22001       for (int j = 0; j < LaneElts; ++j)
22002         assert(Mask[j] == Mask[i * LaneElts + j] - (LaneElts * i) &&
22003                "Mask doesn't repeat in high 128-bit lanes!");
22004 #endif
22005     Mask.resize(LaneElts);
22006   }
22007
22008   switch (N.getOpcode()) {
22009   case X86ISD::PSHUFD:
22010     return Mask;
22011   case X86ISD::PSHUFLW:
22012     Mask.resize(4);
22013     return Mask;
22014   case X86ISD::PSHUFHW:
22015     Mask.erase(Mask.begin(), Mask.begin() + 4);
22016     for (int &M : Mask)
22017       M -= 4;
22018     return Mask;
22019   default:
22020     llvm_unreachable("No valid shuffle instruction found!");
22021   }
22022 }
22023
22024 /// \brief Search for a combinable shuffle across a chain ending in pshufd.
22025 ///
22026 /// We walk up the chain and look for a combinable shuffle, skipping over
22027 /// shuffles that we could hoist this shuffle's transformation past without
22028 /// altering anything.
22029 static SDValue
22030 combineRedundantDWordShuffle(SDValue N, MutableArrayRef<int> Mask,
22031                              SelectionDAG &DAG,
22032                              TargetLowering::DAGCombinerInfo &DCI) {
22033   assert(N.getOpcode() == X86ISD::PSHUFD &&
22034          "Called with something other than an x86 128-bit half shuffle!");
22035   SDLoc DL(N);
22036
22037   // Walk up a single-use chain looking for a combinable shuffle. Keep a stack
22038   // of the shuffles in the chain so that we can form a fresh chain to replace
22039   // this one.
22040   SmallVector<SDValue, 8> Chain;
22041   SDValue V = N.getOperand(0);
22042   for (; V.hasOneUse(); V = V.getOperand(0)) {
22043     switch (V.getOpcode()) {
22044     default:
22045       return SDValue(); // Nothing combined!
22046
22047     case ISD::BITCAST:
22048       // Skip bitcasts as we always know the type for the target specific
22049       // instructions.
22050       continue;
22051
22052     case X86ISD::PSHUFD:
22053       // Found another dword shuffle.
22054       break;
22055
22056     case X86ISD::PSHUFLW:
22057       // Check that the low words (being shuffled) are the identity in the
22058       // dword shuffle, and the high words are self-contained.
22059       if (Mask[0] != 0 || Mask[1] != 1 ||
22060           !(Mask[2] >= 2 && Mask[2] < 4 && Mask[3] >= 2 && Mask[3] < 4))
22061         return SDValue();
22062
22063       Chain.push_back(V);
22064       continue;
22065
22066     case X86ISD::PSHUFHW:
22067       // Check that the high words (being shuffled) are the identity in the
22068       // dword shuffle, and the low words are self-contained.
22069       if (Mask[2] != 2 || Mask[3] != 3 ||
22070           !(Mask[0] >= 0 && Mask[0] < 2 && Mask[1] >= 0 && Mask[1] < 2))
22071         return SDValue();
22072
22073       Chain.push_back(V);
22074       continue;
22075
22076     case X86ISD::UNPCKL:
22077     case X86ISD::UNPCKH:
22078       // For either i8 -> i16 or i16 -> i32 unpacks, we can combine a dword
22079       // shuffle into a preceding word shuffle.
22080       if (V.getSimpleValueType().getScalarType() != MVT::i8 &&
22081           V.getSimpleValueType().getScalarType() != MVT::i16)
22082         return SDValue();
22083
22084       // Search for a half-shuffle which we can combine with.
22085       unsigned CombineOp =
22086           V.getOpcode() == X86ISD::UNPCKL ? X86ISD::PSHUFLW : X86ISD::PSHUFHW;
22087       if (V.getOperand(0) != V.getOperand(1) ||
22088           !V->isOnlyUserOf(V.getOperand(0).getNode()))
22089         return SDValue();
22090       Chain.push_back(V);
22091       V = V.getOperand(0);
22092       do {
22093         switch (V.getOpcode()) {
22094         default:
22095           return SDValue(); // Nothing to combine.
22096
22097         case X86ISD::PSHUFLW:
22098         case X86ISD::PSHUFHW:
22099           if (V.getOpcode() == CombineOp)
22100             break;
22101
22102           Chain.push_back(V);
22103
22104           // Fallthrough!
22105         case ISD::BITCAST:
22106           V = V.getOperand(0);
22107           continue;
22108         }
22109         break;
22110       } while (V.hasOneUse());
22111       break;
22112     }
22113     // Break out of the loop if we break out of the switch.
22114     break;
22115   }
22116
22117   if (!V.hasOneUse())
22118     // We fell out of the loop without finding a viable combining instruction.
22119     return SDValue();
22120
22121   // Merge this node's mask and our incoming mask.
22122   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
22123   for (int &M : Mask)
22124     M = VMask[M];
22125   V = DAG.getNode(V.getOpcode(), DL, V.getValueType(), V.getOperand(0),
22126                   getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
22127
22128   // Rebuild the chain around this new shuffle.
22129   while (!Chain.empty()) {
22130     SDValue W = Chain.pop_back_val();
22131
22132     if (V.getValueType() != W.getOperand(0).getValueType())
22133       V = DAG.getBitcast(W.getOperand(0).getValueType(), V);
22134
22135     switch (W.getOpcode()) {
22136     default:
22137       llvm_unreachable("Only PSHUF and UNPCK instructions get here!");
22138
22139     case X86ISD::UNPCKL:
22140     case X86ISD::UNPCKH:
22141       V = DAG.getNode(W.getOpcode(), DL, W.getValueType(), V, V);
22142       break;
22143
22144     case X86ISD::PSHUFD:
22145     case X86ISD::PSHUFLW:
22146     case X86ISD::PSHUFHW:
22147       V = DAG.getNode(W.getOpcode(), DL, W.getValueType(), V, W.getOperand(1));
22148       break;
22149     }
22150   }
22151   if (V.getValueType() != N.getValueType())
22152     V = DAG.getBitcast(N.getValueType(), V);
22153
22154   // Return the new chain to replace N.
22155   return V;
22156 }
22157
22158 /// \brief Search for a combinable shuffle across a chain ending in pshuflw or pshufhw.
22159 ///
22160 /// We walk up the chain, skipping shuffles of the other half and looking
22161 /// through shuffles which switch halves trying to find a shuffle of the same
22162 /// pair of dwords.
22163 static bool combineRedundantHalfShuffle(SDValue N, MutableArrayRef<int> Mask,
22164                                         SelectionDAG &DAG,
22165                                         TargetLowering::DAGCombinerInfo &DCI) {
22166   assert(
22167       (N.getOpcode() == X86ISD::PSHUFLW || N.getOpcode() == X86ISD::PSHUFHW) &&
22168       "Called with something other than an x86 128-bit half shuffle!");
22169   SDLoc DL(N);
22170   unsigned CombineOpcode = N.getOpcode();
22171
22172   // Walk up a single-use chain looking for a combinable shuffle.
22173   SDValue V = N.getOperand(0);
22174   for (; V.hasOneUse(); V = V.getOperand(0)) {
22175     switch (V.getOpcode()) {
22176     default:
22177       return false; // Nothing combined!
22178
22179     case ISD::BITCAST:
22180       // Skip bitcasts as we always know the type for the target specific
22181       // instructions.
22182       continue;
22183
22184     case X86ISD::PSHUFLW:
22185     case X86ISD::PSHUFHW:
22186       if (V.getOpcode() == CombineOpcode)
22187         break;
22188
22189       // Other-half shuffles are no-ops.
22190       continue;
22191     }
22192     // Break out of the loop if we break out of the switch.
22193     break;
22194   }
22195
22196   if (!V.hasOneUse())
22197     // We fell out of the loop without finding a viable combining instruction.
22198     return false;
22199
22200   // Combine away the bottom node as its shuffle will be accumulated into
22201   // a preceding shuffle.
22202   DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
22203
22204   // Record the old value.
22205   SDValue Old = V;
22206
22207   // Merge this node's mask and our incoming mask (adjusted to account for all
22208   // the pshufd instructions encountered).
22209   SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
22210   for (int &M : Mask)
22211     M = VMask[M];
22212   V = DAG.getNode(V.getOpcode(), DL, MVT::v8i16, V.getOperand(0),
22213                   getV4X86ShuffleImm8ForMask(Mask, DL, DAG));
22214
22215   // Check that the shuffles didn't cancel each other out. If not, we need to
22216   // combine to the new one.
22217   if (Old != V)
22218     // Replace the combinable shuffle with the combined one, updating all users
22219     // so that we re-evaluate the chain here.
22220     DCI.CombineTo(Old.getNode(), V, /*AddTo*/ true);
22221
22222   return true;
22223 }
22224
22225 /// \brief Try to combine x86 target specific shuffles.
22226 static SDValue PerformTargetShuffleCombine(SDValue N, SelectionDAG &DAG,
22227                                            TargetLowering::DAGCombinerInfo &DCI,
22228                                            const X86Subtarget *Subtarget) {
22229   SDLoc DL(N);
22230   MVT VT = N.getSimpleValueType();
22231   SmallVector<int, 4> Mask;
22232
22233   switch (N.getOpcode()) {
22234   case X86ISD::PSHUFD:
22235   case X86ISD::PSHUFLW:
22236   case X86ISD::PSHUFHW:
22237     Mask = getPSHUFShuffleMask(N);
22238     assert(Mask.size() == 4);
22239     break;
22240   default:
22241     return SDValue();
22242   }
22243
22244   // Nuke no-op shuffles that show up after combining.
22245   if (isNoopShuffleMask(Mask))
22246     return DCI.CombineTo(N.getNode(), N.getOperand(0), /*AddTo*/ true);
22247
22248   // Look for simplifications involving one or two shuffle instructions.
22249   SDValue V = N.getOperand(0);
22250   switch (N.getOpcode()) {
22251   default:
22252     break;
22253   case X86ISD::PSHUFLW:
22254   case X86ISD::PSHUFHW:
22255     assert(VT.getScalarType() == MVT::i16 && "Bad word shuffle type!");
22256
22257     if (combineRedundantHalfShuffle(N, Mask, DAG, DCI))
22258       return SDValue(); // We combined away this shuffle, so we're done.
22259
22260     // See if this reduces to a PSHUFD which is no more expensive and can
22261     // combine with more operations. Note that it has to at least flip the
22262     // dwords as otherwise it would have been removed as a no-op.
22263     if (makeArrayRef(Mask).equals({2, 3, 0, 1})) {
22264       int DMask[] = {0, 1, 2, 3};
22265       int DOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 2;
22266       DMask[DOffset + 0] = DOffset + 1;
22267       DMask[DOffset + 1] = DOffset + 0;
22268       MVT DVT = MVT::getVectorVT(MVT::i32, VT.getVectorNumElements() / 2);
22269       V = DAG.getBitcast(DVT, V);
22270       DCI.AddToWorklist(V.getNode());
22271       V = DAG.getNode(X86ISD::PSHUFD, DL, DVT, V,
22272                       getV4X86ShuffleImm8ForMask(DMask, DL, DAG));
22273       DCI.AddToWorklist(V.getNode());
22274       return DAG.getBitcast(VT, V);
22275     }
22276
22277     // Look for shuffle patterns which can be implemented as a single unpack.
22278     // FIXME: This doesn't handle the location of the PSHUFD generically, and
22279     // only works when we have a PSHUFD followed by two half-shuffles.
22280     if (Mask[0] == Mask[1] && Mask[2] == Mask[3] &&
22281         (V.getOpcode() == X86ISD::PSHUFLW ||
22282          V.getOpcode() == X86ISD::PSHUFHW) &&
22283         V.getOpcode() != N.getOpcode() &&
22284         V.hasOneUse()) {
22285       SDValue D = V.getOperand(0);
22286       while (D.getOpcode() == ISD::BITCAST && D.hasOneUse())
22287         D = D.getOperand(0);
22288       if (D.getOpcode() == X86ISD::PSHUFD && D.hasOneUse()) {
22289         SmallVector<int, 4> VMask = getPSHUFShuffleMask(V);
22290         SmallVector<int, 4> DMask = getPSHUFShuffleMask(D);
22291         int NOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
22292         int VOffset = V.getOpcode() == X86ISD::PSHUFLW ? 0 : 4;
22293         int WordMask[8];
22294         for (int i = 0; i < 4; ++i) {
22295           WordMask[i + NOffset] = Mask[i] + NOffset;
22296           WordMask[i + VOffset] = VMask[i] + VOffset;
22297         }
22298         // Map the word mask through the DWord mask.
22299         int MappedMask[8];
22300         for (int i = 0; i < 8; ++i)
22301           MappedMask[i] = 2 * DMask[WordMask[i] / 2] + WordMask[i] % 2;
22302         if (makeArrayRef(MappedMask).equals({0, 0, 1, 1, 2, 2, 3, 3}) ||
22303             makeArrayRef(MappedMask).equals({4, 4, 5, 5, 6, 6, 7, 7})) {
22304           // We can replace all three shuffles with an unpack.
22305           V = DAG.getBitcast(VT, D.getOperand(0));
22306           DCI.AddToWorklist(V.getNode());
22307           return DAG.getNode(MappedMask[0] == 0 ? X86ISD::UNPCKL
22308                                                 : X86ISD::UNPCKH,
22309                              DL, VT, V, V);
22310         }
22311       }
22312     }
22313
22314     break;
22315
22316   case X86ISD::PSHUFD:
22317     if (SDValue NewN = combineRedundantDWordShuffle(N, Mask, DAG, DCI))
22318       return NewN;
22319
22320     break;
22321   }
22322
22323   return SDValue();
22324 }
22325
22326 /// \brief Try to combine a shuffle into a target-specific add-sub node.
22327 ///
22328 /// We combine this directly on the abstract vector shuffle nodes so it is
22329 /// easier to generically match. We also insert dummy vector shuffle nodes for
22330 /// the operands which explicitly discard the lanes which are unused by this
22331 /// operation to try to flow through the rest of the combiner the fact that
22332 /// they're unused.
22333 static SDValue combineShuffleToAddSub(SDNode *N, SelectionDAG &DAG) {
22334   SDLoc DL(N);
22335   EVT VT = N->getValueType(0);
22336
22337   // We only handle target-independent shuffles.
22338   // FIXME: It would be easy and harmless to use the target shuffle mask
22339   // extraction tool to support more.
22340   if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
22341     return SDValue();
22342
22343   auto *SVN = cast<ShuffleVectorSDNode>(N);
22344   ArrayRef<int> Mask = SVN->getMask();
22345   SDValue V1 = N->getOperand(0);
22346   SDValue V2 = N->getOperand(1);
22347
22348   // We require the first shuffle operand to be the SUB node, and the second to
22349   // be the ADD node.
22350   // FIXME: We should support the commuted patterns.
22351   if (V1->getOpcode() != ISD::FSUB || V2->getOpcode() != ISD::FADD)
22352     return SDValue();
22353
22354   // If there are other uses of these operations we can't fold them.
22355   if (!V1->hasOneUse() || !V2->hasOneUse())
22356     return SDValue();
22357
22358   // Ensure that both operations have the same operands. Note that we can
22359   // commute the FADD operands.
22360   SDValue LHS = V1->getOperand(0), RHS = V1->getOperand(1);
22361   if ((V2->getOperand(0) != LHS || V2->getOperand(1) != RHS) &&
22362       (V2->getOperand(0) != RHS || V2->getOperand(1) != LHS))
22363     return SDValue();
22364
22365   // We're looking for blends between FADD and FSUB nodes. We insist on these
22366   // nodes being lined up in a specific expected pattern.
22367   if (!(isShuffleEquivalent(V1, V2, Mask, {0, 3}) ||
22368         isShuffleEquivalent(V1, V2, Mask, {0, 5, 2, 7}) ||
22369         isShuffleEquivalent(V1, V2, Mask, {0, 9, 2, 11, 4, 13, 6, 15})))
22370     return SDValue();
22371
22372   // Only specific types are legal at this point, assert so we notice if and
22373   // when these change.
22374   assert((VT == MVT::v4f32 || VT == MVT::v2f64 || VT == MVT::v8f32 ||
22375           VT == MVT::v4f64) &&
22376          "Unknown vector type encountered!");
22377
22378   return DAG.getNode(X86ISD::ADDSUB, DL, VT, LHS, RHS);
22379 }
22380
22381 /// PerformShuffleCombine - Performs several different shuffle combines.
22382 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
22383                                      TargetLowering::DAGCombinerInfo &DCI,
22384                                      const X86Subtarget *Subtarget) {
22385   SDLoc dl(N);
22386   SDValue N0 = N->getOperand(0);
22387   SDValue N1 = N->getOperand(1);
22388   EVT VT = N->getValueType(0);
22389
22390   // Don't create instructions with illegal types after legalize types has run.
22391   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22392   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
22393     return SDValue();
22394
22395   // If we have legalized the vector types, look for blends of FADD and FSUB
22396   // nodes that we can fuse into an ADDSUB node.
22397   if (TLI.isTypeLegal(VT) && Subtarget->hasSSE3())
22398     if (SDValue AddSub = combineShuffleToAddSub(N, DAG))
22399       return AddSub;
22400
22401   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
22402   if (Subtarget->hasFp256() && VT.is256BitVector() &&
22403       N->getOpcode() == ISD::VECTOR_SHUFFLE)
22404     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
22405
22406   // During Type Legalization, when promoting illegal vector types,
22407   // the backend might introduce new shuffle dag nodes and bitcasts.
22408   //
22409   // This code performs the following transformation:
22410   // fold: (shuffle (bitcast (BINOP A, B)), Undef, <Mask>) ->
22411   //       (shuffle (BINOP (bitcast A), (bitcast B)), Undef, <Mask>)
22412   //
22413   // We do this only if both the bitcast and the BINOP dag nodes have
22414   // one use. Also, perform this transformation only if the new binary
22415   // operation is legal. This is to avoid introducing dag nodes that
22416   // potentially need to be further expanded (or custom lowered) into a
22417   // less optimal sequence of dag nodes.
22418   if (!DCI.isBeforeLegalize() && DCI.isBeforeLegalizeOps() &&
22419       N1.getOpcode() == ISD::UNDEF && N0.hasOneUse() &&
22420       N0.getOpcode() == ISD::BITCAST) {
22421     SDValue BC0 = N0.getOperand(0);
22422     EVT SVT = BC0.getValueType();
22423     unsigned Opcode = BC0.getOpcode();
22424     unsigned NumElts = VT.getVectorNumElements();
22425
22426     if (BC0.hasOneUse() && SVT.isVector() &&
22427         SVT.getVectorNumElements() * 2 == NumElts &&
22428         TLI.isOperationLegal(Opcode, VT)) {
22429       bool CanFold = false;
22430       switch (Opcode) {
22431       default : break;
22432       case ISD::ADD :
22433       case ISD::FADD :
22434       case ISD::SUB :
22435       case ISD::FSUB :
22436       case ISD::MUL :
22437       case ISD::FMUL :
22438         CanFold = true;
22439       }
22440
22441       unsigned SVTNumElts = SVT.getVectorNumElements();
22442       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
22443       for (unsigned i = 0, e = SVTNumElts; i != e && CanFold; ++i)
22444         CanFold = SVOp->getMaskElt(i) == (int)(i * 2);
22445       for (unsigned i = SVTNumElts, e = NumElts; i != e && CanFold; ++i)
22446         CanFold = SVOp->getMaskElt(i) < 0;
22447
22448       if (CanFold) {
22449         SDValue BC00 = DAG.getBitcast(VT, BC0.getOperand(0));
22450         SDValue BC01 = DAG.getBitcast(VT, BC0.getOperand(1));
22451         SDValue NewBinOp = DAG.getNode(BC0.getOpcode(), dl, VT, BC00, BC01);
22452         return DAG.getVectorShuffle(VT, dl, NewBinOp, N1, &SVOp->getMask()[0]);
22453       }
22454     }
22455   }
22456
22457   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
22458   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
22459   // consecutive, non-overlapping, and in the right order.
22460   SmallVector<SDValue, 16> Elts;
22461   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
22462     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
22463
22464   if (SDValue LD = EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true))
22465     return LD;
22466
22467   if (isTargetShuffle(N->getOpcode())) {
22468     SDValue Shuffle =
22469         PerformTargetShuffleCombine(SDValue(N, 0), DAG, DCI, Subtarget);
22470     if (Shuffle.getNode())
22471       return Shuffle;
22472
22473     // Try recursively combining arbitrary sequences of x86 shuffle
22474     // instructions into higher-order shuffles. We do this after combining
22475     // specific PSHUF instruction sequences into their minimal form so that we
22476     // can evaluate how many specialized shuffle instructions are involved in
22477     // a particular chain.
22478     SmallVector<int, 1> NonceMask; // Just a placeholder.
22479     NonceMask.push_back(0);
22480     if (combineX86ShufflesRecursively(SDValue(N, 0), SDValue(N, 0), NonceMask,
22481                                       /*Depth*/ 1, /*HasPSHUFB*/ false, DAG,
22482                                       DCI, Subtarget))
22483       return SDValue(); // This routine will use CombineTo to replace N.
22484   }
22485
22486   return SDValue();
22487 }
22488
22489 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
22490 /// specific shuffle of a load can be folded into a single element load.
22491 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
22492 /// shuffles have been custom lowered so we need to handle those here.
22493 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
22494                                          TargetLowering::DAGCombinerInfo &DCI) {
22495   if (DCI.isBeforeLegalizeOps())
22496     return SDValue();
22497
22498   SDValue InVec = N->getOperand(0);
22499   SDValue EltNo = N->getOperand(1);
22500
22501   if (!isa<ConstantSDNode>(EltNo))
22502     return SDValue();
22503
22504   EVT OriginalVT = InVec.getValueType();
22505
22506   if (InVec.getOpcode() == ISD::BITCAST) {
22507     // Don't duplicate a load with other uses.
22508     if (!InVec.hasOneUse())
22509       return SDValue();
22510     EVT BCVT = InVec.getOperand(0).getValueType();
22511     if (!BCVT.isVector() ||
22512         BCVT.getVectorNumElements() != OriginalVT.getVectorNumElements())
22513       return SDValue();
22514     InVec = InVec.getOperand(0);
22515   }
22516
22517   EVT CurrentVT = InVec.getValueType();
22518
22519   if (!isTargetShuffle(InVec.getOpcode()))
22520     return SDValue();
22521
22522   // Don't duplicate a load with other uses.
22523   if (!InVec.hasOneUse())
22524     return SDValue();
22525
22526   SmallVector<int, 16> ShuffleMask;
22527   bool UnaryShuffle;
22528   if (!getTargetShuffleMask(InVec.getNode(), CurrentVT.getSimpleVT(),
22529                             ShuffleMask, UnaryShuffle))
22530     return SDValue();
22531
22532   // Select the input vector, guarding against out of range extract vector.
22533   unsigned NumElems = CurrentVT.getVectorNumElements();
22534   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
22535   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
22536   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
22537                                          : InVec.getOperand(1);
22538
22539   // If inputs to shuffle are the same for both ops, then allow 2 uses
22540   unsigned AllowedUses = InVec.getNumOperands() > 1 &&
22541                          InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
22542
22543   if (LdNode.getOpcode() == ISD::BITCAST) {
22544     // Don't duplicate a load with other uses.
22545     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
22546       return SDValue();
22547
22548     AllowedUses = 1; // only allow 1 load use if we have a bitcast
22549     LdNode = LdNode.getOperand(0);
22550   }
22551
22552   if (!ISD::isNormalLoad(LdNode.getNode()))
22553     return SDValue();
22554
22555   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
22556
22557   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
22558     return SDValue();
22559
22560   EVT EltVT = N->getValueType(0);
22561   // If there's a bitcast before the shuffle, check if the load type and
22562   // alignment is valid.
22563   unsigned Align = LN0->getAlignment();
22564   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22565   unsigned NewAlign = DAG.getDataLayout().getABITypeAlignment(
22566       EltVT.getTypeForEVT(*DAG.getContext()));
22567
22568   if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, EltVT))
22569     return SDValue();
22570
22571   // All checks match so transform back to vector_shuffle so that DAG combiner
22572   // can finish the job
22573   SDLoc dl(N);
22574
22575   // Create shuffle node taking into account the case that its a unary shuffle
22576   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(CurrentVT)
22577                                    : InVec.getOperand(1);
22578   Shuffle = DAG.getVectorShuffle(CurrentVT, dl,
22579                                  InVec.getOperand(0), Shuffle,
22580                                  &ShuffleMask[0]);
22581   Shuffle = DAG.getBitcast(OriginalVT, Shuffle);
22582   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
22583                      EltNo);
22584 }
22585
22586 /// \brief Detect bitcasts between i32 to x86mmx low word. Since MMX types are
22587 /// special and don't usually play with other vector types, it's better to
22588 /// handle them early to be sure we emit efficient code by avoiding
22589 /// store-load conversions.
22590 static SDValue PerformBITCASTCombine(SDNode *N, SelectionDAG &DAG) {
22591   if (N->getValueType(0) != MVT::x86mmx ||
22592       N->getOperand(0)->getOpcode() != ISD::BUILD_VECTOR ||
22593       N->getOperand(0)->getValueType(0) != MVT::v2i32)
22594     return SDValue();
22595
22596   SDValue V = N->getOperand(0);
22597   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V.getOperand(1));
22598   if (C && C->getZExtValue() == 0 && V.getOperand(0).getValueType() == MVT::i32)
22599     return DAG.getNode(X86ISD::MMX_MOVW2D, SDLoc(V.getOperand(0)),
22600                        N->getValueType(0), V.getOperand(0));
22601
22602   return SDValue();
22603 }
22604
22605 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
22606 /// generation and convert it from being a bunch of shuffles and extracts
22607 /// into a somewhat faster sequence. For i686, the best sequence is apparently
22608 /// storing the value and loading scalars back, while for x64 we should
22609 /// use 64-bit extracts and shifts.
22610 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
22611                                          TargetLowering::DAGCombinerInfo &DCI) {
22612   if (SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI))
22613     return NewOp;
22614
22615   SDValue InputVector = N->getOperand(0);
22616   SDLoc dl(InputVector);
22617   // Detect mmx to i32 conversion through a v2i32 elt extract.
22618   if (InputVector.getOpcode() == ISD::BITCAST && InputVector.hasOneUse() &&
22619       N->getValueType(0) == MVT::i32 &&
22620       InputVector.getValueType() == MVT::v2i32) {
22621
22622     // The bitcast source is a direct mmx result.
22623     SDValue MMXSrc = InputVector.getNode()->getOperand(0);
22624     if (MMXSrc.getValueType() == MVT::x86mmx)
22625       return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
22626                          N->getValueType(0),
22627                          InputVector.getNode()->getOperand(0));
22628
22629     // The mmx is indirect: (i64 extract_elt (v1i64 bitcast (x86mmx ...))).
22630     SDValue MMXSrcOp = MMXSrc.getOperand(0);
22631     if (MMXSrc.getOpcode() == ISD::EXTRACT_VECTOR_ELT && MMXSrc.hasOneUse() &&
22632         MMXSrc.getValueType() == MVT::i64 && MMXSrcOp.hasOneUse() &&
22633         MMXSrcOp.getOpcode() == ISD::BITCAST &&
22634         MMXSrcOp.getValueType() == MVT::v1i64 &&
22635         MMXSrcOp.getOperand(0).getValueType() == MVT::x86mmx)
22636       return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
22637                          N->getValueType(0),
22638                          MMXSrcOp.getOperand(0));
22639   }
22640
22641   EVT VT = N->getValueType(0);
22642
22643   if (VT == MVT::i1 && dyn_cast<ConstantSDNode>(N->getOperand(1)) &&
22644       InputVector.getOpcode() == ISD::BITCAST &&
22645       dyn_cast<ConstantSDNode>(InputVector.getOperand(0))) {
22646     uint64_t ExtractedElt =
22647           cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
22648     uint64_t InputValue =
22649           cast<ConstantSDNode>(InputVector.getOperand(0))->getZExtValue();
22650     uint64_t Res = (InputValue >> ExtractedElt) & 1;
22651     return DAG.getConstant(Res, dl, MVT::i1);
22652   }
22653   // Only operate on vectors of 4 elements, where the alternative shuffling
22654   // gets to be more expensive.
22655   if (InputVector.getValueType() != MVT::v4i32)
22656     return SDValue();
22657
22658   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
22659   // single use which is a sign-extend or zero-extend, and all elements are
22660   // used.
22661   SmallVector<SDNode *, 4> Uses;
22662   unsigned ExtractedElements = 0;
22663   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
22664        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
22665     if (UI.getUse().getResNo() != InputVector.getResNo())
22666       return SDValue();
22667
22668     SDNode *Extract = *UI;
22669     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
22670       return SDValue();
22671
22672     if (Extract->getValueType(0) != MVT::i32)
22673       return SDValue();
22674     if (!Extract->hasOneUse())
22675       return SDValue();
22676     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
22677         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
22678       return SDValue();
22679     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
22680       return SDValue();
22681
22682     // Record which element was extracted.
22683     ExtractedElements |=
22684       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
22685
22686     Uses.push_back(Extract);
22687   }
22688
22689   // If not all the elements were used, this may not be worthwhile.
22690   if (ExtractedElements != 15)
22691     return SDValue();
22692
22693   // Ok, we've now decided to do the transformation.
22694   // If 64-bit shifts are legal, use the extract-shift sequence,
22695   // otherwise bounce the vector off the cache.
22696   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22697   SDValue Vals[4];
22698
22699   if (TLI.isOperationLegal(ISD::SRA, MVT::i64)) {
22700     SDValue Cst = DAG.getBitcast(MVT::v2i64, InputVector);
22701     auto &DL = DAG.getDataLayout();
22702     EVT VecIdxTy = DAG.getTargetLoweringInfo().getVectorIdxTy(DL);
22703     SDValue BottomHalf = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Cst,
22704       DAG.getConstant(0, dl, VecIdxTy));
22705     SDValue TopHalf = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Cst,
22706       DAG.getConstant(1, dl, VecIdxTy));
22707
22708     SDValue ShAmt = DAG.getConstant(
22709         32, dl, DAG.getTargetLoweringInfo().getShiftAmountTy(MVT::i64, DL));
22710     Vals[0] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BottomHalf);
22711     Vals[1] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
22712       DAG.getNode(ISD::SRA, dl, MVT::i64, BottomHalf, ShAmt));
22713     Vals[2] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, TopHalf);
22714     Vals[3] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32,
22715       DAG.getNode(ISD::SRA, dl, MVT::i64, TopHalf, ShAmt));
22716   } else {
22717     // Store the value to a temporary stack slot.
22718     SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
22719     SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
22720       MachinePointerInfo(), false, false, 0);
22721
22722     EVT ElementType = InputVector.getValueType().getVectorElementType();
22723     unsigned EltSize = ElementType.getSizeInBits() / 8;
22724
22725     // Replace each use (extract) with a load of the appropriate element.
22726     for (unsigned i = 0; i < 4; ++i) {
22727       uint64_t Offset = EltSize * i;
22728       auto PtrVT = TLI.getPointerTy(DAG.getDataLayout());
22729       SDValue OffsetVal = DAG.getConstant(Offset, dl, PtrVT);
22730
22731       SDValue ScalarAddr =
22732           DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, OffsetVal);
22733
22734       // Load the scalar.
22735       Vals[i] = DAG.getLoad(ElementType, dl, Ch,
22736                             ScalarAddr, MachinePointerInfo(),
22737                             false, false, false, 0);
22738
22739     }
22740   }
22741
22742   // Replace the extracts
22743   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
22744     UE = Uses.end(); UI != UE; ++UI) {
22745     SDNode *Extract = *UI;
22746
22747     SDValue Idx = Extract->getOperand(1);
22748     uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
22749     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), Vals[IdxVal]);
22750   }
22751
22752   // The replacement was made in place; don't return anything.
22753   return SDValue();
22754 }
22755
22756 static SDValue
22757 transformVSELECTtoBlendVECTOR_SHUFFLE(SDNode *N, SelectionDAG &DAG,
22758                                       const X86Subtarget *Subtarget) {
22759   SDLoc dl(N);
22760   SDValue Cond = N->getOperand(0);
22761   SDValue LHS = N->getOperand(1);
22762   SDValue RHS = N->getOperand(2);
22763
22764   if (Cond.getOpcode() == ISD::SIGN_EXTEND) {
22765     SDValue CondSrc = Cond->getOperand(0);
22766     if (CondSrc->getOpcode() == ISD::SIGN_EXTEND_INREG)
22767       Cond = CondSrc->getOperand(0);
22768   }
22769
22770   if (!ISD::isBuildVectorOfConstantSDNodes(Cond.getNode()))
22771     return SDValue();
22772
22773   // A vselect where all conditions and data are constants can be optimized into
22774   // a single vector load by SelectionDAGLegalize::ExpandBUILD_VECTOR().
22775   if (ISD::isBuildVectorOfConstantSDNodes(LHS.getNode()) &&
22776       ISD::isBuildVectorOfConstantSDNodes(RHS.getNode()))
22777     return SDValue();
22778
22779   unsigned MaskValue = 0;
22780   if (!BUILD_VECTORtoBlendMask(cast<BuildVectorSDNode>(Cond), MaskValue))
22781     return SDValue();
22782
22783   MVT VT = N->getSimpleValueType(0);
22784   unsigned NumElems = VT.getVectorNumElements();
22785   SmallVector<int, 8> ShuffleMask(NumElems, -1);
22786   for (unsigned i = 0; i < NumElems; ++i) {
22787     // Be sure we emit undef where we can.
22788     if (Cond.getOperand(i)->getOpcode() == ISD::UNDEF)
22789       ShuffleMask[i] = -1;
22790     else
22791       ShuffleMask[i] = i + NumElems * ((MaskValue >> i) & 1);
22792   }
22793
22794   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22795   if (!TLI.isShuffleMaskLegal(ShuffleMask, VT))
22796     return SDValue();
22797   return DAG.getVectorShuffle(VT, dl, LHS, RHS, &ShuffleMask[0]);
22798 }
22799
22800 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
22801 /// nodes.
22802 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
22803                                     TargetLowering::DAGCombinerInfo &DCI,
22804                                     const X86Subtarget *Subtarget) {
22805   SDLoc DL(N);
22806   SDValue Cond = N->getOperand(0);
22807   // Get the LHS/RHS of the select.
22808   SDValue LHS = N->getOperand(1);
22809   SDValue RHS = N->getOperand(2);
22810   EVT VT = LHS.getValueType();
22811   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
22812
22813   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
22814   // instructions match the semantics of the common C idiom x<y?x:y but not
22815   // x<=y?x:y, because of how they handle negative zero (which can be
22816   // ignored in unsafe-math mode).
22817   // We also try to create v2f32 min/max nodes, which we later widen to v4f32.
22818   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
22819       VT != MVT::f80 && (TLI.isTypeLegal(VT) || VT == MVT::v2f32) &&
22820       (Subtarget->hasSSE2() ||
22821        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
22822     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
22823
22824     unsigned Opcode = 0;
22825     // Check for x CC y ? x : y.
22826     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
22827         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
22828       switch (CC) {
22829       default: break;
22830       case ISD::SETULT:
22831         // Converting this to a min would handle NaNs incorrectly, and swapping
22832         // the operands would cause it to handle comparisons between positive
22833         // and negative zero incorrectly.
22834         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
22835           if (!DAG.getTarget().Options.UnsafeFPMath &&
22836               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
22837             break;
22838           std::swap(LHS, RHS);
22839         }
22840         Opcode = X86ISD::FMIN;
22841         break;
22842       case ISD::SETOLE:
22843         // Converting this to a min would handle comparisons between positive
22844         // and negative zero incorrectly.
22845         if (!DAG.getTarget().Options.UnsafeFPMath &&
22846             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
22847           break;
22848         Opcode = X86ISD::FMIN;
22849         break;
22850       case ISD::SETULE:
22851         // Converting this to a min would handle both negative zeros and NaNs
22852         // incorrectly, but we can swap the operands to fix both.
22853         std::swap(LHS, RHS);
22854       case ISD::SETOLT:
22855       case ISD::SETLT:
22856       case ISD::SETLE:
22857         Opcode = X86ISD::FMIN;
22858         break;
22859
22860       case ISD::SETOGE:
22861         // Converting this to a max would handle comparisons between positive
22862         // and negative zero incorrectly.
22863         if (!DAG.getTarget().Options.UnsafeFPMath &&
22864             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
22865           break;
22866         Opcode = X86ISD::FMAX;
22867         break;
22868       case ISD::SETUGT:
22869         // Converting this to a max would handle NaNs incorrectly, and swapping
22870         // the operands would cause it to handle comparisons between positive
22871         // and negative zero incorrectly.
22872         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
22873           if (!DAG.getTarget().Options.UnsafeFPMath &&
22874               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
22875             break;
22876           std::swap(LHS, RHS);
22877         }
22878         Opcode = X86ISD::FMAX;
22879         break;
22880       case ISD::SETUGE:
22881         // Converting this to a max would handle both negative zeros and NaNs
22882         // incorrectly, but we can swap the operands to fix both.
22883         std::swap(LHS, RHS);
22884       case ISD::SETOGT:
22885       case ISD::SETGT:
22886       case ISD::SETGE:
22887         Opcode = X86ISD::FMAX;
22888         break;
22889       }
22890     // Check for x CC y ? y : x -- a min/max with reversed arms.
22891     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
22892                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
22893       switch (CC) {
22894       default: break;
22895       case ISD::SETOGE:
22896         // Converting this to a min would handle comparisons between positive
22897         // and negative zero incorrectly, and swapping the operands would
22898         // cause it to handle NaNs incorrectly.
22899         if (!DAG.getTarget().Options.UnsafeFPMath &&
22900             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
22901           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
22902             break;
22903           std::swap(LHS, RHS);
22904         }
22905         Opcode = X86ISD::FMIN;
22906         break;
22907       case ISD::SETUGT:
22908         // Converting this to a min would handle NaNs incorrectly.
22909         if (!DAG.getTarget().Options.UnsafeFPMath &&
22910             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
22911           break;
22912         Opcode = X86ISD::FMIN;
22913         break;
22914       case ISD::SETUGE:
22915         // Converting this to a min would handle both negative zeros and NaNs
22916         // incorrectly, but we can swap the operands to fix both.
22917         std::swap(LHS, RHS);
22918       case ISD::SETOGT:
22919       case ISD::SETGT:
22920       case ISD::SETGE:
22921         Opcode = X86ISD::FMIN;
22922         break;
22923
22924       case ISD::SETULT:
22925         // Converting this to a max would handle NaNs incorrectly.
22926         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
22927           break;
22928         Opcode = X86ISD::FMAX;
22929         break;
22930       case ISD::SETOLE:
22931         // Converting this to a max would handle comparisons between positive
22932         // and negative zero incorrectly, and swapping the operands would
22933         // cause it to handle NaNs incorrectly.
22934         if (!DAG.getTarget().Options.UnsafeFPMath &&
22935             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
22936           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
22937             break;
22938           std::swap(LHS, RHS);
22939         }
22940         Opcode = X86ISD::FMAX;
22941         break;
22942       case ISD::SETULE:
22943         // Converting this to a max would handle both negative zeros and NaNs
22944         // incorrectly, but we can swap the operands to fix both.
22945         std::swap(LHS, RHS);
22946       case ISD::SETOLT:
22947       case ISD::SETLT:
22948       case ISD::SETLE:
22949         Opcode = X86ISD::FMAX;
22950         break;
22951       }
22952     }
22953
22954     if (Opcode)
22955       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
22956   }
22957
22958   EVT CondVT = Cond.getValueType();
22959   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
22960       CondVT.getVectorElementType() == MVT::i1) {
22961     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
22962     // lowering on KNL. In this case we convert it to
22963     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
22964     // The same situation for all 128 and 256-bit vectors of i8 and i16.
22965     // Since SKX these selects have a proper lowering.
22966     EVT OpVT = LHS.getValueType();
22967     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
22968         (OpVT.getVectorElementType() == MVT::i8 ||
22969          OpVT.getVectorElementType() == MVT::i16) &&
22970         !(Subtarget->hasBWI() && Subtarget->hasVLX())) {
22971       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
22972       DCI.AddToWorklist(Cond.getNode());
22973       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
22974     }
22975   }
22976   // If this is a select between two integer constants, try to do some
22977   // optimizations.
22978   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
22979     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
22980       // Don't do this for crazy integer types.
22981       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
22982         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
22983         // so that TrueC (the true value) is larger than FalseC.
22984         bool NeedsCondInvert = false;
22985
22986         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
22987             // Efficiently invertible.
22988             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
22989              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
22990               isa<ConstantSDNode>(Cond.getOperand(1))))) {
22991           NeedsCondInvert = true;
22992           std::swap(TrueC, FalseC);
22993         }
22994
22995         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
22996         if (FalseC->getAPIntValue() == 0 &&
22997             TrueC->getAPIntValue().isPowerOf2()) {
22998           if (NeedsCondInvert) // Invert the condition if needed.
22999             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
23000                                DAG.getConstant(1, DL, Cond.getValueType()));
23001
23002           // Zero extend the condition if needed.
23003           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
23004
23005           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
23006           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
23007                              DAG.getConstant(ShAmt, DL, MVT::i8));
23008         }
23009
23010         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
23011         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
23012           if (NeedsCondInvert) // Invert the condition if needed.
23013             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
23014                                DAG.getConstant(1, DL, Cond.getValueType()));
23015
23016           // Zero extend the condition if needed.
23017           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
23018                              FalseC->getValueType(0), Cond);
23019           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
23020                              SDValue(FalseC, 0));
23021         }
23022
23023         // Optimize cases that will turn into an LEA instruction.  This requires
23024         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
23025         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
23026           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
23027           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
23028
23029           bool isFastMultiplier = false;
23030           if (Diff < 10) {
23031             switch ((unsigned char)Diff) {
23032               default: break;
23033               case 1:  // result = add base, cond
23034               case 2:  // result = lea base(    , cond*2)
23035               case 3:  // result = lea base(cond, cond*2)
23036               case 4:  // result = lea base(    , cond*4)
23037               case 5:  // result = lea base(cond, cond*4)
23038               case 8:  // result = lea base(    , cond*8)
23039               case 9:  // result = lea base(cond, cond*8)
23040                 isFastMultiplier = true;
23041                 break;
23042             }
23043           }
23044
23045           if (isFastMultiplier) {
23046             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
23047             if (NeedsCondInvert) // Invert the condition if needed.
23048               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
23049                                  DAG.getConstant(1, DL, Cond.getValueType()));
23050
23051             // Zero extend the condition if needed.
23052             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
23053                                Cond);
23054             // Scale the condition by the difference.
23055             if (Diff != 1)
23056               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
23057                                  DAG.getConstant(Diff, DL,
23058                                                  Cond.getValueType()));
23059
23060             // Add the base if non-zero.
23061             if (FalseC->getAPIntValue() != 0)
23062               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
23063                                  SDValue(FalseC, 0));
23064             return Cond;
23065           }
23066         }
23067       }
23068   }
23069
23070   // Canonicalize max and min:
23071   // (x > y) ? x : y -> (x >= y) ? x : y
23072   // (x < y) ? x : y -> (x <= y) ? x : y
23073   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
23074   // the need for an extra compare
23075   // against zero. e.g.
23076   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
23077   // subl   %esi, %edi
23078   // testl  %edi, %edi
23079   // movl   $0, %eax
23080   // cmovgl %edi, %eax
23081   // =>
23082   // xorl   %eax, %eax
23083   // subl   %esi, $edi
23084   // cmovsl %eax, %edi
23085   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
23086       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
23087       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
23088     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
23089     switch (CC) {
23090     default: break;
23091     case ISD::SETLT:
23092     case ISD::SETGT: {
23093       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
23094       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
23095                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
23096       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
23097     }
23098     }
23099   }
23100
23101   // Early exit check
23102   if (!TLI.isTypeLegal(VT))
23103     return SDValue();
23104
23105   // Match VSELECTs into subs with unsigned saturation.
23106   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
23107       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
23108       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
23109        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
23110     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
23111
23112     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
23113     // left side invert the predicate to simplify logic below.
23114     SDValue Other;
23115     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
23116       Other = RHS;
23117       CC = ISD::getSetCCInverse(CC, true);
23118     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
23119       Other = LHS;
23120     }
23121
23122     if (Other.getNode() && Other->getNumOperands() == 2 &&
23123         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
23124       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
23125       SDValue CondRHS = Cond->getOperand(1);
23126
23127       // Look for a general sub with unsigned saturation first.
23128       // x >= y ? x-y : 0 --> subus x, y
23129       // x >  y ? x-y : 0 --> subus x, y
23130       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
23131           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
23132         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
23133
23134       if (auto *OpRHSBV = dyn_cast<BuildVectorSDNode>(OpRHS))
23135         if (auto *OpRHSConst = OpRHSBV->getConstantSplatNode()) {
23136           if (auto *CondRHSBV = dyn_cast<BuildVectorSDNode>(CondRHS))
23137             if (auto *CondRHSConst = CondRHSBV->getConstantSplatNode())
23138               // If the RHS is a constant we have to reverse the const
23139               // canonicalization.
23140               // x > C-1 ? x+-C : 0 --> subus x, C
23141               if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
23142                   CondRHSConst->getAPIntValue() ==
23143                       (-OpRHSConst->getAPIntValue() - 1))
23144                 return DAG.getNode(
23145                     X86ISD::SUBUS, DL, VT, OpLHS,
23146                     DAG.getConstant(-OpRHSConst->getAPIntValue(), DL, VT));
23147
23148           // Another special case: If C was a sign bit, the sub has been
23149           // canonicalized into a xor.
23150           // FIXME: Would it be better to use computeKnownBits to determine
23151           //        whether it's safe to decanonicalize the xor?
23152           // x s< 0 ? x^C : 0 --> subus x, C
23153           if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
23154               ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
23155               OpRHSConst->getAPIntValue().isSignBit())
23156             // Note that we have to rebuild the RHS constant here to ensure we
23157             // don't rely on particular values of undef lanes.
23158             return DAG.getNode(
23159                 X86ISD::SUBUS, DL, VT, OpLHS,
23160                 DAG.getConstant(OpRHSConst->getAPIntValue(), DL, VT));
23161         }
23162     }
23163   }
23164
23165   // Simplify vector selection if condition value type matches vselect
23166   // operand type
23167   if (N->getOpcode() == ISD::VSELECT && CondVT == VT) {
23168     assert(Cond.getValueType().isVector() &&
23169            "vector select expects a vector selector!");
23170
23171     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
23172     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
23173
23174     // Try invert the condition if true value is not all 1s and false value
23175     // is not all 0s.
23176     if (!TValIsAllOnes && !FValIsAllZeros &&
23177         // Check if the selector will be produced by CMPP*/PCMP*
23178         Cond.getOpcode() == ISD::SETCC &&
23179         // Check if SETCC has already been promoted
23180         TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT) ==
23181             CondVT) {
23182       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
23183       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
23184
23185       if (TValIsAllZeros || FValIsAllOnes) {
23186         SDValue CC = Cond.getOperand(2);
23187         ISD::CondCode NewCC =
23188           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
23189                                Cond.getOperand(0).getValueType().isInteger());
23190         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
23191         std::swap(LHS, RHS);
23192         TValIsAllOnes = FValIsAllOnes;
23193         FValIsAllZeros = TValIsAllZeros;
23194       }
23195     }
23196
23197     if (TValIsAllOnes || FValIsAllZeros) {
23198       SDValue Ret;
23199
23200       if (TValIsAllOnes && FValIsAllZeros)
23201         Ret = Cond;
23202       else if (TValIsAllOnes)
23203         Ret =
23204             DAG.getNode(ISD::OR, DL, CondVT, Cond, DAG.getBitcast(CondVT, RHS));
23205       else if (FValIsAllZeros)
23206         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
23207                           DAG.getBitcast(CondVT, LHS));
23208
23209       return DAG.getBitcast(VT, Ret);
23210     }
23211   }
23212
23213   // We should generate an X86ISD::BLENDI from a vselect if its argument
23214   // is a sign_extend_inreg of an any_extend of a BUILD_VECTOR of
23215   // constants. This specific pattern gets generated when we split a
23216   // selector for a 512 bit vector in a machine without AVX512 (but with
23217   // 256-bit vectors), during legalization:
23218   //
23219   // (vselect (sign_extend (any_extend (BUILD_VECTOR)) i1) LHS RHS)
23220   //
23221   // Iff we find this pattern and the build_vectors are built from
23222   // constants, we translate the vselect into a shuffle_vector that we
23223   // know will be matched by LowerVECTOR_SHUFFLEtoBlend.
23224   if ((N->getOpcode() == ISD::VSELECT ||
23225        N->getOpcode() == X86ISD::SHRUNKBLEND) &&
23226       !DCI.isBeforeLegalize() && !VT.is512BitVector()) {
23227     SDValue Shuffle = transformVSELECTtoBlendVECTOR_SHUFFLE(N, DAG, Subtarget);
23228     if (Shuffle.getNode())
23229       return Shuffle;
23230   }
23231
23232   // If this is a *dynamic* select (non-constant condition) and we can match
23233   // this node with one of the variable blend instructions, restructure the
23234   // condition so that the blends can use the high bit of each element and use
23235   // SimplifyDemandedBits to simplify the condition operand.
23236   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
23237       !DCI.isBeforeLegalize() &&
23238       !ISD::isBuildVectorOfConstantSDNodes(Cond.getNode())) {
23239     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
23240
23241     // Don't optimize vector selects that map to mask-registers.
23242     if (BitWidth == 1)
23243       return SDValue();
23244
23245     // We can only handle the cases where VSELECT is directly legal on the
23246     // subtarget. We custom lower VSELECT nodes with constant conditions and
23247     // this makes it hard to see whether a dynamic VSELECT will correctly
23248     // lower, so we both check the operation's status and explicitly handle the
23249     // cases where a *dynamic* blend will fail even though a constant-condition
23250     // blend could be custom lowered.
23251     // FIXME: We should find a better way to handle this class of problems.
23252     // Potentially, we should combine constant-condition vselect nodes
23253     // pre-legalization into shuffles and not mark as many types as custom
23254     // lowered.
23255     if (!TLI.isOperationLegalOrCustom(ISD::VSELECT, VT))
23256       return SDValue();
23257     // FIXME: We don't support i16-element blends currently. We could and
23258     // should support them by making *all* the bits in the condition be set
23259     // rather than just the high bit and using an i8-element blend.
23260     if (VT.getScalarType() == MVT::i16)
23261       return SDValue();
23262     // Dynamic blending was only available from SSE4.1 onward.
23263     if (VT.getSizeInBits() == 128 && !Subtarget->hasSSE41())
23264       return SDValue();
23265     // Byte blends are only available in AVX2
23266     if (VT.getSizeInBits() == 256 && VT.getScalarType() == MVT::i8 &&
23267         !Subtarget->hasAVX2())
23268       return SDValue();
23269
23270     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
23271     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
23272
23273     APInt KnownZero, KnownOne;
23274     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
23275                                           DCI.isBeforeLegalizeOps());
23276     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
23277         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne,
23278                                  TLO)) {
23279       // If we changed the computation somewhere in the DAG, this change
23280       // will affect all users of Cond.
23281       // Make sure it is fine and update all the nodes so that we do not
23282       // use the generic VSELECT anymore. Otherwise, we may perform
23283       // wrong optimizations as we messed up with the actual expectation
23284       // for the vector boolean values.
23285       if (Cond != TLO.Old) {
23286         // Check all uses of that condition operand to check whether it will be
23287         // consumed by non-BLEND instructions, which may depend on all bits are
23288         // set properly.
23289         for (SDNode::use_iterator I = Cond->use_begin(), E = Cond->use_end();
23290              I != E; ++I)
23291           if (I->getOpcode() != ISD::VSELECT)
23292             // TODO: Add other opcodes eventually lowered into BLEND.
23293             return SDValue();
23294
23295         // Update all the users of the condition, before committing the change,
23296         // so that the VSELECT optimizations that expect the correct vector
23297         // boolean value will not be triggered.
23298         for (SDNode::use_iterator I = Cond->use_begin(), E = Cond->use_end();
23299              I != E; ++I)
23300           DAG.ReplaceAllUsesOfValueWith(
23301               SDValue(*I, 0),
23302               DAG.getNode(X86ISD::SHRUNKBLEND, SDLoc(*I), I->getValueType(0),
23303                           Cond, I->getOperand(1), I->getOperand(2)));
23304         DCI.CommitTargetLoweringOpt(TLO);
23305         return SDValue();
23306       }
23307       // At this point, only Cond is changed. Change the condition
23308       // just for N to keep the opportunity to optimize all other
23309       // users their own way.
23310       DAG.ReplaceAllUsesOfValueWith(
23311           SDValue(N, 0),
23312           DAG.getNode(X86ISD::SHRUNKBLEND, SDLoc(N), N->getValueType(0),
23313                       TLO.New, N->getOperand(1), N->getOperand(2)));
23314       return SDValue();
23315     }
23316   }
23317
23318   return SDValue();
23319 }
23320
23321 // Check whether a boolean test is testing a boolean value generated by
23322 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
23323 // code.
23324 //
23325 // Simplify the following patterns:
23326 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
23327 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
23328 // to (Op EFLAGS Cond)
23329 //
23330 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
23331 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
23332 // to (Op EFLAGS !Cond)
23333 //
23334 // where Op could be BRCOND or CMOV.
23335 //
23336 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
23337   // Quit if not CMP and SUB with its value result used.
23338   if (Cmp.getOpcode() != X86ISD::CMP &&
23339       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
23340       return SDValue();
23341
23342   // Quit if not used as a boolean value.
23343   if (CC != X86::COND_E && CC != X86::COND_NE)
23344     return SDValue();
23345
23346   // Check CMP operands. One of them should be 0 or 1 and the other should be
23347   // an SetCC or extended from it.
23348   SDValue Op1 = Cmp.getOperand(0);
23349   SDValue Op2 = Cmp.getOperand(1);
23350
23351   SDValue SetCC;
23352   const ConstantSDNode* C = nullptr;
23353   bool needOppositeCond = (CC == X86::COND_E);
23354   bool checkAgainstTrue = false; // Is it a comparison against 1?
23355
23356   if ((C = dyn_cast<ConstantSDNode>(Op1)))
23357     SetCC = Op2;
23358   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
23359     SetCC = Op1;
23360   else // Quit if all operands are not constants.
23361     return SDValue();
23362
23363   if (C->getZExtValue() == 1) {
23364     needOppositeCond = !needOppositeCond;
23365     checkAgainstTrue = true;
23366   } else if (C->getZExtValue() != 0)
23367     // Quit if the constant is neither 0 or 1.
23368     return SDValue();
23369
23370   bool truncatedToBoolWithAnd = false;
23371   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
23372   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
23373          SetCC.getOpcode() == ISD::TRUNCATE ||
23374          SetCC.getOpcode() == ISD::AND) {
23375     if (SetCC.getOpcode() == ISD::AND) {
23376       int OpIdx = -1;
23377       ConstantSDNode *CS;
23378       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
23379           CS->getZExtValue() == 1)
23380         OpIdx = 1;
23381       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
23382           CS->getZExtValue() == 1)
23383         OpIdx = 0;
23384       if (OpIdx == -1)
23385         break;
23386       SetCC = SetCC.getOperand(OpIdx);
23387       truncatedToBoolWithAnd = true;
23388     } else
23389       SetCC = SetCC.getOperand(0);
23390   }
23391
23392   switch (SetCC.getOpcode()) {
23393   case X86ISD::SETCC_CARRY:
23394     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
23395     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
23396     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
23397     // truncated to i1 using 'and'.
23398     if (checkAgainstTrue && !truncatedToBoolWithAnd)
23399       break;
23400     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
23401            "Invalid use of SETCC_CARRY!");
23402     // FALL THROUGH
23403   case X86ISD::SETCC:
23404     // Set the condition code or opposite one if necessary.
23405     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
23406     if (needOppositeCond)
23407       CC = X86::GetOppositeBranchCondition(CC);
23408     return SetCC.getOperand(1);
23409   case X86ISD::CMOV: {
23410     // Check whether false/true value has canonical one, i.e. 0 or 1.
23411     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
23412     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
23413     // Quit if true value is not a constant.
23414     if (!TVal)
23415       return SDValue();
23416     // Quit if false value is not a constant.
23417     if (!FVal) {
23418       SDValue Op = SetCC.getOperand(0);
23419       // Skip 'zext' or 'trunc' node.
23420       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
23421           Op.getOpcode() == ISD::TRUNCATE)
23422         Op = Op.getOperand(0);
23423       // A special case for rdrand/rdseed, where 0 is set if false cond is
23424       // found.
23425       if ((Op.getOpcode() != X86ISD::RDRAND &&
23426            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
23427         return SDValue();
23428     }
23429     // Quit if false value is not the constant 0 or 1.
23430     bool FValIsFalse = true;
23431     if (FVal && FVal->getZExtValue() != 0) {
23432       if (FVal->getZExtValue() != 1)
23433         return SDValue();
23434       // If FVal is 1, opposite cond is needed.
23435       needOppositeCond = !needOppositeCond;
23436       FValIsFalse = false;
23437     }
23438     // Quit if TVal is not the constant opposite of FVal.
23439     if (FValIsFalse && TVal->getZExtValue() != 1)
23440       return SDValue();
23441     if (!FValIsFalse && TVal->getZExtValue() != 0)
23442       return SDValue();
23443     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
23444     if (needOppositeCond)
23445       CC = X86::GetOppositeBranchCondition(CC);
23446     return SetCC.getOperand(3);
23447   }
23448   }
23449
23450   return SDValue();
23451 }
23452
23453 /// Check whether Cond is an AND/OR of SETCCs off of the same EFLAGS.
23454 /// Match:
23455 ///   (X86or (X86setcc) (X86setcc))
23456 ///   (X86cmp (and (X86setcc) (X86setcc)), 0)
23457 static bool checkBoolTestAndOrSetCCCombine(SDValue Cond, X86::CondCode &CC0,
23458                                            X86::CondCode &CC1, SDValue &Flags,
23459                                            bool &isAnd) {
23460   if (Cond->getOpcode() == X86ISD::CMP) {
23461     ConstantSDNode *CondOp1C = dyn_cast<ConstantSDNode>(Cond->getOperand(1));
23462     if (!CondOp1C || !CondOp1C->isNullValue())
23463       return false;
23464
23465     Cond = Cond->getOperand(0);
23466   }
23467
23468   isAnd = false;
23469
23470   SDValue SetCC0, SetCC1;
23471   switch (Cond->getOpcode()) {
23472   default: return false;
23473   case ISD::AND:
23474   case X86ISD::AND:
23475     isAnd = true;
23476     // fallthru
23477   case ISD::OR:
23478   case X86ISD::OR:
23479     SetCC0 = Cond->getOperand(0);
23480     SetCC1 = Cond->getOperand(1);
23481     break;
23482   };
23483
23484   // Make sure we have SETCC nodes, using the same flags value.
23485   if (SetCC0.getOpcode() != X86ISD::SETCC ||
23486       SetCC1.getOpcode() != X86ISD::SETCC ||
23487       SetCC0->getOperand(1) != SetCC1->getOperand(1))
23488     return false;
23489
23490   CC0 = (X86::CondCode)SetCC0->getConstantOperandVal(0);
23491   CC1 = (X86::CondCode)SetCC1->getConstantOperandVal(0);
23492   Flags = SetCC0->getOperand(1);
23493   return true;
23494 }
23495
23496 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
23497 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
23498                                   TargetLowering::DAGCombinerInfo &DCI,
23499                                   const X86Subtarget *Subtarget) {
23500   SDLoc DL(N);
23501
23502   // If the flag operand isn't dead, don't touch this CMOV.
23503   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
23504     return SDValue();
23505
23506   SDValue FalseOp = N->getOperand(0);
23507   SDValue TrueOp = N->getOperand(1);
23508   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
23509   SDValue Cond = N->getOperand(3);
23510
23511   if (CC == X86::COND_E || CC == X86::COND_NE) {
23512     switch (Cond.getOpcode()) {
23513     default: break;
23514     case X86ISD::BSR:
23515     case X86ISD::BSF:
23516       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
23517       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
23518         return (CC == X86::COND_E) ? FalseOp : TrueOp;
23519     }
23520   }
23521
23522   SDValue Flags;
23523
23524   Flags = checkBoolTestSetCCCombine(Cond, CC);
23525   if (Flags.getNode() &&
23526       // Extra check as FCMOV only supports a subset of X86 cond.
23527       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
23528     SDValue Ops[] = { FalseOp, TrueOp,
23529                       DAG.getConstant(CC, DL, MVT::i8), Flags };
23530     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
23531   }
23532
23533   // If this is a select between two integer constants, try to do some
23534   // optimizations.  Note that the operands are ordered the opposite of SELECT
23535   // operands.
23536   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
23537     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
23538       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
23539       // larger than FalseC (the false value).
23540       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
23541         CC = X86::GetOppositeBranchCondition(CC);
23542         std::swap(TrueC, FalseC);
23543         std::swap(TrueOp, FalseOp);
23544       }
23545
23546       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
23547       // This is efficient for any integer data type (including i8/i16) and
23548       // shift amount.
23549       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
23550         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
23551                            DAG.getConstant(CC, DL, MVT::i8), Cond);
23552
23553         // Zero extend the condition if needed.
23554         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
23555
23556         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
23557         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
23558                            DAG.getConstant(ShAmt, DL, MVT::i8));
23559         if (N->getNumValues() == 2)  // Dead flag value?
23560           return DCI.CombineTo(N, Cond, SDValue());
23561         return Cond;
23562       }
23563
23564       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
23565       // for any integer data type, including i8/i16.
23566       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
23567         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
23568                            DAG.getConstant(CC, DL, MVT::i8), Cond);
23569
23570         // Zero extend the condition if needed.
23571         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
23572                            FalseC->getValueType(0), Cond);
23573         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
23574                            SDValue(FalseC, 0));
23575
23576         if (N->getNumValues() == 2)  // Dead flag value?
23577           return DCI.CombineTo(N, Cond, SDValue());
23578         return Cond;
23579       }
23580
23581       // Optimize cases that will turn into an LEA instruction.  This requires
23582       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
23583       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
23584         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
23585         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
23586
23587         bool isFastMultiplier = false;
23588         if (Diff < 10) {
23589           switch ((unsigned char)Diff) {
23590           default: break;
23591           case 1:  // result = add base, cond
23592           case 2:  // result = lea base(    , cond*2)
23593           case 3:  // result = lea base(cond, cond*2)
23594           case 4:  // result = lea base(    , cond*4)
23595           case 5:  // result = lea base(cond, cond*4)
23596           case 8:  // result = lea base(    , cond*8)
23597           case 9:  // result = lea base(cond, cond*8)
23598             isFastMultiplier = true;
23599             break;
23600           }
23601         }
23602
23603         if (isFastMultiplier) {
23604           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
23605           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
23606                              DAG.getConstant(CC, DL, MVT::i8), Cond);
23607           // Zero extend the condition if needed.
23608           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
23609                              Cond);
23610           // Scale the condition by the difference.
23611           if (Diff != 1)
23612             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
23613                                DAG.getConstant(Diff, DL, Cond.getValueType()));
23614
23615           // Add the base if non-zero.
23616           if (FalseC->getAPIntValue() != 0)
23617             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
23618                                SDValue(FalseC, 0));
23619           if (N->getNumValues() == 2)  // Dead flag value?
23620             return DCI.CombineTo(N, Cond, SDValue());
23621           return Cond;
23622         }
23623       }
23624     }
23625   }
23626
23627   // Handle these cases:
23628   //   (select (x != c), e, c) -> select (x != c), e, x),
23629   //   (select (x == c), c, e) -> select (x == c), x, e)
23630   // where the c is an integer constant, and the "select" is the combination
23631   // of CMOV and CMP.
23632   //
23633   // The rationale for this change is that the conditional-move from a constant
23634   // needs two instructions, however, conditional-move from a register needs
23635   // only one instruction.
23636   //
23637   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
23638   //  some instruction-combining opportunities. This opt needs to be
23639   //  postponed as late as possible.
23640   //
23641   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
23642     // the DCI.xxxx conditions are provided to postpone the optimization as
23643     // late as possible.
23644
23645     ConstantSDNode *CmpAgainst = nullptr;
23646     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
23647         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
23648         !isa<ConstantSDNode>(Cond.getOperand(0))) {
23649
23650       if (CC == X86::COND_NE &&
23651           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
23652         CC = X86::GetOppositeBranchCondition(CC);
23653         std::swap(TrueOp, FalseOp);
23654       }
23655
23656       if (CC == X86::COND_E &&
23657           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
23658         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
23659                           DAG.getConstant(CC, DL, MVT::i8), Cond };
23660         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops);
23661       }
23662     }
23663   }
23664
23665   // Fold and/or of setcc's to double CMOV:
23666   //   (CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
23667   //   (CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
23668   //
23669   // This combine lets us generate:
23670   //   cmovcc1 (jcc1 if we don't have CMOV)
23671   //   cmovcc2 (same)
23672   // instead of:
23673   //   setcc1
23674   //   setcc2
23675   //   and/or
23676   //   cmovne (jne if we don't have CMOV)
23677   // When we can't use the CMOV instruction, it might increase branch
23678   // mispredicts.
23679   // When we can use CMOV, or when there is no mispredict, this improves
23680   // throughput and reduces register pressure.
23681   //
23682   if (CC == X86::COND_NE) {
23683     SDValue Flags;
23684     X86::CondCode CC0, CC1;
23685     bool isAndSetCC;
23686     if (checkBoolTestAndOrSetCCCombine(Cond, CC0, CC1, Flags, isAndSetCC)) {
23687       if (isAndSetCC) {
23688         std::swap(FalseOp, TrueOp);
23689         CC0 = X86::GetOppositeBranchCondition(CC0);
23690         CC1 = X86::GetOppositeBranchCondition(CC1);
23691       }
23692
23693       SDValue LOps[] = {FalseOp, TrueOp, DAG.getConstant(CC0, DL, MVT::i8),
23694         Flags};
23695       SDValue LCMOV = DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), LOps);
23696       SDValue Ops[] = {LCMOV, TrueOp, DAG.getConstant(CC1, DL, MVT::i8), Flags};
23697       SDValue CMOV = DAG.getNode(X86ISD::CMOV, DL, N->getVTList(), Ops);
23698       DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SDValue(CMOV.getNode(), 1));
23699       return CMOV;
23700     }
23701   }
23702
23703   return SDValue();
23704 }
23705
23706 /// PerformMulCombine - Optimize a single multiply with constant into two
23707 /// in order to implement it with two cheaper instructions, e.g.
23708 /// LEA + SHL, LEA + LEA.
23709 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
23710                                  TargetLowering::DAGCombinerInfo &DCI) {
23711   // An imul is usually smaller than the alternative sequence.
23712   if (DAG.getMachineFunction().getFunction()->optForMinSize())
23713     return SDValue();
23714
23715   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
23716     return SDValue();
23717
23718   EVT VT = N->getValueType(0);
23719   if (VT != MVT::i64 && VT != MVT::i32)
23720     return SDValue();
23721
23722   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
23723   if (!C)
23724     return SDValue();
23725   uint64_t MulAmt = C->getZExtValue();
23726   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
23727     return SDValue();
23728
23729   uint64_t MulAmt1 = 0;
23730   uint64_t MulAmt2 = 0;
23731   if ((MulAmt % 9) == 0) {
23732     MulAmt1 = 9;
23733     MulAmt2 = MulAmt / 9;
23734   } else if ((MulAmt % 5) == 0) {
23735     MulAmt1 = 5;
23736     MulAmt2 = MulAmt / 5;
23737   } else if ((MulAmt % 3) == 0) {
23738     MulAmt1 = 3;
23739     MulAmt2 = MulAmt / 3;
23740   }
23741   if (MulAmt2 &&
23742       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
23743     SDLoc DL(N);
23744
23745     if (isPowerOf2_64(MulAmt2) &&
23746         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
23747       // If second multiplifer is pow2, issue it first. We want the multiply by
23748       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
23749       // is an add.
23750       std::swap(MulAmt1, MulAmt2);
23751
23752     SDValue NewMul;
23753     if (isPowerOf2_64(MulAmt1))
23754       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
23755                            DAG.getConstant(Log2_64(MulAmt1), DL, MVT::i8));
23756     else
23757       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
23758                            DAG.getConstant(MulAmt1, DL, VT));
23759
23760     if (isPowerOf2_64(MulAmt2))
23761       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
23762                            DAG.getConstant(Log2_64(MulAmt2), DL, MVT::i8));
23763     else
23764       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
23765                            DAG.getConstant(MulAmt2, DL, VT));
23766
23767     // Do not add new nodes to DAG combiner worklist.
23768     DCI.CombineTo(N, NewMul, false);
23769   }
23770   return SDValue();
23771 }
23772
23773 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
23774   SDValue N0 = N->getOperand(0);
23775   SDValue N1 = N->getOperand(1);
23776   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
23777   EVT VT = N0.getValueType();
23778
23779   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
23780   // since the result of setcc_c is all zero's or all ones.
23781   if (VT.isInteger() && !VT.isVector() &&
23782       N1C && N0.getOpcode() == ISD::AND &&
23783       N0.getOperand(1).getOpcode() == ISD::Constant) {
23784     SDValue N00 = N0.getOperand(0);
23785     APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
23786     APInt ShAmt = N1C->getAPIntValue();
23787     Mask = Mask.shl(ShAmt);
23788     bool MaskOK = false;
23789     // We can handle cases concerning bit-widening nodes containing setcc_c if
23790     // we carefully interrogate the mask to make sure we are semantics
23791     // preserving.
23792     // The transform is not safe if the result of C1 << C2 exceeds the bitwidth
23793     // of the underlying setcc_c operation if the setcc_c was zero extended.
23794     // Consider the following example:
23795     //   zext(setcc_c)                 -> i32 0x0000FFFF
23796     //   c1                            -> i32 0x0000FFFF
23797     //   c2                            -> i32 0x00000001
23798     //   (shl (and (setcc_c), c1), c2) -> i32 0x0001FFFE
23799     //   (and setcc_c, (c1 << c2))     -> i32 0x0000FFFE
23800     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
23801       MaskOK = true;
23802     } else if (N00.getOpcode() == ISD::SIGN_EXTEND &&
23803                N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
23804       MaskOK = true;
23805     } else if ((N00.getOpcode() == ISD::ZERO_EXTEND ||
23806                 N00.getOpcode() == ISD::ANY_EXTEND) &&
23807                N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
23808       MaskOK = Mask.isIntN(N00.getOperand(0).getValueSizeInBits());
23809     }
23810     if (MaskOK && Mask != 0) {
23811       SDLoc DL(N);
23812       return DAG.getNode(ISD::AND, DL, VT, N00, DAG.getConstant(Mask, DL, VT));
23813     }
23814   }
23815
23816   // Hardware support for vector shifts is sparse which makes us scalarize the
23817   // vector operations in many cases. Also, on sandybridge ADD is faster than
23818   // shl.
23819   // (shl V, 1) -> add V,V
23820   if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
23821     if (auto *N1SplatC = N1BV->getConstantSplatNode()) {
23822       assert(N0.getValueType().isVector() && "Invalid vector shift type");
23823       // We shift all of the values by one. In many cases we do not have
23824       // hardware support for this operation. This is better expressed as an ADD
23825       // of two values.
23826       if (N1SplatC->getAPIntValue() == 1)
23827         return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
23828     }
23829
23830   return SDValue();
23831 }
23832
23833 /// \brief Returns a vector of 0s if the node in input is a vector logical
23834 /// shift by a constant amount which is known to be bigger than or equal
23835 /// to the vector element size in bits.
23836 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
23837                                       const X86Subtarget *Subtarget) {
23838   EVT VT = N->getValueType(0);
23839
23840   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
23841       (!Subtarget->hasInt256() ||
23842        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
23843     return SDValue();
23844
23845   SDValue Amt = N->getOperand(1);
23846   SDLoc DL(N);
23847   if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Amt))
23848     if (auto *AmtSplat = AmtBV->getConstantSplatNode()) {
23849       APInt ShiftAmt = AmtSplat->getAPIntValue();
23850       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
23851
23852       // SSE2/AVX2 logical shifts always return a vector of 0s
23853       // if the shift amount is bigger than or equal to
23854       // the element size. The constant shift amount will be
23855       // encoded as a 8-bit immediate.
23856       if (ShiftAmt.trunc(8).uge(MaxAmount))
23857         return getZeroVector(VT, Subtarget, DAG, DL);
23858     }
23859
23860   return SDValue();
23861 }
23862
23863 /// PerformShiftCombine - Combine shifts.
23864 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
23865                                    TargetLowering::DAGCombinerInfo &DCI,
23866                                    const X86Subtarget *Subtarget) {
23867   if (N->getOpcode() == ISD::SHL)
23868     if (SDValue V = PerformSHLCombine(N, DAG))
23869       return V;
23870
23871   // Try to fold this logical shift into a zero vector.
23872   if (N->getOpcode() != ISD::SRA)
23873     if (SDValue V = performShiftToAllZeros(N, DAG, Subtarget))
23874       return V;
23875
23876   return SDValue();
23877 }
23878
23879 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
23880 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
23881 // and friends.  Likewise for OR -> CMPNEQSS.
23882 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
23883                             TargetLowering::DAGCombinerInfo &DCI,
23884                             const X86Subtarget *Subtarget) {
23885   unsigned opcode;
23886
23887   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
23888   // we're requiring SSE2 for both.
23889   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
23890     SDValue N0 = N->getOperand(0);
23891     SDValue N1 = N->getOperand(1);
23892     SDValue CMP0 = N0->getOperand(1);
23893     SDValue CMP1 = N1->getOperand(1);
23894     SDLoc DL(N);
23895
23896     // The SETCCs should both refer to the same CMP.
23897     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
23898       return SDValue();
23899
23900     SDValue CMP00 = CMP0->getOperand(0);
23901     SDValue CMP01 = CMP0->getOperand(1);
23902     EVT     VT    = CMP00.getValueType();
23903
23904     if (VT == MVT::f32 || VT == MVT::f64) {
23905       bool ExpectingFlags = false;
23906       // Check for any users that want flags:
23907       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
23908            !ExpectingFlags && UI != UE; ++UI)
23909         switch (UI->getOpcode()) {
23910         default:
23911         case ISD::BR_CC:
23912         case ISD::BRCOND:
23913         case ISD::SELECT:
23914           ExpectingFlags = true;
23915           break;
23916         case ISD::CopyToReg:
23917         case ISD::SIGN_EXTEND:
23918         case ISD::ZERO_EXTEND:
23919         case ISD::ANY_EXTEND:
23920           break;
23921         }
23922
23923       if (!ExpectingFlags) {
23924         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
23925         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
23926
23927         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
23928           X86::CondCode tmp = cc0;
23929           cc0 = cc1;
23930           cc1 = tmp;
23931         }
23932
23933         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
23934             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
23935           // FIXME: need symbolic constants for these magic numbers.
23936           // See X86ATTInstPrinter.cpp:printSSECC().
23937           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
23938           if (Subtarget->hasAVX512()) {
23939             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
23940                                          CMP01,
23941                                          DAG.getConstant(x86cc, DL, MVT::i8));
23942             if (N->getValueType(0) != MVT::i1)
23943               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
23944                                  FSetCC);
23945             return FSetCC;
23946           }
23947           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
23948                                               CMP00.getValueType(), CMP00, CMP01,
23949                                               DAG.getConstant(x86cc, DL,
23950                                                               MVT::i8));
23951
23952           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
23953           MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
23954
23955           if (is64BitFP && !Subtarget->is64Bit()) {
23956             // On a 32-bit target, we cannot bitcast the 64-bit float to a
23957             // 64-bit integer, since that's not a legal type. Since
23958             // OnesOrZeroesF is all ones of all zeroes, we don't need all the
23959             // bits, but can do this little dance to extract the lowest 32 bits
23960             // and work with those going forward.
23961             SDValue Vector64 = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, MVT::v2f64,
23962                                            OnesOrZeroesF);
23963             SDValue Vector32 = DAG.getBitcast(MVT::v4f32, Vector64);
23964             OnesOrZeroesF = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32,
23965                                         Vector32, DAG.getIntPtrConstant(0, DL));
23966             IntVT = MVT::i32;
23967           }
23968
23969           SDValue OnesOrZeroesI = DAG.getBitcast(IntVT, OnesOrZeroesF);
23970           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
23971                                       DAG.getConstant(1, DL, IntVT));
23972           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8,
23973                                               ANDed);
23974           return OneBitOfTruth;
23975         }
23976       }
23977     }
23978   }
23979   return SDValue();
23980 }
23981
23982 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
23983 /// so it can be folded inside ANDNP.
23984 static bool CanFoldXORWithAllOnes(const SDNode *N) {
23985   EVT VT = N->getValueType(0);
23986
23987   // Match direct AllOnes for 128 and 256-bit vectors
23988   if (ISD::isBuildVectorAllOnes(N))
23989     return true;
23990
23991   // Look through a bit convert.
23992   if (N->getOpcode() == ISD::BITCAST)
23993     N = N->getOperand(0).getNode();
23994
23995   // Sometimes the operand may come from a insert_subvector building a 256-bit
23996   // allones vector
23997   if (VT.is256BitVector() &&
23998       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
23999     SDValue V1 = N->getOperand(0);
24000     SDValue V2 = N->getOperand(1);
24001
24002     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
24003         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
24004         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
24005         ISD::isBuildVectorAllOnes(V2.getNode()))
24006       return true;
24007   }
24008
24009   return false;
24010 }
24011
24012 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
24013 // register. In most cases we actually compare or select YMM-sized registers
24014 // and mixing the two types creates horrible code. This method optimizes
24015 // some of the transition sequences.
24016 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
24017                                  TargetLowering::DAGCombinerInfo &DCI,
24018                                  const X86Subtarget *Subtarget) {
24019   EVT VT = N->getValueType(0);
24020   if (!VT.is256BitVector())
24021     return SDValue();
24022
24023   assert((N->getOpcode() == ISD::ANY_EXTEND ||
24024           N->getOpcode() == ISD::ZERO_EXTEND ||
24025           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
24026
24027   SDValue Narrow = N->getOperand(0);
24028   EVT NarrowVT = Narrow->getValueType(0);
24029   if (!NarrowVT.is128BitVector())
24030     return SDValue();
24031
24032   if (Narrow->getOpcode() != ISD::XOR &&
24033       Narrow->getOpcode() != ISD::AND &&
24034       Narrow->getOpcode() != ISD::OR)
24035     return SDValue();
24036
24037   SDValue N0  = Narrow->getOperand(0);
24038   SDValue N1  = Narrow->getOperand(1);
24039   SDLoc DL(Narrow);
24040
24041   // The Left side has to be a trunc.
24042   if (N0.getOpcode() != ISD::TRUNCATE)
24043     return SDValue();
24044
24045   // The type of the truncated inputs.
24046   EVT WideVT = N0->getOperand(0)->getValueType(0);
24047   if (WideVT != VT)
24048     return SDValue();
24049
24050   // The right side has to be a 'trunc' or a constant vector.
24051   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
24052   ConstantSDNode *RHSConstSplat = nullptr;
24053   if (auto *RHSBV = dyn_cast<BuildVectorSDNode>(N1))
24054     RHSConstSplat = RHSBV->getConstantSplatNode();
24055   if (!RHSTrunc && !RHSConstSplat)
24056     return SDValue();
24057
24058   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24059
24060   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
24061     return SDValue();
24062
24063   // Set N0 and N1 to hold the inputs to the new wide operation.
24064   N0 = N0->getOperand(0);
24065   if (RHSConstSplat) {
24066     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
24067                      SDValue(RHSConstSplat, 0));
24068     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
24069     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, C);
24070   } else if (RHSTrunc) {
24071     N1 = N1->getOperand(0);
24072   }
24073
24074   // Generate the wide operation.
24075   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
24076   unsigned Opcode = N->getOpcode();
24077   switch (Opcode) {
24078   case ISD::ANY_EXTEND:
24079     return Op;
24080   case ISD::ZERO_EXTEND: {
24081     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
24082     APInt Mask = APInt::getAllOnesValue(InBits);
24083     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
24084     return DAG.getNode(ISD::AND, DL, VT,
24085                        Op, DAG.getConstant(Mask, DL, VT));
24086   }
24087   case ISD::SIGN_EXTEND:
24088     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
24089                        Op, DAG.getValueType(NarrowVT));
24090   default:
24091     llvm_unreachable("Unexpected opcode");
24092   }
24093 }
24094
24095 static SDValue VectorZextCombine(SDNode *N, SelectionDAG &DAG,
24096                                  TargetLowering::DAGCombinerInfo &DCI,
24097                                  const X86Subtarget *Subtarget) {
24098   SDValue N0 = N->getOperand(0);
24099   SDValue N1 = N->getOperand(1);
24100   SDLoc DL(N);
24101
24102   // A vector zext_in_reg may be represented as a shuffle,
24103   // feeding into a bitcast (this represents anyext) feeding into
24104   // an and with a mask.
24105   // We'd like to try to combine that into a shuffle with zero
24106   // plus a bitcast, removing the and.
24107   if (N0.getOpcode() != ISD::BITCAST ||
24108       N0.getOperand(0).getOpcode() != ISD::VECTOR_SHUFFLE)
24109     return SDValue();
24110
24111   // The other side of the AND should be a splat of 2^C, where C
24112   // is the number of bits in the source type.
24113   if (N1.getOpcode() == ISD::BITCAST)
24114     N1 = N1.getOperand(0);
24115   if (N1.getOpcode() != ISD::BUILD_VECTOR)
24116     return SDValue();
24117   BuildVectorSDNode *Vector = cast<BuildVectorSDNode>(N1);
24118
24119   ShuffleVectorSDNode *Shuffle = cast<ShuffleVectorSDNode>(N0.getOperand(0));
24120   EVT SrcType = Shuffle->getValueType(0);
24121
24122   // We expect a single-source shuffle
24123   if (Shuffle->getOperand(1)->getOpcode() != ISD::UNDEF)
24124     return SDValue();
24125
24126   unsigned SrcSize = SrcType.getScalarSizeInBits();
24127
24128   APInt SplatValue, SplatUndef;
24129   unsigned SplatBitSize;
24130   bool HasAnyUndefs;
24131   if (!Vector->isConstantSplat(SplatValue, SplatUndef,
24132                                 SplatBitSize, HasAnyUndefs))
24133     return SDValue();
24134
24135   unsigned ResSize = N1.getValueType().getScalarSizeInBits();
24136   // Make sure the splat matches the mask we expect
24137   if (SplatBitSize > ResSize ||
24138       (SplatValue + 1).exactLogBase2() != (int)SrcSize)
24139     return SDValue();
24140
24141   // Make sure the input and output size make sense
24142   if (SrcSize >= ResSize || ResSize % SrcSize)
24143     return SDValue();
24144
24145   // We expect a shuffle of the form <0, u, u, u, 1, u, u, u...>
24146   // The number of u's between each two values depends on the ratio between
24147   // the source and dest type.
24148   unsigned ZextRatio = ResSize / SrcSize;
24149   bool IsZext = true;
24150   for (unsigned i = 0; i < SrcType.getVectorNumElements(); ++i) {
24151     if (i % ZextRatio) {
24152       if (Shuffle->getMaskElt(i) > 0) {
24153         // Expected undef
24154         IsZext = false;
24155         break;
24156       }
24157     } else {
24158       if (Shuffle->getMaskElt(i) != (int)(i / ZextRatio)) {
24159         // Expected element number
24160         IsZext = false;
24161         break;
24162       }
24163     }
24164   }
24165
24166   if (!IsZext)
24167     return SDValue();
24168
24169   // Ok, perform the transformation - replace the shuffle with
24170   // a shuffle of the form <0, k, k, k, 1, k, k, k> with zero
24171   // (instead of undef) where the k elements come from the zero vector.
24172   SmallVector<int, 8> Mask;
24173   unsigned NumElems = SrcType.getVectorNumElements();
24174   for (unsigned i = 0; i < NumElems; ++i)
24175     if (i % ZextRatio)
24176       Mask.push_back(NumElems);
24177     else
24178       Mask.push_back(i / ZextRatio);
24179
24180   SDValue NewShuffle = DAG.getVectorShuffle(Shuffle->getValueType(0), DL,
24181     Shuffle->getOperand(0), DAG.getConstant(0, DL, SrcType), Mask);
24182   return DAG.getBitcast(N0.getValueType(), NewShuffle);
24183 }
24184
24185 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
24186                                  TargetLowering::DAGCombinerInfo &DCI,
24187                                  const X86Subtarget *Subtarget) {
24188   if (DCI.isBeforeLegalizeOps())
24189     return SDValue();
24190
24191   if (SDValue Zext = VectorZextCombine(N, DAG, DCI, Subtarget))
24192     return Zext;
24193
24194   if (SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget))
24195     return R;
24196
24197   EVT VT = N->getValueType(0);
24198   SDValue N0 = N->getOperand(0);
24199   SDValue N1 = N->getOperand(1);
24200   SDLoc DL(N);
24201
24202   // Create BEXTR instructions
24203   // BEXTR is ((X >> imm) & (2**size-1))
24204   if (VT == MVT::i32 || VT == MVT::i64) {
24205     // Check for BEXTR.
24206     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
24207         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
24208       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
24209       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
24210       if (MaskNode && ShiftNode) {
24211         uint64_t Mask = MaskNode->getZExtValue();
24212         uint64_t Shift = ShiftNode->getZExtValue();
24213         if (isMask_64(Mask)) {
24214           uint64_t MaskSize = countPopulation(Mask);
24215           if (Shift + MaskSize <= VT.getSizeInBits())
24216             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
24217                                DAG.getConstant(Shift | (MaskSize << 8), DL,
24218                                                VT));
24219         }
24220       }
24221     } // BEXTR
24222
24223     return SDValue();
24224   }
24225
24226   // Want to form ANDNP nodes:
24227   // 1) In the hopes of then easily combining them with OR and AND nodes
24228   //    to form PBLEND/PSIGN.
24229   // 2) To match ANDN packed intrinsics
24230   if (VT != MVT::v2i64 && VT != MVT::v4i64)
24231     return SDValue();
24232
24233   // Check LHS for vnot
24234   if (N0.getOpcode() == ISD::XOR &&
24235       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
24236       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
24237     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
24238
24239   // Check RHS for vnot
24240   if (N1.getOpcode() == ISD::XOR &&
24241       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
24242       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
24243     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
24244
24245   return SDValue();
24246 }
24247
24248 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
24249                                 TargetLowering::DAGCombinerInfo &DCI,
24250                                 const X86Subtarget *Subtarget) {
24251   if (DCI.isBeforeLegalizeOps())
24252     return SDValue();
24253
24254   if (SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget))
24255     return R;
24256
24257   SDValue N0 = N->getOperand(0);
24258   SDValue N1 = N->getOperand(1);
24259   EVT VT = N->getValueType(0);
24260
24261   // look for psign/blend
24262   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
24263     if (!Subtarget->hasSSSE3() ||
24264         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
24265       return SDValue();
24266
24267     // Canonicalize pandn to RHS
24268     if (N0.getOpcode() == X86ISD::ANDNP)
24269       std::swap(N0, N1);
24270     // or (and (m, y), (pandn m, x))
24271     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
24272       SDValue Mask = N1.getOperand(0);
24273       SDValue X    = N1.getOperand(1);
24274       SDValue Y;
24275       if (N0.getOperand(0) == Mask)
24276         Y = N0.getOperand(1);
24277       if (N0.getOperand(1) == Mask)
24278         Y = N0.getOperand(0);
24279
24280       // Check to see if the mask appeared in both the AND and ANDNP and
24281       if (!Y.getNode())
24282         return SDValue();
24283
24284       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
24285       // Look through mask bitcast.
24286       if (Mask.getOpcode() == ISD::BITCAST)
24287         Mask = Mask.getOperand(0);
24288       if (X.getOpcode() == ISD::BITCAST)
24289         X = X.getOperand(0);
24290       if (Y.getOpcode() == ISD::BITCAST)
24291         Y = Y.getOperand(0);
24292
24293       EVT MaskVT = Mask.getValueType();
24294
24295       // Validate that the Mask operand is a vector sra node.
24296       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
24297       // there is no psrai.b
24298       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
24299       unsigned SraAmt = ~0;
24300       if (Mask.getOpcode() == ISD::SRA) {
24301         if (auto *AmtBV = dyn_cast<BuildVectorSDNode>(Mask.getOperand(1)))
24302           if (auto *AmtConst = AmtBV->getConstantSplatNode())
24303             SraAmt = AmtConst->getZExtValue();
24304       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
24305         SDValue SraC = Mask.getOperand(1);
24306         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
24307       }
24308       if ((SraAmt + 1) != EltBits)
24309         return SDValue();
24310
24311       SDLoc DL(N);
24312
24313       // Now we know we at least have a plendvb with the mask val.  See if
24314       // we can form a psignb/w/d.
24315       // psign = x.type == y.type == mask.type && y = sub(0, x);
24316       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
24317           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
24318           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
24319         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
24320                "Unsupported VT for PSIGN");
24321         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
24322         return DAG.getBitcast(VT, Mask);
24323       }
24324       // PBLENDVB only available on SSE 4.1
24325       if (!Subtarget->hasSSE41())
24326         return SDValue();
24327
24328       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
24329
24330       X = DAG.getBitcast(BlendVT, X);
24331       Y = DAG.getBitcast(BlendVT, Y);
24332       Mask = DAG.getBitcast(BlendVT, Mask);
24333       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
24334       return DAG.getBitcast(VT, Mask);
24335     }
24336   }
24337
24338   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
24339     return SDValue();
24340
24341   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
24342   bool OptForSize = DAG.getMachineFunction().getFunction()->optForSize();
24343
24344   // SHLD/SHRD instructions have lower register pressure, but on some
24345   // platforms they have higher latency than the equivalent
24346   // series of shifts/or that would otherwise be generated.
24347   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
24348   // have higher latencies and we are not optimizing for size.
24349   if (!OptForSize && Subtarget->isSHLDSlow())
24350     return SDValue();
24351
24352   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
24353     std::swap(N0, N1);
24354   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
24355     return SDValue();
24356   if (!N0.hasOneUse() || !N1.hasOneUse())
24357     return SDValue();
24358
24359   SDValue ShAmt0 = N0.getOperand(1);
24360   if (ShAmt0.getValueType() != MVT::i8)
24361     return SDValue();
24362   SDValue ShAmt1 = N1.getOperand(1);
24363   if (ShAmt1.getValueType() != MVT::i8)
24364     return SDValue();
24365   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
24366     ShAmt0 = ShAmt0.getOperand(0);
24367   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
24368     ShAmt1 = ShAmt1.getOperand(0);
24369
24370   SDLoc DL(N);
24371   unsigned Opc = X86ISD::SHLD;
24372   SDValue Op0 = N0.getOperand(0);
24373   SDValue Op1 = N1.getOperand(0);
24374   if (ShAmt0.getOpcode() == ISD::SUB) {
24375     Opc = X86ISD::SHRD;
24376     std::swap(Op0, Op1);
24377     std::swap(ShAmt0, ShAmt1);
24378   }
24379
24380   unsigned Bits = VT.getSizeInBits();
24381   if (ShAmt1.getOpcode() == ISD::SUB) {
24382     SDValue Sum = ShAmt1.getOperand(0);
24383     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
24384       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
24385       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
24386         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
24387       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
24388         return DAG.getNode(Opc, DL, VT,
24389                            Op0, Op1,
24390                            DAG.getNode(ISD::TRUNCATE, DL,
24391                                        MVT::i8, ShAmt0));
24392     }
24393   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
24394     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
24395     if (ShAmt0C &&
24396         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
24397       return DAG.getNode(Opc, DL, VT,
24398                          N0.getOperand(0), N1.getOperand(0),
24399                          DAG.getNode(ISD::TRUNCATE, DL,
24400                                        MVT::i8, ShAmt0));
24401   }
24402
24403   return SDValue();
24404 }
24405
24406 // Generate NEG and CMOV for integer abs.
24407 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
24408   EVT VT = N->getValueType(0);
24409
24410   // Since X86 does not have CMOV for 8-bit integer, we don't convert
24411   // 8-bit integer abs to NEG and CMOV.
24412   if (VT.isInteger() && VT.getSizeInBits() == 8)
24413     return SDValue();
24414
24415   SDValue N0 = N->getOperand(0);
24416   SDValue N1 = N->getOperand(1);
24417   SDLoc DL(N);
24418
24419   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
24420   // and change it to SUB and CMOV.
24421   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
24422       N0.getOpcode() == ISD::ADD &&
24423       N0.getOperand(1) == N1 &&
24424       N1.getOpcode() == ISD::SRA &&
24425       N1.getOperand(0) == N0.getOperand(0))
24426     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
24427       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
24428         // Generate SUB & CMOV.
24429         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
24430                                   DAG.getConstant(0, DL, VT), N0.getOperand(0));
24431
24432         SDValue Ops[] = { N0.getOperand(0), Neg,
24433                           DAG.getConstant(X86::COND_GE, DL, MVT::i8),
24434                           SDValue(Neg.getNode(), 1) };
24435         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue), Ops);
24436       }
24437   return SDValue();
24438 }
24439
24440 // Try to turn tests against the signbit in the form of:
24441 //   XOR(TRUNCATE(SRL(X, size(X)-1)), 1)
24442 // into:
24443 //   SETGT(X, -1)
24444 static SDValue foldXorTruncShiftIntoCmp(SDNode *N, SelectionDAG &DAG) {
24445   // This is only worth doing if the output type is i8.
24446   if (N->getValueType(0) != MVT::i8)
24447     return SDValue();
24448
24449   SDValue N0 = N->getOperand(0);
24450   SDValue N1 = N->getOperand(1);
24451
24452   // We should be performing an xor against a truncated shift.
24453   if (N0.getOpcode() != ISD::TRUNCATE || !N0.hasOneUse())
24454     return SDValue();
24455
24456   // Make sure we are performing an xor against one.
24457   if (!isa<ConstantSDNode>(N1) || !cast<ConstantSDNode>(N1)->isOne())
24458     return SDValue();
24459
24460   // SetCC on x86 zero extends so only act on this if it's a logical shift.
24461   SDValue Shift = N0.getOperand(0);
24462   if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse())
24463     return SDValue();
24464
24465   // Make sure we are truncating from one of i16, i32 or i64.
24466   EVT ShiftTy = Shift.getValueType();
24467   if (ShiftTy != MVT::i16 && ShiftTy != MVT::i32 && ShiftTy != MVT::i64)
24468     return SDValue();
24469
24470   // Make sure the shift amount extracts the sign bit.
24471   if (!isa<ConstantSDNode>(Shift.getOperand(1)) ||
24472       Shift.getConstantOperandVal(1) != ShiftTy.getSizeInBits() - 1)
24473     return SDValue();
24474
24475   // Create a greater-than comparison against -1.
24476   // N.B. Using SETGE against 0 works but we want a canonical looking
24477   // comparison, using SETGT matches up with what TranslateX86CC.
24478   SDLoc DL(N);
24479   SDValue ShiftOp = Shift.getOperand(0);
24480   EVT ShiftOpTy = ShiftOp.getValueType();
24481   SDValue Cond = DAG.getSetCC(DL, MVT::i8, ShiftOp,
24482                               DAG.getConstant(-1, DL, ShiftOpTy), ISD::SETGT);
24483   return Cond;
24484 }
24485
24486 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
24487                                  TargetLowering::DAGCombinerInfo &DCI,
24488                                  const X86Subtarget *Subtarget) {
24489   if (DCI.isBeforeLegalizeOps())
24490     return SDValue();
24491
24492   if (SDValue RV = foldXorTruncShiftIntoCmp(N, DAG))
24493     return RV;
24494
24495   if (Subtarget->hasCMov())
24496     if (SDValue RV = performIntegerAbsCombine(N, DAG))
24497       return RV;
24498
24499   return SDValue();
24500 }
24501
24502 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
24503 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
24504                                   TargetLowering::DAGCombinerInfo &DCI,
24505                                   const X86Subtarget *Subtarget) {
24506   LoadSDNode *Ld = cast<LoadSDNode>(N);
24507   EVT RegVT = Ld->getValueType(0);
24508   EVT MemVT = Ld->getMemoryVT();
24509   SDLoc dl(Ld);
24510   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24511
24512   // For chips with slow 32-byte unaligned loads, break the 32-byte operation
24513   // into two 16-byte operations.
24514   ISD::LoadExtType Ext = Ld->getExtensionType();
24515   bool Fast;
24516   unsigned AddressSpace = Ld->getAddressSpace();
24517   unsigned Alignment = Ld->getAlignment();
24518   if (RegVT.is256BitVector() && !DCI.isBeforeLegalizeOps() &&
24519       Ext == ISD::NON_EXTLOAD &&
24520       TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), RegVT,
24521                              AddressSpace, Alignment, &Fast) && !Fast) {
24522     unsigned NumElems = RegVT.getVectorNumElements();
24523     if (NumElems < 2)
24524       return SDValue();
24525
24526     SDValue Ptr = Ld->getBasePtr();
24527     SDValue Increment =
24528         DAG.getConstant(16, dl, TLI.getPointerTy(DAG.getDataLayout()));
24529
24530     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
24531                                   NumElems/2);
24532     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
24533                                 Ld->getPointerInfo(), Ld->isVolatile(),
24534                                 Ld->isNonTemporal(), Ld->isInvariant(),
24535                                 Alignment);
24536     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
24537     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
24538                                 Ld->getPointerInfo(), Ld->isVolatile(),
24539                                 Ld->isNonTemporal(), Ld->isInvariant(),
24540                                 std::min(16U, Alignment));
24541     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
24542                              Load1.getValue(1),
24543                              Load2.getValue(1));
24544
24545     SDValue NewVec = DAG.getUNDEF(RegVT);
24546     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
24547     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
24548     return DCI.CombineTo(N, NewVec, TF, true);
24549   }
24550
24551   return SDValue();
24552 }
24553
24554 /// PerformMLOADCombine - Resolve extending loads
24555 static SDValue PerformMLOADCombine(SDNode *N, SelectionDAG &DAG,
24556                                    TargetLowering::DAGCombinerInfo &DCI,
24557                                    const X86Subtarget *Subtarget) {
24558   MaskedLoadSDNode *Mld = cast<MaskedLoadSDNode>(N);
24559   if (Mld->getExtensionType() != ISD::SEXTLOAD)
24560     return SDValue();
24561
24562   EVT VT = Mld->getValueType(0);
24563   unsigned NumElems = VT.getVectorNumElements();
24564   EVT LdVT = Mld->getMemoryVT();
24565   SDLoc dl(Mld);
24566
24567   assert(LdVT != VT && "Cannot extend to the same type");
24568   unsigned ToSz = VT.getVectorElementType().getSizeInBits();
24569   unsigned FromSz = LdVT.getVectorElementType().getSizeInBits();
24570   // From, To sizes and ElemCount must be pow of two
24571   assert (isPowerOf2_32(NumElems * FromSz * ToSz) &&
24572     "Unexpected size for extending masked load");
24573
24574   unsigned SizeRatio  = ToSz / FromSz;
24575   assert(SizeRatio * NumElems * FromSz == VT.getSizeInBits());
24576
24577   // Create a type on which we perform the shuffle
24578   EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
24579           LdVT.getScalarType(), NumElems*SizeRatio);
24580   assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
24581
24582   // Convert Src0 value
24583   SDValue WideSrc0 = DAG.getBitcast(WideVecVT, Mld->getSrc0());
24584   if (Mld->getSrc0().getOpcode() != ISD::UNDEF) {
24585     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
24586     for (unsigned i = 0; i != NumElems; ++i)
24587       ShuffleVec[i] = i * SizeRatio;
24588
24589     // Can't shuffle using an illegal type.
24590     assert (DAG.getTargetLoweringInfo().isTypeLegal(WideVecVT)
24591             && "WideVecVT should be legal");
24592     WideSrc0 = DAG.getVectorShuffle(WideVecVT, dl, WideSrc0,
24593                                     DAG.getUNDEF(WideVecVT), &ShuffleVec[0]);
24594   }
24595   // Prepare the new mask
24596   SDValue NewMask;
24597   SDValue Mask = Mld->getMask();
24598   if (Mask.getValueType() == VT) {
24599     // Mask and original value have the same type
24600     NewMask = DAG.getBitcast(WideVecVT, Mask);
24601     SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
24602     for (unsigned i = 0; i != NumElems; ++i)
24603       ShuffleVec[i] = i * SizeRatio;
24604     for (unsigned i = NumElems; i != NumElems*SizeRatio; ++i)
24605       ShuffleVec[i] = NumElems*SizeRatio;
24606     NewMask = DAG.getVectorShuffle(WideVecVT, dl, NewMask,
24607                                    DAG.getConstant(0, dl, WideVecVT),
24608                                    &ShuffleVec[0]);
24609   }
24610   else {
24611     assert(Mask.getValueType().getVectorElementType() == MVT::i1);
24612     unsigned WidenNumElts = NumElems*SizeRatio;
24613     unsigned MaskNumElts = VT.getVectorNumElements();
24614     EVT NewMaskVT = EVT::getVectorVT(*DAG.getContext(),  MVT::i1,
24615                                      WidenNumElts);
24616
24617     unsigned NumConcat = WidenNumElts / MaskNumElts;
24618     SmallVector<SDValue, 16> Ops(NumConcat);
24619     SDValue ZeroVal = DAG.getConstant(0, dl, Mask.getValueType());
24620     Ops[0] = Mask;
24621     for (unsigned i = 1; i != NumConcat; ++i)
24622       Ops[i] = ZeroVal;
24623
24624     NewMask = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewMaskVT, Ops);
24625   }
24626
24627   SDValue WideLd = DAG.getMaskedLoad(WideVecVT, dl, Mld->getChain(),
24628                                      Mld->getBasePtr(), NewMask, WideSrc0,
24629                                      Mld->getMemoryVT(), Mld->getMemOperand(),
24630                                      ISD::NON_EXTLOAD);
24631   SDValue NewVec = DAG.getNode(X86ISD::VSEXT, dl, VT, WideLd);
24632   return DCI.CombineTo(N, NewVec, WideLd.getValue(1), true);
24633
24634 }
24635 /// PerformMSTORECombine - Resolve truncating stores
24636 static SDValue PerformMSTORECombine(SDNode *N, SelectionDAG &DAG,
24637                                     const X86Subtarget *Subtarget) {
24638   MaskedStoreSDNode *Mst = cast<MaskedStoreSDNode>(N);
24639   if (!Mst->isTruncatingStore())
24640     return SDValue();
24641
24642   EVT VT = Mst->getValue().getValueType();
24643   unsigned NumElems = VT.getVectorNumElements();
24644   EVT StVT = Mst->getMemoryVT();
24645   SDLoc dl(Mst);
24646
24647   assert(StVT != VT && "Cannot truncate to the same type");
24648   unsigned FromSz = VT.getVectorElementType().getSizeInBits();
24649   unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
24650
24651   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24652
24653   // The truncating store is legal in some cases. For example
24654   // vpmovqb, vpmovqw, vpmovqd, vpmovdb, vpmovdw
24655   // are designated for truncate store.
24656   // In this case we don't need any further transformations.
24657   if (TLI.isTruncStoreLegal(VT, StVT))
24658     return SDValue();
24659
24660   // From, To sizes and ElemCount must be pow of two
24661   assert (isPowerOf2_32(NumElems * FromSz * ToSz) &&
24662     "Unexpected size for truncating masked store");
24663   // We are going to use the original vector elt for storing.
24664   // Accumulated smaller vector elements must be a multiple of the store size.
24665   assert (((NumElems * FromSz) % ToSz) == 0 &&
24666           "Unexpected ratio for truncating masked store");
24667
24668   unsigned SizeRatio  = FromSz / ToSz;
24669   assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
24670
24671   // Create a type on which we perform the shuffle
24672   EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
24673           StVT.getScalarType(), NumElems*SizeRatio);
24674
24675   assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
24676
24677   SDValue WideVec = DAG.getBitcast(WideVecVT, Mst->getValue());
24678   SmallVector<int, 16> ShuffleVec(NumElems * SizeRatio, -1);
24679   for (unsigned i = 0; i != NumElems; ++i)
24680     ShuffleVec[i] = i * SizeRatio;
24681
24682   // Can't shuffle using an illegal type.
24683   assert (DAG.getTargetLoweringInfo().isTypeLegal(WideVecVT)
24684           && "WideVecVT should be legal");
24685
24686   SDValue TruncatedVal = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
24687                                         DAG.getUNDEF(WideVecVT),
24688                                         &ShuffleVec[0]);
24689
24690   SDValue NewMask;
24691   SDValue Mask = Mst->getMask();
24692   if (Mask.getValueType() == VT) {
24693     // Mask and original value have the same type
24694     NewMask = DAG.getBitcast(WideVecVT, Mask);
24695     for (unsigned i = 0; i != NumElems; ++i)
24696       ShuffleVec[i] = i * SizeRatio;
24697     for (unsigned i = NumElems; i != NumElems*SizeRatio; ++i)
24698       ShuffleVec[i] = NumElems*SizeRatio;
24699     NewMask = DAG.getVectorShuffle(WideVecVT, dl, NewMask,
24700                                    DAG.getConstant(0, dl, WideVecVT),
24701                                    &ShuffleVec[0]);
24702   }
24703   else {
24704     assert(Mask.getValueType().getVectorElementType() == MVT::i1);
24705     unsigned WidenNumElts = NumElems*SizeRatio;
24706     unsigned MaskNumElts = VT.getVectorNumElements();
24707     EVT NewMaskVT = EVT::getVectorVT(*DAG.getContext(),  MVT::i1,
24708                                      WidenNumElts);
24709
24710     unsigned NumConcat = WidenNumElts / MaskNumElts;
24711     SmallVector<SDValue, 16> Ops(NumConcat);
24712     SDValue ZeroVal = DAG.getConstant(0, dl, Mask.getValueType());
24713     Ops[0] = Mask;
24714     for (unsigned i = 1; i != NumConcat; ++i)
24715       Ops[i] = ZeroVal;
24716
24717     NewMask = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewMaskVT, Ops);
24718   }
24719
24720   return DAG.getMaskedStore(Mst->getChain(), dl, TruncatedVal, Mst->getBasePtr(),
24721                             NewMask, StVT, Mst->getMemOperand(), false);
24722 }
24723 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
24724 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
24725                                    const X86Subtarget *Subtarget) {
24726   StoreSDNode *St = cast<StoreSDNode>(N);
24727   EVT VT = St->getValue().getValueType();
24728   EVT StVT = St->getMemoryVT();
24729   SDLoc dl(St);
24730   SDValue StoredVal = St->getOperand(1);
24731   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24732
24733   // If we are saving a concatenation of two XMM registers and 32-byte stores
24734   // are slow, such as on Sandy Bridge, perform two 16-byte stores.
24735   bool Fast;
24736   unsigned AddressSpace = St->getAddressSpace();
24737   unsigned Alignment = St->getAlignment();
24738   if (VT.is256BitVector() && StVT == VT &&
24739       TLI.allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), VT,
24740                              AddressSpace, Alignment, &Fast) && !Fast) {
24741     unsigned NumElems = VT.getVectorNumElements();
24742     if (NumElems < 2)
24743       return SDValue();
24744
24745     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
24746     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
24747
24748     SDValue Stride =
24749         DAG.getConstant(16, dl, TLI.getPointerTy(DAG.getDataLayout()));
24750     SDValue Ptr0 = St->getBasePtr();
24751     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
24752
24753     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
24754                                 St->getPointerInfo(), St->isVolatile(),
24755                                 St->isNonTemporal(), Alignment);
24756     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
24757                                 St->getPointerInfo(), St->isVolatile(),
24758                                 St->isNonTemporal(),
24759                                 std::min(16U, Alignment));
24760     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
24761   }
24762
24763   // Optimize trunc store (of multiple scalars) to shuffle and store.
24764   // First, pack all of the elements in one place. Next, store to memory
24765   // in fewer chunks.
24766   if (St->isTruncatingStore() && VT.isVector()) {
24767     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
24768     unsigned NumElems = VT.getVectorNumElements();
24769     assert(StVT != VT && "Cannot truncate to the same type");
24770     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
24771     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
24772
24773     // The truncating store is legal in some cases. For example
24774     // vpmovqb, vpmovqw, vpmovqd, vpmovdb, vpmovdw
24775     // are designated for truncate store.
24776     // In this case we don't need any further transformations.
24777     if (TLI.isTruncStoreLegal(VT, StVT))
24778       return SDValue();
24779
24780     // From, To sizes and ElemCount must be pow of two
24781     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
24782     // We are going to use the original vector elt for storing.
24783     // Accumulated smaller vector elements must be a multiple of the store size.
24784     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
24785
24786     unsigned SizeRatio  = FromSz / ToSz;
24787
24788     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
24789
24790     // Create a type on which we perform the shuffle
24791     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
24792             StVT.getScalarType(), NumElems*SizeRatio);
24793
24794     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
24795
24796     SDValue WideVec = DAG.getBitcast(WideVecVT, St->getValue());
24797     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
24798     for (unsigned i = 0; i != NumElems; ++i)
24799       ShuffleVec[i] = i * SizeRatio;
24800
24801     // Can't shuffle using an illegal type.
24802     if (!TLI.isTypeLegal(WideVecVT))
24803       return SDValue();
24804
24805     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
24806                                          DAG.getUNDEF(WideVecVT),
24807                                          &ShuffleVec[0]);
24808     // At this point all of the data is stored at the bottom of the
24809     // register. We now need to save it to mem.
24810
24811     // Find the largest store unit
24812     MVT StoreType = MVT::i8;
24813     for (MVT Tp : MVT::integer_valuetypes()) {
24814       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
24815         StoreType = Tp;
24816     }
24817
24818     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
24819     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
24820         (64 <= NumElems * ToSz))
24821       StoreType = MVT::f64;
24822
24823     // Bitcast the original vector into a vector of store-size units
24824     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
24825             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
24826     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
24827     SDValue ShuffWide = DAG.getBitcast(StoreVecVT, Shuff);
24828     SmallVector<SDValue, 8> Chains;
24829     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits() / 8, dl,
24830                                         TLI.getPointerTy(DAG.getDataLayout()));
24831     SDValue Ptr = St->getBasePtr();
24832
24833     // Perform one or more big stores into memory.
24834     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
24835       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
24836                                    StoreType, ShuffWide,
24837                                    DAG.getIntPtrConstant(i, dl));
24838       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
24839                                 St->getPointerInfo(), St->isVolatile(),
24840                                 St->isNonTemporal(), St->getAlignment());
24841       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
24842       Chains.push_back(Ch);
24843     }
24844
24845     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains);
24846   }
24847
24848   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
24849   // the FP state in cases where an emms may be missing.
24850   // A preferable solution to the general problem is to figure out the right
24851   // places to insert EMMS.  This qualifies as a quick hack.
24852
24853   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
24854   if (VT.getSizeInBits() != 64)
24855     return SDValue();
24856
24857   const Function *F = DAG.getMachineFunction().getFunction();
24858   bool NoImplicitFloatOps = F->hasFnAttribute(Attribute::NoImplicitFloat);
24859   bool F64IsLegal =
24860       !Subtarget->useSoftFloat() && !NoImplicitFloatOps && Subtarget->hasSSE2();
24861   if ((VT.isVector() ||
24862        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
24863       isa<LoadSDNode>(St->getValue()) &&
24864       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
24865       St->getChain().hasOneUse() && !St->isVolatile()) {
24866     SDNode* LdVal = St->getValue().getNode();
24867     LoadSDNode *Ld = nullptr;
24868     int TokenFactorIndex = -1;
24869     SmallVector<SDValue, 8> Ops;
24870     SDNode* ChainVal = St->getChain().getNode();
24871     // Must be a store of a load.  We currently handle two cases:  the load
24872     // is a direct child, and it's under an intervening TokenFactor.  It is
24873     // possible to dig deeper under nested TokenFactors.
24874     if (ChainVal == LdVal)
24875       Ld = cast<LoadSDNode>(St->getChain());
24876     else if (St->getValue().hasOneUse() &&
24877              ChainVal->getOpcode() == ISD::TokenFactor) {
24878       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
24879         if (ChainVal->getOperand(i).getNode() == LdVal) {
24880           TokenFactorIndex = i;
24881           Ld = cast<LoadSDNode>(St->getValue());
24882         } else
24883           Ops.push_back(ChainVal->getOperand(i));
24884       }
24885     }
24886
24887     if (!Ld || !ISD::isNormalLoad(Ld))
24888       return SDValue();
24889
24890     // If this is not the MMX case, i.e. we are just turning i64 load/store
24891     // into f64 load/store, avoid the transformation if there are multiple
24892     // uses of the loaded value.
24893     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
24894       return SDValue();
24895
24896     SDLoc LdDL(Ld);
24897     SDLoc StDL(N);
24898     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
24899     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
24900     // pair instead.
24901     if (Subtarget->is64Bit() || F64IsLegal) {
24902       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
24903       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
24904                                   Ld->getPointerInfo(), Ld->isVolatile(),
24905                                   Ld->isNonTemporal(), Ld->isInvariant(),
24906                                   Ld->getAlignment());
24907       SDValue NewChain = NewLd.getValue(1);
24908       if (TokenFactorIndex != -1) {
24909         Ops.push_back(NewChain);
24910         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
24911       }
24912       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
24913                           St->getPointerInfo(),
24914                           St->isVolatile(), St->isNonTemporal(),
24915                           St->getAlignment());
24916     }
24917
24918     // Otherwise, lower to two pairs of 32-bit loads / stores.
24919     SDValue LoAddr = Ld->getBasePtr();
24920     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
24921                                  DAG.getConstant(4, LdDL, MVT::i32));
24922
24923     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
24924                                Ld->getPointerInfo(),
24925                                Ld->isVolatile(), Ld->isNonTemporal(),
24926                                Ld->isInvariant(), Ld->getAlignment());
24927     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
24928                                Ld->getPointerInfo().getWithOffset(4),
24929                                Ld->isVolatile(), Ld->isNonTemporal(),
24930                                Ld->isInvariant(),
24931                                MinAlign(Ld->getAlignment(), 4));
24932
24933     SDValue NewChain = LoLd.getValue(1);
24934     if (TokenFactorIndex != -1) {
24935       Ops.push_back(LoLd);
24936       Ops.push_back(HiLd);
24937       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, Ops);
24938     }
24939
24940     LoAddr = St->getBasePtr();
24941     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
24942                          DAG.getConstant(4, StDL, MVT::i32));
24943
24944     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
24945                                 St->getPointerInfo(),
24946                                 St->isVolatile(), St->isNonTemporal(),
24947                                 St->getAlignment());
24948     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
24949                                 St->getPointerInfo().getWithOffset(4),
24950                                 St->isVolatile(),
24951                                 St->isNonTemporal(),
24952                                 MinAlign(St->getAlignment(), 4));
24953     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
24954   }
24955
24956   // This is similar to the above case, but here we handle a scalar 64-bit
24957   // integer store that is extracted from a vector on a 32-bit target.
24958   // If we have SSE2, then we can treat it like a floating-point double
24959   // to get past legalization. The execution dependencies fixup pass will
24960   // choose the optimal machine instruction for the store if this really is
24961   // an integer or v2f32 rather than an f64.
24962   if (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit() &&
24963       St->getOperand(1).getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
24964     SDValue OldExtract = St->getOperand(1);
24965     SDValue ExtOp0 = OldExtract.getOperand(0);
24966     unsigned VecSize = ExtOp0.getValueSizeInBits();
24967     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, VecSize / 64);
24968     SDValue BitCast = DAG.getBitcast(VecVT, ExtOp0);
24969     SDValue NewExtract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
24970                                      BitCast, OldExtract.getOperand(1));
24971     return DAG.getStore(St->getChain(), dl, NewExtract, St->getBasePtr(),
24972                         St->getPointerInfo(), St->isVolatile(),
24973                         St->isNonTemporal(), St->getAlignment());
24974   }
24975
24976   return SDValue();
24977 }
24978
24979 /// Return 'true' if this vector operation is "horizontal"
24980 /// and return the operands for the horizontal operation in LHS and RHS.  A
24981 /// horizontal operation performs the binary operation on successive elements
24982 /// of its first operand, then on successive elements of its second operand,
24983 /// returning the resulting values in a vector.  For example, if
24984 ///   A = < float a0, float a1, float a2, float a3 >
24985 /// and
24986 ///   B = < float b0, float b1, float b2, float b3 >
24987 /// then the result of doing a horizontal operation on A and B is
24988 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
24989 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
24990 /// A horizontal-op B, for some already available A and B, and if so then LHS is
24991 /// set to A, RHS to B, and the routine returns 'true'.
24992 /// Note that the binary operation should have the property that if one of the
24993 /// operands is UNDEF then the result is UNDEF.
24994 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
24995   // Look for the following pattern: if
24996   //   A = < float a0, float a1, float a2, float a3 >
24997   //   B = < float b0, float b1, float b2, float b3 >
24998   // and
24999   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
25000   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
25001   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
25002   // which is A horizontal-op B.
25003
25004   // At least one of the operands should be a vector shuffle.
25005   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
25006       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
25007     return false;
25008
25009   MVT VT = LHS.getSimpleValueType();
25010
25011   assert((VT.is128BitVector() || VT.is256BitVector()) &&
25012          "Unsupported vector type for horizontal add/sub");
25013
25014   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
25015   // operate independently on 128-bit lanes.
25016   unsigned NumElts = VT.getVectorNumElements();
25017   unsigned NumLanes = VT.getSizeInBits()/128;
25018   unsigned NumLaneElts = NumElts / NumLanes;
25019   assert((NumLaneElts % 2 == 0) &&
25020          "Vector type should have an even number of elements in each lane");
25021   unsigned HalfLaneElts = NumLaneElts/2;
25022
25023   // View LHS in the form
25024   //   LHS = VECTOR_SHUFFLE A, B, LMask
25025   // If LHS is not a shuffle then pretend it is the shuffle
25026   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
25027   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
25028   // type VT.
25029   SDValue A, B;
25030   SmallVector<int, 16> LMask(NumElts);
25031   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
25032     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
25033       A = LHS.getOperand(0);
25034     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
25035       B = LHS.getOperand(1);
25036     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
25037     std::copy(Mask.begin(), Mask.end(), LMask.begin());
25038   } else {
25039     if (LHS.getOpcode() != ISD::UNDEF)
25040       A = LHS;
25041     for (unsigned i = 0; i != NumElts; ++i)
25042       LMask[i] = i;
25043   }
25044
25045   // Likewise, view RHS in the form
25046   //   RHS = VECTOR_SHUFFLE C, D, RMask
25047   SDValue C, D;
25048   SmallVector<int, 16> RMask(NumElts);
25049   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
25050     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
25051       C = RHS.getOperand(0);
25052     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
25053       D = RHS.getOperand(1);
25054     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
25055     std::copy(Mask.begin(), Mask.end(), RMask.begin());
25056   } else {
25057     if (RHS.getOpcode() != ISD::UNDEF)
25058       C = RHS;
25059     for (unsigned i = 0; i != NumElts; ++i)
25060       RMask[i] = i;
25061   }
25062
25063   // Check that the shuffles are both shuffling the same vectors.
25064   if (!(A == C && B == D) && !(A == D && B == C))
25065     return false;
25066
25067   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
25068   if (!A.getNode() && !B.getNode())
25069     return false;
25070
25071   // If A and B occur in reverse order in RHS, then "swap" them (which means
25072   // rewriting the mask).
25073   if (A != C)
25074     ShuffleVectorSDNode::commuteMask(RMask);
25075
25076   // At this point LHS and RHS are equivalent to
25077   //   LHS = VECTOR_SHUFFLE A, B, LMask
25078   //   RHS = VECTOR_SHUFFLE A, B, RMask
25079   // Check that the masks correspond to performing a horizontal operation.
25080   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
25081     for (unsigned i = 0; i != NumLaneElts; ++i) {
25082       int LIdx = LMask[i+l], RIdx = RMask[i+l];
25083
25084       // Ignore any UNDEF components.
25085       if (LIdx < 0 || RIdx < 0 ||
25086           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
25087           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
25088         continue;
25089
25090       // Check that successive elements are being operated on.  If not, this is
25091       // not a horizontal operation.
25092       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
25093       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
25094       if (!(LIdx == Index && RIdx == Index + 1) &&
25095           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
25096         return false;
25097     }
25098   }
25099
25100   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
25101   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
25102   return true;
25103 }
25104
25105 /// Do target-specific dag combines on floating point adds.
25106 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
25107                                   const X86Subtarget *Subtarget) {
25108   EVT VT = N->getValueType(0);
25109   SDValue LHS = N->getOperand(0);
25110   SDValue RHS = N->getOperand(1);
25111
25112   // Try to synthesize horizontal adds from adds of shuffles.
25113   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
25114        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
25115       isHorizontalBinOp(LHS, RHS, true))
25116     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
25117   return SDValue();
25118 }
25119
25120 /// Do target-specific dag combines on floating point subs.
25121 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
25122                                   const X86Subtarget *Subtarget) {
25123   EVT VT = N->getValueType(0);
25124   SDValue LHS = N->getOperand(0);
25125   SDValue RHS = N->getOperand(1);
25126
25127   // Try to synthesize horizontal subs from subs of shuffles.
25128   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
25129        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
25130       isHorizontalBinOp(LHS, RHS, false))
25131     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
25132   return SDValue();
25133 }
25134
25135 /// Do target-specific dag combines on X86ISD::FOR and X86ISD::FXOR nodes.
25136 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
25137   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
25138
25139   // F[X]OR(0.0, x) -> x
25140   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
25141     if (C->getValueAPF().isPosZero())
25142       return N->getOperand(1);
25143
25144   // F[X]OR(x, 0.0) -> x
25145   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
25146     if (C->getValueAPF().isPosZero())
25147       return N->getOperand(0);
25148   return SDValue();
25149 }
25150
25151 /// Do target-specific dag combines on X86ISD::FMIN and X86ISD::FMAX nodes.
25152 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
25153   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
25154
25155   // Only perform optimizations if UnsafeMath is used.
25156   if (!DAG.getTarget().Options.UnsafeFPMath)
25157     return SDValue();
25158
25159   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
25160   // into FMINC and FMAXC, which are Commutative operations.
25161   unsigned NewOp = 0;
25162   switch (N->getOpcode()) {
25163     default: llvm_unreachable("unknown opcode");
25164     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
25165     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
25166   }
25167
25168   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
25169                      N->getOperand(0), N->getOperand(1));
25170 }
25171
25172 /// Do target-specific dag combines on X86ISD::FAND nodes.
25173 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
25174   // FAND(0.0, x) -> 0.0
25175   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
25176     if (C->getValueAPF().isPosZero())
25177       return N->getOperand(0);
25178
25179   // FAND(x, 0.0) -> 0.0
25180   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
25181     if (C->getValueAPF().isPosZero())
25182       return N->getOperand(1);
25183
25184   return SDValue();
25185 }
25186
25187 /// Do target-specific dag combines on X86ISD::FANDN nodes
25188 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
25189   // FANDN(0.0, x) -> x
25190   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
25191     if (C->getValueAPF().isPosZero())
25192       return N->getOperand(1);
25193
25194   // FANDN(x, 0.0) -> 0.0
25195   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
25196     if (C->getValueAPF().isPosZero())
25197       return N->getOperand(1);
25198
25199   return SDValue();
25200 }
25201
25202 static SDValue PerformBTCombine(SDNode *N,
25203                                 SelectionDAG &DAG,
25204                                 TargetLowering::DAGCombinerInfo &DCI) {
25205   // BT ignores high bits in the bit index operand.
25206   SDValue Op1 = N->getOperand(1);
25207   if (Op1.hasOneUse()) {
25208     unsigned BitWidth = Op1.getValueSizeInBits();
25209     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
25210     APInt KnownZero, KnownOne;
25211     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
25212                                           !DCI.isBeforeLegalizeOps());
25213     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25214     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
25215         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
25216       DCI.CommitTargetLoweringOpt(TLO);
25217   }
25218   return SDValue();
25219 }
25220
25221 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
25222   SDValue Op = N->getOperand(0);
25223   if (Op.getOpcode() == ISD::BITCAST)
25224     Op = Op.getOperand(0);
25225   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
25226   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
25227       VT.getVectorElementType().getSizeInBits() ==
25228       OpVT.getVectorElementType().getSizeInBits()) {
25229     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
25230   }
25231   return SDValue();
25232 }
25233
25234 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
25235                                                const X86Subtarget *Subtarget) {
25236   EVT VT = N->getValueType(0);
25237   if (!VT.isVector())
25238     return SDValue();
25239
25240   SDValue N0 = N->getOperand(0);
25241   SDValue N1 = N->getOperand(1);
25242   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
25243   SDLoc dl(N);
25244
25245   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
25246   // both SSE and AVX2 since there is no sign-extended shift right
25247   // operation on a vector with 64-bit elements.
25248   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
25249   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
25250   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
25251       N0.getOpcode() == ISD::SIGN_EXTEND)) {
25252     SDValue N00 = N0.getOperand(0);
25253
25254     // EXTLOAD has a better solution on AVX2,
25255     // it may be replaced with X86ISD::VSEXT node.
25256     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
25257       if (!ISD::isNormalLoad(N00.getNode()))
25258         return SDValue();
25259
25260     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
25261         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
25262                                   N00, N1);
25263       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
25264     }
25265   }
25266   return SDValue();
25267 }
25268
25269 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
25270                                   TargetLowering::DAGCombinerInfo &DCI,
25271                                   const X86Subtarget *Subtarget) {
25272   SDValue N0 = N->getOperand(0);
25273   EVT VT = N->getValueType(0);
25274   EVT SVT = VT.getScalarType();
25275   EVT InVT = N0.getValueType();
25276   EVT InSVT = InVT.getScalarType();
25277   SDLoc DL(N);
25278
25279   // (i8,i32 sext (sdivrem (i8 x, i8 y)) ->
25280   // (i8,i32 (sdivrem_sext_hreg (i8 x, i8 y)
25281   // This exposes the sext to the sdivrem lowering, so that it directly extends
25282   // from AH (which we otherwise need to do contortions to access).
25283   if (N0.getOpcode() == ISD::SDIVREM && N0.getResNo() == 1 &&
25284       InVT == MVT::i8 && VT == MVT::i32) {
25285     SDVTList NodeTys = DAG.getVTList(MVT::i8, VT);
25286     SDValue R = DAG.getNode(X86ISD::SDIVREM8_SEXT_HREG, DL, NodeTys,
25287                             N0.getOperand(0), N0.getOperand(1));
25288     DAG.ReplaceAllUsesOfValueWith(N0.getValue(0), R.getValue(0));
25289     return R.getValue(1);
25290   }
25291
25292   if (!DCI.isBeforeLegalizeOps()) {
25293     if (InVT == MVT::i1) {
25294       SDValue Zero = DAG.getConstant(0, DL, VT);
25295       SDValue AllOnes =
25296         DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), DL, VT);
25297       return DAG.getNode(ISD::SELECT, DL, VT, N0, AllOnes, Zero);
25298     }
25299     return SDValue();
25300   }
25301
25302   if (VT.isVector() && Subtarget->hasSSE2()) {
25303     auto ExtendVecSize = [&DAG](SDLoc DL, SDValue N, unsigned Size) {
25304       EVT InVT = N.getValueType();
25305       EVT OutVT = EVT::getVectorVT(*DAG.getContext(), InVT.getScalarType(),
25306                                    Size / InVT.getScalarSizeInBits());
25307       SmallVector<SDValue, 8> Opnds(Size / InVT.getSizeInBits(),
25308                                     DAG.getUNDEF(InVT));
25309       Opnds[0] = N;
25310       return DAG.getNode(ISD::CONCAT_VECTORS, DL, OutVT, Opnds);
25311     };
25312
25313     // If target-size is less than 128-bits, extend to a type that would extend
25314     // to 128 bits, extend that and extract the original target vector.
25315     if (VT.getSizeInBits() < 128 && !(128 % VT.getSizeInBits()) &&
25316         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
25317         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
25318       unsigned Scale = 128 / VT.getSizeInBits();
25319       EVT ExVT =
25320           EVT::getVectorVT(*DAG.getContext(), SVT, 128 / SVT.getSizeInBits());
25321       SDValue Ex = ExtendVecSize(DL, N0, Scale * InVT.getSizeInBits());
25322       SDValue SExt = DAG.getNode(ISD::SIGN_EXTEND, DL, ExVT, Ex);
25323       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, SExt,
25324                          DAG.getIntPtrConstant(0, DL));
25325     }
25326
25327     // If target-size is 128-bits, then convert to ISD::SIGN_EXTEND_VECTOR_INREG
25328     // which ensures lowering to X86ISD::VSEXT (pmovsx*).
25329     if (VT.getSizeInBits() == 128 &&
25330         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
25331         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
25332       SDValue ExOp = ExtendVecSize(DL, N0, 128);
25333       return DAG.getSignExtendVectorInReg(ExOp, DL, VT);
25334     }
25335
25336     // On pre-AVX2 targets, split into 128-bit nodes of
25337     // ISD::SIGN_EXTEND_VECTOR_INREG.
25338     if (!Subtarget->hasInt256() && !(VT.getSizeInBits() % 128) &&
25339         (SVT == MVT::i64 || SVT == MVT::i32 || SVT == MVT::i16) &&
25340         (InSVT == MVT::i32 || InSVT == MVT::i16 || InSVT == MVT::i8)) {
25341       unsigned NumVecs = VT.getSizeInBits() / 128;
25342       unsigned NumSubElts = 128 / SVT.getSizeInBits();
25343       EVT SubVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumSubElts);
25344       EVT InSubVT = EVT::getVectorVT(*DAG.getContext(), InSVT, NumSubElts);
25345
25346       SmallVector<SDValue, 8> Opnds;
25347       for (unsigned i = 0, Offset = 0; i != NumVecs;
25348            ++i, Offset += NumSubElts) {
25349         SDValue SrcVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InSubVT, N0,
25350                                      DAG.getIntPtrConstant(Offset, DL));
25351         SrcVec = ExtendVecSize(DL, SrcVec, 128);
25352         SrcVec = DAG.getSignExtendVectorInReg(SrcVec, DL, SubVT);
25353         Opnds.push_back(SrcVec);
25354       }
25355       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Opnds);
25356     }
25357   }
25358
25359   if (!Subtarget->hasFp256())
25360     return SDValue();
25361
25362   if (VT.isVector() && VT.getSizeInBits() == 256)
25363     if (SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget))
25364       return R;
25365
25366   return SDValue();
25367 }
25368
25369 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
25370                                  const X86Subtarget* Subtarget) {
25371   SDLoc dl(N);
25372   EVT VT = N->getValueType(0);
25373
25374   // Let legalize expand this if it isn't a legal type yet.
25375   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
25376     return SDValue();
25377
25378   EVT ScalarVT = VT.getScalarType();
25379   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
25380       (!Subtarget->hasFMA() && !Subtarget->hasFMA4() &&
25381        !Subtarget->hasAVX512()))
25382     return SDValue();
25383
25384   SDValue A = N->getOperand(0);
25385   SDValue B = N->getOperand(1);
25386   SDValue C = N->getOperand(2);
25387
25388   bool NegA = (A.getOpcode() == ISD::FNEG);
25389   bool NegB = (B.getOpcode() == ISD::FNEG);
25390   bool NegC = (C.getOpcode() == ISD::FNEG);
25391
25392   // Negative multiplication when NegA xor NegB
25393   bool NegMul = (NegA != NegB);
25394   if (NegA)
25395     A = A.getOperand(0);
25396   if (NegB)
25397     B = B.getOperand(0);
25398   if (NegC)
25399     C = C.getOperand(0);
25400
25401   unsigned Opcode;
25402   if (!NegMul)
25403     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
25404   else
25405     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
25406
25407   return DAG.getNode(Opcode, dl, VT, A, B, C);
25408 }
25409
25410 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
25411                                   TargetLowering::DAGCombinerInfo &DCI,
25412                                   const X86Subtarget *Subtarget) {
25413   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
25414   //           (and (i32 x86isd::setcc_carry), 1)
25415   // This eliminates the zext. This transformation is necessary because
25416   // ISD::SETCC is always legalized to i8.
25417   SDLoc dl(N);
25418   SDValue N0 = N->getOperand(0);
25419   EVT VT = N->getValueType(0);
25420
25421   if (N0.getOpcode() == ISD::AND &&
25422       N0.hasOneUse() &&
25423       N0.getOperand(0).hasOneUse()) {
25424     SDValue N00 = N0.getOperand(0);
25425     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
25426       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
25427       if (!C || C->getZExtValue() != 1)
25428         return SDValue();
25429       return DAG.getNode(ISD::AND, dl, VT,
25430                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
25431                                      N00.getOperand(0), N00.getOperand(1)),
25432                          DAG.getConstant(1, dl, VT));
25433     }
25434   }
25435
25436   if (N0.getOpcode() == ISD::TRUNCATE &&
25437       N0.hasOneUse() &&
25438       N0.getOperand(0).hasOneUse()) {
25439     SDValue N00 = N0.getOperand(0);
25440     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
25441       return DAG.getNode(ISD::AND, dl, VT,
25442                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
25443                                      N00.getOperand(0), N00.getOperand(1)),
25444                          DAG.getConstant(1, dl, VT));
25445     }
25446   }
25447
25448   if (VT.is256BitVector())
25449     if (SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget))
25450       return R;
25451
25452   // (i8,i32 zext (udivrem (i8 x, i8 y)) ->
25453   // (i8,i32 (udivrem_zext_hreg (i8 x, i8 y)
25454   // This exposes the zext to the udivrem lowering, so that it directly extends
25455   // from AH (which we otherwise need to do contortions to access).
25456   if (N0.getOpcode() == ISD::UDIVREM &&
25457       N0.getResNo() == 1 && N0.getValueType() == MVT::i8 &&
25458       (VT == MVT::i32 || VT == MVT::i64)) {
25459     SDVTList NodeTys = DAG.getVTList(MVT::i8, VT);
25460     SDValue R = DAG.getNode(X86ISD::UDIVREM8_ZEXT_HREG, dl, NodeTys,
25461                             N0.getOperand(0), N0.getOperand(1));
25462     DAG.ReplaceAllUsesOfValueWith(N0.getValue(0), R.getValue(0));
25463     return R.getValue(1);
25464   }
25465
25466   return SDValue();
25467 }
25468
25469 // Optimize x == -y --> x+y == 0
25470 //          x != -y --> x+y != 0
25471 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
25472                                       const X86Subtarget* Subtarget) {
25473   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
25474   SDValue LHS = N->getOperand(0);
25475   SDValue RHS = N->getOperand(1);
25476   EVT VT = N->getValueType(0);
25477   SDLoc DL(N);
25478
25479   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
25480     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
25481       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
25482         SDValue addV = DAG.getNode(ISD::ADD, DL, LHS.getValueType(), RHS,
25483                                    LHS.getOperand(1));
25484         return DAG.getSetCC(DL, N->getValueType(0), addV,
25485                             DAG.getConstant(0, DL, addV.getValueType()), CC);
25486       }
25487   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
25488     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
25489       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
25490         SDValue addV = DAG.getNode(ISD::ADD, DL, RHS.getValueType(), LHS,
25491                                    RHS.getOperand(1));
25492         return DAG.getSetCC(DL, N->getValueType(0), addV,
25493                             DAG.getConstant(0, DL, addV.getValueType()), CC);
25494       }
25495
25496   if (VT.getScalarType() == MVT::i1 &&
25497       (CC == ISD::SETNE || CC == ISD::SETEQ || ISD::isSignedIntSetCC(CC))) {
25498     bool IsSEXT0 =
25499         (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
25500         (LHS.getOperand(0).getValueType().getScalarType() == MVT::i1);
25501     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
25502
25503     if (!IsSEXT0 || !IsVZero1) {
25504       // Swap the operands and update the condition code.
25505       std::swap(LHS, RHS);
25506       CC = ISD::getSetCCSwappedOperands(CC);
25507
25508       IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
25509                 (LHS.getOperand(0).getValueType().getScalarType() == MVT::i1);
25510       IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
25511     }
25512
25513     if (IsSEXT0 && IsVZero1) {
25514       assert(VT == LHS.getOperand(0).getValueType() &&
25515              "Uexpected operand type");
25516       if (CC == ISD::SETGT)
25517         return DAG.getConstant(0, DL, VT);
25518       if (CC == ISD::SETLE)
25519         return DAG.getConstant(1, DL, VT);
25520       if (CC == ISD::SETEQ || CC == ISD::SETGE)
25521         return DAG.getNOT(DL, LHS.getOperand(0), VT);
25522
25523       assert((CC == ISD::SETNE || CC == ISD::SETLT) &&
25524              "Unexpected condition code!");
25525       return LHS.getOperand(0);
25526     }
25527   }
25528
25529   return SDValue();
25530 }
25531
25532 static SDValue NarrowVectorLoadToElement(LoadSDNode *Load, unsigned Index,
25533                                          SelectionDAG &DAG) {
25534   SDLoc dl(Load);
25535   MVT VT = Load->getSimpleValueType(0);
25536   MVT EVT = VT.getVectorElementType();
25537   SDValue Addr = Load->getOperand(1);
25538   SDValue NewAddr = DAG.getNode(
25539       ISD::ADD, dl, Addr.getSimpleValueType(), Addr,
25540       DAG.getConstant(Index * EVT.getStoreSize(), dl,
25541                       Addr.getSimpleValueType()));
25542
25543   SDValue NewLoad =
25544       DAG.getLoad(EVT, dl, Load->getChain(), NewAddr,
25545                   DAG.getMachineFunction().getMachineMemOperand(
25546                       Load->getMemOperand(), 0, EVT.getStoreSize()));
25547   return NewLoad;
25548 }
25549
25550 static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG,
25551                                       const X86Subtarget *Subtarget) {
25552   SDLoc dl(N);
25553   MVT VT = N->getOperand(1)->getSimpleValueType(0);
25554   assert((VT == MVT::v4f32 || VT == MVT::v4i32) &&
25555          "X86insertps is only defined for v4x32");
25556
25557   SDValue Ld = N->getOperand(1);
25558   if (MayFoldLoad(Ld)) {
25559     // Extract the countS bits from the immediate so we can get the proper
25560     // address when narrowing the vector load to a specific element.
25561     // When the second source op is a memory address, insertps doesn't use
25562     // countS and just gets an f32 from that address.
25563     unsigned DestIndex =
25564         cast<ConstantSDNode>(N->getOperand(2))->getZExtValue() >> 6;
25565
25566     Ld = NarrowVectorLoadToElement(cast<LoadSDNode>(Ld), DestIndex, DAG);
25567
25568     // Create this as a scalar to vector to match the instruction pattern.
25569     SDValue LoadScalarToVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Ld);
25570     // countS bits are ignored when loading from memory on insertps, which
25571     // means we don't need to explicitly set them to 0.
25572     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N->getOperand(0),
25573                        LoadScalarToVector, N->getOperand(2));
25574   }
25575   return SDValue();
25576 }
25577
25578 static SDValue PerformBLENDICombine(SDNode *N, SelectionDAG &DAG) {
25579   SDValue V0 = N->getOperand(0);
25580   SDValue V1 = N->getOperand(1);
25581   SDLoc DL(N);
25582   EVT VT = N->getValueType(0);
25583
25584   // Canonicalize a v2f64 blend with a mask of 2 by swapping the vector
25585   // operands and changing the mask to 1. This saves us a bunch of
25586   // pattern-matching possibilities related to scalar math ops in SSE/AVX.
25587   // x86InstrInfo knows how to commute this back after instruction selection
25588   // if it would help register allocation.
25589
25590   // TODO: If optimizing for size or a processor that doesn't suffer from
25591   // partial register update stalls, this should be transformed into a MOVSD
25592   // instruction because a MOVSD is 1-2 bytes smaller than a BLENDPD.
25593
25594   if (VT == MVT::v2f64)
25595     if (auto *Mask = dyn_cast<ConstantSDNode>(N->getOperand(2)))
25596       if (Mask->getZExtValue() == 2 && !isShuffleFoldableLoad(V0)) {
25597         SDValue NewMask = DAG.getConstant(1, DL, MVT::i8);
25598         return DAG.getNode(X86ISD::BLENDI, DL, VT, V1, V0, NewMask);
25599       }
25600
25601   return SDValue();
25602 }
25603
25604 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
25605 // as "sbb reg,reg", since it can be extended without zext and produces
25606 // an all-ones bit which is more useful than 0/1 in some cases.
25607 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
25608                                MVT VT) {
25609   if (VT == MVT::i8)
25610     return DAG.getNode(ISD::AND, DL, VT,
25611                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
25612                                    DAG.getConstant(X86::COND_B, DL, MVT::i8),
25613                                    EFLAGS),
25614                        DAG.getConstant(1, DL, VT));
25615   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
25616   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
25617                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
25618                                  DAG.getConstant(X86::COND_B, DL, MVT::i8),
25619                                  EFLAGS));
25620 }
25621
25622 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
25623 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
25624                                    TargetLowering::DAGCombinerInfo &DCI,
25625                                    const X86Subtarget *Subtarget) {
25626   SDLoc DL(N);
25627   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
25628   SDValue EFLAGS = N->getOperand(1);
25629
25630   if (CC == X86::COND_A) {
25631     // Try to convert COND_A into COND_B in an attempt to facilitate
25632     // materializing "setb reg".
25633     //
25634     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
25635     // cannot take an immediate as its first operand.
25636     //
25637     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
25638         EFLAGS.getValueType().isInteger() &&
25639         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
25640       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
25641                                    EFLAGS.getNode()->getVTList(),
25642                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
25643       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
25644       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
25645     }
25646   }
25647
25648   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
25649   // a zext and produces an all-ones bit which is more useful than 0/1 in some
25650   // cases.
25651   if (CC == X86::COND_B)
25652     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
25653
25654   if (SDValue Flags = checkBoolTestSetCCCombine(EFLAGS, CC)) {
25655     SDValue Cond = DAG.getConstant(CC, DL, MVT::i8);
25656     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
25657   }
25658
25659   return SDValue();
25660 }
25661
25662 // Optimize branch condition evaluation.
25663 //
25664 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
25665                                     TargetLowering::DAGCombinerInfo &DCI,
25666                                     const X86Subtarget *Subtarget) {
25667   SDLoc DL(N);
25668   SDValue Chain = N->getOperand(0);
25669   SDValue Dest = N->getOperand(1);
25670   SDValue EFLAGS = N->getOperand(3);
25671   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
25672
25673   if (SDValue Flags = checkBoolTestSetCCCombine(EFLAGS, CC)) {
25674     SDValue Cond = DAG.getConstant(CC, DL, MVT::i8);
25675     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
25676                        Flags);
25677   }
25678
25679   return SDValue();
25680 }
25681
25682 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
25683                                                          SelectionDAG &DAG) {
25684   // Take advantage of vector comparisons producing 0 or -1 in each lane to
25685   // optimize away operation when it's from a constant.
25686   //
25687   // The general transformation is:
25688   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
25689   //       AND(VECTOR_CMP(x,y), constant2)
25690   //    constant2 = UNARYOP(constant)
25691
25692   // Early exit if this isn't a vector operation, the operand of the
25693   // unary operation isn't a bitwise AND, or if the sizes of the operations
25694   // aren't the same.
25695   EVT VT = N->getValueType(0);
25696   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
25697       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
25698       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
25699     return SDValue();
25700
25701   // Now check that the other operand of the AND is a constant. We could
25702   // make the transformation for non-constant splats as well, but it's unclear
25703   // that would be a benefit as it would not eliminate any operations, just
25704   // perform one more step in scalar code before moving to the vector unit.
25705   if (BuildVectorSDNode *BV =
25706           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
25707     // Bail out if the vector isn't a constant.
25708     if (!BV->isConstant())
25709       return SDValue();
25710
25711     // Everything checks out. Build up the new and improved node.
25712     SDLoc DL(N);
25713     EVT IntVT = BV->getValueType(0);
25714     // Create a new constant of the appropriate type for the transformed
25715     // DAG.
25716     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
25717     // The AND node needs bitcasts to/from an integer vector type around it.
25718     SDValue MaskConst = DAG.getBitcast(IntVT, SourceConst);
25719     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
25720                                  N->getOperand(0)->getOperand(0), MaskConst);
25721     SDValue Res = DAG.getBitcast(VT, NewAnd);
25722     return Res;
25723   }
25724
25725   return SDValue();
25726 }
25727
25728 static SDValue PerformUINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
25729                                         const X86Subtarget *Subtarget) {
25730   SDValue Op0 = N->getOperand(0);
25731   EVT VT = N->getValueType(0);
25732   EVT InVT = Op0.getValueType();
25733   EVT InSVT = InVT.getScalarType();
25734   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
25735
25736   // UINT_TO_FP(vXi8) -> SINT_TO_FP(ZEXT(vXi8 to vXi32))
25737   // UINT_TO_FP(vXi16) -> SINT_TO_FP(ZEXT(vXi16 to vXi32))
25738   if (InVT.isVector() && (InSVT == MVT::i8 || InSVT == MVT::i16)) {
25739     SDLoc dl(N);
25740     EVT DstVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
25741                                  InVT.getVectorNumElements());
25742     SDValue P = DAG.getNode(ISD::ZERO_EXTEND, dl, DstVT, Op0);
25743
25744     if (TLI.isOperationLegal(ISD::UINT_TO_FP, DstVT))
25745       return DAG.getNode(ISD::UINT_TO_FP, dl, VT, P);
25746
25747     return DAG.getNode(ISD::SINT_TO_FP, dl, VT, P);
25748   }
25749
25750   return SDValue();
25751 }
25752
25753 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
25754                                         const X86Subtarget *Subtarget) {
25755   // First try to optimize away the conversion entirely when it's
25756   // conditionally from a constant. Vectors only.
25757   if (SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG))
25758     return Res;
25759
25760   // Now move on to more general possibilities.
25761   SDValue Op0 = N->getOperand(0);
25762   EVT VT = N->getValueType(0);
25763   EVT InVT = Op0.getValueType();
25764   EVT InSVT = InVT.getScalarType();
25765
25766   // SINT_TO_FP(vXi8) -> SINT_TO_FP(SEXT(vXi8 to vXi32))
25767   // SINT_TO_FP(vXi16) -> SINT_TO_FP(SEXT(vXi16 to vXi32))
25768   if (InVT.isVector() && (InSVT == MVT::i8 || InSVT == MVT::i16)) {
25769     SDLoc dl(N);
25770     EVT DstVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
25771                                  InVT.getVectorNumElements());
25772     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
25773     return DAG.getNode(ISD::SINT_TO_FP, dl, VT, P);
25774   }
25775
25776   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
25777   // a 32-bit target where SSE doesn't support i64->FP operations.
25778   if (Op0.getOpcode() == ISD::LOAD) {
25779     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
25780     EVT LdVT = Ld->getValueType(0);
25781
25782     // This transformation is not supported if the result type is f16
25783     if (VT == MVT::f16)
25784       return SDValue();
25785
25786     if (!Ld->isVolatile() && !VT.isVector() &&
25787         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
25788         !Subtarget->is64Bit() && LdVT == MVT::i64) {
25789       SDValue FILDChain = Subtarget->getTargetLowering()->BuildFILD(
25790           SDValue(N, 0), LdVT, Ld->getChain(), Op0, DAG);
25791       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
25792       return FILDChain;
25793     }
25794   }
25795   return SDValue();
25796 }
25797
25798 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
25799 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
25800                                  X86TargetLowering::DAGCombinerInfo &DCI) {
25801   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
25802   // the result is either zero or one (depending on the input carry bit).
25803   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
25804   if (X86::isZeroNode(N->getOperand(0)) &&
25805       X86::isZeroNode(N->getOperand(1)) &&
25806       // We don't have a good way to replace an EFLAGS use, so only do this when
25807       // dead right now.
25808       SDValue(N, 1).use_empty()) {
25809     SDLoc DL(N);
25810     EVT VT = N->getValueType(0);
25811     SDValue CarryOut = DAG.getConstant(0, DL, N->getValueType(1));
25812     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
25813                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
25814                                            DAG.getConstant(X86::COND_B, DL,
25815                                                            MVT::i8),
25816                                            N->getOperand(2)),
25817                                DAG.getConstant(1, DL, VT));
25818     return DCI.CombineTo(N, Res1, CarryOut);
25819   }
25820
25821   return SDValue();
25822 }
25823
25824 // fold (add Y, (sete  X, 0)) -> adc  0, Y
25825 //      (add Y, (setne X, 0)) -> sbb -1, Y
25826 //      (sub (sete  X, 0), Y) -> sbb  0, Y
25827 //      (sub (setne X, 0), Y) -> adc -1, Y
25828 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
25829   SDLoc DL(N);
25830
25831   // Look through ZExts.
25832   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
25833   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
25834     return SDValue();
25835
25836   SDValue SetCC = Ext.getOperand(0);
25837   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
25838     return SDValue();
25839
25840   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
25841   if (CC != X86::COND_E && CC != X86::COND_NE)
25842     return SDValue();
25843
25844   SDValue Cmp = SetCC.getOperand(1);
25845   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
25846       !X86::isZeroNode(Cmp.getOperand(1)) ||
25847       !Cmp.getOperand(0).getValueType().isInteger())
25848     return SDValue();
25849
25850   SDValue CmpOp0 = Cmp.getOperand(0);
25851   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
25852                                DAG.getConstant(1, DL, CmpOp0.getValueType()));
25853
25854   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
25855   if (CC == X86::COND_NE)
25856     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
25857                        DL, OtherVal.getValueType(), OtherVal,
25858                        DAG.getConstant(-1ULL, DL, OtherVal.getValueType()),
25859                        NewCmp);
25860   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
25861                      DL, OtherVal.getValueType(), OtherVal,
25862                      DAG.getConstant(0, DL, OtherVal.getValueType()), NewCmp);
25863 }
25864
25865 /// PerformADDCombine - Do target-specific dag combines on integer adds.
25866 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
25867                                  const X86Subtarget *Subtarget) {
25868   EVT VT = N->getValueType(0);
25869   SDValue Op0 = N->getOperand(0);
25870   SDValue Op1 = N->getOperand(1);
25871
25872   // Try to synthesize horizontal adds from adds of shuffles.
25873   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
25874        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
25875       isHorizontalBinOp(Op0, Op1, true))
25876     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
25877
25878   return OptimizeConditionalInDecrement(N, DAG);
25879 }
25880
25881 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
25882                                  const X86Subtarget *Subtarget) {
25883   SDValue Op0 = N->getOperand(0);
25884   SDValue Op1 = N->getOperand(1);
25885
25886   // X86 can't encode an immediate LHS of a sub. See if we can push the
25887   // negation into a preceding instruction.
25888   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
25889     // If the RHS of the sub is a XOR with one use and a constant, invert the
25890     // immediate. Then add one to the LHS of the sub so we can turn
25891     // X-Y -> X+~Y+1, saving one register.
25892     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
25893         isa<ConstantSDNode>(Op1.getOperand(1))) {
25894       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
25895       EVT VT = Op0.getValueType();
25896       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
25897                                    Op1.getOperand(0),
25898                                    DAG.getConstant(~XorC, SDLoc(Op1), VT));
25899       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
25900                          DAG.getConstant(C->getAPIntValue() + 1, SDLoc(N), VT));
25901     }
25902   }
25903
25904   // Try to synthesize horizontal adds from adds of shuffles.
25905   EVT VT = N->getValueType(0);
25906   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
25907        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
25908       isHorizontalBinOp(Op0, Op1, true))
25909     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
25910
25911   return OptimizeConditionalInDecrement(N, DAG);
25912 }
25913
25914 /// performVZEXTCombine - Performs build vector combines
25915 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
25916                                    TargetLowering::DAGCombinerInfo &DCI,
25917                                    const X86Subtarget *Subtarget) {
25918   SDLoc DL(N);
25919   MVT VT = N->getSimpleValueType(0);
25920   SDValue Op = N->getOperand(0);
25921   MVT OpVT = Op.getSimpleValueType();
25922   MVT OpEltVT = OpVT.getVectorElementType();
25923   unsigned InputBits = OpEltVT.getSizeInBits() * VT.getVectorNumElements();
25924
25925   // (vzext (bitcast (vzext (x)) -> (vzext x)
25926   SDValue V = Op;
25927   while (V.getOpcode() == ISD::BITCAST)
25928     V = V.getOperand(0);
25929
25930   if (V != Op && V.getOpcode() == X86ISD::VZEXT) {
25931     MVT InnerVT = V.getSimpleValueType();
25932     MVT InnerEltVT = InnerVT.getVectorElementType();
25933
25934     // If the element sizes match exactly, we can just do one larger vzext. This
25935     // is always an exact type match as vzext operates on integer types.
25936     if (OpEltVT == InnerEltVT) {
25937       assert(OpVT == InnerVT && "Types must match for vzext!");
25938       return DAG.getNode(X86ISD::VZEXT, DL, VT, V.getOperand(0));
25939     }
25940
25941     // The only other way we can combine them is if only a single element of the
25942     // inner vzext is used in the input to the outer vzext.
25943     if (InnerEltVT.getSizeInBits() < InputBits)
25944       return SDValue();
25945
25946     // In this case, the inner vzext is completely dead because we're going to
25947     // only look at bits inside of the low element. Just do the outer vzext on
25948     // a bitcast of the input to the inner.
25949     return DAG.getNode(X86ISD::VZEXT, DL, VT, DAG.getBitcast(OpVT, V));
25950   }
25951
25952   // Check if we can bypass extracting and re-inserting an element of an input
25953   // vector. Essentially:
25954   // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
25955   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR &&
25956       V.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
25957       V.getOperand(0).getSimpleValueType().getSizeInBits() == InputBits) {
25958     SDValue ExtractedV = V.getOperand(0);
25959     SDValue OrigV = ExtractedV.getOperand(0);
25960     if (auto *ExtractIdx = dyn_cast<ConstantSDNode>(ExtractedV.getOperand(1)))
25961       if (ExtractIdx->getZExtValue() == 0) {
25962         MVT OrigVT = OrigV.getSimpleValueType();
25963         // Extract a subvector if necessary...
25964         if (OrigVT.getSizeInBits() > OpVT.getSizeInBits()) {
25965           int Ratio = OrigVT.getSizeInBits() / OpVT.getSizeInBits();
25966           OrigVT = MVT::getVectorVT(OrigVT.getVectorElementType(),
25967                                     OrigVT.getVectorNumElements() / Ratio);
25968           OrigV = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, OrigVT, OrigV,
25969                               DAG.getIntPtrConstant(0, DL));
25970         }
25971         Op = DAG.getBitcast(OpVT, OrigV);
25972         return DAG.getNode(X86ISD::VZEXT, DL, VT, Op);
25973       }
25974   }
25975
25976   return SDValue();
25977 }
25978
25979 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
25980                                              DAGCombinerInfo &DCI) const {
25981   SelectionDAG &DAG = DCI.DAG;
25982   switch (N->getOpcode()) {
25983   default: break;
25984   case ISD::EXTRACT_VECTOR_ELT:
25985     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
25986   case ISD::VSELECT:
25987   case ISD::SELECT:
25988   case X86ISD::SHRUNKBLEND:
25989     return PerformSELECTCombine(N, DAG, DCI, Subtarget);
25990   case ISD::BITCAST:        return PerformBITCASTCombine(N, DAG);
25991   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
25992   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
25993   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
25994   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
25995   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
25996   case ISD::SHL:
25997   case ISD::SRA:
25998   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
25999   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
26000   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
26001   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
26002   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
26003   case ISD::MLOAD:          return PerformMLOADCombine(N, DAG, DCI, Subtarget);
26004   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
26005   case ISD::MSTORE:         return PerformMSTORECombine(N, DAG, Subtarget);
26006   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, Subtarget);
26007   case ISD::UINT_TO_FP:     return PerformUINT_TO_FPCombine(N, DAG, Subtarget);
26008   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
26009   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
26010   case X86ISD::FXOR:
26011   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
26012   case X86ISD::FMIN:
26013   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
26014   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
26015   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
26016   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
26017   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
26018   case ISD::ANY_EXTEND:
26019   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
26020   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
26021   case ISD::SIGN_EXTEND_INREG:
26022     return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
26023   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
26024   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
26025   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
26026   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
26027   case X86ISD::SHUFP:       // Handle all target specific shuffles
26028   case X86ISD::PALIGNR:
26029   case X86ISD::UNPCKH:
26030   case X86ISD::UNPCKL:
26031   case X86ISD::MOVHLPS:
26032   case X86ISD::MOVLHPS:
26033   case X86ISD::PSHUFB:
26034   case X86ISD::PSHUFD:
26035   case X86ISD::PSHUFHW:
26036   case X86ISD::PSHUFLW:
26037   case X86ISD::MOVSS:
26038   case X86ISD::MOVSD:
26039   case X86ISD::VPERMILPI:
26040   case X86ISD::VPERM2X128:
26041   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
26042   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
26043   case X86ISD::INSERTPS: {
26044     if (getTargetMachine().getOptLevel() > CodeGenOpt::None)
26045       return PerformINSERTPSCombine(N, DAG, Subtarget);
26046     break;
26047   }
26048   case X86ISD::BLENDI:    return PerformBLENDICombine(N, DAG);
26049   }
26050
26051   return SDValue();
26052 }
26053
26054 /// isTypeDesirableForOp - Return true if the target has native support for
26055 /// the specified value type and it is 'desirable' to use the type for the
26056 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
26057 /// instruction encodings are longer and some i16 instructions are slow.
26058 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
26059   if (!isTypeLegal(VT))
26060     return false;
26061   if (VT != MVT::i16)
26062     return true;
26063
26064   switch (Opc) {
26065   default:
26066     return true;
26067   case ISD::LOAD:
26068   case ISD::SIGN_EXTEND:
26069   case ISD::ZERO_EXTEND:
26070   case ISD::ANY_EXTEND:
26071   case ISD::SHL:
26072   case ISD::SRL:
26073   case ISD::SUB:
26074   case ISD::ADD:
26075   case ISD::MUL:
26076   case ISD::AND:
26077   case ISD::OR:
26078   case ISD::XOR:
26079     return false;
26080   }
26081 }
26082
26083 /// IsDesirableToPromoteOp - This method query the target whether it is
26084 /// beneficial for dag combiner to promote the specified node. If true, it
26085 /// should return the desired promotion type by reference.
26086 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
26087   EVT VT = Op.getValueType();
26088   if (VT != MVT::i16)
26089     return false;
26090
26091   bool Promote = false;
26092   bool Commute = false;
26093   switch (Op.getOpcode()) {
26094   default: break;
26095   case ISD::LOAD: {
26096     LoadSDNode *LD = cast<LoadSDNode>(Op);
26097     // If the non-extending load has a single use and it's not live out, then it
26098     // might be folded.
26099     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
26100                                                      Op.hasOneUse()*/) {
26101       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
26102              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
26103         // The only case where we'd want to promote LOAD (rather then it being
26104         // promoted as an operand is when it's only use is liveout.
26105         if (UI->getOpcode() != ISD::CopyToReg)
26106           return false;
26107       }
26108     }
26109     Promote = true;
26110     break;
26111   }
26112   case ISD::SIGN_EXTEND:
26113   case ISD::ZERO_EXTEND:
26114   case ISD::ANY_EXTEND:
26115     Promote = true;
26116     break;
26117   case ISD::SHL:
26118   case ISD::SRL: {
26119     SDValue N0 = Op.getOperand(0);
26120     // Look out for (store (shl (load), x)).
26121     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
26122       return false;
26123     Promote = true;
26124     break;
26125   }
26126   case ISD::ADD:
26127   case ISD::MUL:
26128   case ISD::AND:
26129   case ISD::OR:
26130   case ISD::XOR:
26131     Commute = true;
26132     // fallthrough
26133   case ISD::SUB: {
26134     SDValue N0 = Op.getOperand(0);
26135     SDValue N1 = Op.getOperand(1);
26136     if (!Commute && MayFoldLoad(N1))
26137       return false;
26138     // Avoid disabling potential load folding opportunities.
26139     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
26140       return false;
26141     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
26142       return false;
26143     Promote = true;
26144   }
26145   }
26146
26147   PVT = MVT::i32;
26148   return Promote;
26149 }
26150
26151 //===----------------------------------------------------------------------===//
26152 //                           X86 Inline Assembly Support
26153 //===----------------------------------------------------------------------===//
26154
26155 // Helper to match a string separated by whitespace.
26156 static bool matchAsm(StringRef S, ArrayRef<const char *> Pieces) {
26157   S = S.substr(S.find_first_not_of(" \t")); // Skip leading whitespace.
26158
26159   for (StringRef Piece : Pieces) {
26160     if (!S.startswith(Piece)) // Check if the piece matches.
26161       return false;
26162
26163     S = S.substr(Piece.size());
26164     StringRef::size_type Pos = S.find_first_not_of(" \t");
26165     if (Pos == 0) // We matched a prefix.
26166       return false;
26167
26168     S = S.substr(Pos);
26169   }
26170
26171   return S.empty();
26172 }
26173
26174 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
26175
26176   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
26177     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
26178         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
26179         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
26180
26181       if (AsmPieces.size() == 3)
26182         return true;
26183       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
26184         return true;
26185     }
26186   }
26187   return false;
26188 }
26189
26190 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
26191   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
26192
26193   std::string AsmStr = IA->getAsmString();
26194
26195   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
26196   if (!Ty || Ty->getBitWidth() % 16 != 0)
26197     return false;
26198
26199   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
26200   SmallVector<StringRef, 4> AsmPieces;
26201   SplitString(AsmStr, AsmPieces, ";\n");
26202
26203   switch (AsmPieces.size()) {
26204   default: return false;
26205   case 1:
26206     // FIXME: this should verify that we are targeting a 486 or better.  If not,
26207     // we will turn this bswap into something that will be lowered to logical
26208     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
26209     // lower so don't worry about this.
26210     // bswap $0
26211     if (matchAsm(AsmPieces[0], {"bswap", "$0"}) ||
26212         matchAsm(AsmPieces[0], {"bswapl", "$0"}) ||
26213         matchAsm(AsmPieces[0], {"bswapq", "$0"}) ||
26214         matchAsm(AsmPieces[0], {"bswap", "${0:q}"}) ||
26215         matchAsm(AsmPieces[0], {"bswapl", "${0:q}"}) ||
26216         matchAsm(AsmPieces[0], {"bswapq", "${0:q}"})) {
26217       // No need to check constraints, nothing other than the equivalent of
26218       // "=r,0" would be valid here.
26219       return IntrinsicLowering::LowerToByteSwap(CI);
26220     }
26221
26222     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
26223     if (CI->getType()->isIntegerTy(16) &&
26224         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
26225         (matchAsm(AsmPieces[0], {"rorw", "$$8,", "${0:w}"}) ||
26226          matchAsm(AsmPieces[0], {"rolw", "$$8,", "${0:w}"}))) {
26227       AsmPieces.clear();
26228       StringRef ConstraintsStr = IA->getConstraintString();
26229       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
26230       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
26231       if (clobbersFlagRegisters(AsmPieces))
26232         return IntrinsicLowering::LowerToByteSwap(CI);
26233     }
26234     break;
26235   case 3:
26236     if (CI->getType()->isIntegerTy(32) &&
26237         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
26238         matchAsm(AsmPieces[0], {"rorw", "$$8,", "${0:w}"}) &&
26239         matchAsm(AsmPieces[1], {"rorl", "$$16,", "$0"}) &&
26240         matchAsm(AsmPieces[2], {"rorw", "$$8,", "${0:w}"})) {
26241       AsmPieces.clear();
26242       StringRef ConstraintsStr = IA->getConstraintString();
26243       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
26244       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
26245       if (clobbersFlagRegisters(AsmPieces))
26246         return IntrinsicLowering::LowerToByteSwap(CI);
26247     }
26248
26249     if (CI->getType()->isIntegerTy(64)) {
26250       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
26251       if (Constraints.size() >= 2 &&
26252           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
26253           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
26254         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
26255         if (matchAsm(AsmPieces[0], {"bswap", "%eax"}) &&
26256             matchAsm(AsmPieces[1], {"bswap", "%edx"}) &&
26257             matchAsm(AsmPieces[2], {"xchgl", "%eax,", "%edx"}))
26258           return IntrinsicLowering::LowerToByteSwap(CI);
26259       }
26260     }
26261     break;
26262   }
26263   return false;
26264 }
26265
26266 /// getConstraintType - Given a constraint letter, return the type of
26267 /// constraint it is for this target.
26268 X86TargetLowering::ConstraintType
26269 X86TargetLowering::getConstraintType(StringRef Constraint) const {
26270   if (Constraint.size() == 1) {
26271     switch (Constraint[0]) {
26272     case 'R':
26273     case 'q':
26274     case 'Q':
26275     case 'f':
26276     case 't':
26277     case 'u':
26278     case 'y':
26279     case 'x':
26280     case 'Y':
26281     case 'l':
26282       return C_RegisterClass;
26283     case 'a':
26284     case 'b':
26285     case 'c':
26286     case 'd':
26287     case 'S':
26288     case 'D':
26289     case 'A':
26290       return C_Register;
26291     case 'I':
26292     case 'J':
26293     case 'K':
26294     case 'L':
26295     case 'M':
26296     case 'N':
26297     case 'G':
26298     case 'C':
26299     case 'e':
26300     case 'Z':
26301       return C_Other;
26302     default:
26303       break;
26304     }
26305   }
26306   return TargetLowering::getConstraintType(Constraint);
26307 }
26308
26309 /// Examine constraint type and operand type and determine a weight value.
26310 /// This object must already have been set up with the operand type
26311 /// and the current alternative constraint selected.
26312 TargetLowering::ConstraintWeight
26313   X86TargetLowering::getSingleConstraintMatchWeight(
26314     AsmOperandInfo &info, const char *constraint) const {
26315   ConstraintWeight weight = CW_Invalid;
26316   Value *CallOperandVal = info.CallOperandVal;
26317     // If we don't have a value, we can't do a match,
26318     // but allow it at the lowest weight.
26319   if (!CallOperandVal)
26320     return CW_Default;
26321   Type *type = CallOperandVal->getType();
26322   // Look at the constraint type.
26323   switch (*constraint) {
26324   default:
26325     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
26326   case 'R':
26327   case 'q':
26328   case 'Q':
26329   case 'a':
26330   case 'b':
26331   case 'c':
26332   case 'd':
26333   case 'S':
26334   case 'D':
26335   case 'A':
26336     if (CallOperandVal->getType()->isIntegerTy())
26337       weight = CW_SpecificReg;
26338     break;
26339   case 'f':
26340   case 't':
26341   case 'u':
26342     if (type->isFloatingPointTy())
26343       weight = CW_SpecificReg;
26344     break;
26345   case 'y':
26346     if (type->isX86_MMXTy() && Subtarget->hasMMX())
26347       weight = CW_SpecificReg;
26348     break;
26349   case 'x':
26350   case 'Y':
26351     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
26352         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
26353       weight = CW_Register;
26354     break;
26355   case 'I':
26356     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
26357       if (C->getZExtValue() <= 31)
26358         weight = CW_Constant;
26359     }
26360     break;
26361   case 'J':
26362     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26363       if (C->getZExtValue() <= 63)
26364         weight = CW_Constant;
26365     }
26366     break;
26367   case 'K':
26368     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26369       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
26370         weight = CW_Constant;
26371     }
26372     break;
26373   case 'L':
26374     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26375       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
26376         weight = CW_Constant;
26377     }
26378     break;
26379   case 'M':
26380     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26381       if (C->getZExtValue() <= 3)
26382         weight = CW_Constant;
26383     }
26384     break;
26385   case 'N':
26386     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26387       if (C->getZExtValue() <= 0xff)
26388         weight = CW_Constant;
26389     }
26390     break;
26391   case 'G':
26392   case 'C':
26393     if (isa<ConstantFP>(CallOperandVal)) {
26394       weight = CW_Constant;
26395     }
26396     break;
26397   case 'e':
26398     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26399       if ((C->getSExtValue() >= -0x80000000LL) &&
26400           (C->getSExtValue() <= 0x7fffffffLL))
26401         weight = CW_Constant;
26402     }
26403     break;
26404   case 'Z':
26405     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
26406       if (C->getZExtValue() <= 0xffffffff)
26407         weight = CW_Constant;
26408     }
26409     break;
26410   }
26411   return weight;
26412 }
26413
26414 /// LowerXConstraint - try to replace an X constraint, which matches anything,
26415 /// with another that has more specific requirements based on the type of the
26416 /// corresponding operand.
26417 const char *X86TargetLowering::
26418 LowerXConstraint(EVT ConstraintVT) const {
26419   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
26420   // 'f' like normal targets.
26421   if (ConstraintVT.isFloatingPoint()) {
26422     if (Subtarget->hasSSE2())
26423       return "Y";
26424     if (Subtarget->hasSSE1())
26425       return "x";
26426   }
26427
26428   return TargetLowering::LowerXConstraint(ConstraintVT);
26429 }
26430
26431 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
26432 /// vector.  If it is invalid, don't add anything to Ops.
26433 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
26434                                                      std::string &Constraint,
26435                                                      std::vector<SDValue>&Ops,
26436                                                      SelectionDAG &DAG) const {
26437   SDValue Result;
26438
26439   // Only support length 1 constraints for now.
26440   if (Constraint.length() > 1) return;
26441
26442   char ConstraintLetter = Constraint[0];
26443   switch (ConstraintLetter) {
26444   default: break;
26445   case 'I':
26446     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26447       if (C->getZExtValue() <= 31) {
26448         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26449                                        Op.getValueType());
26450         break;
26451       }
26452     }
26453     return;
26454   case 'J':
26455     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26456       if (C->getZExtValue() <= 63) {
26457         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26458                                        Op.getValueType());
26459         break;
26460       }
26461     }
26462     return;
26463   case 'K':
26464     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26465       if (isInt<8>(C->getSExtValue())) {
26466         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26467                                        Op.getValueType());
26468         break;
26469       }
26470     }
26471     return;
26472   case 'L':
26473     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26474       if (C->getZExtValue() == 0xff || C->getZExtValue() == 0xffff ||
26475           (Subtarget->is64Bit() && C->getZExtValue() == 0xffffffff)) {
26476         Result = DAG.getTargetConstant(C->getSExtValue(), SDLoc(Op),
26477                                        Op.getValueType());
26478         break;
26479       }
26480     }
26481     return;
26482   case 'M':
26483     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26484       if (C->getZExtValue() <= 3) {
26485         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26486                                        Op.getValueType());
26487         break;
26488       }
26489     }
26490     return;
26491   case 'N':
26492     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26493       if (C->getZExtValue() <= 255) {
26494         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26495                                        Op.getValueType());
26496         break;
26497       }
26498     }
26499     return;
26500   case 'O':
26501     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26502       if (C->getZExtValue() <= 127) {
26503         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26504                                        Op.getValueType());
26505         break;
26506       }
26507     }
26508     return;
26509   case 'e': {
26510     // 32-bit signed value
26511     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26512       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
26513                                            C->getSExtValue())) {
26514         // Widen to 64 bits here to get it sign extended.
26515         Result = DAG.getTargetConstant(C->getSExtValue(), SDLoc(Op), MVT::i64);
26516         break;
26517       }
26518     // FIXME gcc accepts some relocatable values here too, but only in certain
26519     // memory models; it's complicated.
26520     }
26521     return;
26522   }
26523   case 'Z': {
26524     // 32-bit unsigned value
26525     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
26526       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
26527                                            C->getZExtValue())) {
26528         Result = DAG.getTargetConstant(C->getZExtValue(), SDLoc(Op),
26529                                        Op.getValueType());
26530         break;
26531       }
26532     }
26533     // FIXME gcc accepts some relocatable values here too, but only in certain
26534     // memory models; it's complicated.
26535     return;
26536   }
26537   case 'i': {
26538     // Literal immediates are always ok.
26539     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
26540       // Widen to 64 bits here to get it sign extended.
26541       Result = DAG.getTargetConstant(CST->getSExtValue(), SDLoc(Op), MVT::i64);
26542       break;
26543     }
26544
26545     // In any sort of PIC mode addresses need to be computed at runtime by
26546     // adding in a register or some sort of table lookup.  These can't
26547     // be used as immediates.
26548     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
26549       return;
26550
26551     // If we are in non-pic codegen mode, we allow the address of a global (with
26552     // an optional displacement) to be used with 'i'.
26553     GlobalAddressSDNode *GA = nullptr;
26554     int64_t Offset = 0;
26555
26556     // Match either (GA), (GA+C), (GA+C1+C2), etc.
26557     while (1) {
26558       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
26559         Offset += GA->getOffset();
26560         break;
26561       } else if (Op.getOpcode() == ISD::ADD) {
26562         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
26563           Offset += C->getZExtValue();
26564           Op = Op.getOperand(0);
26565           continue;
26566         }
26567       } else if (Op.getOpcode() == ISD::SUB) {
26568         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
26569           Offset += -C->getZExtValue();
26570           Op = Op.getOperand(0);
26571           continue;
26572         }
26573       }
26574
26575       // Otherwise, this isn't something we can handle, reject it.
26576       return;
26577     }
26578
26579     const GlobalValue *GV = GA->getGlobal();
26580     // If we require an extra load to get this address, as in PIC mode, we
26581     // can't accept it.
26582     if (isGlobalStubReference(
26583             Subtarget->ClassifyGlobalReference(GV, DAG.getTarget())))
26584       return;
26585
26586     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
26587                                         GA->getValueType(0), Offset);
26588     break;
26589   }
26590   }
26591
26592   if (Result.getNode()) {
26593     Ops.push_back(Result);
26594     return;
26595   }
26596   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
26597 }
26598
26599 std::pair<unsigned, const TargetRegisterClass *>
26600 X86TargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
26601                                                 StringRef Constraint,
26602                                                 MVT VT) const {
26603   // First, see if this is a constraint that directly corresponds to an LLVM
26604   // register class.
26605   if (Constraint.size() == 1) {
26606     // GCC Constraint Letters
26607     switch (Constraint[0]) {
26608     default: break;
26609       // TODO: Slight differences here in allocation order and leaving
26610       // RIP in the class. Do they matter any more here than they do
26611       // in the normal allocation?
26612     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
26613       if (Subtarget->is64Bit()) {
26614         if (VT == MVT::i32 || VT == MVT::f32)
26615           return std::make_pair(0U, &X86::GR32RegClass);
26616         if (VT == MVT::i16)
26617           return std::make_pair(0U, &X86::GR16RegClass);
26618         if (VT == MVT::i8 || VT == MVT::i1)
26619           return std::make_pair(0U, &X86::GR8RegClass);
26620         if (VT == MVT::i64 || VT == MVT::f64)
26621           return std::make_pair(0U, &X86::GR64RegClass);
26622         break;
26623       }
26624       // 32-bit fallthrough
26625     case 'Q':   // Q_REGS
26626       if (VT == MVT::i32 || VT == MVT::f32)
26627         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
26628       if (VT == MVT::i16)
26629         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
26630       if (VT == MVT::i8 || VT == MVT::i1)
26631         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
26632       if (VT == MVT::i64)
26633         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
26634       break;
26635     case 'r':   // GENERAL_REGS
26636     case 'l':   // INDEX_REGS
26637       if (VT == MVT::i8 || VT == MVT::i1)
26638         return std::make_pair(0U, &X86::GR8RegClass);
26639       if (VT == MVT::i16)
26640         return std::make_pair(0U, &X86::GR16RegClass);
26641       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
26642         return std::make_pair(0U, &X86::GR32RegClass);
26643       return std::make_pair(0U, &X86::GR64RegClass);
26644     case 'R':   // LEGACY_REGS
26645       if (VT == MVT::i8 || VT == MVT::i1)
26646         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
26647       if (VT == MVT::i16)
26648         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
26649       if (VT == MVT::i32 || !Subtarget->is64Bit())
26650         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
26651       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
26652     case 'f':  // FP Stack registers.
26653       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
26654       // value to the correct fpstack register class.
26655       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
26656         return std::make_pair(0U, &X86::RFP32RegClass);
26657       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
26658         return std::make_pair(0U, &X86::RFP64RegClass);
26659       return std::make_pair(0U, &X86::RFP80RegClass);
26660     case 'y':   // MMX_REGS if MMX allowed.
26661       if (!Subtarget->hasMMX()) break;
26662       return std::make_pair(0U, &X86::VR64RegClass);
26663     case 'Y':   // SSE_REGS if SSE2 allowed
26664       if (!Subtarget->hasSSE2()) break;
26665       // FALL THROUGH.
26666     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
26667       if (!Subtarget->hasSSE1()) break;
26668
26669       switch (VT.SimpleTy) {
26670       default: break;
26671       // Scalar SSE types.
26672       case MVT::f32:
26673       case MVT::i32:
26674         return std::make_pair(0U, &X86::FR32RegClass);
26675       case MVT::f64:
26676       case MVT::i64:
26677         return std::make_pair(0U, &X86::FR64RegClass);
26678       // Vector types.
26679       case MVT::v16i8:
26680       case MVT::v8i16:
26681       case MVT::v4i32:
26682       case MVT::v2i64:
26683       case MVT::v4f32:
26684       case MVT::v2f64:
26685         return std::make_pair(0U, &X86::VR128RegClass);
26686       // AVX types.
26687       case MVT::v32i8:
26688       case MVT::v16i16:
26689       case MVT::v8i32:
26690       case MVT::v4i64:
26691       case MVT::v8f32:
26692       case MVT::v4f64:
26693         return std::make_pair(0U, &X86::VR256RegClass);
26694       case MVT::v8f64:
26695       case MVT::v16f32:
26696       case MVT::v16i32:
26697       case MVT::v8i64:
26698         return std::make_pair(0U, &X86::VR512RegClass);
26699       }
26700       break;
26701     }
26702   }
26703
26704   // Use the default implementation in TargetLowering to convert the register
26705   // constraint into a member of a register class.
26706   std::pair<unsigned, const TargetRegisterClass*> Res;
26707   Res = TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
26708
26709   // Not found as a standard register?
26710   if (!Res.second) {
26711     // Map st(0) -> st(7) -> ST0
26712     if (Constraint.size() == 7 && Constraint[0] == '{' &&
26713         tolower(Constraint[1]) == 's' &&
26714         tolower(Constraint[2]) == 't' &&
26715         Constraint[3] == '(' &&
26716         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
26717         Constraint[5] == ')' &&
26718         Constraint[6] == '}') {
26719
26720       Res.first = X86::FP0+Constraint[4]-'0';
26721       Res.second = &X86::RFP80RegClass;
26722       return Res;
26723     }
26724
26725     // GCC allows "st(0)" to be called just plain "st".
26726     if (StringRef("{st}").equals_lower(Constraint)) {
26727       Res.first = X86::FP0;
26728       Res.second = &X86::RFP80RegClass;
26729       return Res;
26730     }
26731
26732     // flags -> EFLAGS
26733     if (StringRef("{flags}").equals_lower(Constraint)) {
26734       Res.first = X86::EFLAGS;
26735       Res.second = &X86::CCRRegClass;
26736       return Res;
26737     }
26738
26739     // 'A' means EAX + EDX.
26740     if (Constraint == "A") {
26741       Res.first = X86::EAX;
26742       Res.second = &X86::GR32_ADRegClass;
26743       return Res;
26744     }
26745     return Res;
26746   }
26747
26748   // Otherwise, check to see if this is a register class of the wrong value
26749   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
26750   // turn into {ax},{dx}.
26751   // MVT::Other is used to specify clobber names.
26752   if (Res.second->hasType(VT) || VT == MVT::Other)
26753     return Res;   // Correct type already, nothing to do.
26754
26755   // Get a matching integer of the correct size. i.e. "ax" with MVT::32 should
26756   // return "eax". This should even work for things like getting 64bit integer
26757   // registers when given an f64 type.
26758   const TargetRegisterClass *Class = Res.second;
26759   if (Class == &X86::GR8RegClass || Class == &X86::GR16RegClass ||
26760       Class == &X86::GR32RegClass || Class == &X86::GR64RegClass) {
26761     unsigned Size = VT.getSizeInBits();
26762     MVT::SimpleValueType SimpleTy = Size == 1 || Size == 8 ? MVT::i8
26763                                   : Size == 16 ? MVT::i16
26764                                   : Size == 32 ? MVT::i32
26765                                   : Size == 64 ? MVT::i64
26766                                   : MVT::Other;
26767     unsigned DestReg = getX86SubSuperRegisterOrZero(Res.first, SimpleTy);
26768     if (DestReg > 0) {
26769       Res.first = DestReg;
26770       Res.second = SimpleTy == MVT::i8 ? &X86::GR8RegClass
26771                  : SimpleTy == MVT::i16 ? &X86::GR16RegClass
26772                  : SimpleTy == MVT::i32 ? &X86::GR32RegClass
26773                  : &X86::GR64RegClass;
26774       assert(Res.second->contains(Res.first) && "Register in register class");
26775     } else {
26776       // No register found/type mismatch.
26777       Res.first = 0;
26778       Res.second = nullptr;
26779     }
26780   } else if (Class == &X86::FR32RegClass || Class == &X86::FR64RegClass ||
26781              Class == &X86::VR128RegClass || Class == &X86::VR256RegClass ||
26782              Class == &X86::FR32XRegClass || Class == &X86::FR64XRegClass ||
26783              Class == &X86::VR128XRegClass || Class == &X86::VR256XRegClass ||
26784              Class == &X86::VR512RegClass) {
26785     // Handle references to XMM physical registers that got mapped into the
26786     // wrong class.  This can happen with constraints like {xmm0} where the
26787     // target independent register mapper will just pick the first match it can
26788     // find, ignoring the required type.
26789
26790     if (VT == MVT::f32 || VT == MVT::i32)
26791       Res.second = &X86::FR32RegClass;
26792     else if (VT == MVT::f64 || VT == MVT::i64)
26793       Res.second = &X86::FR64RegClass;
26794     else if (X86::VR128RegClass.hasType(VT))
26795       Res.second = &X86::VR128RegClass;
26796     else if (X86::VR256RegClass.hasType(VT))
26797       Res.second = &X86::VR256RegClass;
26798     else if (X86::VR512RegClass.hasType(VT))
26799       Res.second = &X86::VR512RegClass;
26800     else {
26801       // Type mismatch and not a clobber: Return an error;
26802       Res.first = 0;
26803       Res.second = nullptr;
26804     }
26805   }
26806
26807   return Res;
26808 }
26809
26810 int X86TargetLowering::getScalingFactorCost(const DataLayout &DL,
26811                                             const AddrMode &AM, Type *Ty,
26812                                             unsigned AS) const {
26813   // Scaling factors are not free at all.
26814   // An indexed folded instruction, i.e., inst (reg1, reg2, scale),
26815   // will take 2 allocations in the out of order engine instead of 1
26816   // for plain addressing mode, i.e. inst (reg1).
26817   // E.g.,
26818   // vaddps (%rsi,%drx), %ymm0, %ymm1
26819   // Requires two allocations (one for the load, one for the computation)
26820   // whereas:
26821   // vaddps (%rsi), %ymm0, %ymm1
26822   // Requires just 1 allocation, i.e., freeing allocations for other operations
26823   // and having less micro operations to execute.
26824   //
26825   // For some X86 architectures, this is even worse because for instance for
26826   // stores, the complex addressing mode forces the instruction to use the
26827   // "load" ports instead of the dedicated "store" port.
26828   // E.g., on Haswell:
26829   // vmovaps %ymm1, (%r8, %rdi) can use port 2 or 3.
26830   // vmovaps %ymm1, (%r8) can use port 2, 3, or 7.
26831   if (isLegalAddressingMode(DL, AM, Ty, AS))
26832     // Scale represents reg2 * scale, thus account for 1
26833     // as soon as we use a second register.
26834     return AM.Scale != 0;
26835   return -1;
26836 }
26837
26838 bool X86TargetLowering::isIntDivCheap(EVT VT, AttributeSet Attr) const {
26839   // Integer division on x86 is expensive. However, when aggressively optimizing
26840   // for code size, we prefer to use a div instruction, as it is usually smaller
26841   // than the alternative sequence.
26842   // The exception to this is vector division. Since x86 doesn't have vector
26843   // integer division, leaving the division as-is is a loss even in terms of
26844   // size, because it will have to be scalarized, while the alternative code
26845   // sequence can be performed in vector form.
26846   bool OptSize = Attr.hasAttribute(AttributeSet::FunctionIndex,
26847                                    Attribute::MinSize);
26848   return OptSize && !VT.isVector();
26849 }