blob: 6df0fd880f2edbd11d9344e34d334b7735918cad [file] [log] [blame]
Arnold Schwaighofer92226dd2007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengb1712452010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Craig Topper1bf724b2012-02-19 07:15:48 +000016#include "X86ISelLowering.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86.h"
Juergen Ributzka623d2e62013-11-08 23:28:16 +000019#include "X86CallingConv.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000020#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000021#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000022#include "X86TargetObjectFile.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/ADT/SmallSet.h"
24#include "llvm/ADT/Statistic.h"
25#include "llvm/ADT/StringExtras.h"
26#include "llvm/ADT/VariadicFunction.h"
Evan Cheng55d42002011-01-08 01:24:27 +000027#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000029#include "llvm/CodeGen/MachineFunction.h"
30#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000031#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000034#include "llvm/IR/CallingConv.h"
35#include "llvm/IR/Constants.h"
36#include "llvm/IR/DerivedTypes.h"
37#include "llvm/IR/Function.h"
38#include "llvm/IR/GlobalAlias.h"
39#include "llvm/IR/GlobalVariable.h"
40#include "llvm/IR/Instructions.h"
41#include "llvm/IR/Intrinsics.h"
42#include "llvm/IR/LLVMContext.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000043#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000044#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000045#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000046#include "llvm/MC/MCSymbol.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000047#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000048#include "llvm/Support/Debug.h"
49#include "llvm/Support/ErrorHandling.h"
50#include "llvm/Support/MathExtras.h"
Rafael Espindola151ab3e2011-08-30 19:47:04 +000051#include "llvm/Target/TargetOptions.h"
Benjamin Kramer9c683542012-01-30 15:16:21 +000052#include <bitset>
Joerg Sonnenberger78cab942012-08-10 10:53:56 +000053#include <cctype>
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000054using namespace llvm;
55
Evan Chengb1712452010-01-27 06:25:16 +000056STATISTIC(NumTailCalls, "Number of tail calls");
57
Evan Cheng10e86422008-04-25 19:11:04 +000058// Forward declarations.
Andrew Trickac6d9be2013-05-25 02:42:55 +000059static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000060 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000061
Elena Demikhovsky83952512013-07-31 11:35:14 +000062static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
63 SelectionDAG &DAG, SDLoc dl,
64 unsigned vectorWidth) {
65 assert((vectorWidth == 128 || vectorWidth == 256) &&
66 "Unsupported vector width");
David Greenea5f26012011-02-07 19:36:54 +000067 EVT VT = Vec.getValueType();
David Greenea5f26012011-02-07 19:36:54 +000068 EVT ElVT = VT.getVectorElementType();
Elena Demikhovsky83952512013-07-31 11:35:14 +000069 unsigned Factor = VT.getSizeInBits()/vectorWidth;
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000070 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
71 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000072
73 // Extract from UNDEF is UNDEF.
74 if (Vec.getOpcode() == ISD::UNDEF)
Craig Topper767b4f62012-04-22 19:29:34 +000075 return DAG.getUNDEF(ResultVT);
David Greenea5f26012011-02-07 19:36:54 +000076
Elena Demikhovsky83952512013-07-31 11:35:14 +000077 // Extract the relevant vectorWidth bits. Generate an EXTRACT_SUBVECTOR
78 unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +000079
Elena Demikhovsky83952512013-07-31 11:35:14 +000080 // This is the index of the first element of the vectorWidth-bit chunk
Craig Topperb14940a2012-04-22 20:55:18 +000081 // we want.
Elena Demikhovsky83952512013-07-31 11:35:14 +000082 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
Craig Topperb14940a2012-04-22 20:55:18 +000083 * ElemsPerChunk);
David Greenea5f26012011-02-07 19:36:54 +000084
Benjamin Kramer02c2ecf2013-03-07 18:48:40 +000085 // If the input is a buildvector just emit a smaller one.
86 if (Vec.getOpcode() == ISD::BUILD_VECTOR)
87 return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
88 Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
89
Craig Topperb8d9da12012-09-06 06:09:01 +000090 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
Craig Topperb14940a2012-04-22 20:55:18 +000091 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
92 VecIdx);
David Greenea5f26012011-02-07 19:36:54 +000093
Craig Topperb14940a2012-04-22 20:55:18 +000094 return Result;
Elena Demikhovsky83952512013-07-31 11:35:14 +000095
96}
97/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
98/// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
99/// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
100/// instructions or a simple subregister reference. Idx is an index in the
101/// 128 bits we want. It need not be aligned to a 128-bit bounday. That makes
102/// lowering EXTRACT_VECTOR_ELT operations easier.
103static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
104 SelectionDAG &DAG, SDLoc dl) {
Elena Demikhovsky093043c2013-07-31 12:03:08 +0000105 assert((Vec.getValueType().is256BitVector() ||
106 Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
Elena Demikhovsky83952512013-07-31 11:35:14 +0000107 return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
David Greenea5f26012011-02-07 19:36:54 +0000108}
109
Elena Demikhovsky83952512013-07-31 11:35:14 +0000110/// Generate a DAG to grab 256-bits from a 512-bit vector.
111static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
112 SelectionDAG &DAG, SDLoc dl) {
113 assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
114 return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
115}
116
117static SDValue InsertSubVector(SDValue Result, SDValue Vec,
118 unsigned IdxVal, SelectionDAG &DAG,
119 SDLoc dl, unsigned vectorWidth) {
120 assert((vectorWidth == 128 || vectorWidth == 256) &&
121 "Unsupported vector width");
122 // Inserting UNDEF is Result
123 if (Vec.getOpcode() == ISD::UNDEF)
124 return Result;
125 EVT VT = Vec.getValueType();
126 EVT ElVT = VT.getVectorElementType();
127 EVT ResultVT = Result.getValueType();
128
129 // Insert the relevant vectorWidth bits.
130 unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
131
132 // This is the index of the first element of the vectorWidth-bit chunk
133 // we want.
134 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
135 * ElemsPerChunk);
136
137 SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
138 return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
139 VecIdx);
140}
David Greenea5f26012011-02-07 19:36:54 +0000141/// Generate a DAG to put 128-bits into a vector > 128 bits. This
Elena Demikhovsky83952512013-07-31 11:35:14 +0000142/// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
143/// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
David Greene6b381262011-02-09 15:32:06 +0000144/// simple superregister reference. Idx is an index in the 128 bits
145/// we want. It need not be aligned to a 128-bit bounday. That makes
146/// lowering INSERT_VECTOR_ELT operations easier.
Craig Topperb14940a2012-04-22 20:55:18 +0000147static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
148 unsigned IdxVal, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000149 SDLoc dl) {
Elena Demikhovsky83952512013-07-31 11:35:14 +0000150 assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
151 return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
152}
Craig Topper703c38b2012-06-20 05:39:26 +0000153
Elena Demikhovsky83952512013-07-31 11:35:14 +0000154static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
155 unsigned IdxVal, SelectionDAG &DAG,
156 SDLoc dl) {
157 assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
158 return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
David Greenea5f26012011-02-07 19:36:54 +0000159}
160
Craig Topper4c7972d2012-04-22 18:15:59 +0000161/// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
162/// instructions. This is used because creating CONCAT_VECTOR nodes of
163/// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
164/// large BUILD_VECTORS.
165static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
166 unsigned NumElems, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000167 SDLoc dl) {
Craig Topperb14940a2012-04-22 20:55:18 +0000168 SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
169 return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
Craig Topper4c7972d2012-04-22 18:15:59 +0000170}
171
Elena Demikhovsky83952512013-07-31 11:35:14 +0000172static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
173 unsigned NumElems, SelectionDAG &DAG,
174 SDLoc dl) {
175 SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
176 return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
177}
178
Chris Lattnerf0144122009-07-28 03:13:23 +0000179static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000180 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
181 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000182
Evan Cheng2bffee22011-02-01 01:14:13 +0000183 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000184 if (is64Bit)
Bill Wendlinga44489d2012-06-26 10:05:06 +0000185 return new X86_64MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000186 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000187 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000188
Rafael Espindolad6b43a32012-06-19 00:48:28 +0000189 if (Subtarget->isTargetLinux())
190 return new X86LinuxTargetObjectFile();
Evan Cheng203576a2011-07-20 19:50:42 +0000191 if (Subtarget->isTargetELF())
192 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000193 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000194 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000195 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000196}
197
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000198X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000199 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000200 Subtarget = &TM.getSubtarget<X86Subtarget>();
Craig Topper1accb7e2012-01-10 06:54:16 +0000201 X86ScalarSSEf64 = Subtarget->hasSSE2();
202 X86ScalarSSEf32 = Subtarget->hasSSE1();
Micah Villmow3574eca2012-10-08 16:38:25 +0000203 TD = getDataLayout();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000204
Bill Wendling13bbe1f2013-04-05 21:52:40 +0000205 resetOperationActions();
206}
207
208void X86TargetLowering::resetOperationActions() {
209 const TargetMachine &TM = getTargetMachine();
210 static bool FirstTimeThrough = true;
211
212 // If none of the target options have changed, then we don't need to reset the
213 // operation actions.
214 if (!FirstTimeThrough && TO == TM.Options) return;
215
216 if (!FirstTimeThrough) {
217 // Reinitialize the actions.
218 initActions();
219 FirstTimeThrough = false;
220 }
221
222 TO = TM.Options;
223
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000224 // Set up the TargetLowering object.
Craig Topper9e401f22012-04-21 18:58:38 +0000225 static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226
227 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000228 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +0000229 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
230 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000231
Eric Christopherde5e1012011-03-11 01:05:58 +0000232 // For 64-bit since we have so many registers use the ILP scheduler, for
233 // 32-bit code use the register pressure specific scheduling.
Preston Gurdc0f0a932012-05-02 22:02:02 +0000234 // For Atom, always use ILP scheduling.
Chad Rosiera20e1e72012-08-01 18:39:17 +0000235 if (Subtarget->isAtom())
Eric Christopherde5e1012011-03-11 01:05:58 +0000236 setSchedulingPreference(Sched::ILP);
Preston Gurdc0f0a932012-05-02 22:02:02 +0000237 else if (Subtarget->is64Bit())
238 setSchedulingPreference(Sched::ILP);
Eric Christopherde5e1012011-03-11 01:05:58 +0000239 else
240 setSchedulingPreference(Sched::RegPressure);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +0000241 const X86RegisterInfo *RegInfo =
242 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Michael Liaoc5c970e2012-10-31 04:14:09 +0000243 setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
Evan Cheng714554d2006-03-16 21:47:42 +0000244
Preston Gurd9a2cfff2013-03-04 18:13:57 +0000245 // Bypass expensive divides on Atom when compiling with O2
246 if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
Preston Gurd8d662b52012-10-04 21:33:40 +0000247 addBypassSlowDiv(32, 8);
Preston Gurd9a2cfff2013-03-04 18:13:57 +0000248 if (Subtarget->is64Bit())
249 addBypassSlowDiv(64, 16);
250 }
Preston Gurd2e2efd92012-09-04 18:22:17 +0000251
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000252 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000253 // Setup Windows compiler runtime calls.
254 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000255 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000256 setLibcallName(RTLIB::SREM_I64, "_allrem");
257 setLibcallName(RTLIB::UREM_I64, "_aullrem");
258 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000259 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000260 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000261 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
262 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
263 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000264
265 // The _ftol2 runtime function has an unusual calling conv, which
266 // is modeled by a special pseudo-instruction.
267 setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
268 setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
269 setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
270 setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000271 }
272
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000273 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000274 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000275 setUseUnderscoreSetJmp(false);
276 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000277 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000278 // MS runtime is weird: it exports _setjmp, but longjmp!
279 setUseUnderscoreSetJmp(true);
280 setUseUnderscoreLongJmp(false);
281 } else {
282 setUseUnderscoreSetJmp(true);
283 setUseUnderscoreLongJmp(true);
284 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000285
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000286 // Set up the register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000287 addRegisterClass(MVT::i8, &X86::GR8RegClass);
288 addRegisterClass(MVT::i16, &X86::GR16RegClass);
289 addRegisterClass(MVT::i32, &X86::GR32RegClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000290 if (Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +0000291 addRegisterClass(MVT::i64, &X86::GR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000292
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000294
Scott Michelfdc40a02009-02-17 22:15:04 +0000295 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000297 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000298 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000299 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000300 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
301 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000302
303 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000304 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
305 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
306 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
307 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
308 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
309 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000310
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000311 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
312 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000313 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
314 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
315 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000316
Evan Cheng25ab6902006-09-08 06:48:29 +0000317 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000318 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Bill Wendling397ae212012-01-05 02:13:20 +0000319 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000320 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000321 // We have an algorithm for SSE2->double, and we turn this into a
322 // 64-bit FILD followed by conditional FADD for other targets.
323 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000324 // We have an algorithm for SSE2, and we turn this into a 64-bit
325 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000326 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000327 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000328
329 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
330 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000331 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
332 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000333
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000334 if (!TM.Options.UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000335 // SSE has no i16 to fp conversion, only i32
336 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000337 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000338 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000339 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000340 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000341 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
342 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000343 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000344 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000345 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
346 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000347 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000348
Dale Johannesen73328d12007-09-19 23:55:34 +0000349 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
350 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000351 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
352 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000353
Evan Cheng02568ff2006-01-30 22:13:22 +0000354 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
355 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000356 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
357 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000358
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000359 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000360 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000361 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000362 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000363 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000364 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
365 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000366 }
367
368 // Handle FP_TO_UINT by promoting the destination to a larger signed
369 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000370 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
371 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
372 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000373
Evan Cheng25ab6902006-09-08 06:48:29 +0000374 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000375 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
376 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000377 } else if (!TM.Options.UseSoftFloat) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000378 // Since AVX is a superset of SSE3, only check for SSE here.
379 if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000380 // Expand FP_TO_UINT into a select.
381 // FIXME: We would like to use a Custom expander here eventually to do
382 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000383 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000384 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000385 // With SSE3 we can use fisttpll to convert to a signed i64; without
386 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000387 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000388 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000389
Michael J. Spencer1a2d0612012-02-24 19:01:22 +0000390 if (isTargetFTOL()) {
391 // Use the _ftol2 runtime function, which has a pseudo-instruction
392 // to handle its weird calling convention.
393 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Custom);
394 }
395
Chris Lattner399610a2006-12-05 18:22:22 +0000396 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000397 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000398 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
399 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000400 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000401 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000402 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000403 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000404 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000405 }
Chris Lattner21f66852005-12-23 05:15:23 +0000406
Dan Gohmanb00ee212008-02-18 19:34:53 +0000407 // Scalar integer divide and remainder are lowered to use operations that
408 // produce two results, to match the available instructions. This exposes
409 // the two-result form to trivial CSE, which is able to combine x/y and x%y
410 // into a single instruction.
411 //
412 // Scalar integer multiply-high is also lowered to use two-result
413 // operations, to match the available instructions. However, plain multiply
414 // (low) operations are left as Legal, as there are single-result
415 // instructions for this in x86. Using the two-result multiply instructions
416 // when both high and low results are needed must be arranged by dagcombine.
Craig Topper9e401f22012-04-21 18:58:38 +0000417 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000418 MVT VT = IntVTs[i];
419 setOperationAction(ISD::MULHS, VT, Expand);
420 setOperationAction(ISD::MULHU, VT, Expand);
421 setOperationAction(ISD::SDIV, VT, Expand);
422 setOperationAction(ISD::UDIV, VT, Expand);
423 setOperationAction(ISD::SREM, VT, Expand);
424 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000425
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000426 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000427 setOperationAction(ISD::ADDC, VT, Custom);
428 setOperationAction(ISD::ADDE, VT, Custom);
429 setOperationAction(ISD::SUBC, VT, Custom);
430 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000431 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000432
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
434 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Tom Stellard3ef53832013-03-08 15:36:57 +0000435 setOperationAction(ISD::BR_CC , MVT::f32, Expand);
436 setOperationAction(ISD::BR_CC , MVT::f64, Expand);
437 setOperationAction(ISD::BR_CC , MVT::f80, Expand);
438 setOperationAction(ISD::BR_CC , MVT::i8, Expand);
439 setOperationAction(ISD::BR_CC , MVT::i16, Expand);
440 setOperationAction(ISD::BR_CC , MVT::i32, Expand);
441 setOperationAction(ISD::BR_CC , MVT::i64, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000442 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000443 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
445 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
446 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
447 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
448 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
449 setOperationAction(ISD::FREM , MVT::f32 , Expand);
450 setOperationAction(ISD::FREM , MVT::f64 , Expand);
451 setOperationAction(ISD::FREM , MVT::f80 , Expand);
452 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000453
Chandler Carruth77821022011-12-24 12:12:34 +0000454 // Promote the i8 variants and force them on up to i32 which has a shorter
455 // encoding.
456 setOperationAction(ISD::CTTZ , MVT::i8 , Promote);
457 AddPromotedToType (ISD::CTTZ , MVT::i8 , MVT::i32);
458 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i8 , Promote);
459 AddPromotedToType (ISD::CTTZ_ZERO_UNDEF , MVT::i8 , MVT::i32);
Craig Topper909652f2011-10-14 03:21:46 +0000460 if (Subtarget->hasBMI()) {
Chandler Carruthd873a4b2011-12-24 11:11:38 +0000461 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16 , Expand);
462 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32 , Expand);
463 if (Subtarget->is64Bit())
464 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper909652f2011-10-14 03:21:46 +0000465 } else {
Craig Topper909652f2011-10-14 03:21:46 +0000466 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
467 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
468 if (Subtarget->is64Bit())
469 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
470 }
Craig Topper37f21672011-10-11 06:44:02 +0000471
472 if (Subtarget->hasLZCNT()) {
Chandler Carruth77821022011-12-24 12:12:34 +0000473 // When promoting the i8 variants, force them to i32 for a shorter
474 // encoding.
Craig Topper37f21672011-10-11 06:44:02 +0000475 setOperationAction(ISD::CTLZ , MVT::i8 , Promote);
Chandler Carruth77821022011-12-24 12:12:34 +0000476 AddPromotedToType (ISD::CTLZ , MVT::i8 , MVT::i32);
477 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Promote);
478 AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8 , MVT::i32);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000479 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Expand);
480 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Expand);
481 if (Subtarget->is64Bit())
482 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Craig Topper37f21672011-10-11 06:44:02 +0000483 } else {
484 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
485 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
486 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000487 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8 , Custom);
488 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16 , Custom);
489 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32 , Custom);
490 if (Subtarget->is64Bit()) {
Craig Topper37f21672011-10-11 06:44:02 +0000491 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Chandler Carruthacc068e2011-12-24 10:55:54 +0000492 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
493 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000494 }
495
Benjamin Kramer1292c222010-12-04 20:32:23 +0000496 if (Subtarget->hasPOPCNT()) {
497 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
498 } else {
499 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
500 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
501 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
502 if (Subtarget->is64Bit())
503 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
504 }
505
Owen Anderson825b72b2009-08-11 20:47:22 +0000506 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
507 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000508
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000509 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000510 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000511 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000512 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000513 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000514 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
515 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
516 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
517 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
518 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000519 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000520 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
521 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
522 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
523 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000524 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000525 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000526 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000527 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000528 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Hal Finkele9150472013-03-27 19:10:42 +0000529 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Michael Liao6c0e04c2012-10-15 22:39:43 +0000530 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
Michael Liao281ae5a2012-10-17 02:22:27 +0000531 // support continuation, user-level threading, and etc.. As a result, no
Michael Liao6c0e04c2012-10-15 22:39:43 +0000532 // other SjLj exception interfaces are implemented and please don't build
533 // your own exception handling based on them.
534 // LLVM/Clang supports zero-cost DWARF exception handling.
535 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
536 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000537
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000538 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000539 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
540 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
541 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
542 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000543 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000544 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
545 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000546 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000547 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000548 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
549 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
550 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
551 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000552 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000553 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000554 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000555 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
556 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
557 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000558 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
560 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
561 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000562 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000563
Craig Topper1accb7e2012-01-10 06:54:16 +0000564 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000565 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000566
Eli Friedman14648462011-07-27 22:21:52 +0000567 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000568
Mon P Wang63307c32008-05-05 19:05:59 +0000569 // Expand certain atomics
Craig Topper9e401f22012-04-21 18:58:38 +0000570 for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000571 MVT VT = IntVTs[i];
572 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
573 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000574 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000575 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000576
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000577 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000578 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000579 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
580 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
581 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
582 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
583 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
584 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
585 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Michael Liaoe5e8f762012-09-25 18:08:13 +0000586 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
587 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
588 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
589 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000590 }
591
Eli Friedman43f51ae2011-08-26 21:21:21 +0000592 if (Subtarget->hasCmpxchg16b()) {
593 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
594 }
595
Evan Cheng3c992d22006-03-07 02:02:57 +0000596 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000597 if (!Subtarget->isTargetDarwin() &&
598 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000599 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000601 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000602
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000603 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000604 setExceptionPointerRegister(X86::RAX);
605 setExceptionSelectorRegister(X86::RDX);
606 } else {
607 setExceptionPointerRegister(X86::EAX);
608 setExceptionSelectorRegister(X86::EDX);
609 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000610 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
611 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000612
Duncan Sands4a544a72011-09-06 13:37:06 +0000613 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
614 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000615
Owen Anderson825b72b2009-08-11 20:47:22 +0000616 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Shuxin Yang970755e2012-10-19 20:11:16 +0000617 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000618
Nate Begemanacc398c2006-01-25 18:21:52 +0000619 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000620 setOperationAction(ISD::VASTART , MVT::Other, Custom);
621 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Nico Rieck944061c2013-07-29 13:07:06 +0000622 if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
623 // TargetInfo::X86_64ABIBuiltinVaList
Owen Anderson825b72b2009-08-11 20:47:22 +0000624 setOperationAction(ISD::VAARG , MVT::Other, Custom);
625 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000626 } else {
Nico Rieck944061c2013-07-29 13:07:06 +0000627 // TargetInfo::CharPtrBuiltinVaList
Owen Anderson825b72b2009-08-11 20:47:22 +0000628 setOperationAction(ISD::VAARG , MVT::Other, Expand);
629 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000630 }
Evan Chengae642192007-03-02 23:16:35 +0000631
Owen Anderson825b72b2009-08-11 20:47:22 +0000632 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
633 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000634
Yaron Kerenfaf14152013-10-23 23:37:01 +0000635 if (Subtarget->isOSWindows() && !Subtarget->isTargetEnvMacho())
Eric Christopherc967ad82011-08-31 04:17:21 +0000636 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
637 MVT::i64 : MVT::i32, Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000638 else if (TM.Options.EnableSegmentedStacks)
Eric Christopherc967ad82011-08-31 04:17:21 +0000639 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
640 MVT::i64 : MVT::i32, Custom);
641 else
642 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
643 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000644
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000645 if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000646 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000647 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000648 addRegisterClass(MVT::f32, &X86::FR32RegClass);
649 addRegisterClass(MVT::f64, &X86::FR64RegClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000650
Evan Cheng223547a2006-01-31 22:28:30 +0000651 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000652 setOperationAction(ISD::FABS , MVT::f64, Custom);
653 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000654
655 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000656 setOperationAction(ISD::FNEG , MVT::f64, Custom);
657 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000658
Evan Cheng68c47cb2007-01-05 07:55:56 +0000659 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000660 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
661 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000662
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000663 // Lower this to FGETSIGNx86 plus an AND.
664 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
665 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
666
Evan Chengd25e9e82006-02-02 00:28:23 +0000667 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000668 setOperationAction(ISD::FSIN , MVT::f64, Expand);
669 setOperationAction(ISD::FCOS , MVT::f64, Expand);
670 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
671 setOperationAction(ISD::FSIN , MVT::f32, Expand);
672 setOperationAction(ISD::FCOS , MVT::f32, Expand);
673 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000674
Chris Lattnera54aa942006-01-29 06:26:08 +0000675 // Expand FP immediates into loads from the stack, except for the special
676 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000677 addLegalFPImmediate(APFloat(+0.0)); // xorpd
678 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000679 } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000680 // Use SSE for f32, x87 for f64.
681 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000682 addRegisterClass(MVT::f32, &X86::FR32RegClass);
683 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000684
685 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000686 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000687
688 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000690
Owen Anderson825b72b2009-08-11 20:47:22 +0000691 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000692
693 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000694 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
695 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000696
697 // We don't support sin/cos/fmod
Evan Cheng8688a582013-01-29 02:32:37 +0000698 setOperationAction(ISD::FSIN , MVT::f32, Expand);
699 setOperationAction(ISD::FCOS , MVT::f32, Expand);
700 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000701
Nate Begemane1795842008-02-14 08:57:00 +0000702 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000703 addLegalFPImmediate(APFloat(+0.0f)); // xorps
704 addLegalFPImmediate(APFloat(+0.0)); // FLD0
705 addLegalFPImmediate(APFloat(+1.0)); // FLD1
706 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
707 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
708
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000709 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000710 setOperationAction(ISD::FSIN , MVT::f64, Expand);
711 setOperationAction(ISD::FCOS , MVT::f64, Expand);
712 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000713 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000714 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000715 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000716 // Set up the FP register classes.
Craig Topperc9099502012-04-20 06:31:50 +0000717 addRegisterClass(MVT::f64, &X86::RFP64RegClass);
718 addRegisterClass(MVT::f32, &X86::RFP32RegClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000719
Owen Anderson825b72b2009-08-11 20:47:22 +0000720 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
721 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
722 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
723 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000724
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000725 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000726 setOperationAction(ISD::FSIN , MVT::f64, Expand);
727 setOperationAction(ISD::FSIN , MVT::f32, Expand);
728 setOperationAction(ISD::FCOS , MVT::f64, Expand);
729 setOperationAction(ISD::FCOS , MVT::f32, Expand);
730 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
731 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000732 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000733 addLegalFPImmediate(APFloat(+0.0)); // FLD0
734 addLegalFPImmediate(APFloat(+1.0)); // FLD1
735 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
736 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000737 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
738 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
739 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
740 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000741 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000742
Cameron Zwarich33390842011-07-08 21:39:21 +0000743 // We don't support FMA.
744 setOperationAction(ISD::FMA, MVT::f64, Expand);
745 setOperationAction(ISD::FMA, MVT::f32, Expand);
746
Dale Johannesen59a58732007-08-05 18:49:15 +0000747 // Long double always uses X87.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000748 if (!TM.Options.UseSoftFloat) {
Craig Topperc9099502012-04-20 06:31:50 +0000749 addRegisterClass(MVT::f80, &X86::RFP80RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000750 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
751 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000752 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000753 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000754 addLegalFPImmediate(TmpFlt); // FLD0
755 TmpFlt.changeSign();
756 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000757
758 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000759 APFloat TmpFlt2(+1.0);
760 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
761 &ignored);
762 addLegalFPImmediate(TmpFlt2); // FLD1
763 TmpFlt2.changeSign();
764 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
765 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000766
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000767 if (!TM.Options.UnsafeFPMath) {
Evan Cheng8688a582013-01-29 02:32:37 +0000768 setOperationAction(ISD::FSIN , MVT::f80, Expand);
769 setOperationAction(ISD::FCOS , MVT::f80, Expand);
770 setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000771 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000772
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000773 setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
774 setOperationAction(ISD::FCEIL, MVT::f80, Expand);
775 setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
776 setOperationAction(ISD::FRINT, MVT::f80, Expand);
777 setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
Cameron Zwarich33390842011-07-08 21:39:21 +0000778 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000779 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000780
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000781 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000782 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
783 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
784 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000785
Owen Anderson825b72b2009-08-11 20:47:22 +0000786 setOperationAction(ISD::FLOG, MVT::f80, Expand);
787 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
788 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
789 setOperationAction(ISD::FEXP, MVT::f80, Expand);
790 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000791
Mon P Wangf007a8b2008-11-06 05:31:54 +0000792 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000793 // (for widening) or expand (for scalarization). Then we will selectively
794 // turn on ones that can be effectively codegen'd.
Craig Topper55de3392012-11-14 06:41:09 +0000795 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
796 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper49010472012-11-15 06:51:10 +0000797 MVT VT = (MVT::SimpleValueType)i;
Craig Topper55de3392012-11-14 06:41:09 +0000798 setOperationAction(ISD::ADD , VT, Expand);
799 setOperationAction(ISD::SUB , VT, Expand);
800 setOperationAction(ISD::FADD, VT, Expand);
801 setOperationAction(ISD::FNEG, VT, Expand);
802 setOperationAction(ISD::FSUB, VT, Expand);
803 setOperationAction(ISD::MUL , VT, Expand);
804 setOperationAction(ISD::FMUL, VT, Expand);
805 setOperationAction(ISD::SDIV, VT, Expand);
806 setOperationAction(ISD::UDIV, VT, Expand);
807 setOperationAction(ISD::FDIV, VT, Expand);
808 setOperationAction(ISD::SREM, VT, Expand);
809 setOperationAction(ISD::UREM, VT, Expand);
810 setOperationAction(ISD::LOAD, VT, Expand);
811 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
812 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
813 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
814 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
815 setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
816 setOperationAction(ISD::FABS, VT, Expand);
817 setOperationAction(ISD::FSIN, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000818 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000819 setOperationAction(ISD::FCOS, VT, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000820 setOperationAction(ISD::FSINCOS, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000821 setOperationAction(ISD::FREM, VT, Expand);
822 setOperationAction(ISD::FMA, VT, Expand);
823 setOperationAction(ISD::FPOWI, VT, Expand);
824 setOperationAction(ISD::FSQRT, VT, Expand);
825 setOperationAction(ISD::FCOPYSIGN, VT, Expand);
826 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-11-15 06:51:10 +0000827 setOperationAction(ISD::FCEIL, VT, Expand);
828 setOperationAction(ISD::FTRUNC, VT, Expand);
829 setOperationAction(ISD::FRINT, VT, Expand);
830 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000831 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
832 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
833 setOperationAction(ISD::SDIVREM, VT, Expand);
834 setOperationAction(ISD::UDIVREM, VT, Expand);
835 setOperationAction(ISD::FPOW, VT, Expand);
836 setOperationAction(ISD::CTPOP, VT, Expand);
837 setOperationAction(ISD::CTTZ, VT, Expand);
838 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
839 setOperationAction(ISD::CTLZ, VT, Expand);
840 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
841 setOperationAction(ISD::SHL, VT, Expand);
842 setOperationAction(ISD::SRA, VT, Expand);
843 setOperationAction(ISD::SRL, VT, Expand);
844 setOperationAction(ISD::ROTL, VT, Expand);
845 setOperationAction(ISD::ROTR, VT, Expand);
846 setOperationAction(ISD::BSWAP, VT, Expand);
847 setOperationAction(ISD::SETCC, VT, Expand);
848 setOperationAction(ISD::FLOG, VT, Expand);
849 setOperationAction(ISD::FLOG2, VT, Expand);
850 setOperationAction(ISD::FLOG10, VT, Expand);
851 setOperationAction(ISD::FEXP, VT, Expand);
852 setOperationAction(ISD::FEXP2, VT, Expand);
853 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
854 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
855 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
856 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
857 setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
858 setOperationAction(ISD::TRUNCATE, VT, Expand);
859 setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
860 setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
861 setOperationAction(ISD::ANY_EXTEND, VT, Expand);
862 setOperationAction(ISD::VSELECT, VT, Expand);
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000863 for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
864 InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
Craig Topper55de3392012-11-14 06:41:09 +0000865 setTruncStoreAction(VT,
Dan Gohman2e141d72009-12-14 23:40:38 +0000866 (MVT::SimpleValueType)InnerVT, Expand);
Craig Topper55de3392012-11-14 06:41:09 +0000867 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
868 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
869 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000870 }
871
Evan Chengc7ce29b2009-02-13 22:36:38 +0000872 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
873 // with -msoft-float, disable use of MMX as well.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000874 if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
Craig Topperc9099502012-04-20 06:31:50 +0000875 addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000876 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000877 }
878
Dale Johannesen0488fb62010-09-30 23:57:10 +0000879 // MMX-sized vectors (other than x86mmx) are expected to be expanded
880 // into smaller operations.
881 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
882 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
883 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
884 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
885 setOperationAction(ISD::AND, MVT::v8i8, Expand);
886 setOperationAction(ISD::AND, MVT::v4i16, Expand);
887 setOperationAction(ISD::AND, MVT::v2i32, Expand);
888 setOperationAction(ISD::AND, MVT::v1i64, Expand);
889 setOperationAction(ISD::OR, MVT::v8i8, Expand);
890 setOperationAction(ISD::OR, MVT::v4i16, Expand);
891 setOperationAction(ISD::OR, MVT::v2i32, Expand);
892 setOperationAction(ISD::OR, MVT::v1i64, Expand);
893 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
894 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
895 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
896 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
897 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
898 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
899 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
900 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
901 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
902 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
903 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
904 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
905 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000906 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
907 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
908 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
909 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000910
Craig Topper1accb7e2012-01-10 06:54:16 +0000911 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
Craig Topperc9099502012-04-20 06:31:50 +0000912 addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000913
Owen Anderson825b72b2009-08-11 20:47:22 +0000914 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
915 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
916 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
917 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
918 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
919 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000920 setOperationAction(ISD::FABS, MVT::v4f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000921 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
922 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
923 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
924 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
925 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000926 }
927
Craig Topper1accb7e2012-01-10 06:54:16 +0000928 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
Craig Topperc9099502012-04-20 06:31:50 +0000929 addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000930
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000931 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
932 // registers cannot be used even for integer operations.
Craig Topperc9099502012-04-20 06:31:50 +0000933 addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
934 addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
935 addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
936 addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000937
Owen Anderson825b72b2009-08-11 20:47:22 +0000938 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
939 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
940 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
941 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +0000942 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
944 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
945 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
946 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
947 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
948 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
949 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
950 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
951 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
952 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
953 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
954 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +0000955 setOperationAction(ISD::FABS, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000956
Nadav Rotem354efd82011-09-18 14:57:03 +0000957 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000958 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
959 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
960 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000961
Owen Anderson825b72b2009-08-11 20:47:22 +0000962 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
963 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
964 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
965 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
966 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000967
Evan Cheng2c3ae372006-04-12 21:21:57 +0000968 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Jakub Staszak6610b1d2012-04-29 20:52:53 +0000969 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000970 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000971 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000972 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000973 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000974 // Do not attempt to custom lower non-128-bit vectors
975 if (!VT.is128BitVector())
976 continue;
Craig Topper0d1f1762012-08-12 00:34:56 +0000977 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
978 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
979 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000980 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000981
Owen Anderson825b72b2009-08-11 20:47:22 +0000982 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
983 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
984 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
985 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
986 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
987 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000988
Nate Begemancdd1eec2008-02-12 22:51:28 +0000989 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000990 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
991 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000992 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000993
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000994 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Craig Topper31a207a2012-05-04 06:39:13 +0000995 for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +0000996 MVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000997
998 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000999 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001000 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001001
Craig Topper0d1f1762012-08-12 00:34:56 +00001002 setOperationAction(ISD::AND, VT, Promote);
1003 AddPromotedToType (ISD::AND, VT, MVT::v2i64);
1004 setOperationAction(ISD::OR, VT, Promote);
1005 AddPromotedToType (ISD::OR, VT, MVT::v2i64);
1006 setOperationAction(ISD::XOR, VT, Promote);
1007 AddPromotedToType (ISD::XOR, VT, MVT::v2i64);
1008 setOperationAction(ISD::LOAD, VT, Promote);
1009 AddPromotedToType (ISD::LOAD, VT, MVT::v2i64);
1010 setOperationAction(ISD::SELECT, VT, Promote);
1011 AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +00001012 }
Evan Cheng2c3ae372006-04-12 21:21:57 +00001013
Owen Anderson825b72b2009-08-11 20:47:22 +00001014 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +00001015
Evan Cheng2c3ae372006-04-12 21:21:57 +00001016 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +00001017 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
1018 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
1019 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
1020 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +00001021
Owen Anderson825b72b2009-08-11 20:47:22 +00001022 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
1023 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Michael Liaob8150d82012-09-10 18:33:51 +00001024
Michael Liaoa7554632012-10-23 17:36:08 +00001025 setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Custom);
1026 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
Michael Liao991b6a22012-10-24 04:09:32 +00001027 // As there is no 64-bit GPR available, we need build a special custom
1028 // sequence to convert from v2i32 to v2f32.
1029 if (!Subtarget->is64Bit())
1030 setOperationAction(ISD::UINT_TO_FP, MVT::v2f32, Custom);
Michael Liaoa7554632012-10-23 17:36:08 +00001031
Michael Liao9d796db2012-10-10 16:32:15 +00001032 setOperationAction(ISD::FP_EXTEND, MVT::v2f32, Custom);
Michael Liao44c2d612012-10-10 16:53:28 +00001033 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Custom);
Michael Liao9d796db2012-10-10 16:32:15 +00001034
Michael Liaob8150d82012-09-10 18:33:51 +00001035 setLoadExtAction(ISD::EXTLOAD, MVT::v2f32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +00001036 }
Evan Chengc7ce29b2009-02-13 22:36:38 +00001037
Justin Holewinski320185f2013-07-26 13:28:29 +00001038 if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
Benjamin Kramerb6533972011-12-09 15:44:03 +00001039 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
1040 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
1041 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
1042 setOperationAction(ISD::FRINT, MVT::f32, Legal);
1043 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
1044 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
1045 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
1046 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
1047 setOperationAction(ISD::FRINT, MVT::f64, Legal);
1048 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
1049
Craig Topper12fb5c62012-09-08 17:42:27 +00001050 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001051 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
1052 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
1053 setOperationAction(ISD::FRINT, MVT::v4f32, Legal);
1054 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001055 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001056 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
1057 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
1058 setOperationAction(ISD::FRINT, MVT::v2f64, Legal);
1059 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001060
Nate Begeman14d12ca2008-02-11 04:19:36 +00001061 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +00001062 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001063
Nadav Rotemfbad25e2011-09-11 15:02:23 +00001064 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
1065 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
1066 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
1067 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
1068 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +00001069
Nate Begeman14d12ca2008-02-11 04:19:36 +00001070 // i8 and i16 vectors are custom , because the source register and source
1071 // source memory operand types are not the same width. f32 vectors are
1072 // custom since the immediate controlling the insert encodes additional
1073 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +00001074 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
1075 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
1076 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
1077 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001078
Owen Anderson825b72b2009-08-11 20:47:22 +00001079 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1080 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1081 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1082 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001083
Pete Coopera77214a2011-11-14 19:38:42 +00001084 // FIXME: these should be Legal but thats only for the case where
Chad Rosier30450e82011-12-22 22:35:21 +00001085 // the index is constant. For now custom expand to deal with that.
Nate Begeman14d12ca2008-02-11 04:19:36 +00001086 if (Subtarget->is64Bit()) {
Pete Coopera77214a2011-11-14 19:38:42 +00001087 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
1088 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +00001089 }
1090 }
Evan Cheng470a6ad2006-02-22 02:26:30 +00001091
Craig Topper1accb7e2012-01-10 06:54:16 +00001092 if (Subtarget->hasSSE2()) {
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001093 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001094 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001095
Nadav Rotem43012222011-05-11 08:12:09 +00001096 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001097 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001098
Nadav Rotem43012222011-05-11 08:12:09 +00001099 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
Eli Friedmanf6aa6b12011-11-01 21:18:39 +00001100 setOperationAction(ISD::SRA, MVT::v16i8, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001101
Michael Liao5c5f1902013-03-20 02:28:20 +00001102 // In the customized shift lowering, the legal cases in AVX2 will be
1103 // recognized.
1104 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
1105 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001106
Michael Liao5c5f1902013-03-20 02:28:20 +00001107 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
1108 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001109
Michael Liao5c5f1902013-03-20 02:28:20 +00001110 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001111
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001112 setOperationAction(ISD::SDIV, MVT::v8i16, Custom);
1113 setOperationAction(ISD::SDIV, MVT::v4i32, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +00001114 }
1115
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001116 if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
Craig Topperc9099502012-04-20 06:31:50 +00001117 addRegisterClass(MVT::v32i8, &X86::VR256RegClass);
1118 addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1119 addRegisterClass(MVT::v8i32, &X86::VR256RegClass);
1120 addRegisterClass(MVT::v8f32, &X86::VR256RegClass);
1121 addRegisterClass(MVT::v4i64, &X86::VR256RegClass);
1122 addRegisterClass(MVT::v4f64, &X86::VR256RegClass);
David Greened94c1012009-06-29 22:50:51 +00001123
Owen Anderson825b72b2009-08-11 20:47:22 +00001124 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001125 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
1126 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +00001127
Owen Anderson825b72b2009-08-11 20:47:22 +00001128 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
1129 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
1130 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
1131 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
1132 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001133 setOperationAction(ISD::FFLOOR, MVT::v8f32, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001134 setOperationAction(ISD::FCEIL, MVT::v8f32, Legal);
1135 setOperationAction(ISD::FTRUNC, MVT::v8f32, Legal);
1136 setOperationAction(ISD::FRINT, MVT::v8f32, Legal);
1137 setOperationAction(ISD::FNEARBYINT, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001138 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001139 setOperationAction(ISD::FABS, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001140
Owen Anderson825b72b2009-08-11 20:47:22 +00001141 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
1142 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
1143 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
1144 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
1145 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
Craig Topper12fb5c62012-09-08 17:42:27 +00001146 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
Craig Topperd5775522012-11-16 06:37:56 +00001147 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal);
1148 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
1149 setOperationAction(ISD::FRINT, MVT::v4f64, Legal);
1150 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001151 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
Craig Topper43620672012-09-08 07:31:51 +00001152 setOperationAction(ISD::FABS, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001153
Michael Liaobedcbd42012-10-16 18:14:11 +00001154 setOperationAction(ISD::FP_TO_SINT, MVT::v8i16, Custom);
1155
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001156 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
Benjamin Kramerb8f0d892013-03-31 12:49:15 +00001157 setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001158 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001159 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001160
Michael Liaoa7554632012-10-23 17:36:08 +00001161 setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Custom);
1162 setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Custom);
1163
Michael Liaob8150d82012-09-10 18:33:51 +00001164 setLoadExtAction(ISD::EXTLOAD, MVT::v4f32, Legal);
1165
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001166 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1167 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1168
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001169 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1170 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1171
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001172 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001173 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001174
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001175 setOperationAction(ISD::SDIV, MVT::v16i16, Custom);
1176
Duncan Sands28b77e92011-09-06 19:07:46 +00001177 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1178 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1179 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1180 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001181
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001182 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1183 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1184 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1185
Craig Topperaaa643c2011-11-09 07:28:55 +00001186 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1187 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1188 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1189 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001190
Nadav Rotem0509db22012-12-28 05:45:24 +00001191 setOperationAction(ISD::SIGN_EXTEND, MVT::v4i64, Custom);
1192 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001193 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
Nadav Rotem0509db22012-12-28 05:45:24 +00001194 setOperationAction(ISD::ZERO_EXTEND, MVT::v4i64, Custom);
1195 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001196 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i16, Custom);
Nadav Rotem0509db22012-12-28 05:45:24 +00001197 setOperationAction(ISD::ANY_EXTEND, MVT::v4i64, Custom);
1198 setOperationAction(ISD::ANY_EXTEND, MVT::v8i32, Custom);
Benjamin Kramerbb41c752013-10-23 21:06:07 +00001199 setOperationAction(ISD::ANY_EXTEND, MVT::v16i16, Custom);
1200 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1201 setOperationAction(ISD::TRUNCATE, MVT::v8i16, Custom);
1202 setOperationAction(ISD::TRUNCATE, MVT::v4i32, Custom);
Nadav Rotem1a330af2012-12-27 22:47:16 +00001203
Craig Topperbf404372012-08-31 15:40:30 +00001204 if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
Craig Topper3dcefc82012-11-21 05:36:24 +00001205 setOperationAction(ISD::FMA, MVT::v8f32, Legal);
1206 setOperationAction(ISD::FMA, MVT::v4f64, Legal);
1207 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
1208 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
1209 setOperationAction(ISD::FMA, MVT::f32, Legal);
1210 setOperationAction(ISD::FMA, MVT::f64, Legal);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001211 }
Craig Topper880ef452012-08-11 22:34:26 +00001212
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001213 if (Subtarget->hasInt256()) {
Craig Topperaaa643c2011-11-09 07:28:55 +00001214 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1215 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1216 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1217 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001218
Craig Topperaaa643c2011-11-09 07:28:55 +00001219 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1220 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1221 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1222 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001223
Craig Topperaaa643c2011-11-09 07:28:55 +00001224 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1225 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1226 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001227 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001228
1229 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001230
Nadav Rotem13f8cf52013-01-09 05:14:33 +00001231 setOperationAction(ISD::SDIV, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001232 } else {
1233 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1234 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1235 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1236 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1237
1238 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1239 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1240 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1241 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1242
1243 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1244 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1245 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1246 // Don't lower v32i8 because there is no 128-bit byte mul
1247 }
Craig Topper13894fa2011-08-24 06:14:18 +00001248
Michael Liao5c5f1902013-03-20 02:28:20 +00001249 // In the customized shift lowering, the legal cases in AVX2 will be
1250 // recognized.
1251 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1252 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1253
1254 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1255 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1256
1257 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1258
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001259 // Custom lower several nodes for 256-bit types.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001260 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1261 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001262 MVT VT = (MVT::SimpleValueType)i;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001263
1264 // Extract subvector is special because the value type
1265 // (result) is 128-bit but the source is 256-bit wide.
1266 if (VT.is128BitVector())
Craig Topper0d1f1762012-08-12 00:34:56 +00001267 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001268
1269 // Do not attempt to custom lower other non-256-bit vectors
1270 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001271 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001272
Craig Topper0d1f1762012-08-12 00:34:56 +00001273 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1274 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1275 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1276 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1277 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1278 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1279 setOperationAction(ISD::CONCAT_VECTORS, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001280 }
1281
David Greene54d8eba2011-01-27 22:38:56 +00001282 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001283 for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
Craig Topper0d1f1762012-08-12 00:34:56 +00001284 MVT VT = (MVT::SimpleValueType)i;
David Greene54d8eba2011-01-27 22:38:56 +00001285
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001286 // Do not attempt to promote non-256-bit vectors
1287 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001288 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001289
Craig Topper0d1f1762012-08-12 00:34:56 +00001290 setOperationAction(ISD::AND, VT, Promote);
1291 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
1292 setOperationAction(ISD::OR, VT, Promote);
1293 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
1294 setOperationAction(ISD::XOR, VT, Promote);
1295 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
1296 setOperationAction(ISD::LOAD, VT, Promote);
1297 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
1298 setOperationAction(ISD::SELECT, VT, Promote);
1299 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001300 }
David Greene9b9838d2009-06-29 16:47:10 +00001301 }
1302
Elena Demikhovsky83952512013-07-31 11:35:14 +00001303 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1304 addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1305 addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1306 addRegisterClass(MVT::v8i64, &X86::VR512RegClass);
1307 addRegisterClass(MVT::v8f64, &X86::VR512RegClass);
1308
1309 addRegisterClass(MVT::v8i1, &X86::VK8RegClass);
1310 addRegisterClass(MVT::v16i1, &X86::VK16RegClass);
1311
1312 setLoadExtAction(ISD::EXTLOAD, MVT::v8f32, Legal);
1313 setOperationAction(ISD::LOAD, MVT::v16f32, Legal);
1314 setOperationAction(ISD::LOAD, MVT::v8f64, Legal);
1315 setOperationAction(ISD::LOAD, MVT::v8i64, Legal);
1316 setOperationAction(ISD::LOAD, MVT::v16i32, Legal);
1317 setOperationAction(ISD::LOAD, MVT::v16i1, Legal);
1318
1319 setOperationAction(ISD::FADD, MVT::v16f32, Legal);
1320 setOperationAction(ISD::FSUB, MVT::v16f32, Legal);
1321 setOperationAction(ISD::FMUL, MVT::v16f32, Legal);
1322 setOperationAction(ISD::FDIV, MVT::v16f32, Legal);
1323 setOperationAction(ISD::FSQRT, MVT::v16f32, Legal);
1324 setOperationAction(ISD::FNEG, MVT::v16f32, Custom);
1325
1326 setOperationAction(ISD::FADD, MVT::v8f64, Legal);
1327 setOperationAction(ISD::FSUB, MVT::v8f64, Legal);
1328 setOperationAction(ISD::FMUL, MVT::v8f64, Legal);
1329 setOperationAction(ISD::FDIV, MVT::v8f64, Legal);
1330 setOperationAction(ISD::FSQRT, MVT::v8f64, Legal);
1331 setOperationAction(ISD::FNEG, MVT::v8f64, Custom);
1332 setOperationAction(ISD::FMA, MVT::v8f64, Legal);
1333 setOperationAction(ISD::FMA, MVT::v16f32, Legal);
1334 setOperationAction(ISD::SDIV, MVT::v16i32, Custom);
1335
Elena Demikhovsky714319a2013-10-06 13:11:09 +00001336 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Legal);
1337 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Legal);
1338 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Legal);
1339 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Legal);
1340 if (Subtarget->is64Bit()) {
1341 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Legal);
1342 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Legal);
1343 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Legal);
1344 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Legal);
1345 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001346 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::SINT_TO_FP, MVT::v16i32, Legal);
1350 setOperationAction(ISD::UINT_TO_FP, MVT::v16i32, Legal);
1351 setOperationAction(ISD::UINT_TO_FP, MVT::v8i32, Legal);
1352 setOperationAction(ISD::FP_ROUND, MVT::v8f32, Legal);
1353 setOperationAction(ISD::FP_EXTEND, MVT::v8f32, Legal);
1354
1355 setOperationAction(ISD::TRUNCATE, MVT::i1, Legal);
1356 setOperationAction(ISD::TRUNCATE, MVT::v16i8, Custom);
1357 setOperationAction(ISD::TRUNCATE, MVT::v8i32, Custom);
1358 setOperationAction(ISD::TRUNCATE, MVT::v8i1, Custom);
1359 setOperationAction(ISD::TRUNCATE, MVT::v16i1, Custom);
1360 setOperationAction(ISD::ZERO_EXTEND, MVT::v16i32, Custom);
1361 setOperationAction(ISD::ZERO_EXTEND, MVT::v8i64, Custom);
1362 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i32, Custom);
1363 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i64, Custom);
1364 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i8, Custom);
1365 setOperationAction(ISD::SIGN_EXTEND, MVT::v8i16, Custom);
1366 setOperationAction(ISD::SIGN_EXTEND, MVT::v16i16, Custom);
1367
1368 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f64, Custom);
1369 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i64, Custom);
1370 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16f32, Custom);
1371 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i32, Custom);
1372 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i1, Custom);
1373
1374 setOperationAction(ISD::SETCC, MVT::v16i1, Custom);
1375 setOperationAction(ISD::SETCC, MVT::v8i1, Custom);
1376
1377 setOperationAction(ISD::MUL, MVT::v8i64, Custom);
1378
1379 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i1, Custom);
1380 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i1, Custom);
1381 setOperationAction(ISD::SELECT, MVT::v8f64, Custom);
1382 setOperationAction(ISD::SELECT, MVT::v8i64, Custom);
1383 setOperationAction(ISD::SELECT, MVT::v16f32, Custom);
1384
1385 setOperationAction(ISD::ADD, MVT::v8i64, Legal);
1386 setOperationAction(ISD::ADD, MVT::v16i32, Legal);
1387
1388 setOperationAction(ISD::SUB, MVT::v8i64, Legal);
1389 setOperationAction(ISD::SUB, MVT::v16i32, Legal);
1390
1391 setOperationAction(ISD::MUL, MVT::v16i32, Legal);
1392
1393 setOperationAction(ISD::SRL, MVT::v8i64, Custom);
1394 setOperationAction(ISD::SRL, MVT::v16i32, Custom);
1395
1396 setOperationAction(ISD::SHL, MVT::v8i64, Custom);
1397 setOperationAction(ISD::SHL, MVT::v16i32, Custom);
1398
1399 setOperationAction(ISD::SRA, MVT::v8i64, Custom);
1400 setOperationAction(ISD::SRA, MVT::v16i32, Custom);
1401
1402 setOperationAction(ISD::AND, MVT::v8i64, Legal);
1403 setOperationAction(ISD::OR, MVT::v8i64, Legal);
1404 setOperationAction(ISD::XOR, MVT::v8i64, Legal);
Elena Demikhovskyf12df0a2013-08-19 13:26:14 +00001405 setOperationAction(ISD::AND, MVT::v16i32, Legal);
1406 setOperationAction(ISD::OR, MVT::v16i32, Legal);
1407 setOperationAction(ISD::XOR, MVT::v16i32, Legal);
Elena Demikhovsky83952512013-07-31 11:35:14 +00001408
1409 // Custom lower several nodes.
1410 for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1411 i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1412 MVT VT = (MVT::SimpleValueType)i;
1413
Elena Demikhovsky07801792013-08-01 13:34:06 +00001414 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00001415 // Extract subvector is special because the value type
1416 // (result) is 256/128-bit but the source is 512-bit wide.
1417 if (VT.is128BitVector() || VT.is256BitVector())
1418 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1419
1420 if (VT.getVectorElementType() == MVT::i1)
1421 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1422
1423 // Do not attempt to custom lower other non-512-bit vectors
1424 if (!VT.is512BitVector())
1425 continue;
1426
Elena Demikhovsky07801792013-08-01 13:34:06 +00001427 if ( EltSize >= 32) {
1428 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
1429 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
1430 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1431 setOperationAction(ISD::VSELECT, VT, Legal);
1432 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1433 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
1434 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1435 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00001436 }
1437 for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1438 MVT VT = (MVT::SimpleValueType)i;
1439
1440 // Do not attempt to promote non-256-bit vectors
1441 if (!VT.is512BitVector())
1442 continue;
1443
Elena Demikhovsky83952512013-07-31 11:35:14 +00001444 setOperationAction(ISD::SELECT, VT, Promote);
1445 AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1446 }
1447 }// has AVX-512
1448
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001449 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1450 // of this type with custom code.
Jakub Staszak6610b1d2012-04-29 20:52:53 +00001451 for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1452 VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001453 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1454 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001455 }
1456
Evan Cheng6be2c582006-04-05 23:38:46 +00001457 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001458 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Benjamin Kramerb9bee042012-07-12 09:31:43 +00001459 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +00001460 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001461
Eli Friedman962f5492010-06-02 19:35:46 +00001462 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1463 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001464 //
Eli Friedman962f5492010-06-02 19:35:46 +00001465 // FIXME: We really should do custom legalization for addition and
1466 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1467 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001468 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1469 // Add/Sub/Mul with overflow operations are custom lowered.
1470 MVT VT = IntVTs[i];
1471 setOperationAction(ISD::SADDO, VT, Custom);
1472 setOperationAction(ISD::UADDO, VT, Custom);
1473 setOperationAction(ISD::SSUBO, VT, Custom);
1474 setOperationAction(ISD::USUBO, VT, Custom);
1475 setOperationAction(ISD::SMULO, VT, Custom);
1476 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001477 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001478
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001479 // There are no 8-bit 3-address imul/mul instructions
1480 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1481 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001482
Evan Chengd54f2d52009-03-31 19:38:51 +00001483 if (!Subtarget->is64Bit()) {
1484 // These libcalls are not available in 32-bit.
1485 setLibcallName(RTLIB::SHL_I128, 0);
1486 setLibcallName(RTLIB::SRL_I128, 0);
1487 setLibcallName(RTLIB::SRA_I128, 0);
1488 }
1489
Evan Cheng8688a582013-01-29 02:32:37 +00001490 // Combine sin / cos into one node or libcall if possible.
1491 if (Subtarget->hasSinCos()) {
1492 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1493 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Evan Chenga66f40a2013-01-30 22:56:35 +00001494 if (Subtarget->isTargetDarwin()) {
Evan Cheng8688a582013-01-29 02:32:37 +00001495 // For MacOSX, we don't want to the normal expansion of a libcall to
1496 // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1497 // traffic.
1498 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1499 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1500 }
1501 }
1502
Evan Cheng206ee9d2006-07-07 08:33:52 +00001503 // We have target-specific dag combine patterns for the following nodes:
1504 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001505 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001506 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001507 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001508 setTargetDAGCombine(ISD::SHL);
1509 setTargetDAGCombine(ISD::SRA);
1510 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001511 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001512 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001513 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001514 setTargetDAGCombine(ISD::FADD);
1515 setTargetDAGCombine(ISD::FSUB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00001516 setTargetDAGCombine(ISD::FMA);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001517 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001518 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001519 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001520 setTargetDAGCombine(ISD::ZERO_EXTEND);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00001521 setTargetDAGCombine(ISD::ANY_EXTEND);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +00001522 setTargetDAGCombine(ISD::SIGN_EXTEND);
Elena Demikhovsky52981c42013-02-20 12:42:54 +00001523 setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
Elena Demikhovsky3ae98152012-02-01 07:56:44 +00001524 setTargetDAGCombine(ISD::TRUNCATE);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001525 setTargetDAGCombine(ISD::SINT_TO_FP);
Chad Rosiera73b6fc2012-04-27 22:33:25 +00001526 setTargetDAGCombine(ISD::SETCC);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001527 if (Subtarget->is64Bit())
1528 setTargetDAGCombine(ISD::MUL);
Manman Ren92363622012-06-07 22:39:10 +00001529 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001530
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001531 computeRegisterProperties();
1532
Evan Cheng05219282011-01-06 06:52:41 +00001533 // On Darwin, -Os means optimize for size without hurting performance,
1534 // do not reduce the limit.
Jim Grosbach3450f802013-02-20 21:13:59 +00001535 MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1536 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1537 MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1538 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1539 MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1540 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001541 setPrefLoopAlignment(4); // 2^4 bytes.
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001542
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001543 // Predictable cmov don't hurt on atom because it's in-order.
Jim Grosbach3450f802013-02-20 21:13:59 +00001544 PredictableSelectIsExpensive = !Subtarget->isAtom();
Benjamin Krameraaf723d2012-05-05 12:49:14 +00001545
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001546 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001547}
1548
Matt Arsenault225ed702013-05-18 00:21:46 +00001549EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Juergen Ributzkac7e77f92013-11-13 01:57:54 +00001550 if (!VT.isVector())
1551 return MVT::i8;
1552
1553 const TargetMachine &TM = getTargetMachine();
1554 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512())
1555 switch(VT.getVectorNumElements()) {
1556 case 8: return MVT::v8i1;
1557 case 16: return MVT::v16i1;
1558 }
1559
Duncan Sands28b77e92011-09-06 19:07:46 +00001560 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001561}
1562
Evan Cheng29286502008-01-23 23:17:41 +00001563/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1564/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001565static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001566 if (MaxAlign == 16)
1567 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001568 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001569 if (VTy->getBitWidth() == 128)
1570 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001571 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001572 unsigned EltAlign = 0;
1573 getMaxByValAlign(ATy->getElementType(), EltAlign);
1574 if (EltAlign > MaxAlign)
1575 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001576 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001577 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1578 unsigned EltAlign = 0;
1579 getMaxByValAlign(STy->getElementType(i), EltAlign);
1580 if (EltAlign > MaxAlign)
1581 MaxAlign = EltAlign;
1582 if (MaxAlign == 16)
1583 break;
1584 }
1585 }
Evan Cheng29286502008-01-23 23:17:41 +00001586}
1587
1588/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1589/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001590/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1591/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001592unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001593 if (Subtarget->is64Bit()) {
1594 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001595 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001596 if (TyAlign > 8)
1597 return TyAlign;
1598 return 8;
1599 }
1600
Evan Cheng29286502008-01-23 23:17:41 +00001601 unsigned Align = 4;
Craig Topper1accb7e2012-01-10 06:54:16 +00001602 if (Subtarget->hasSSE1())
Dale Johannesen0c191872008-02-08 19:48:20 +00001603 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001604 return Align;
1605}
Chris Lattner2b02a442007-02-25 08:29:00 +00001606
Evan Chengf0df0312008-05-15 08:39:06 +00001607/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001608/// and store operations as a result of memset, memcpy, and memmove
1609/// lowering. If DstAlign is zero that means it's safe to destination
1610/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1611/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00001612/// probably because the source does not need to be loaded. If 'IsMemset' is
1613/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1614/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1615/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001616/// It returns EVT::Other if the type should be determined using generic
1617/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001618EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001619X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1620 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00001621 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00001622 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001623 MachineFunction &MF) const {
Dan Gohman37f32ee2010-04-16 20:11:05 +00001624 const Function *F = MF.getFunction();
Evan Cheng946a3a92012-12-12 02:34:41 +00001625 if ((!IsMemset || ZeroMemset) &&
Bill Wendling831737d2012-12-30 10:32:01 +00001626 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1627 Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001628 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001629 (Subtarget->isUnalignedMemAccessFast() ||
1630 ((DstAlign == 0 || DstAlign >= 16) &&
Benjamin Kramer2dbe9292012-11-14 20:08:40 +00001631 (SrcAlign == 0 || SrcAlign >= 16)))) {
1632 if (Size >= 32) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001633 if (Subtarget->hasInt256())
Craig Topper562659f2012-01-13 08:32:21 +00001634 return MVT::v8i32;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00001635 if (Subtarget->hasFp256())
Craig Topper562659f2012-01-13 08:32:21 +00001636 return MVT::v8f32;
1637 }
Craig Topper1accb7e2012-01-10 06:54:16 +00001638 if (Subtarget->hasSSE2())
Evan Cheng255f20f2010-04-01 06:04:33 +00001639 return MVT::v4i32;
Craig Topper1accb7e2012-01-10 06:54:16 +00001640 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001641 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001642 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001643 !Subtarget->is64Bit() &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001644 Subtarget->hasSSE2()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001645 // Do not use f64 to lower memcpy if source is string constant. It's
1646 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001647 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001648 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001649 }
Evan Chengf0df0312008-05-15 08:39:06 +00001650 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001651 return MVT::i64;
1652 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001653}
1654
Evan Cheng7d342672012-12-12 01:32:07 +00001655bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001656 if (VT == MVT::f32)
1657 return X86ScalarSSEf32;
1658 else if (VT == MVT::f64)
1659 return X86ScalarSSEf64;
Evan Cheng7d342672012-12-12 01:32:07 +00001660 return true;
Evan Cheng61f4dfe2012-12-12 00:42:09 +00001661}
1662
Evan Cheng376642e2012-12-10 23:21:26 +00001663bool
1664X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1665 if (Fast)
1666 *Fast = Subtarget->isUnalignedMemAccessFast();
1667 return true;
1668}
1669
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001670/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1671/// current function. The returned value is a member of the
1672/// MachineJumpTableInfo::JTEntryKind enum.
1673unsigned X86TargetLowering::getJumpTableEncoding() const {
1674 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1675 // symbol.
1676 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1677 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001678 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001679
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001680 // Otherwise, use the normal jump table encoding heuristics.
1681 return TargetLowering::getJumpTableEncoding();
1682}
1683
Chris Lattnerc64daab2010-01-26 05:02:42 +00001684const MCExpr *
1685X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1686 const MachineBasicBlock *MBB,
1687 unsigned uid,MCContext &Ctx) const{
1688 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1689 Subtarget->isPICStyleGOT());
1690 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1691 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001692 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1693 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001694}
1695
Evan Chengcc415862007-11-09 01:32:10 +00001696/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1697/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001698SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001699 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001700 if (!Subtarget->is64Bit())
Andrew Trickac6d9be2013-05-25 02:42:55 +00001701 // This doesn't have SDLoc associated with it, but is not really the
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001702 // same as a Register.
Andrew Trickac6d9be2013-05-25 02:42:55 +00001703 return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001704 return Table;
1705}
1706
Chris Lattner589c6f62010-01-26 06:28:43 +00001707/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1708/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1709/// MCExpr.
1710const MCExpr *X86TargetLowering::
1711getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1712 MCContext &Ctx) const {
1713 // X86-64 uses RIP relative addressing based on the jump table label.
1714 if (Subtarget->isPICStyleRIPRel())
1715 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1716
1717 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001718 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001719}
1720
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001721// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001722std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglund03405572012-12-19 11:30:36 +00001723X86TargetLowering::findRepresentativeClass(MVT VT) const{
Evan Chengdee81012010-07-26 21:50:05 +00001724 const TargetRegisterClass *RRC = 0;
1725 uint8_t Cost = 1;
Patrik Hagglund03405572012-12-19 11:30:36 +00001726 switch (VT.SimpleTy) {
Evan Chengdee81012010-07-26 21:50:05 +00001727 default:
1728 return TargetLowering::findRepresentativeClass(VT);
1729 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +00001730 RRC = Subtarget->is64Bit() ?
1731 (const TargetRegisterClass*)&X86::GR64RegClass :
1732 (const TargetRegisterClass*)&X86::GR32RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001733 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001734 case MVT::x86mmx:
Craig Topperc9099502012-04-20 06:31:50 +00001735 RRC = &X86::VR64RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001736 break;
1737 case MVT::f32: case MVT::f64:
1738 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1739 case MVT::v4f32: case MVT::v2f64:
1740 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1741 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +00001742 RRC = &X86::VR128RegClass;
Evan Chengdee81012010-07-26 21:50:05 +00001743 break;
1744 }
1745 return std::make_pair(RRC, Cost);
1746}
1747
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001748bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1749 unsigned &Offset) const {
1750 if (!Subtarget->isTargetLinux())
1751 return false;
1752
1753 if (Subtarget->is64Bit()) {
1754 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1755 Offset = 0x28;
1756 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1757 AddressSpace = 256;
1758 else
1759 AddressSpace = 257;
1760 } else {
1761 // %gs:0x14 on i386
1762 Offset = 0x14;
1763 AddressSpace = 256;
1764 }
1765 return true;
1766}
1767
Chris Lattner2b02a442007-02-25 08:29:00 +00001768//===----------------------------------------------------------------------===//
1769// Return Value Calling Convention Implementation
1770//===----------------------------------------------------------------------===//
1771
Chris Lattner59ed56b2007-02-28 04:55:35 +00001772#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001773
Michael J. Spencerec38de22010-10-10 22:04:20 +00001774bool
Eric Christopher471e4222011-06-08 23:55:35 +00001775X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001776 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001777 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001778 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001779 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001780 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001781 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001782 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001783}
1784
Juergen Ributzkad4f5a612013-11-09 01:51:33 +00001785const uint16_t *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1786 static const uint16_t ScratchRegs[] = { X86::R11, 0 };
1787 return ScratchRegs;
1788}
1789
Dan Gohman98ca4f22009-08-05 01:29:28 +00001790SDValue
1791X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001792 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001793 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001794 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001795 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001796 MachineFunction &MF = DAG.getMachineFunction();
1797 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001798
Chris Lattner9774c912007-02-27 05:28:59 +00001799 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001800 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001801 RVLocs, *DAG.getContext());
1802 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001803
Dan Gohman475871a2008-07-27 21:46:04 +00001804 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001805 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001806 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1807 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001808 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1809 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001810
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001811 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001812 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1813 CCValAssign &VA = RVLocs[i];
1814 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001815 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001816 EVT ValVT = ValToCopy.getValueType();
1817
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001818 // Promote values to the appropriate types
1819 if (VA.getLocInfo() == CCValAssign::SExt)
1820 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1821 else if (VA.getLocInfo() == CCValAssign::ZExt)
1822 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1823 else if (VA.getLocInfo() == CCValAssign::AExt)
1824 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1825 else if (VA.getLocInfo() == CCValAssign::BCvt)
1826 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1827
Dale Johannesenc4510512010-09-24 19:05:48 +00001828 // If this is x86-64, and we disabled SSE, we can't return FP values,
1829 // or SSE or MMX vectors.
1830 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1831 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001832 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001833 report_fatal_error("SSE register return with SSE disabled");
1834 }
1835 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1836 // llvm-gcc has never done it right and no one has noticed, so this
1837 // should be OK for now.
1838 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001839 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001840 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001841
Chris Lattner447ff682008-03-11 03:23:40 +00001842 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1843 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001844 if (VA.getLocReg() == X86::ST0 ||
1845 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001846 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1847 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001848 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001849 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001850 RetOps.push_back(ValToCopy);
1851 // Don't emit a copytoreg.
1852 continue;
1853 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001854
Evan Cheng242b38b2009-02-23 09:03:22 +00001855 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1856 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001857 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001858 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001859 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001860 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001861 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1862 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001863 // If we don't have SSE2 available, convert to v4f32 so the generated
1864 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001865 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001866 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001867 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001868 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001869 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001870
Dale Johannesendd64c412009-02-04 00:33:20 +00001871 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001872 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001873 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001874 }
Dan Gohman61a92132008-04-21 23:59:07 +00001875
Eli Benderskya5597f02013-01-25 22:07:43 +00001876 // The x86-64 ABIs require that for returning structs by value we copy
1877 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001878 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001879 // We saved the argument into a virtual register in the entry block,
1880 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001881 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1882 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001883 MachineFunction &MF = DAG.getMachineFunction();
1884 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1885 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001886 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001887 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001888 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001889
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001890 unsigned RetValReg
1891 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1892 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001893 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001894 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001895
Eli Benderskya5597f02013-01-25 22:07:43 +00001896 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001897 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001898 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001899
Chris Lattner447ff682008-03-11 03:23:40 +00001900 RetOps[0] = Chain; // Update chain.
1901
1902 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001904 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001905
1906 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001907 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001908}
1909
Evan Chengbf010eb2012-04-10 01:51:00 +00001910bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001911 if (N->getNumValues() != 1)
1912 return false;
1913 if (!N->hasNUsesOfValue(1, 0))
1914 return false;
1915
Evan Chengbf010eb2012-04-10 01:51:00 +00001916 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001917 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001918 if (Copy->getOpcode() == ISD::CopyToReg) {
1919 // If the copy has a glue operand, we conservatively assume it isn't safe to
1920 // perform a tail call.
1921 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1922 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001923 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001924 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001925 return false;
1926
Evan Cheng1bf891a2010-12-01 22:59:46 +00001927 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001928 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001929 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001930 if (UI->getOpcode() != X86ISD::RET_FLAG)
1931 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001932 HasRet = true;
1933 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001934
Evan Chengbf010eb2012-04-10 01:51:00 +00001935 if (!HasRet)
1936 return false;
1937
1938 Chain = TCChain;
1939 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001940}
1941
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001942MVT
1943X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001944 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001945 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001946 // TODO: Is this also valid on 32-bit?
1947 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001948 ReturnMVT = MVT::i8;
1949 else
1950 ReturnMVT = MVT::i32;
1951
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001952 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001953 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001954}
1955
Dan Gohman98ca4f22009-08-05 01:29:28 +00001956/// LowerCallResult - Lower the result values of a call into the
1957/// appropriate copies out of appropriate physical registers.
1958///
1959SDValue
1960X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001961 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001962 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001963 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001964 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001965
Chris Lattnere32bbf62007-02-28 07:09:55 +00001966 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001967 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001968 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001969 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001970 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001971 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001972
Chris Lattner3085e152007-02-25 08:59:22 +00001973 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001974 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001975 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001976 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001977
Torok Edwin3f142c32009-02-01 18:15:56 +00001978 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001979 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001980 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001981 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001982 }
1983
Evan Cheng79fb3b42009-02-20 20:43:02 +00001984 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001985
1986 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001987 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001988 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001989 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001990 // instead.
1991 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1992 // If we prefer to use the value in xmm registers, copy it out as f80 and
1993 // use a truncate to move it from fp stack reg to xmm reg.
1994 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001995 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001996 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00001997 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001998 Val = Chain.getValue(0);
1999
2000 // Round the f80 to the right size, which also moves it to the appropriate
2001 // xmm register.
2002 if (CopyVT != VA.getValVT())
2003 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2004 // This truncation won't change the value.
2005 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00002006 } else {
2007 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2008 CopyVT, InFlag).getValue(1);
2009 Val = Chain.getValue(0);
2010 }
Chris Lattner8e6da152008-03-10 21:08:41 +00002011 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002012 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00002013 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00002014
Dan Gohman98ca4f22009-08-05 01:29:28 +00002015 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00002016}
2017
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002018//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002019// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002020//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002021// StdCall calling convention seems to be standard for many Windows' API
2022// routines and around. It differs from C calling convention just a little:
2023// callee should clean up the stack, not caller. Symbols should be also
2024// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002025// For info on fast calling convention see Fast Calling Convention (tail call)
2026// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002027
Dan Gohman98ca4f22009-08-05 01:29:28 +00002028/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002029/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002030enum StructReturnType {
2031 NotStructReturn,
2032 RegStructReturn,
2033 StackStructReturn
2034};
2035static StructReturnType
2036callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002037 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002038 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002039
Rafael Espindola1cee7102012-07-25 13:41:10 +00002040 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2041 if (!Flags.isSRet())
2042 return NotStructReturn;
2043 if (Flags.isInReg())
2044 return RegStructReturn;
2045 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002046}
2047
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002048/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002049/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002050static StructReturnType
2051argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002052 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002053 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002054
Rafael Espindola1cee7102012-07-25 13:41:10 +00002055 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2056 if (!Flags.isSRet())
2057 return NotStructReturn;
2058 if (Flags.isInReg())
2059 return RegStructReturn;
2060 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002061}
2062
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002063/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2064/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002065/// the specific parameter attribute. The copy will be passed as a byval
2066/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002067static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002068CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002069 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002070 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002071 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002072
Dale Johannesendd64c412009-02-04 00:33:20 +00002073 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002074 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002075 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002076}
2077
Chris Lattner29689432010-03-11 00:22:57 +00002078/// IsTailCallConvention - Return true if the calling convention is one that
2079/// supports tail call optimization.
2080static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002081 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2082 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002083}
2084
Charles Davisac226bb2013-07-12 06:02:35 +00002085/// \brief Return true if the calling convention is a C calling convention.
2086static bool IsCCallConvention(CallingConv::ID CC) {
2087 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2088 CC == CallingConv::X86_64_SysV);
2089}
2090
Evan Cheng485fafc2011-03-21 01:19:09 +00002091bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002092 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002093 return false;
2094
2095 CallSite CS(CI);
2096 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002097 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002098 return false;
2099
2100 return true;
2101}
2102
Evan Cheng0c439eb2010-01-27 00:07:07 +00002103/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2104/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002105static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2106 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002107 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002108}
2109
Dan Gohman98ca4f22009-08-05 01:29:28 +00002110SDValue
2111X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002112 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002113 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002114 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002115 const CCValAssign &VA,
2116 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002117 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002118 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002119 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002120 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2121 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002122 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002123 EVT ValVT;
2124
2125 // If value is passed by pointer we have address passed instead of the value
2126 // itself.
2127 if (VA.getLocInfo() == CCValAssign::Indirect)
2128 ValVT = VA.getLocVT();
2129 else
2130 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002131
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002132 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002133 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002134 // In case of tail call optimization mark all arguments mutable. Since they
2135 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002136 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002137 unsigned Bytes = Flags.getByValSize();
2138 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2139 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002140 return DAG.getFrameIndex(FI, getPointerTy());
2141 } else {
2142 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002143 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002144 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2145 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002146 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002147 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002148 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002149}
2150
Dan Gohman475871a2008-07-27 21:46:04 +00002151SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002152X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002153 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002154 bool isVarArg,
2155 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002156 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002157 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002158 SmallVectorImpl<SDValue> &InVals)
2159 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002160 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002161 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002162
Gordon Henriksen86737662008-01-05 16:56:59 +00002163 const Function* Fn = MF.getFunction();
2164 if (Fn->hasExternalLinkage() &&
2165 Subtarget->isTargetCygMing() &&
2166 Fn->getName() == "main")
2167 FuncInfo->setForceFramePointer(true);
2168
Evan Cheng1bc78042006-04-26 01:20:17 +00002169 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002170 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002171 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002172 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002173
Chris Lattner29689432010-03-11 00:22:57 +00002174 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002175 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002176
Chris Lattner638402b2007-02-28 07:00:42 +00002177 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002178 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002179 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002180 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002181
2182 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002183 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002184 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002185
Duncan Sands45907662010-10-31 13:21:44 +00002186 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002187
Chris Lattnerf39f7712007-02-28 05:46:49 +00002188 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002189 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002190 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2191 CCValAssign &VA = ArgLocs[i];
2192 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2193 // places.
2194 assert(VA.getValNo() != LastVal &&
2195 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002196 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002197 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002198
Chris Lattnerf39f7712007-02-28 05:46:49 +00002199 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002200 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002201 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002202 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002203 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002204 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002205 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002206 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002207 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002208 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002209 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002210 else if (RegVT.is512BitVector())
2211 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002212 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002213 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002214 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002215 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002216 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002217 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002218 else if (RegVT == MVT::v8i1)
2219 RC = &X86::VK8RegClass;
2220 else if (RegVT == MVT::v16i1)
2221 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002222 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002223 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002224
Devang Patel68e6bee2011-02-21 23:21:26 +00002225 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002226 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002227
Chris Lattnerf39f7712007-02-28 05:46:49 +00002228 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2229 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2230 // right size.
2231 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002232 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002233 DAG.getValueType(VA.getValVT()));
2234 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002235 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002236 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002237 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002238 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002239
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002240 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002241 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002242 if (RegVT.isVector())
2243 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2244 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002245 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002246 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002247 } else {
2248 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002249 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002250 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002251
2252 // If value is passed via pointer - do a load.
2253 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002254 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002255 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002256
Dan Gohman98ca4f22009-08-05 01:29:28 +00002257 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002258 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002259
Eli Benderskya5597f02013-01-25 22:07:43 +00002260 // The x86-64 ABIs require that for returning structs by value we copy
2261 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002262 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002263 // Save the argument into a virtual register so that we can access it
2264 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002265 if (MF.getFunction()->hasStructRetAttr() &&
2266 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002267 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2268 unsigned Reg = FuncInfo->getSRetReturnReg();
2269 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002270 MVT PtrTy = getPointerTy();
2271 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002272 FuncInfo->setSRetReturnReg(Reg);
2273 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002274 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002275 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002276 }
2277
Chris Lattnerf39f7712007-02-28 05:46:49 +00002278 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002279 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002280 if (FuncIsMadeTailCallSafe(CallConv,
2281 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002282 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002283
Evan Cheng1bc78042006-04-26 01:20:17 +00002284 // If the function takes variable number of arguments, make a frame index for
2285 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002286 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002287 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2288 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002289 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002290 }
2291 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002292 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2293
2294 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002295 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002296 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002297 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002298 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002299 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2300 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002301 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002302 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2303 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2304 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002305 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002306 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002307
2308 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002309 // The XMM registers which might contain var arg parameters are shadowed
2310 // in their paired GPR. So we only need to save the GPR to their home
2311 // slots.
2312 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002313 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002314 } else {
2315 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2316 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002317
Chad Rosier30450e82011-12-22 22:35:21 +00002318 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2319 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002320 }
2321 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2322 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002323
Bill Wendling831737d2012-12-30 10:32:01 +00002324 bool NoImplicitFloatOps = Fn->getAttributes().
2325 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002326 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002327 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002328 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2329 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002330 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002331 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002332 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002333 // Kernel mode asks for SSE to be disabled, so don't push them
2334 // on the stack.
2335 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002336
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002337 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002338 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002339 // Get to the caller-allocated home save location. Add 8 to account
2340 // for the return address.
2341 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002342 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002343 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002344 // Fixup to set vararg frame on shadow area (4 x i64).
2345 if (NumIntRegs < 4)
2346 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002347 } else {
2348 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002349 // registers, then we must store them to their spots on the stack so
2350 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002351 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2352 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2353 FuncInfo->setRegSaveFrameIndex(
2354 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002355 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002356 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002357
Gordon Henriksen86737662008-01-05 16:56:59 +00002358 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002359 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002360 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2361 getPointerTy());
2362 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002363 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002364 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2365 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002366 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002367 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002368 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002369 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002370 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002371 MachinePointerInfo::getFixedStack(
2372 FuncInfo->getRegSaveFrameIndex(), Offset),
2373 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002374 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002375 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002376 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002377
Dan Gohmanface41a2009-08-16 21:24:25 +00002378 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2379 // Now store the XMM (fp + vector) parameter registers.
2380 SmallVector<SDValue, 11> SaveXMMOps;
2381 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002382
Craig Topperc9099502012-04-20 06:31:50 +00002383 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002384 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2385 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002386
Dan Gohman1e93df62010-04-17 14:41:14 +00002387 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2388 FuncInfo->getRegSaveFrameIndex()));
2389 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2390 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002391
Dan Gohmanface41a2009-08-16 21:24:25 +00002392 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002393 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002394 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002395 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2396 SaveXMMOps.push_back(Val);
2397 }
2398 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2399 MVT::Other,
2400 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002401 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002402
2403 if (!MemOps.empty())
2404 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2405 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002406 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002407 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002408
Gordon Henriksen86737662008-01-05 16:56:59 +00002409 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002410 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2411 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002412 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002413 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002414 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002415 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002416 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002417 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002418 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002419 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002420
Gordon Henriksen86737662008-01-05 16:56:59 +00002421 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002422 // RegSaveFrameIndex is X86-64 only.
2423 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002424 if (CallConv == CallingConv::X86_FastCall ||
2425 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002426 // fastcc functions can't have varargs.
2427 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002428 }
Evan Cheng25caf632006-05-23 21:06:34 +00002429
Rafael Espindola76927d752011-08-30 19:39:58 +00002430 FuncInfo->setArgumentStackSize(StackSize);
2431
Dan Gohman98ca4f22009-08-05 01:29:28 +00002432 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002433}
2434
Dan Gohman475871a2008-07-27 21:46:04 +00002435SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002436X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2437 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002438 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002439 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002440 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002441 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002442 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002443 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002444 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002445 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002446
2447 return DAG.getStore(Chain, dl, Arg, PtrOff,
2448 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002449 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002450}
2451
Bill Wendling64e87322009-01-16 19:25:27 +00002452/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002453/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002454SDValue
2455X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002456 SDValue &OutRetAddr, SDValue Chain,
2457 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002458 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002459 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002460 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002461 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002462
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002463 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002464 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002465 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002466 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002467}
2468
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002469/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002470/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002471static SDValue
2472EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002473 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002474 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002475 // Store the return address to the appropriate stack slot.
2476 if (!FPDiff) return Chain;
2477 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002478 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002479 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2480 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002481 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002482 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002483 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002484 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002485 return Chain;
2486}
2487
Dan Gohman98ca4f22009-08-05 01:29:28 +00002488SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002489X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002490 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002491 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002492 SDLoc &dl = CLI.DL;
2493 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2494 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2495 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002496 SDValue Chain = CLI.Chain;
2497 SDValue Callee = CLI.Callee;
2498 CallingConv::ID CallConv = CLI.CallConv;
2499 bool &isTailCall = CLI.IsTailCall;
2500 bool isVarArg = CLI.IsVarArg;
2501
Dan Gohman98ca4f22009-08-05 01:29:28 +00002502 MachineFunction &MF = DAG.getMachineFunction();
2503 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002504 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002505 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002506 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002507 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002508
Nick Lewycky22de16d2012-01-19 00:34:10 +00002509 if (MF.getTarget().Options.DisableTailCalls)
2510 isTailCall = false;
2511
Evan Cheng5f941932010-02-05 02:21:12 +00002512 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002513 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002514 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002515 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002516 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002517 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002518
2519 // Sibcalls are automatically detected tailcalls which do not require
2520 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002521 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002522 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002523
2524 if (isTailCall)
2525 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002526 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002527
Chris Lattner29689432010-03-11 00:22:57 +00002528 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002529 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002530
Chris Lattner638402b2007-02-28 07:00:42 +00002531 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002532 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002533 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002534 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002535
2536 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002537 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002538 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002539
Duncan Sands45907662010-10-31 13:21:44 +00002540 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002541
Chris Lattner423c5f42007-02-28 05:31:48 +00002542 // Get a count of how many bytes are to be pushed on the stack.
2543 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002544 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002545 // This is a sibcall. The memory operands are available in caller's
2546 // own caller's stack.
2547 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002548 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2549 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002550 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002551
Gordon Henriksen86737662008-01-05 16:56:59 +00002552 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002553 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002554 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002555 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2556 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2557
Gordon Henriksen86737662008-01-05 16:56:59 +00002558 FPDiff = NumBytesCallerPushed - NumBytes;
2559
2560 // Set the delta of movement of the returnaddr stackslot.
2561 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002562 if (FPDiff < X86Info->getTCReturnAddrDelta())
2563 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002564 }
2565
Evan Chengf22f9b32010-02-06 03:28:46 +00002566 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002567 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2568 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002569
Dan Gohman475871a2008-07-27 21:46:04 +00002570 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002571 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002572 if (isTailCall && FPDiff)
2573 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2574 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002575
Dan Gohman475871a2008-07-27 21:46:04 +00002576 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2577 SmallVector<SDValue, 8> MemOpChains;
2578 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002579
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002580 // Walk the register/memloc assignments, inserting copies/loads. In the case
2581 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002582 const X86RegisterInfo *RegInfo =
2583 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002584 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2585 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002586 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002587 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002588 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002589 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002590
Chris Lattner423c5f42007-02-28 05:31:48 +00002591 // Promote the value if needed.
2592 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002593 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002594 case CCValAssign::Full: break;
2595 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002596 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002597 break;
2598 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002599 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002600 break;
2601 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002602 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002603 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002604 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002605 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2606 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002607 } else
2608 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2609 break;
2610 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002611 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002612 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002613 case CCValAssign::Indirect: {
2614 // Store the argument.
2615 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002616 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002617 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002618 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002619 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002620 Arg = SpillSlot;
2621 break;
2622 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002623 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002624
Chris Lattner423c5f42007-02-28 05:31:48 +00002625 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002626 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2627 if (isVarArg && IsWin64) {
2628 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2629 // shadow reg if callee is a varargs function.
2630 unsigned ShadowReg = 0;
2631 switch (VA.getLocReg()) {
2632 case X86::XMM0: ShadowReg = X86::RCX; break;
2633 case X86::XMM1: ShadowReg = X86::RDX; break;
2634 case X86::XMM2: ShadowReg = X86::R8; break;
2635 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002636 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002637 if (ShadowReg)
2638 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002639 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002640 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002641 assert(VA.isMemLoc());
2642 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002643 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2644 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002645 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2646 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002647 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002648 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002649
Evan Cheng32fe1032006-05-25 00:59:30 +00002650 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002651 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002652 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002653
Chris Lattner88e1fd52009-07-09 04:24:46 +00002654 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002655 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2656 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002657 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002658 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002659 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002660 } else {
2661 // If we are tail calling and generating PIC/GOT style code load the
2662 // address of the callee into ECX. The value in ecx is used as target of
2663 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2664 // for tail calls on PIC/GOT architectures. Normally we would just put the
2665 // address of GOT into ebx and then call target@PLT. But for tail calls
2666 // ebx would be restored (since ebx is callee saved) before jumping to the
2667 // target@PLT.
2668
2669 // Note: The actual moving to ECX is done further down.
2670 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2671 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2672 !G->getGlobal()->hasProtectedVisibility())
2673 Callee = LowerGlobalAddress(Callee, DAG);
2674 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002675 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002676 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002677 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002678
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002679 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002680 // From AMD64 ABI document:
2681 // For calls that may call functions that use varargs or stdargs
2682 // (prototype-less calls or calls to functions containing ellipsis (...) in
2683 // the declaration) %al is used as hidden argument to specify the number
2684 // of SSE registers used. The contents of %al do not need to match exactly
2685 // the number of registers, but must be an ubound on the number of SSE
2686 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002687
Gordon Henriksen86737662008-01-05 16:56:59 +00002688 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002689 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002690 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2691 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2692 };
2693 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002694 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002695 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002696
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002697 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2698 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002699 }
2700
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002701 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002702 if (isTailCall) {
2703 // Force all the incoming stack arguments to be loaded from the stack
2704 // before any new outgoing arguments are stored to the stack, because the
2705 // outgoing stack slots may alias the incoming argument stack slots, and
2706 // the alias isn't otherwise explicit. This is slightly more conservative
2707 // than necessary, because it means that each store effectively depends
2708 // on every argument instead of just those arguments it would clobber.
2709 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2710
Dan Gohman475871a2008-07-27 21:46:04 +00002711 SmallVector<SDValue, 8> MemOpChains2;
2712 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002713 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002714 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002715 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2716 CCValAssign &VA = ArgLocs[i];
2717 if (VA.isRegLoc())
2718 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002719 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002720 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002721 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002722 // Create frame index.
2723 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002724 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002725 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002726 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002727
Duncan Sands276dcbd2008-03-21 09:14:45 +00002728 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002729 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002730 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002731 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002732 StackPtr = DAG.getCopyFromReg(Chain, dl,
2733 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002734 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002735 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002736
Dan Gohman98ca4f22009-08-05 01:29:28 +00002737 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2738 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002739 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002740 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002741 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002742 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002743 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002744 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002745 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002746 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002747 }
2748 }
2749
2750 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002751 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002752 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002753
2754 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002755 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2756 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002757 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002758 }
2759
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002760 // Build a sequence of copy-to-reg nodes chained together with token chain
2761 // and flag operands which copy the outgoing args into registers.
2762 SDValue InFlag;
2763 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2764 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2765 RegsToPass[i].second, InFlag);
2766 InFlag = Chain.getValue(1);
2767 }
2768
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002769 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2770 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2771 // In the 64-bit large code model, we have to make all calls
2772 // through a register, since the call instruction's 32-bit
2773 // pc-relative offset may not be large enough to hold the whole
2774 // address.
2775 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002776 // If the callee is a GlobalAddress node (quite common, every direct call
2777 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2778 // it.
2779
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002780 // We should use extra load for direct calls to dllimported functions in
2781 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002782 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002783 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002784 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002785 bool ExtraLoad = false;
2786 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002787
Chris Lattner48a7d022009-07-09 05:02:21 +00002788 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2789 // external symbols most go through the PLT in PIC mode. If the symbol
2790 // has hidden or protected visibility, or if it is static or local, then
2791 // we don't need to use the PLT - we can directly call it.
2792 if (Subtarget->isTargetELF() &&
2793 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002794 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002795 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002796 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002797 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002798 (!Subtarget->getTargetTriple().isMacOSX() ||
2799 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002800 // PC-relative references to external symbols should go through $stub,
2801 // unless we're building with the leopard linker or later, which
2802 // automatically synthesizes these stubs.
2803 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002804 } else if (Subtarget->isPICStyleRIPRel() &&
2805 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002806 cast<Function>(GV)->getAttributes().
2807 hasAttribute(AttributeSet::FunctionIndex,
2808 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002809 // If the function is marked as non-lazy, generate an indirect call
2810 // which loads from the GOT directly. This avoids runtime overhead
2811 // at the cost of eager binding (and one extra byte of encoding).
2812 OpFlags = X86II::MO_GOTPCREL;
2813 WrapperKind = X86ISD::WrapperRIP;
2814 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002815 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002816
Devang Patel0d881da2010-07-06 22:08:15 +00002817 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002818 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002819
2820 // Add a wrapper if needed.
2821 if (WrapperKind != ISD::DELETED_NODE)
2822 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2823 // Add extra indirection if needed.
2824 if (ExtraLoad)
2825 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2826 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002827 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002828 }
Bill Wendling056292f2008-09-16 21:48:12 +00002829 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002830 unsigned char OpFlags = 0;
2831
Evan Cheng1bf891a2010-12-01 22:59:46 +00002832 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2833 // external symbols should go through the PLT.
2834 if (Subtarget->isTargetELF() &&
2835 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2836 OpFlags = X86II::MO_PLT;
2837 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002838 (!Subtarget->getTargetTriple().isMacOSX() ||
2839 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002840 // PC-relative references to external symbols should go through $stub,
2841 // unless we're building with the leopard linker or later, which
2842 // automatically synthesizes these stubs.
2843 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002844 }
Eric Christopherfd179292009-08-27 18:07:15 +00002845
Chris Lattner48a7d022009-07-09 05:02:21 +00002846 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2847 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002848 }
2849
Chris Lattnerd96d0722007-02-25 06:40:16 +00002850 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002851 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002852 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002853
Evan Chengf22f9b32010-02-06 03:28:46 +00002854 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002855 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002856 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002857 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002858 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002859
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002860 Ops.push_back(Chain);
2861 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002862
Dan Gohman98ca4f22009-08-05 01:29:28 +00002863 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002864 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002865
Gordon Henriksen86737662008-01-05 16:56:59 +00002866 // Add argument registers to the end of the list so that they are known live
2867 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002868 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2869 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2870 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002871
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002872 // Add a register mask operand representing the call-preserved registers.
2873 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2874 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2875 assert(Mask && "Missing call preserved mask for calling convention");
2876 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002877
Gabor Greifba36cb52008-08-28 21:40:38 +00002878 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002879 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002880
Dan Gohman98ca4f22009-08-05 01:29:28 +00002881 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002882 // We used to do:
2883 //// If this is the first return lowered for this function, add the regs
2884 //// to the liveout set for the function.
2885 // This isn't right, although it's probably harmless on x86; liveouts
2886 // should be computed from returns not tail calls. Consider a void
2887 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002888 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002889 }
2890
Dale Johannesenace16102009-02-03 19:33:06 +00002891 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002892 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002893
Chris Lattner2d297092006-05-23 18:50:38 +00002894 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002895 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002896 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2897 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002898 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002899 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002900 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002901 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002902 // pops the hidden struct pointer, so we have to push it back.
2903 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002904 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002905 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002906 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002907 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002908
Gordon Henriksenae636f82008-01-03 16:47:34 +00002909 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002910 if (!IsSibcall) {
2911 Chain = DAG.getCALLSEQ_END(Chain,
2912 DAG.getIntPtrConstant(NumBytes, true),
2913 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2914 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002915 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002916 InFlag = Chain.getValue(1);
2917 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002918
Chris Lattner3085e152007-02-25 08:59:22 +00002919 // Handle result values, copying them out of physregs into vregs that we
2920 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002921 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2922 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002923}
2924
Evan Cheng25ab6902006-09-08 06:48:29 +00002925//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002926// Fast Calling Convention (tail call) implementation
2927//===----------------------------------------------------------------------===//
2928
2929// Like std call, callee cleans arguments, convention except that ECX is
2930// reserved for storing the tail called function address. Only 2 registers are
2931// free for argument passing (inreg). Tail call optimization is performed
2932// provided:
2933// * tailcallopt is enabled
2934// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002935// On X86_64 architecture with GOT-style position independent code only local
2936// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002937// To keep the stack aligned according to platform abi the function
2938// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2939// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002940// If a tail called function callee has more arguments than the caller the
2941// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002942// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002943// original REtADDR, but before the saved framepointer or the spilled registers
2944// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2945// stack layout:
2946// arg1
2947// arg2
2948// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002949// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002950// move area ]
2951// (possible EBP)
2952// ESI
2953// EDI
2954// local1 ..
2955
2956/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2957/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002958unsigned
2959X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2960 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002961 MachineFunction &MF = DAG.getMachineFunction();
2962 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002963 const X86RegisterInfo *RegInfo =
2964 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002965 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002966 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002967 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002968 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002969 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002970 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2971 // Number smaller than 12 so just add the difference.
2972 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2973 } else {
2974 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002975 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002976 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002977 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002978 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002979}
2980
Evan Cheng5f941932010-02-05 02:21:12 +00002981/// MatchingStackOffset - Return true if the given stack call argument is
2982/// already available in the same position (relatively) of the caller's
2983/// incoming argument stack.
2984static
2985bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2986 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2987 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002988 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2989 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002990 if (Arg.getOpcode() == ISD::CopyFromReg) {
2991 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002992 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002993 return false;
2994 MachineInstr *Def = MRI->getVRegDef(VR);
2995 if (!Def)
2996 return false;
2997 if (!Flags.isByVal()) {
2998 if (!TII->isLoadFromStackSlot(Def, FI))
2999 return false;
3000 } else {
3001 unsigned Opcode = Def->getOpcode();
3002 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3003 Def->getOperand(1).isFI()) {
3004 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00003005 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00003006 } else
3007 return false;
3008 }
Evan Cheng4cae1332010-03-05 08:38:04 +00003009 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3010 if (Flags.isByVal())
3011 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00003012 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00003013 // define @foo(%struct.X* %A) {
3014 // tail call @bar(%struct.X* byval %A)
3015 // }
Evan Cheng5f941932010-02-05 02:21:12 +00003016 return false;
3017 SDValue Ptr = Ld->getBasePtr();
3018 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3019 if (!FINode)
3020 return false;
3021 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003022 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003023 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003024 FI = FINode->getIndex();
3025 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003026 } else
3027 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003028
Evan Cheng4cae1332010-03-05 08:38:04 +00003029 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003030 if (!MFI->isFixedObjectIndex(FI))
3031 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003032 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003033}
3034
Dan Gohman98ca4f22009-08-05 01:29:28 +00003035/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3036/// for tail call optimization. Targets which want to do tail call
3037/// optimization should implement this function.
3038bool
3039X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003040 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003041 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003042 bool isCalleeStructRet,
3043 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003044 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003045 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003046 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003047 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003048 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003049 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003050 return false;
3051
Evan Cheng7096ae42010-01-29 06:45:59 +00003052 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003053 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003054 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003055
3056 // If the function return type is x86_fp80 and the callee return type is not,
3057 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3058 // perform a tailcall optimization here.
3059 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3060 return false;
3061
Evan Cheng13617962010-04-30 01:12:32 +00003062 CallingConv::ID CallerCC = CallerF->getCallingConv();
3063 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003064 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3065 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003066
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003067 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003068 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003069 return true;
3070 return false;
3071 }
3072
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003073 // Look for obvious safe cases to perform tail call optimization that do not
3074 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003075
Evan Cheng2c12cb42010-03-26 16:26:03 +00003076 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3077 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003078 const X86RegisterInfo *RegInfo =
3079 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003080 if (RegInfo->needsStackRealignment(MF))
3081 return false;
3082
Evan Chenga375d472010-03-15 18:54:48 +00003083 // Also avoid sibcall optimization if either caller or callee uses struct
3084 // return semantics.
3085 if (isCalleeStructRet || isCallerStructRet)
3086 return false;
3087
Chad Rosier2416da32011-06-24 21:15:36 +00003088 // An stdcall caller is expected to clean up its arguments; the callee
3089 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003090 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003091 return false;
3092
Chad Rosier871f6642011-05-18 19:59:50 +00003093 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003094 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003095 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003096
3097 // Optimizing for varargs on Win64 is unlikely to be safe without
3098 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003099 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003100 return false;
3101
Chad Rosier871f6642011-05-18 19:59:50 +00003102 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003103 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003104 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003105
Chad Rosier871f6642011-05-18 19:59:50 +00003106 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3107 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3108 if (!ArgLocs[i].isRegLoc())
3109 return false;
3110 }
3111
Chad Rosier30450e82011-12-22 22:35:21 +00003112 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3113 // stack. Therefore, if it's not used by the call it is not safe to optimize
3114 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003115 bool Unused = false;
3116 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3117 if (!Ins[i].Used) {
3118 Unused = true;
3119 break;
3120 }
3121 }
3122 if (Unused) {
3123 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003124 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003125 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003126 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003127 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003128 CCValAssign &VA = RVLocs[i];
3129 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3130 return false;
3131 }
3132 }
3133
Evan Cheng13617962010-04-30 01:12:32 +00003134 // If the calling conventions do not match, then we'd better make sure the
3135 // results are returned in the same way as what the caller expects.
3136 if (!CCMatch) {
3137 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003138 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003139 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003140 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3141
3142 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003143 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003144 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003145 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3146
3147 if (RVLocs1.size() != RVLocs2.size())
3148 return false;
3149 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3150 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3151 return false;
3152 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3153 return false;
3154 if (RVLocs1[i].isRegLoc()) {
3155 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3156 return false;
3157 } else {
3158 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3159 return false;
3160 }
3161 }
3162 }
3163
Evan Chenga6bff982010-01-30 01:22:00 +00003164 // If the callee takes no arguments then go on to check the results of the
3165 // call.
3166 if (!Outs.empty()) {
3167 // Check if stack adjustment is needed. For now, do not do this if any
3168 // argument is passed on the stack.
3169 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003170 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003171 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003172
3173 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003174 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003175 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003176
Duncan Sands45907662010-10-31 13:21:44 +00003177 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003178 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003179 MachineFunction &MF = DAG.getMachineFunction();
3180 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3181 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003182
3183 // Check if the arguments are already laid out in the right way as
3184 // the caller's fixed stack objects.
3185 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003186 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3187 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003188 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003189 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3190 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003191 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003192 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003193 if (VA.getLocInfo() == CCValAssign::Indirect)
3194 return false;
3195 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003196 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3197 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003198 return false;
3199 }
3200 }
3201 }
Evan Cheng9c044672010-05-29 01:35:22 +00003202
3203 // If the tailcall address may be in a register, then make sure it's
3204 // possible to register allocate for it. In 32-bit, the call address can
3205 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003206 // callee-saved registers are restored. These happen to be the same
3207 // registers used to pass 'inreg' arguments so watch out for those.
3208 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003209 ((!isa<GlobalAddressSDNode>(Callee) &&
3210 !isa<ExternalSymbolSDNode>(Callee)) ||
3211 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003212 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003213 // In PIC we need an extra register to formulate the address computation
3214 // for the callee.
3215 unsigned MaxInRegs =
3216 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3217
Evan Cheng9c044672010-05-29 01:35:22 +00003218 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3219 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003220 if (!VA.isRegLoc())
3221 continue;
3222 unsigned Reg = VA.getLocReg();
3223 switch (Reg) {
3224 default: break;
3225 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003226 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003227 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003228 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003229 }
3230 }
3231 }
Evan Chenga6bff982010-01-30 01:22:00 +00003232 }
Evan Chengb1712452010-01-27 06:25:16 +00003233
Evan Cheng86809cc2010-02-03 03:28:02 +00003234 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003235}
3236
Dan Gohman3df24e62008-09-03 23:12:08 +00003237FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003238X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3239 const TargetLibraryInfo *libInfo) const {
3240 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003241}
3242
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003243//===----------------------------------------------------------------------===//
3244// Other Lowering Hooks
3245//===----------------------------------------------------------------------===//
3246
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003247static bool MayFoldLoad(SDValue Op) {
3248 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3249}
3250
3251static bool MayFoldIntoStore(SDValue Op) {
3252 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3253}
3254
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003255static bool isTargetShuffle(unsigned Opcode) {
3256 switch(Opcode) {
3257 default: return false;
3258 case X86ISD::PSHUFD:
3259 case X86ISD::PSHUFHW:
3260 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003261 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003262 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003263 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003264 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003265 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003266 case X86ISD::MOVLPS:
3267 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003268 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003269 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003270 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003271 case X86ISD::MOVSS:
3272 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003273 case X86ISD::UNPCKL:
3274 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003275 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003276 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003277 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003278 return true;
3279 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003280}
3281
Andrew Trickac6d9be2013-05-25 02:42:55 +00003282static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003283 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003284 switch(Opc) {
3285 default: llvm_unreachable("Unknown x86 shuffle node");
3286 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003287 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003288 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003289 return DAG.getNode(Opc, dl, VT, V1);
3290 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003291}
3292
Andrew Trickac6d9be2013-05-25 02:42:55 +00003293static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003294 SDValue V1, unsigned TargetMask,
3295 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003296 switch(Opc) {
3297 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003298 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003299 case X86ISD::PSHUFHW:
3300 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003301 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003302 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003303 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3304 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003305}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003306
Andrew Trickac6d9be2013-05-25 02:42:55 +00003307static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003308 SDValue V1, SDValue V2, unsigned TargetMask,
3309 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003310 switch(Opc) {
3311 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003312 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003313 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003314 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003315 return DAG.getNode(Opc, dl, VT, V1, V2,
3316 DAG.getConstant(TargetMask, MVT::i8));
3317 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003318}
3319
Andrew Trickac6d9be2013-05-25 02:42:55 +00003320static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003321 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3322 switch(Opc) {
3323 default: llvm_unreachable("Unknown x86 shuffle node");
3324 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003325 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003326 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003327 case X86ISD::MOVLPS:
3328 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003329 case X86ISD::MOVSS:
3330 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003331 case X86ISD::UNPCKL:
3332 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003333 return DAG.getNode(Opc, dl, VT, V1, V2);
3334 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003335}
3336
Dan Gohmand858e902010-04-17 15:26:15 +00003337SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003338 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003339 const X86RegisterInfo *RegInfo =
3340 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003341 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3342 int ReturnAddrIndex = FuncInfo->getRAIndex();
3343
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003344 if (ReturnAddrIndex == 0) {
3345 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003346 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003347 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3348 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003349 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003350 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003351 }
3352
Evan Cheng25ab6902006-09-08 06:48:29 +00003353 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003354}
3355
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003356bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3357 bool hasSymbolicDisplacement) {
3358 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003359 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003360 return false;
3361
3362 // If we don't have a symbolic displacement - we don't have any extra
3363 // restrictions.
3364 if (!hasSymbolicDisplacement)
3365 return true;
3366
3367 // FIXME: Some tweaks might be needed for medium code model.
3368 if (M != CodeModel::Small && M != CodeModel::Kernel)
3369 return false;
3370
3371 // For small code model we assume that latest object is 16MB before end of 31
3372 // bits boundary. We may also accept pretty large negative constants knowing
3373 // that all objects are in the positive half of address space.
3374 if (M == CodeModel::Small && Offset < 16*1024*1024)
3375 return true;
3376
3377 // For kernel code model we know that all object resist in the negative half
3378 // of 32bits address space. We may not accept negative offsets, since they may
3379 // be just off and we may accept pretty large positive ones.
3380 if (M == CodeModel::Kernel && Offset > 0)
3381 return true;
3382
3383 return false;
3384}
3385
Evan Chengef41ff62011-06-23 17:54:54 +00003386/// isCalleePop - Determines whether the callee is required to pop its
3387/// own arguments. Callee pop is necessary to support tail calls.
3388bool X86::isCalleePop(CallingConv::ID CallingConv,
3389 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3390 if (IsVarArg)
3391 return false;
3392
3393 switch (CallingConv) {
3394 default:
3395 return false;
3396 case CallingConv::X86_StdCall:
3397 return !is64Bit;
3398 case CallingConv::X86_FastCall:
3399 return !is64Bit;
3400 case CallingConv::X86_ThisCall:
3401 return !is64Bit;
3402 case CallingConv::Fast:
3403 return TailCallOpt;
3404 case CallingConv::GHC:
3405 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003406 case CallingConv::HiPE:
3407 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003408 }
3409}
3410
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003411/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3412/// specific condition code, returning the condition code and the LHS/RHS of the
3413/// comparison to make.
3414static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3415 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003416 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003417 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3418 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3419 // X > -1 -> X == 0, jump !sign.
3420 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003421 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003422 }
3423 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003424 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003425 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003426 }
3427 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003428 // X < 1 -> X <= 0
3429 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003430 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003431 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003432 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003433
Evan Chengd9558e02006-01-06 00:43:03 +00003434 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003435 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003436 case ISD::SETEQ: return X86::COND_E;
3437 case ISD::SETGT: return X86::COND_G;
3438 case ISD::SETGE: return X86::COND_GE;
3439 case ISD::SETLT: return X86::COND_L;
3440 case ISD::SETLE: return X86::COND_LE;
3441 case ISD::SETNE: return X86::COND_NE;
3442 case ISD::SETULT: return X86::COND_B;
3443 case ISD::SETUGT: return X86::COND_A;
3444 case ISD::SETULE: return X86::COND_BE;
3445 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003446 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003447 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003448
Chris Lattner4c78e022008-12-23 23:42:27 +00003449 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003450
Chris Lattner4c78e022008-12-23 23:42:27 +00003451 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003452 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3453 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003454 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3455 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003456 }
3457
Chris Lattner4c78e022008-12-23 23:42:27 +00003458 switch (SetCCOpcode) {
3459 default: break;
3460 case ISD::SETOLT:
3461 case ISD::SETOLE:
3462 case ISD::SETUGT:
3463 case ISD::SETUGE:
3464 std::swap(LHS, RHS);
3465 break;
3466 }
3467
3468 // On a floating point condition, the flags are set as follows:
3469 // ZF PF CF op
3470 // 0 | 0 | 0 | X > Y
3471 // 0 | 0 | 1 | X < Y
3472 // 1 | 0 | 0 | X == Y
3473 // 1 | 1 | 1 | unordered
3474 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003475 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003476 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003477 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003478 case ISD::SETOLT: // flipped
3479 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003480 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003481 case ISD::SETOLE: // flipped
3482 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003483 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003484 case ISD::SETUGT: // flipped
3485 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003486 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003487 case ISD::SETUGE: // flipped
3488 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003489 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003490 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003491 case ISD::SETNE: return X86::COND_NE;
3492 case ISD::SETUO: return X86::COND_P;
3493 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003494 case ISD::SETOEQ:
3495 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003496 }
Evan Chengd9558e02006-01-06 00:43:03 +00003497}
3498
Evan Cheng4a460802006-01-11 00:33:36 +00003499/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3500/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003501/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003502static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003503 switch (X86CC) {
3504 default:
3505 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003506 case X86::COND_B:
3507 case X86::COND_BE:
3508 case X86::COND_E:
3509 case X86::COND_P:
3510 case X86::COND_A:
3511 case X86::COND_AE:
3512 case X86::COND_NE:
3513 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003514 return true;
3515 }
3516}
3517
Evan Chengeb2f9692009-10-27 19:56:55 +00003518/// isFPImmLegal - Returns true if the target can instruction select the
3519/// specified FP immediate natively. If false, the legalizer will
3520/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003521bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003522 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3523 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3524 return true;
3525 }
3526 return false;
3527}
3528
Nate Begeman9008ca62009-04-27 18:41:29 +00003529/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3530/// the specified range (L, H].
3531static bool isUndefOrInRange(int Val, int Low, int Hi) {
3532 return (Val < 0) || (Val >= Low && Val < Hi);
3533}
3534
3535/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3536/// specified value.
3537static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003538 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003539}
3540
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003541/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003542/// from position Pos and ending in Pos+Size, falls within the specified
3543/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003544static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003545 unsigned Pos, unsigned Size, int Low) {
3546 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003547 if (!isUndefOrEqual(Mask[i], Low))
3548 return false;
3549 return true;
3550}
3551
Nate Begeman9008ca62009-04-27 18:41:29 +00003552/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3553/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3554/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003555static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003556 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003557 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003558 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003559 return (Mask[0] < 2 && Mask[1] < 2);
3560 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003561}
3562
Nate Begeman9008ca62009-04-27 18:41:29 +00003563/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3564/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003565static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003566 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003567 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003568
Nate Begeman9008ca62009-04-27 18:41:29 +00003569 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003570 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3571 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003572
Evan Cheng506d3df2006-03-29 23:07:14 +00003573 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003574 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003575 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003576 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003577
Craig Toppera9a568a2012-05-02 08:03:44 +00003578 if (VT == MVT::v16i16) {
3579 // Lower quadword copied in order or undef.
3580 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3581 return false;
3582
3583 // Upper quadword shuffled.
3584 for (unsigned i = 12; i != 16; ++i)
3585 if (!isUndefOrInRange(Mask[i], 12, 16))
3586 return false;
3587 }
3588
Evan Cheng506d3df2006-03-29 23:07:14 +00003589 return true;
3590}
3591
Nate Begeman9008ca62009-04-27 18:41:29 +00003592/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3593/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003594static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003595 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003596 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003597
Rafael Espindola15684b22009-04-24 12:40:33 +00003598 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003599 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3600 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003601
Rafael Espindola15684b22009-04-24 12:40:33 +00003602 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003603 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003604 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003605 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003606
Craig Toppera9a568a2012-05-02 08:03:44 +00003607 if (VT == MVT::v16i16) {
3608 // Upper quadword copied in order.
3609 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3610 return false;
3611
3612 // Lower quadword shuffled.
3613 for (unsigned i = 8; i != 12; ++i)
3614 if (!isUndefOrInRange(Mask[i], 8, 12))
3615 return false;
3616 }
3617
Rafael Espindola15684b22009-04-24 12:40:33 +00003618 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003619}
3620
Nate Begemana09008b2009-10-19 02:17:23 +00003621/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3622/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003623static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003624 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003625 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3626 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003627 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003628
Craig Topper0e2037b2012-01-20 05:53:00 +00003629 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003630 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003631 unsigned NumLaneElts = NumElts/NumLanes;
3632
3633 // Do not handle 64-bit element shuffles with palignr.
3634 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003635 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003636
Craig Topper0e2037b2012-01-20 05:53:00 +00003637 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3638 unsigned i;
3639 for (i = 0; i != NumLaneElts; ++i) {
3640 if (Mask[i+l] >= 0)
3641 break;
3642 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003643
Craig Topper0e2037b2012-01-20 05:53:00 +00003644 // Lane is all undef, go to next lane
3645 if (i == NumLaneElts)
3646 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003647
Craig Topper0e2037b2012-01-20 05:53:00 +00003648 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003649
Craig Topper0e2037b2012-01-20 05:53:00 +00003650 // Make sure its in this lane in one of the sources
3651 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3652 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003653 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003654
3655 // If not lane 0, then we must match lane 0
3656 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3657 return false;
3658
3659 // Correct second source to be contiguous with first source
3660 if (Start >= (int)NumElts)
3661 Start -= NumElts - NumLaneElts;
3662
3663 // Make sure we're shifting in the right direction.
3664 if (Start <= (int)(i+l))
3665 return false;
3666
3667 Start -= i;
3668
3669 // Check the rest of the elements to see if they are consecutive.
3670 for (++i; i != NumLaneElts; ++i) {
3671 int Idx = Mask[i+l];
3672
3673 // Make sure its in this lane
3674 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3675 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3676 return false;
3677
3678 // If not lane 0, then we must match lane 0
3679 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3680 return false;
3681
3682 if (Idx >= (int)NumElts)
3683 Idx -= NumElts - NumLaneElts;
3684
3685 if (!isUndefOrEqual(Idx, Start+i))
3686 return false;
3687
3688 }
Nate Begemana09008b2009-10-19 02:17:23 +00003689 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003690
Nate Begemana09008b2009-10-19 02:17:23 +00003691 return true;
3692}
3693
Craig Topper1a7700a2012-01-19 08:19:12 +00003694/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3695/// the two vector operands have swapped position.
3696static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3697 unsigned NumElems) {
3698 for (unsigned i = 0; i != NumElems; ++i) {
3699 int idx = Mask[i];
3700 if (idx < 0)
3701 continue;
3702 else if (idx < (int)NumElems)
3703 Mask[i] = idx + NumElems;
3704 else
3705 Mask[i] = idx - NumElems;
3706 }
3707}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003708
Craig Topper1a7700a2012-01-19 08:19:12 +00003709/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3710/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3711/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3712/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003713static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003714
Craig Topper1a7700a2012-01-19 08:19:12 +00003715 unsigned NumElems = VT.getVectorNumElements();
3716 unsigned NumLanes = VT.getSizeInBits()/128;
3717 unsigned NumLaneElems = NumElems/NumLanes;
3718
3719 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003720 return false;
3721
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003722 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3723 bool symetricMaskRequired =
3724 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3725
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003726 // VSHUFPSY divides the resulting vector into 4 chunks.
3727 // The sources are also splitted into 4 chunks, and each destination
3728 // chunk must come from a different source chunk.
3729 //
3730 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3731 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3732 //
3733 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3734 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3735 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003736 // VSHUFPDY divides the resulting vector into 4 chunks.
3737 // The sources are also splitted into 4 chunks, and each destination
3738 // chunk must come from a different source chunk.
3739 //
3740 // SRC1 => X3 X2 X1 X0
3741 // SRC2 => Y3 Y2 Y1 Y0
3742 //
3743 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3744 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003745 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003746 unsigned HalfLaneElems = NumLaneElems/2;
3747 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3748 for (unsigned i = 0; i != NumLaneElems; ++i) {
3749 int Idx = Mask[i+l];
3750 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3751 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3752 return false;
3753 // For VSHUFPSY, the mask of the second half must be the same as the
3754 // first but with the appropriate offsets. This works in the same way as
3755 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003756 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003757 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003758 if (MaskVal[i] < 0) {
3759 MaskVal[i] = Idx - l;
3760 continue;
3761 }
3762 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003763 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003764 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003765 }
3766
3767 return true;
3768}
3769
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003770/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3771/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003772static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003773 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003774 return false;
3775
Craig Topper7a9a28b2012-08-12 02:23:29 +00003776 unsigned NumElems = VT.getVectorNumElements();
3777
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003778 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003779 return false;
3780
Evan Cheng2064a2b2006-03-28 06:50:32 +00003781 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003782 return isUndefOrEqual(Mask[0], 6) &&
3783 isUndefOrEqual(Mask[1], 7) &&
3784 isUndefOrEqual(Mask[2], 2) &&
3785 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003786}
3787
Nate Begeman0b10b912009-11-07 23:17:15 +00003788/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3789/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3790/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003791static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003792 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003793 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003794
Craig Topper7a9a28b2012-08-12 02:23:29 +00003795 unsigned NumElems = VT.getVectorNumElements();
3796
Nate Begeman0b10b912009-11-07 23:17:15 +00003797 if (NumElems != 4)
3798 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003799
Craig Topperdd637ae2012-02-19 05:41:45 +00003800 return isUndefOrEqual(Mask[0], 2) &&
3801 isUndefOrEqual(Mask[1], 3) &&
3802 isUndefOrEqual(Mask[2], 2) &&
3803 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003804}
3805
Evan Cheng5ced1d82006-04-06 23:23:56 +00003806/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3807/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003808static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003809 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003810 return false;
3811
Craig Topperdd637ae2012-02-19 05:41:45 +00003812 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003813
Evan Cheng5ced1d82006-04-06 23:23:56 +00003814 if (NumElems != 2 && NumElems != 4)
3815 return false;
3816
Chad Rosier238ae312012-04-30 17:47:15 +00003817 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003818 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003819 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003820
Chad Rosier238ae312012-04-30 17:47:15 +00003821 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003822 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003823 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003824
3825 return true;
3826}
3827
Nate Begeman0b10b912009-11-07 23:17:15 +00003828/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3829/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003830static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003831 if (!VT.is128BitVector())
3832 return false;
3833
Craig Topperdd637ae2012-02-19 05:41:45 +00003834 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003835
Craig Topper7a9a28b2012-08-12 02:23:29 +00003836 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003837 return false;
3838
Chad Rosier238ae312012-04-30 17:47:15 +00003839 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003840 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003841 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003842
Chad Rosier238ae312012-04-30 17:47:15 +00003843 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3844 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003845 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003846
3847 return true;
3848}
3849
Elena Demikhovsky15963732012-06-26 08:04:10 +00003850//
3851// Some special combinations that can be optimized.
3852//
3853static
3854SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3855 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003856 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003857 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003858
3859 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3860 return SDValue();
3861
3862 ArrayRef<int> Mask = SVOp->getMask();
3863
3864 // These are the special masks that may be optimized.
3865 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3866 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3867 bool MatchEvenMask = true;
3868 bool MatchOddMask = true;
3869 for (int i=0; i<8; ++i) {
3870 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3871 MatchEvenMask = false;
3872 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3873 MatchOddMask = false;
3874 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003875
Elena Demikhovsky32510202012-09-04 12:49:02 +00003876 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003877 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003878
Elena Demikhovsky15963732012-06-26 08:04:10 +00003879 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3880
Elena Demikhovsky32510202012-09-04 12:49:02 +00003881 SDValue Op0 = SVOp->getOperand(0);
3882 SDValue Op1 = SVOp->getOperand(1);
3883
3884 if (MatchEvenMask) {
3885 // Shift the second operand right to 32 bits.
3886 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3887 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3888 } else {
3889 // Shift the first operand left to 32 bits.
3890 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3891 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3892 }
3893 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3894 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003895}
3896
Evan Cheng0038e592006-03-28 00:39:58 +00003897/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3898/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003899static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003900 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003901
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003902 assert(VT.getSizeInBits() >= 128 &&
3903 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003904
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003905 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3906 unsigned NumLanes;
3907 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003908 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003909 if (VT.is256BitVector()) {
3910 if (NumElts != 4 && NumElts != 8 &&
3911 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003912 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003913 NumLanes = 2;
3914 NumOf256BitLanes = 1;
3915 } else if (VT.is512BitVector()) {
3916 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3917 "Unsupported vector type for unpckh");
3918 NumLanes = 2;
3919 NumOf256BitLanes = 2;
3920 } else {
3921 NumLanes = 1;
3922 NumOf256BitLanes = 1;
3923 }
Eric Christopherfd179292009-08-27 18:07:15 +00003924
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003925 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3926 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003927
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003928 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3929 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3930 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3931 int BitI = Mask[l256*NumEltsInStride+l+i];
3932 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3933 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003934 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003935 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3936 return false;
3937 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003938 return false;
3939 }
Evan Cheng39623da2006-04-20 08:58:49 +00003940 }
Evan Cheng0038e592006-03-28 00:39:58 +00003941 }
Evan Cheng0038e592006-03-28 00:39:58 +00003942 return true;
3943}
3944
Evan Cheng4fcb9222006-03-28 02:43:26 +00003945/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3946/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003947static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003948 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003949 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003950 "Unsupported vector type for unpckh");
3951
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003952 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3953 unsigned NumLanes;
3954 unsigned NumOf256BitLanes;
3955 unsigned NumElts = VT.getVectorNumElements();
3956 if (VT.is256BitVector()) {
3957 if (NumElts != 4 && NumElts != 8 &&
3958 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003959 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003960 NumLanes = 2;
3961 NumOf256BitLanes = 1;
3962 } else if (VT.is512BitVector()) {
3963 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3964 "Unsupported vector type for unpckh");
3965 NumLanes = 2;
3966 NumOf256BitLanes = 2;
3967 } else {
3968 NumLanes = 1;
3969 NumOf256BitLanes = 1;
3970 }
Eric Christopherfd179292009-08-27 18:07:15 +00003971
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003972 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3973 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003974
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003975 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3976 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3977 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3978 int BitI = Mask[l256*NumEltsInStride+l+i];
3979 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3980 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003981 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003982 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3983 return false;
3984 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003985 return false;
3986 }
Evan Cheng39623da2006-04-20 08:58:49 +00003987 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003988 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003989 return true;
3990}
3991
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003992/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3993/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3994/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003995static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00003996 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00003997 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00003998
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003999 if (VT.is512BitVector())
4000 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00004001 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4002 "Unsupported vector type for unpckh");
4003
Craig Topper5a529e42013-01-18 06:44:29 +00004004 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004005 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004006 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004007
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004008 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4009 // FIXME: Need a better way to get rid of this, there's no latency difference
4010 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4011 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00004012 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004013 return false;
4014
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004015 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4016 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00004017 unsigned NumLanes = VT.getSizeInBits()/128;
4018 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00004019
Craig Topper59235472013-08-06 07:23:12 +00004020 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4021 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4022 int BitI = Mask[l+i];
4023 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00004024
4025 if (!isUndefOrEqual(BitI, j))
4026 return false;
4027 if (!isUndefOrEqual(BitI1, j))
4028 return false;
4029 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004030 }
David Greenea20244d2011-03-02 17:23:43 +00004031
Rafael Espindola15684b22009-04-24 12:40:33 +00004032 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004033}
4034
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004035/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4036/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4037/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004038static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004039 unsigned NumElts = VT.getVectorNumElements();
4040
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004041 if (VT.is512BitVector())
4042 return false;
4043
Craig Topper94438ba2011-12-16 08:06:31 +00004044 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4045 "Unsupported vector type for unpckh");
4046
Craig Topper5a529e42013-01-18 06:44:29 +00004047 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004048 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004049 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004050
Craig Topper94438ba2011-12-16 08:06:31 +00004051 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4052 // independently on 128-bit lanes.
4053 unsigned NumLanes = VT.getSizeInBits()/128;
4054 unsigned NumLaneElts = NumElts/NumLanes;
4055
Craig Topper59235472013-08-06 07:23:12 +00004056 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4057 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4058 int BitI = Mask[l+i];
4059 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004060 if (!isUndefOrEqual(BitI, j))
4061 return false;
4062 if (!isUndefOrEqual(BitI1, j))
4063 return false;
4064 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004065 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004066 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004067}
4068
Evan Cheng017dcc62006-04-21 01:05:10 +00004069/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4070/// specifies a shuffle of elements that is suitable for input to MOVSS,
4071/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004072static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004073 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004074 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004075 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004076 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004077
Craig Topperc612d792012-01-02 09:17:37 +00004078 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004079
Nate Begeman9008ca62009-04-27 18:41:29 +00004080 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004081 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004082
Craig Topperc612d792012-01-02 09:17:37 +00004083 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004084 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004085 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004086
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004087 return true;
4088}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004089
Craig Topper70b883b2011-11-28 10:14:51 +00004090/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004091/// as permutations between 128-bit chunks or halves. As an example: this
4092/// shuffle bellow:
4093/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4094/// The first half comes from the second half of V1 and the second half from the
4095/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004096static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004097 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004098 return false;
4099
4100 // The shuffle result is divided into half A and half B. In total the two
4101 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4102 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004103 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004104 bool MatchA = false, MatchB = false;
4105
4106 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004107 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004108 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4109 MatchA = true;
4110 break;
4111 }
4112 }
4113
4114 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004115 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004116 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4117 MatchB = true;
4118 break;
4119 }
4120 }
4121
4122 return MatchA && MatchB;
4123}
4124
Craig Topper70b883b2011-11-28 10:14:51 +00004125/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4126/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004127static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004128 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004129
Craig Topperc612d792012-01-02 09:17:37 +00004130 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004131
Craig Topperc612d792012-01-02 09:17:37 +00004132 unsigned FstHalf = 0, SndHalf = 0;
4133 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004134 if (SVOp->getMaskElt(i) > 0) {
4135 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4136 break;
4137 }
4138 }
Craig Topperc612d792012-01-02 09:17:37 +00004139 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004140 if (SVOp->getMaskElt(i) > 0) {
4141 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4142 break;
4143 }
4144 }
4145
4146 return (FstHalf | (SndHalf << 4));
4147}
4148
Craig Topperd36e1ef2013-08-15 08:38:25 +00004149// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004150static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004151 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4152 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004153 return false;
4154
Craig Topperd36e1ef2013-08-15 08:38:25 +00004155 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004156 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004157 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4158 for (unsigned i = 0; i != NumElts; ++i) {
4159 if (Mask[i] < 0)
4160 continue;
4161 Imm8 |= Mask[i] << (i*2);
4162 }
4163 return true;
4164 }
4165
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004166 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004167 SmallVector<int, 4> MaskVal(LaneSize, -1);
4168
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004169 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4170 for (unsigned i = 0; i != LaneSize; ++i) {
4171 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4172 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004173 if (Mask[i+l] < 0)
4174 continue;
4175 if (MaskVal[i] < 0) {
4176 MaskVal[i] = Mask[i+l] - l;
4177 Imm8 |= MaskVal[i] << (i*2);
4178 continue;
4179 }
4180 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004181 return false;
4182 }
4183 }
4184 return true;
4185}
4186
Craig Topper70b883b2011-11-28 10:14:51 +00004187/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004188/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4189/// Note that VPERMIL mask matching is different depending whether theunderlying
4190/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4191/// to the same elements of the low, but to the higher half of the source.
4192/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004193/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004194static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4195 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4196 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004197 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004198 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004199 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004200
Craig Topperc612d792012-01-02 09:17:37 +00004201 unsigned NumLanes = VT.getSizeInBits()/128;
4202 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004203 // 2 or 4 elements in one lane
4204
4205 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004206 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004207 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004208 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004209 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004210 if (symetricMaskRequired) {
4211 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4212 ExpectedMaskVal[i] = Mask[i+l] - l;
4213 continue;
4214 }
4215 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4216 return false;
4217 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004218 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004219 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004220 return true;
4221}
4222
Craig Topper5aaffa82012-02-19 02:53:47 +00004223/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004224/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004225/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004226static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004227 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004228 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004229 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004230
4231 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004232 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004233 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004234
Nate Begeman9008ca62009-04-27 18:41:29 +00004235 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004236 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004237
Craig Topperc612d792012-01-02 09:17:37 +00004238 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004239 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4240 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4241 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004242 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004243
Evan Cheng39623da2006-04-20 08:58:49 +00004244 return true;
4245}
4246
Evan Chengd9539472006-04-14 21:59:03 +00004247/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4248/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004249/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004250static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004251 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004252 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004253 return false;
4254
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004255 unsigned NumElems = VT.getVectorNumElements();
4256
Craig Topper5a529e42013-01-18 06:44:29 +00004257 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004258 (VT.is256BitVector() && NumElems != 8) ||
4259 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004260 return false;
4261
4262 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004263 for (unsigned i = 0; i != NumElems; i += 2)
4264 if (!isUndefOrEqual(Mask[i], i+1) ||
4265 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004266 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004267
4268 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004269}
4270
4271/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4272/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004273/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004274static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004275 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004276 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004277 return false;
4278
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004279 unsigned NumElems = VT.getVectorNumElements();
4280
Craig Topper5a529e42013-01-18 06:44:29 +00004281 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004282 (VT.is256BitVector() && NumElems != 8) ||
4283 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004284 return false;
4285
4286 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004287 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004288 if (!isUndefOrEqual(Mask[i], i) ||
4289 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004290 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004291
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004292 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004293}
4294
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004295/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4296/// specifies a shuffle of elements that is suitable for input to 256-bit
4297/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004298static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004299 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004300 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004301
Craig Topper7a9a28b2012-08-12 02:23:29 +00004302 unsigned NumElts = VT.getVectorNumElements();
4303 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004304 return false;
4305
Craig Topperc612d792012-01-02 09:17:37 +00004306 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004307 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004308 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004309 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004310 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004311 return false;
4312 return true;
4313}
4314
Evan Cheng0b457f02008-09-25 20:50:48 +00004315/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004316/// specifies a shuffle of elements that is suitable for input to 128-bit
4317/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004318static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004319 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004320 return false;
4321
Craig Topperc612d792012-01-02 09:17:37 +00004322 unsigned e = VT.getVectorNumElements() / 2;
4323 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004324 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004325 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004326 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004327 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004328 return false;
4329 return true;
4330}
4331
Elena Demikhovsky83952512013-07-31 11:35:14 +00004332/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004333/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004334/// suitable for instruction that extract 128 or 256 bit vectors
4335static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4336 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004337 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4338 return false;
4339
Elena Demikhovsky83952512013-07-31 11:35:14 +00004340 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004341 uint64_t Index =
4342 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4343
Craig Topper5a0910b2013-08-15 02:33:50 +00004344 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004345 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004346 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004347
4348 return Result;
4349}
4350
Elena Demikhovsky83952512013-07-31 11:35:14 +00004351/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004352/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004353/// insertion of 128 or 256-bit subvectors
4354static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4355 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004356 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4357 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004358 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004359 uint64_t Index =
4360 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4361
Craig Topper5a0910b2013-08-15 02:33:50 +00004362 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004363 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004364 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004365
4366 return Result;
4367}
4368
Elena Demikhovsky83952512013-07-31 11:35:14 +00004369bool X86::isVINSERT128Index(SDNode *N) {
4370 return isVINSERTIndex(N, 128);
4371}
4372
4373bool X86::isVINSERT256Index(SDNode *N) {
4374 return isVINSERTIndex(N, 256);
4375}
4376
4377bool X86::isVEXTRACT128Index(SDNode *N) {
4378 return isVEXTRACTIndex(N, 128);
4379}
4380
4381bool X86::isVEXTRACT256Index(SDNode *N) {
4382 return isVEXTRACTIndex(N, 256);
4383}
4384
Evan Cheng63d33002006-03-22 08:01:21 +00004385/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004386/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004387/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004388static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004389 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004390
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004391 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004392 "Unsupported vector type for PSHUF/SHUFP");
4393
4394 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4395 // independently on 128-bit lanes.
4396 unsigned NumElts = VT.getVectorNumElements();
4397 unsigned NumLanes = VT.getSizeInBits()/128;
4398 unsigned NumLaneElts = NumElts/NumLanes;
4399
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004400 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4401 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004402
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004403 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004404 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004405 for (unsigned i = 0; i != NumElts; ++i) {
4406 int Elt = N->getMaskElt(i);
4407 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004408 Elt &= NumLaneElts - 1;
4409 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004410 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004411 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004412
Evan Cheng63d33002006-03-22 08:01:21 +00004413 return Mask;
4414}
4415
Evan Cheng506d3df2006-03-29 23:07:14 +00004416/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004417/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004418static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004419 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004420
4421 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4422 "Unsupported vector type for PSHUFHW");
4423
4424 unsigned NumElts = VT.getVectorNumElements();
4425
Evan Cheng506d3df2006-03-29 23:07:14 +00004426 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004427 for (unsigned l = 0; l != NumElts; l += 8) {
4428 // 8 nodes per lane, but we only care about the last 4.
4429 for (unsigned i = 0; i < 4; ++i) {
4430 int Elt = N->getMaskElt(l+i+4);
4431 if (Elt < 0) continue;
4432 Elt &= 0x3; // only 2-bits.
4433 Mask |= Elt << (i * 2);
4434 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004435 }
Craig Topper6b28d352012-05-03 07:12:59 +00004436
Evan Cheng506d3df2006-03-29 23:07:14 +00004437 return Mask;
4438}
4439
4440/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004441/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004442static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004443 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004444
4445 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4446 "Unsupported vector type for PSHUFHW");
4447
4448 unsigned NumElts = VT.getVectorNumElements();
4449
Evan Cheng506d3df2006-03-29 23:07:14 +00004450 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004451 for (unsigned l = 0; l != NumElts; l += 8) {
4452 // 8 nodes per lane, but we only care about the first 4.
4453 for (unsigned i = 0; i < 4; ++i) {
4454 int Elt = N->getMaskElt(l+i);
4455 if (Elt < 0) continue;
4456 Elt &= 0x3; // only 2-bits
4457 Mask |= Elt << (i * 2);
4458 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004459 }
Craig Topper6b28d352012-05-03 07:12:59 +00004460
Evan Cheng506d3df2006-03-29 23:07:14 +00004461 return Mask;
4462}
4463
Nate Begemana09008b2009-10-19 02:17:23 +00004464/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4465/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004466static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004467 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004468 unsigned EltSize = VT.is512BitVector() ? 1 :
4469 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004470
Craig Topper0e2037b2012-01-20 05:53:00 +00004471 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004472 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004473 unsigned NumLaneElts = NumElts/NumLanes;
4474
4475 int Val = 0;
4476 unsigned i;
4477 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004478 Val = SVOp->getMaskElt(i);
4479 if (Val >= 0)
4480 break;
4481 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004482 if (Val >= (int)NumElts)
4483 Val -= NumElts - NumLaneElts;
4484
Eli Friedman63f8dde2011-07-25 21:36:45 +00004485 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004486 return (Val - i) * EltSize;
4487}
4488
Elena Demikhovsky83952512013-07-31 11:35:14 +00004489static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4490 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004491 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004492 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004493
4494 uint64_t Index =
4495 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4496
Craig Topper5a0910b2013-08-15 02:33:50 +00004497 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004498 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004499
Elena Demikhovsky83952512013-07-31 11:35:14 +00004500 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004501 return Index / NumElemsPerChunk;
4502}
4503
Elena Demikhovsky83952512013-07-31 11:35:14 +00004504static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4505 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004506 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004507 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004508
4509 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004510 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004511
Craig Topper5a0910b2013-08-15 02:33:50 +00004512 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004513 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004514
Elena Demikhovsky83952512013-07-31 11:35:14 +00004515 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004516 return Index / NumElemsPerChunk;
4517}
4518
Elena Demikhovsky83952512013-07-31 11:35:14 +00004519/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4520/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4521/// and VINSERTI128 instructions.
4522unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4523 return getExtractVEXTRACTImmediate(N, 128);
4524}
4525
4526/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4527/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4528/// and VINSERTI64x4 instructions.
4529unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4530 return getExtractVEXTRACTImmediate(N, 256);
4531}
4532
4533/// getInsertVINSERT128Immediate - Return the appropriate immediate
4534/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4535/// and VINSERTI128 instructions.
4536unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4537 return getInsertVINSERTImmediate(N, 128);
4538}
4539
4540/// getInsertVINSERT256Immediate - Return the appropriate immediate
4541/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4542/// and VINSERTI64x4 instructions.
4543unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4544 return getInsertVINSERTImmediate(N, 256);
4545}
4546
Evan Cheng37b73872009-07-30 08:33:02 +00004547/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4548/// constant +0.0.
4549bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004550 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4551 return CN->isNullValue();
4552 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4553 return CFP->getValueAPF().isPosZero();
4554 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004555}
4556
Nate Begeman9008ca62009-04-27 18:41:29 +00004557/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4558/// their permute mask.
4559static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4560 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004561 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004562 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004563 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004564
Nate Begeman5a5ca152009-04-29 05:20:52 +00004565 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004566 int Idx = SVOp->getMaskElt(i);
4567 if (Idx >= 0) {
4568 if (Idx < (int)NumElems)
4569 Idx += NumElems;
4570 else
4571 Idx -= NumElems;
4572 }
4573 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004574 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004575 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004576 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004577}
4578
Evan Cheng533a0aa2006-04-19 20:35:22 +00004579/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4580/// match movhlps. The lower half elements should come from upper half of
4581/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004582/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004583static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004584 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004585 return false;
4586 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004587 return false;
4588 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004589 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004590 return false;
4591 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004592 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004593 return false;
4594 return true;
4595}
4596
Evan Cheng5ced1d82006-04-06 23:23:56 +00004597/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004598/// is promoted to a vector. It also returns the LoadSDNode by reference if
4599/// required.
4600static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004601 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4602 return false;
4603 N = N->getOperand(0).getNode();
4604 if (!ISD::isNON_EXTLoad(N))
4605 return false;
4606 if (LD)
4607 *LD = cast<LoadSDNode>(N);
4608 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004609}
4610
Dan Gohman65fd6562011-11-03 21:49:52 +00004611// Test whether the given value is a vector value which will be legalized
4612// into a load.
4613static bool WillBeConstantPoolLoad(SDNode *N) {
4614 if (N->getOpcode() != ISD::BUILD_VECTOR)
4615 return false;
4616
4617 // Check for any non-constant elements.
4618 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4619 switch (N->getOperand(i).getNode()->getOpcode()) {
4620 case ISD::UNDEF:
4621 case ISD::ConstantFP:
4622 case ISD::Constant:
4623 break;
4624 default:
4625 return false;
4626 }
4627
4628 // Vectors of all-zeros and all-ones are materialized with special
4629 // instructions rather than being loaded.
4630 return !ISD::isBuildVectorAllZeros(N) &&
4631 !ISD::isBuildVectorAllOnes(N);
4632}
4633
Evan Cheng533a0aa2006-04-19 20:35:22 +00004634/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4635/// match movlp{s|d}. The lower half elements should come from lower half of
4636/// V1 (and in order), and the upper half elements should come from the upper
4637/// half of V2 (and in order). And since V1 will become the source of the
4638/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004639static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004640 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004641 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004642 return false;
4643
Evan Cheng466685d2006-10-09 20:57:25 +00004644 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004645 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004646 // Is V2 is a vector load, don't do this transformation. We will try to use
4647 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004648 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004649 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004650
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004651 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004652
Evan Cheng533a0aa2006-04-19 20:35:22 +00004653 if (NumElems != 2 && NumElems != 4)
4654 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004655 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004656 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004657 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004658 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004659 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004660 return false;
4661 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004662}
4663
Evan Cheng39623da2006-04-20 08:58:49 +00004664/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4665/// all the same.
4666static bool isSplatVector(SDNode *N) {
4667 if (N->getOpcode() != ISD::BUILD_VECTOR)
4668 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004669
Dan Gohman475871a2008-07-27 21:46:04 +00004670 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004671 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4672 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004673 return false;
4674 return true;
4675}
4676
Evan Cheng213d2cf2007-05-17 18:45:50 +00004677/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004678/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004679/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004680static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004681 SDValue V1 = N->getOperand(0);
4682 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004683 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4684 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004685 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004686 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004687 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004688 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4689 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004690 if (Opc != ISD::BUILD_VECTOR ||
4691 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004692 return false;
4693 } else if (Idx >= 0) {
4694 unsigned Opc = V1.getOpcode();
4695 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4696 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004697 if (Opc != ISD::BUILD_VECTOR ||
4698 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004699 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004700 }
4701 }
4702 return true;
4703}
4704
4705/// getZeroVector - Returns a vector of specified type with all zero elements.
4706///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004707static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004708 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004709 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004710
Dale Johannesen0488fb62010-09-30 23:57:10 +00004711 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004712 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004713 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004714 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004715 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004716 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4717 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4718 } else { // SSE1
4719 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4720 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4721 }
Craig Topper5a529e42013-01-18 06:44:29 +00004722 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004723 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004724 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4725 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004726 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4727 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004728 } else {
4729 // 256-bit logic and arithmetic instructions in AVX are all
4730 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4731 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4732 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004733 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4734 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004735 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004736 } else if (VT.is512BitVector()) { // AVX-512
4737 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4738 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4739 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4740 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004741 } else
4742 llvm_unreachable("Unexpected vector type");
4743
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004744 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004745}
4746
Chris Lattner8a594482007-11-25 00:24:49 +00004747/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004748/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4749/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4750/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004751static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004752 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004753 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004754
Owen Anderson825b72b2009-08-11 20:47:22 +00004755 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004756 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004757 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004758 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004759 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004760 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4761 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004762 } else { // AVX
4763 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004764 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004765 }
Craig Topper5a529e42013-01-18 06:44:29 +00004766 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004767 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004768 } else
4769 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004770
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004771 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004772}
4773
Evan Cheng39623da2006-04-20 08:58:49 +00004774/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4775/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004776static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004777 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004778 if (Mask[i] > (int)NumElems) {
4779 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004780 }
Evan Cheng39623da2006-04-20 08:58:49 +00004781 }
Evan Cheng39623da2006-04-20 08:58:49 +00004782}
4783
Evan Cheng017dcc62006-04-21 01:05:10 +00004784/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4785/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004786static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004787 SDValue V2) {
4788 unsigned NumElems = VT.getVectorNumElements();
4789 SmallVector<int, 8> Mask;
4790 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004791 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004792 Mask.push_back(i);
4793 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004794}
4795
Nate Begeman9008ca62009-04-27 18:41:29 +00004796/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004797static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004798 SDValue V2) {
4799 unsigned NumElems = VT.getVectorNumElements();
4800 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004801 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004802 Mask.push_back(i);
4803 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004804 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004805 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004806}
4807
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004808/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004809static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004810 SDValue V2) {
4811 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004812 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004813 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004814 Mask.push_back(i + Half);
4815 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004816 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004817 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004818}
4819
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004820// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004821// a generic shuffle instruction because the target has no such instructions.
4822// Generate shuffles which repeat i16 and i8 several times until they can be
4823// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004824static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004825 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004826 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004827 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004828
Nate Begeman9008ca62009-04-27 18:41:29 +00004829 while (NumElems > 4) {
4830 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004831 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004832 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004833 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004834 EltNo -= NumElems/2;
4835 }
4836 NumElems >>= 1;
4837 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004838 return V;
4839}
Eric Christopherfd179292009-08-27 18:07:15 +00004840
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004841/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4842static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004843 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004844 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004845
Craig Topper5a529e42013-01-18 06:44:29 +00004846 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004847 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004848 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004849 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4850 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004851 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004852 // To use VPERMILPS to splat scalars, the second half of indicies must
4853 // refer to the higher part, which is a duplication of the lower one,
4854 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004855 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4856 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004857
4858 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4859 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4860 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004861 } else
4862 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004863
4864 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4865}
4866
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004867/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004868static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004869 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004870 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004871 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004872
4873 int EltNo = SV->getSplatIndex();
4874 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004875 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004876
Craig Topper5a529e42013-01-18 06:44:29 +00004877 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4878 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004879
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004880 // Extract the 128-bit part containing the splat element and update
4881 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004882 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004883 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4884 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004885 EltNo -= NumElems/2;
4886 }
4887
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004888 // All i16 and i8 vector types can't be used directly by a generic shuffle
4889 // instruction because the target has no such instruction. Generate shuffles
4890 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004891 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004892 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004893 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004894 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004895
4896 // Recreate the 256-bit vector and place the same 128-bit vector
4897 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004898 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004899 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004900 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004901 }
4902
4903 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004904}
4905
Evan Chengba05f722006-04-21 23:03:30 +00004906/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004907/// vector of zero or undef vector. This produces a shuffle where the low
4908/// element of V2 is swizzled into the zero/undef vector, landing at element
4909/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Dan Gohman475871a2008-07-27 21:46:04 +00004910static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004911 bool IsZero,
4912 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004913 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004914 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004915 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004916 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004917 unsigned NumElems = VT.getVectorNumElements();
4918 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004919 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004920 // If this is the insertion idx, put the low elt of V2 here.
4921 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004922 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004923}
4924
Craig Toppera1ffc682012-03-20 06:42:26 +00004925/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4926/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004927/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004928static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004929 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004930 unsigned NumElems = VT.getVectorNumElements();
4931 SDValue ImmN;
4932
Craig Topper89f4e662012-03-20 07:17:59 +00004933 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004934 switch(N->getOpcode()) {
4935 case X86ISD::SHUFP:
4936 ImmN = N->getOperand(N->getNumOperands()-1);
4937 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4938 break;
4939 case X86ISD::UNPCKH:
4940 DecodeUNPCKHMask(VT, Mask);
4941 break;
4942 case X86ISD::UNPCKL:
4943 DecodeUNPCKLMask(VT, Mask);
4944 break;
4945 case X86ISD::MOVHLPS:
4946 DecodeMOVHLPSMask(NumElems, Mask);
4947 break;
4948 case X86ISD::MOVLHPS:
4949 DecodeMOVLHPSMask(NumElems, Mask);
4950 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004951 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004952 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004953 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004954 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004955 case X86ISD::PSHUFD:
4956 case X86ISD::VPERMILP:
4957 ImmN = N->getOperand(N->getNumOperands()-1);
4958 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004959 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004960 break;
4961 case X86ISD::PSHUFHW:
4962 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004963 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004964 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004965 break;
4966 case X86ISD::PSHUFLW:
4967 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004968 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004969 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004970 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004971 case X86ISD::VPERMI:
4972 ImmN = N->getOperand(N->getNumOperands()-1);
4973 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4974 IsUnary = true;
4975 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004976 case X86ISD::MOVSS:
4977 case X86ISD::MOVSD: {
4978 // The index 0 always comes from the first element of the second source,
4979 // this is why MOVSS and MOVSD are used in the first place. The other
4980 // elements come from the other positions of the first source vector
4981 Mask.push_back(NumElems);
4982 for (unsigned i = 1; i != NumElems; ++i) {
4983 Mask.push_back(i);
4984 }
4985 break;
4986 }
4987 case X86ISD::VPERM2X128:
4988 ImmN = N->getOperand(N->getNumOperands()-1);
4989 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004990 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004991 break;
4992 case X86ISD::MOVDDUP:
4993 case X86ISD::MOVLHPD:
4994 case X86ISD::MOVLPD:
4995 case X86ISD::MOVLPS:
4996 case X86ISD::MOVSHDUP:
4997 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00004998 // Not yet implemented
4999 return false;
5000 default: llvm_unreachable("unknown target shuffle node");
5001 }
5002
5003 return true;
5004}
5005
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005006/// getShuffleScalarElt - Returns the scalar element that will make up the ith
5007/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00005008static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00005009 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005010 if (Depth == 6)
5011 return SDValue(); // Limit search depth.
5012
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005013 SDValue V = SDValue(N, 0);
5014 EVT VT = V.getValueType();
5015 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005016
5017 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5018 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00005019 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005020
Craig Topper3d092db2012-03-21 02:14:01 +00005021 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005022 return DAG.getUNDEF(VT.getVectorElementType());
5023
Craig Topperd156dc12012-02-06 07:17:51 +00005024 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00005025 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5026 : SV->getOperand(1);
5027 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005028 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005029
5030 // Recurse into target specific vector shuffles to find scalars.
5031 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005032 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005033 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005034 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005035 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005036
Craig Topperd978c542012-05-06 19:46:21 +00005037 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005038 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005039
Craig Topper3d092db2012-03-21 02:14:01 +00005040 int Elt = ShuffleMask[Index];
5041 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005042 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005043
Craig Topper3d092db2012-03-21 02:14:01 +00005044 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005045 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005046 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005047 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005048 }
5049
5050 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005051 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005052 V = V.getOperand(0);
5053 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005054 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005055
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005056 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005057 return SDValue();
5058 }
5059
5060 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5061 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005062 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005063
5064 if (V.getOpcode() == ISD::BUILD_VECTOR)
5065 return V.getOperand(Index);
5066
5067 return SDValue();
5068}
5069
5070/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5071/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005072/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005073/// We count undefs as zeros until PreferredNum is reached.
5074static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5075 unsigned NumElems, bool ZerosFromLeft,
5076 SelectionDAG &DAG,
5077 unsigned PreferredNum = -1U) {
5078 unsigned NumZeros = 0;
5079 for (unsigned i = 0; i != NumElems; ++i) {
5080 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005081 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005082 if (!Elt.getNode())
5083 break;
5084
5085 if (X86::isZeroNode(Elt))
5086 ++NumZeros;
5087 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5088 NumZeros = std::min(NumZeros + 1, PreferredNum);
5089 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005090 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005091 }
5092
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005093 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005094}
5095
Craig Topper3d092db2012-03-21 02:14:01 +00005096/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5097/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005098/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5099static
Craig Topper3d092db2012-03-21 02:14:01 +00005100bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5101 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5102 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005103 bool SeenV1 = false;
5104 bool SeenV2 = false;
5105
Craig Topper3d092db2012-03-21 02:14:01 +00005106 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005107 int Idx = SVOp->getMaskElt(i);
5108 // Ignore undef indicies
5109 if (Idx < 0)
5110 continue;
5111
Craig Topper3d092db2012-03-21 02:14:01 +00005112 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005113 SeenV1 = true;
5114 else
5115 SeenV2 = true;
5116
5117 // Only accept consecutive elements from the same vector
5118 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5119 return false;
5120 }
5121
5122 OpNum = SeenV1 ? 0 : 1;
5123 return true;
5124}
5125
5126/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5127/// logical left shift of a vector.
5128static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5129 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005130 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005131 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005132 unsigned NumZeros = getNumOfConsecutiveZeros(
5133 SVOp, NumElems, false /* check zeros from right */, DAG,
5134 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005135 unsigned OpSrc;
5136
5137 if (!NumZeros)
5138 return false;
5139
5140 // Considering the elements in the mask that are not consecutive zeros,
5141 // check if they consecutively come from only one of the source vectors.
5142 //
5143 // V1 = {X, A, B, C} 0
5144 // \ \ \ /
5145 // vector_shuffle V1, V2 <1, 2, 3, X>
5146 //
5147 if (!isShuffleMaskConsecutive(SVOp,
5148 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005149 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005150 NumZeros, // Where to start looking in the src vector
5151 NumElems, // Number of elements in vector
5152 OpSrc)) // Which source operand ?
5153 return false;
5154
5155 isLeft = false;
5156 ShAmt = NumZeros;
5157 ShVal = SVOp->getOperand(OpSrc);
5158 return true;
5159}
5160
5161/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5162/// logical left shift of a vector.
5163static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5164 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005165 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005166 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005167 unsigned NumZeros = getNumOfConsecutiveZeros(
5168 SVOp, NumElems, true /* check zeros from left */, DAG,
5169 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005170 unsigned OpSrc;
5171
5172 if (!NumZeros)
5173 return false;
5174
5175 // Considering the elements in the mask that are not consecutive zeros,
5176 // check if they consecutively come from only one of the source vectors.
5177 //
5178 // 0 { A, B, X, X } = V2
5179 // / \ / /
5180 // vector_shuffle V1, V2 <X, X, 4, 5>
5181 //
5182 if (!isShuffleMaskConsecutive(SVOp,
5183 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005184 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005185 0, // Where to start looking in the src vector
5186 NumElems, // Number of elements in vector
5187 OpSrc)) // Which source operand ?
5188 return false;
5189
5190 isLeft = true;
5191 ShAmt = NumZeros;
5192 ShVal = SVOp->getOperand(OpSrc);
5193 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005194}
5195
5196/// isVectorShift - Returns true if the shuffle can be implemented as a
5197/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005198static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005199 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005200 // Although the logic below support any bitwidth size, there are no
5201 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005202 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005203 return false;
5204
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005205 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5206 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5207 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005208
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005209 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005210}
5211
Evan Chengc78d3b42006-04-24 18:01:45 +00005212/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5213///
Dan Gohman475871a2008-07-27 21:46:04 +00005214static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005215 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005216 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005217 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005218 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005219 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005220 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005221
Andrew Trickac6d9be2013-05-25 02:42:55 +00005222 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005223 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005224 bool First = true;
5225 for (unsigned i = 0; i < 16; ++i) {
5226 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5227 if (ThisIsNonZero && First) {
5228 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005229 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005230 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005231 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005232 First = false;
5233 }
5234
5235 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005236 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005237 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5238 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005239 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005240 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005241 }
5242 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005243 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5244 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5245 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005246 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005247 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005248 } else
5249 ThisElt = LastElt;
5250
Gabor Greifba36cb52008-08-28 21:40:38 +00005251 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005252 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005253 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005254 }
5255 }
5256
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005257 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005258}
5259
Bill Wendlinga348c562007-03-22 18:42:45 +00005260/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005261///
Dan Gohman475871a2008-07-27 21:46:04 +00005262static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005263 unsigned NumNonZero, unsigned NumZero,
5264 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005265 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005266 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005267 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005268 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005269
Andrew Trickac6d9be2013-05-25 02:42:55 +00005270 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005271 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005272 bool First = true;
5273 for (unsigned i = 0; i < 8; ++i) {
5274 bool isNonZero = (NonZeros & (1 << i)) != 0;
5275 if (isNonZero) {
5276 if (First) {
5277 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005278 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005279 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005280 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005281 First = false;
5282 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005283 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005284 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005285 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005286 }
5287 }
5288
5289 return V;
5290}
5291
Evan Chengf26ffe92008-05-29 08:22:04 +00005292/// getVShift - Return a vector logical shift node.
5293///
Owen Andersone50ed302009-08-10 22:56:29 +00005294static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005295 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005296 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005297 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005298 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005299 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005300 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5301 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005302 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005303 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005304 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005305}
5306
Craig Topperff79bc62013-08-18 08:53:01 +00005307static SDValue
5308LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005309
Evan Chengc3630942009-12-09 21:00:30 +00005310 // Check if the scalar load can be widened into a vector load. And if
5311 // the address is "base + cst" see if the cst can be "absorbed" into
5312 // the shuffle mask.
5313 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5314 SDValue Ptr = LD->getBasePtr();
5315 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5316 return SDValue();
5317 EVT PVT = LD->getValueType(0);
5318 if (PVT != MVT::i32 && PVT != MVT::f32)
5319 return SDValue();
5320
5321 int FI = -1;
5322 int64_t Offset = 0;
5323 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5324 FI = FINode->getIndex();
5325 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005326 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005327 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5328 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5329 Offset = Ptr.getConstantOperandVal(1);
5330 Ptr = Ptr.getOperand(0);
5331 } else {
5332 return SDValue();
5333 }
5334
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005335 // FIXME: 256-bit vector instructions don't require a strict alignment,
5336 // improve this code to support it better.
5337 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005338 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005339 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005340 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005341 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005342 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005343 // Can't change the alignment. FIXME: It's possible to compute
5344 // the exact stack offset and reference FI + adjust offset instead.
5345 // If someone *really* cares about this. That's the way to implement it.
5346 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005347 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005348 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005349 }
5350 }
5351
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005352 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005353 // Ptr + (Offset & ~15).
5354 if (Offset < 0)
5355 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005356 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005357 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005358 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005359 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005360 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005361 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5362
5363 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005364 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005365
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005366 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5367 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005368 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005369 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005370
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005371 SmallVector<int, 8> Mask;
5372 for (unsigned i = 0; i != NumElems; ++i)
5373 Mask.push_back(EltNo);
5374
Craig Toppercc3000632012-01-30 07:50:31 +00005375 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005376 }
5377
5378 return SDValue();
5379}
5380
Michael J. Spencerec38de22010-10-10 22:04:20 +00005381/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5382/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005383/// load which has the same value as a build_vector whose operands are 'elts'.
5384///
5385/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005386///
Nate Begeman1449f292010-03-24 22:19:06 +00005387/// FIXME: we'd also like to handle the case where the last elements are zero
5388/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5389/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005390static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005391 SDLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005392 EVT EltVT = VT.getVectorElementType();
5393 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005394
Nate Begemanfdea31a2010-03-24 20:49:50 +00005395 LoadSDNode *LDBase = NULL;
5396 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005397
Nate Begeman1449f292010-03-24 22:19:06 +00005398 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005399 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005400 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005401 for (unsigned i = 0; i < NumElems; ++i) {
5402 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005403
Nate Begemanfdea31a2010-03-24 20:49:50 +00005404 if (!Elt.getNode() ||
5405 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5406 return SDValue();
5407 if (!LDBase) {
5408 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5409 return SDValue();
5410 LDBase = cast<LoadSDNode>(Elt.getNode());
5411 LastLoadedElt = i;
5412 continue;
5413 }
5414 if (Elt.getOpcode() == ISD::UNDEF)
5415 continue;
5416
5417 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5418 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5419 return SDValue();
5420 LastLoadedElt = i;
5421 }
Nate Begeman1449f292010-03-24 22:19:06 +00005422
5423 // If we have found an entire vector of loads and undefs, then return a large
5424 // load of the entire vector width starting at the base pointer. If we found
5425 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005426 if (LastLoadedElt == NumElems - 1) {
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005427 SDValue NewLd = SDValue();
Nate Begemanfdea31a2010-03-24 20:49:50 +00005428 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005429 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5430 LDBase->getPointerInfo(),
5431 LDBase->isVolatile(), LDBase->isNonTemporal(),
5432 LDBase->isInvariant(), 0);
5433 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5434 LDBase->getPointerInfo(),
5435 LDBase->isVolatile(), LDBase->isNonTemporal(),
5436 LDBase->isInvariant(), LDBase->getAlignment());
5437
5438 if (LDBase->hasAnyUseOfValue(1)) {
5439 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5440 SDValue(LDBase, 1),
5441 SDValue(NewLd.getNode(), 1));
5442 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5443 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5444 SDValue(NewLd.getNode(), 1));
5445 }
5446
5447 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005448 }
5449 if (NumElems == 4 && LastLoadedElt == 1 &&
5450 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005451 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5452 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005453 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005454 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5455 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005456 LDBase->getPointerInfo(),
5457 LDBase->getAlignment(),
5458 false/*isVolatile*/, true/*ReadMem*/,
5459 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005460
5461 // Make sure the newly-created LOAD is in the same position as LDBase in
5462 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5463 // update uses of LDBase's output chain to use the TokenFactor.
5464 if (LDBase->hasAnyUseOfValue(1)) {
5465 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5466 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5467 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5468 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5469 SDValue(ResNode.getNode(), 1));
5470 }
5471
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005472 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005473 }
5474 return SDValue();
5475}
5476
Nadav Rotem9d68b062012-04-08 12:54:54 +00005477/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5478/// to generate a splat value for the following cases:
5479/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005480/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005481/// a scalar load, or a constant.
5482/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005483/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005484static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5485 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005486 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005487 return SDValue();
5488
Craig Topper5a0910b2013-08-15 02:33:50 +00005489 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005490 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005491
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005492 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005493 "Unsupported vector type for broadcast.");
5494
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005495 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005496 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005497
Nadav Rotem9d68b062012-04-08 12:54:54 +00005498 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005499 default:
5500 // Unknown pattern found.
5501 return SDValue();
5502
5503 case ISD::BUILD_VECTOR: {
5504 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005505 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005506 return SDValue();
5507
Nadav Rotem9d68b062012-04-08 12:54:54 +00005508 Ld = Op.getOperand(0);
5509 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5510 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005511
5512 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005513 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005514 // Constants may have multiple users.
5515 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005516 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005517 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005518 }
5519
5520 case ISD::VECTOR_SHUFFLE: {
5521 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5522
5523 // Shuffles must have a splat mask where the first element is
5524 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005525 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005526 return SDValue();
5527
5528 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005529 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005530 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5531
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005532 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005533 return SDValue();
5534
5535 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005536 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005537 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5538 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5539 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005540
5541 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005542 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005543 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005544
5545 // The scalar_to_vector node and the suspected
5546 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005547 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005548
5549 // AVX-512 has register version of the broadcast
5550 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5551 Ld.getValueType().getSizeInBits() >= 32;
5552 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5553 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005554 return SDValue();
5555 break;
5556 }
5557 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005558
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005559 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005560
5561 // Handle the broadcasting a single constant scalar from the constant pool
5562 // into a vector. On Sandybridge it is still better to load a constant vector
5563 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005564 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005565 EVT CVT = Ld.getValueType();
5566 assert(!CVT.isVector() && "Must not broadcast a vector type");
5567 unsigned ScalarSize = CVT.getSizeInBits();
5568
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005569 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005570 const Constant *C = 0;
5571 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5572 C = CI->getConstantIntValue();
5573 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5574 C = CF->getConstantFPValue();
5575
5576 assert(C && "Invalid constant type");
5577
Craig Topper158ec072013-08-14 07:34:43 +00005578 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5579 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005580 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005581 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005582 MachinePointerInfo::getConstantPool(),
5583 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005584
Nadav Rotem9d68b062012-04-08 12:54:54 +00005585 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5586 }
5587 }
5588
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005589 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005590 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5591
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005592 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005593 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005594 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005595 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5596
5597 // The scalar source must be a normal load.
5598 if (!IsLoad)
5599 return SDValue();
5600
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005601 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005602 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005603
Craig Toppera9376332012-01-10 08:23:59 +00005604 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005605 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005606 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005607 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005608 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005609 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005610
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005611 // Unsupported broadcast.
5612 return SDValue();
5613}
5614
Craig Topper158ec072013-08-14 07:34:43 +00005615static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005616 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005617
5618 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005619 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5620 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005621 return SDValue();
5622
Andrew Trickac6d9be2013-05-25 02:42:55 +00005623 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005624 unsigned NumElems = Op.getNumOperands();
5625
5626 SDValue VecIn1;
5627 SDValue VecIn2;
5628 SmallVector<unsigned, 4> InsertIndices;
5629 SmallVector<int, 8> Mask(NumElems, -1);
5630
5631 for (unsigned i = 0; i != NumElems; ++i) {
5632 unsigned Opc = Op.getOperand(i).getOpcode();
5633
5634 if (Opc == ISD::UNDEF)
5635 continue;
5636
5637 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5638 // Quit if more than 1 elements need inserting.
5639 if (InsertIndices.size() > 1)
5640 return SDValue();
5641
5642 InsertIndices.push_back(i);
5643 continue;
5644 }
5645
5646 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5647 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5648
5649 // Quit if extracted from vector of different type.
5650 if (ExtractedFromVec.getValueType() != VT)
5651 return SDValue();
5652
5653 // Quit if non-constant index.
5654 if (!isa<ConstantSDNode>(ExtIdx))
5655 return SDValue();
5656
5657 if (VecIn1.getNode() == 0)
5658 VecIn1 = ExtractedFromVec;
5659 else if (VecIn1 != ExtractedFromVec) {
5660 if (VecIn2.getNode() == 0)
5661 VecIn2 = ExtractedFromVec;
5662 else if (VecIn2 != ExtractedFromVec)
5663 // Quit if more than 2 vectors to shuffle
5664 return SDValue();
5665 }
5666
5667 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5668
5669 if (ExtractedFromVec == VecIn1)
5670 Mask[i] = Idx;
5671 else if (ExtractedFromVec == VecIn2)
5672 Mask[i] = Idx + NumElems;
5673 }
5674
5675 if (VecIn1.getNode() == 0)
5676 return SDValue();
5677
5678 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5679 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5680 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5681 unsigned Idx = InsertIndices[i];
5682 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5683 DAG.getIntPtrConstant(Idx));
5684 }
5685
5686 return NV;
5687}
5688
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005689// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5690SDValue
5691X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5692
Craig Topper5a0910b2013-08-15 02:33:50 +00005693 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005694 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5695 "Unexpected type in LowerBUILD_VECTORvXi1!");
5696
5697 SDLoc dl(Op);
5698 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5699 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5700 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5701 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5702 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5703 Ops, VT.getVectorNumElements());
5704 }
5705
5706 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5707 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5708 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5709 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5710 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5711 Ops, VT.getVectorNumElements());
5712 }
5713
5714 bool AllContants = true;
5715 uint64_t Immediate = 0;
5716 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5717 SDValue In = Op.getOperand(idx);
5718 if (In.getOpcode() == ISD::UNDEF)
5719 continue;
5720 if (!isa<ConstantSDNode>(In)) {
5721 AllContants = false;
5722 break;
5723 }
5724 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005725 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005726 }
5727
5728 if (AllContants) {
5729 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5730 DAG.getConstant(Immediate, MVT::i16));
5731 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005732 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005733 }
5734
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005735 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005736 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005737 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5738 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5739 llvm_unreachable("Unsupported predicate operation");
5740 }
5741
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005742 SDValue EFLAGS, X86CC;
5743 if (In.getOpcode() == ISD::SETCC) {
5744 SDValue Op0 = In.getOperand(0);
5745 SDValue Op1 = In.getOperand(1);
5746 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5747 bool isFP = Op1.getValueType().isFloatingPoint();
5748 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5749
5750 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5751
5752 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5753 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5754 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5755 } else if (In.getOpcode() == X86ISD::SETCC) {
5756 X86CC = In.getOperand(0);
5757 EFLAGS = In.getOperand(1);
5758 } else {
5759 // The algorithm:
5760 // Bit1 = In & 0x1
5761 // if (Bit1 != 0)
5762 // ZF = 0
5763 // else
5764 // ZF = 1
5765 // if (ZF == 0)
5766 // res = allOnes ### CMOVNE -1, %res
5767 // else
5768 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005769 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005770 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5771 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5772 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5773 }
5774
5775 if (VT == MVT::v16i1) {
5776 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5777 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5778 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5779 Cst0, Cst1, X86CC, EFLAGS);
5780 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5781 }
5782
5783 if (VT == MVT::v8i1) {
5784 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5785 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5786 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5787 Cst0, Cst1, X86CC, EFLAGS);
5788 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5789 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5790 }
5791 llvm_unreachable("Unsupported predicate operation");
5792}
5793
Michael Liaofacace82012-10-19 17:15:18 +00005794SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005795X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005796 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005797
Craig Topper5a0910b2013-08-15 02:33:50 +00005798 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005799 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005800 unsigned NumElems = Op.getNumOperands();
5801
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005802 // Generate vectors for predicate vectors.
5803 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5804 return LowerBUILD_VECTORvXi1(Op, DAG);
5805
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005806 // Vectors containing all zeros can be matched by pxor and xorps later
5807 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5808 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5809 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005810 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005811 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005812
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005813 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005814 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005815
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005816 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005817 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5818 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005819 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005820 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005821 return Op;
5822
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005823 if (!VT.is512BitVector())
5824 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005825 }
5826
Craig Topper158ec072013-08-14 07:34:43 +00005827 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005828 if (Broadcast.getNode())
5829 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005830
Owen Andersone50ed302009-08-10 22:56:29 +00005831 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005832
Evan Cheng0db9fe62006-04-25 20:13:52 +00005833 unsigned NumZero = 0;
5834 unsigned NumNonZero = 0;
5835 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005836 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005837 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005838 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005839 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005840 if (Elt.getOpcode() == ISD::UNDEF)
5841 continue;
5842 Values.insert(Elt);
5843 if (Elt.getOpcode() != ISD::Constant &&
5844 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005845 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005846 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005847 NumZero++;
5848 else {
5849 NonZeros |= (1 << i);
5850 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005851 }
5852 }
5853
Chris Lattner97a2a562010-08-26 05:24:29 +00005854 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5855 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005856 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005857
Chris Lattner67f453a2008-03-09 05:42:06 +00005858 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005859 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005860 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005861 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005862
Chris Lattner62098042008-03-09 01:05:04 +00005863 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5864 // the value are obviously zero, truncate the value to i32 and do the
5865 // insertion that way. Only do this if the value is non-constant or if the
5866 // value is a constant being inserted into element 0. It is cheaper to do
5867 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005868 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005869 (!IsAllConstants || Idx == 0)) {
5870 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005871 // Handle SSE only.
5872 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5873 EVT VecVT = MVT::v4i32;
5874 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005875
Chris Lattner62098042008-03-09 01:05:04 +00005876 // Truncate the value (which may itself be a constant) to i32, and
5877 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005878 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005879 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005880 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005881
Chris Lattner62098042008-03-09 01:05:04 +00005882 // Now we have our 32-bit value zero extended in the low element of
5883 // a vector. If Idx != 0, swizzle it into place.
5884 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005885 SmallVector<int, 4> Mask;
5886 Mask.push_back(Idx);
5887 for (unsigned i = 1; i != VecElts; ++i)
5888 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005889 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005890 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005891 }
Craig Topper07a27622012-01-22 03:07:48 +00005892 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005893 }
5894 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005895
Chris Lattner19f79692008-03-08 22:59:52 +00005896 // If we have a constant or non-constant insertion into the low element of
5897 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5898 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005899 // depending on what the source datatype is.
5900 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005901 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005902 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005903
5904 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005905 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005906 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005907 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005908 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5909 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005910 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005911 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005912 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5913 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005914 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005915 }
5916
5917 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005918 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005919 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005920 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005921 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005922 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005923 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005924 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005925 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005926 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005927 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005928 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005929 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005930
5931 // Is it a vector logical left shift?
5932 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005933 X86::isZeroNode(Op.getOperand(0)) &&
5934 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005935 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005936 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005937 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005938 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005939 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005940 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005941
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005942 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005943 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005944
Chris Lattner19f79692008-03-08 22:59:52 +00005945 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5946 // is a non-constant being inserted into an element other than the low one,
5947 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5948 // movd/movss) to move this into the low element, then shuffle it into
5949 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005950 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005951 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005952
Evan Cheng0db9fe62006-04-25 20:13:52 +00005953 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005954 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005955 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005956 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005957 MaskVec.push_back(i == Idx ? 0 : 1);
5958 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005959 }
5960 }
5961
Chris Lattner67f453a2008-03-09 05:42:06 +00005962 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005963 if (Values.size() == 1) {
5964 if (EVTBits == 32) {
5965 // Instead of a shuffle like this:
5966 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5967 // Check if it's possible to issue this instead.
5968 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005969 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005970 SDValue Item = Op.getOperand(Idx);
5971 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5972 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5973 }
Dan Gohman475871a2008-07-27 21:46:04 +00005974 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005975 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005976
Dan Gohmana3941172007-07-24 22:55:08 +00005977 // A vector full of immediates; various special cases are already
5978 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005979 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005980 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005981
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005982 // For AVX-length vectors, build the individual 128-bit pieces and use
5983 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005984 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005985 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00005986 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005987 V.push_back(Op.getOperand(i));
5988
5989 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5990
5991 // Build both the lower and upper subvector.
5992 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5993 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5994 NumElems/2);
5995
5996 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00005997 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005998 }
5999
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00006000 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006001 if (EVTBits == 64) {
6002 if (NumNonZero == 1) {
6003 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00006004 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00006005 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00006006 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00006007 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00006008 }
Dan Gohman475871a2008-07-27 21:46:04 +00006009 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00006010 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006011
6012 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00006013 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006014 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006015 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006016 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006017 }
6018
Bill Wendling826f36f2007-03-28 00:57:11 +00006019 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00006020 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006021 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006022 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006023 }
6024
6025 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006026 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006027 if (NumElems == 4 && NumZero > 0) {
6028 for (unsigned i = 0; i < 4; ++i) {
6029 bool isZero = !(NonZeros & (1 << i));
6030 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006031 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006032 else
Dale Johannesenace16102009-02-03 19:33:06 +00006033 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006034 }
6035
6036 for (unsigned i = 0; i < 2; ++i) {
6037 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6038 default: break;
6039 case 0:
6040 V[i] = V[i*2]; // Must be a zero vector.
6041 break;
6042 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006043 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006044 break;
6045 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006046 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006047 break;
6048 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006049 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006050 break;
6051 }
6052 }
6053
Benjamin Kramer9c683542012-01-30 15:16:21 +00006054 bool Reverse1 = (NonZeros & 0x3) == 2;
6055 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6056 int MaskVec[] = {
6057 Reverse1 ? 1 : 0,
6058 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006059 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6060 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006061 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006062 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006063 }
6064
Craig Topper7a9a28b2012-08-12 02:23:29 +00006065 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006066 // Check for a build vector of consecutive loads.
6067 for (unsigned i = 0; i < NumElems; ++i)
6068 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006069
Nate Begemanfdea31a2010-03-24 20:49:50 +00006070 // Check for elements which are consecutive loads.
6071 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6072 if (LD.getNode())
6073 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006074
Michael Liaofacace82012-10-19 17:15:18 +00006075 // Check for a build vector from mostly shuffle plus few inserting.
6076 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6077 if (Sh.getNode())
6078 return Sh;
6079
Michael J. Spencerec38de22010-10-10 22:04:20 +00006080 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006081 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006082 SDValue Result;
6083 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6084 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6085 else
6086 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006087
Chris Lattner24faf612010-08-28 17:59:08 +00006088 for (unsigned i = 1; i < NumElems; ++i) {
6089 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6090 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006091 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006092 }
6093 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006094 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006095
Chris Lattner6e80e442010-08-28 17:15:43 +00006096 // Otherwise, expand into a number of unpckl*, start by extending each of
6097 // our (non-undef) elements to the full vector width with the element in the
6098 // bottom slot of the vector (which generates no code for SSE).
6099 for (unsigned i = 0; i < NumElems; ++i) {
6100 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6101 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6102 else
6103 V[i] = DAG.getUNDEF(VT);
6104 }
6105
6106 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006107 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6108 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6109 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006110 unsigned EltStride = NumElems >> 1;
6111 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006112 for (unsigned i = 0; i < EltStride; ++i) {
6113 // If V[i+EltStride] is undef and this is the first round of mixing,
6114 // then it is safe to just drop this shuffle: V[i] is already in the
6115 // right place, the one element (since it's the first round) being
6116 // inserted as undef can be dropped. This isn't safe for successive
6117 // rounds because they will permute elements within both vectors.
6118 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6119 EltStride == NumElems/2)
6120 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006121
Chris Lattner6e80e442010-08-28 17:15:43 +00006122 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006123 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006124 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006125 }
6126 return V[0];
6127 }
Dan Gohman475871a2008-07-27 21:46:04 +00006128 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006129}
6130
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006131// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6132// to create 256-bit vectors from two other 128-bit ones.
6133static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006134 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006135 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006136
Elena Demikhovsky83952512013-07-31 11:35:14 +00006137 assert((ResVT.is256BitVector() ||
6138 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006139
6140 SDValue V1 = Op.getOperand(0);
6141 SDValue V2 = Op.getOperand(1);
6142 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006143 if(ResVT.is256BitVector())
6144 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006145
Elena Demikhovsky83952512013-07-31 11:35:14 +00006146 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006147}
6148
Craig Topper55b24052012-09-11 06:15:32 +00006149static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006150 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006151
Elena Demikhovsky83952512013-07-31 11:35:14 +00006152 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006153 // from two other 128-bit ones.
6154 return LowerAVXCONCAT_VECTORS(Op, DAG);
6155}
6156
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006157// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006158static SDValue
6159LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6160 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006161 SDValue V1 = SVOp->getOperand(0);
6162 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006163 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006164 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006165 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006166 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006167
Elena Demikhovskya6269ee2013-10-06 06:11:18 +00006168 // There is no blend with immediate in AVX-512.
6169 if (VT.is512BitVector())
6170 return SDValue();
6171
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006172 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6173 return SDValue();
6174 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006175 return SDValue();
6176
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006177 // Check the mask for BLEND and build the value.
6178 unsigned MaskValue = 0;
6179 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006180 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006181 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006182
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006183 // Blend for v16i16 should be symetric for the both lanes.
6184 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006185
Craig Topper9b33ef72013-01-21 06:57:59 +00006186 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006187 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006188 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006189
Craig Topper04f74a12013-01-21 07:25:16 +00006190 if ((EltIdx < 0 || EltIdx == (int)i) &&
6191 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006192 continue;
6193
Craig Topper9b33ef72013-01-21 06:57:59 +00006194 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006195 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006196 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6197 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006198 else
Craig Topper1842ba02012-04-23 06:38:28 +00006199 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006200 }
6201
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006202 // Convert i32 vectors to floating point if it is not AVX2.
6203 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006204 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006205 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006206 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6207 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006208 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6209 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6210 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006211
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006212 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6213 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006214 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006215}
6216
Nate Begemanb9a47b82009-02-23 08:49:38 +00006217// v8i16 shuffles - Prefer shuffles in the following order:
6218// 1. [all] pshuflw, pshufhw, optional move
6219// 2. [ssse3] 1 x pshufb
6220// 3. [ssse3] 2 x pshufb + 1 x por
6221// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006222static SDValue
6223LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6224 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006225 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006226 SDValue V1 = SVOp->getOperand(0);
6227 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006228 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006229 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006230
Nate Begemanb9a47b82009-02-23 08:49:38 +00006231 // Determine if more than 1 of the words in each of the low and high quadwords
6232 // of the result come from the same quadword of one of the two inputs. Undef
6233 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006234 unsigned LoQuad[] = { 0, 0, 0, 0 };
6235 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006236 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006237 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006238 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006239 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006240 MaskVals.push_back(EltIdx);
6241 if (EltIdx < 0) {
6242 ++Quad[0];
6243 ++Quad[1];
6244 ++Quad[2];
6245 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006246 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006247 }
6248 ++Quad[EltIdx / 4];
6249 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006250 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006251
Nate Begemanb9a47b82009-02-23 08:49:38 +00006252 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006253 unsigned MaxQuad = 1;
6254 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006255 if (LoQuad[i] > MaxQuad) {
6256 BestLoQuad = i;
6257 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006258 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006259 }
6260
Nate Begemanb9a47b82009-02-23 08:49:38 +00006261 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006262 MaxQuad = 1;
6263 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006264 if (HiQuad[i] > MaxQuad) {
6265 BestHiQuad = i;
6266 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006267 }
6268 }
6269
Nate Begemanb9a47b82009-02-23 08:49:38 +00006270 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006271 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006272 // single pshufb instruction is necessary. If There are more than 2 input
6273 // quads, disable the next transformation since it does not help SSSE3.
6274 bool V1Used = InputQuads[0] || InputQuads[1];
6275 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006276 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006277 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006278 BestLoQuad = InputQuads[0] ? 0 : 1;
6279 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006280 }
6281 if (InputQuads.count() > 2) {
6282 BestLoQuad = -1;
6283 BestHiQuad = -1;
6284 }
6285 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006286
Nate Begemanb9a47b82009-02-23 08:49:38 +00006287 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6288 // the shuffle mask. If a quad is scored as -1, that means that it contains
6289 // words from all 4 input quadwords.
6290 SDValue NewV;
6291 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006292 int MaskV[] = {
6293 BestLoQuad < 0 ? 0 : BestLoQuad,
6294 BestHiQuad < 0 ? 1 : BestHiQuad
6295 };
Eric Christopherfd179292009-08-27 18:07:15 +00006296 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006297 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6298 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6299 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006300
Nate Begemanb9a47b82009-02-23 08:49:38 +00006301 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6302 // source words for the shuffle, to aid later transformations.
6303 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006304 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006305 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006306 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006307 if (idx != (int)i)
6308 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006309 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006310 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006311 AllWordsInNewV = false;
6312 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006313 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006314
Nate Begemanb9a47b82009-02-23 08:49:38 +00006315 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6316 if (AllWordsInNewV) {
6317 for (int i = 0; i != 8; ++i) {
6318 int idx = MaskVals[i];
6319 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006320 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006321 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006322 if ((idx != i) && idx < 4)
6323 pshufhw = false;
6324 if ((idx != i) && idx > 3)
6325 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006326 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006327 V1 = NewV;
6328 V2Used = false;
6329 BestLoQuad = 0;
6330 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006331 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006332
Nate Begemanb9a47b82009-02-23 08:49:38 +00006333 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6334 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006335 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006336 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6337 unsigned TargetMask = 0;
6338 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006339 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006340 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6341 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6342 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006343 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006344 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006345 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006346 }
Eric Christopherfd179292009-08-27 18:07:15 +00006347
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006348 // Promote splats to a larger type which usually leads to more efficient code.
6349 // FIXME: Is this true if pshufb is available?
6350 if (SVOp->isSplat())
6351 return PromoteSplat(SVOp, DAG);
6352
Nate Begemanb9a47b82009-02-23 08:49:38 +00006353 // If we have SSSE3, and all words of the result are from 1 input vector,
6354 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6355 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006356 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006357 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006358
Nate Begemanb9a47b82009-02-23 08:49:38 +00006359 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006360 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006361 // mask, and elements that come from V1 in the V2 mask, so that the two
6362 // results can be OR'd together.
6363 bool TwoInputs = V1Used && V2Used;
6364 for (unsigned i = 0; i != 8; ++i) {
6365 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006366 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6367 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006368 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006369 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006370 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006371 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006372 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006373 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006374 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006375 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006376 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006377
Nate Begemanb9a47b82009-02-23 08:49:38 +00006378 // Calculate the shuffle mask for the second input, shuffle it, and
6379 // OR it with the first shuffled input.
6380 pshufbMask.clear();
6381 for (unsigned i = 0; i != 8; ++i) {
6382 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006383 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6384 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6385 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6386 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006387 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006388 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006389 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006390 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006391 MVT::v16i8, &pshufbMask[0], 16));
6392 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006393 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006394 }
6395
6396 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6397 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006398 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006399 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006400 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006401 for (int i = 0; i != 4; ++i) {
6402 int idx = MaskVals[i];
6403 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006404 InOrder.set(i);
6405 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006406 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006407 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006408 }
6409 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006410 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006411 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006412
Craig Topperdd637ae2012-02-19 05:41:45 +00006413 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6414 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006415 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006416 NewV.getOperand(0),
6417 getShufflePSHUFLWImmediate(SVOp), DAG);
6418 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006419 }
Eric Christopherfd179292009-08-27 18:07:15 +00006420
Nate Begemanb9a47b82009-02-23 08:49:38 +00006421 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6422 // and update MaskVals with the new element order.
6423 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006424 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006425 for (unsigned i = 4; i != 8; ++i) {
6426 int idx = MaskVals[i];
6427 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006428 InOrder.set(i);
6429 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006430 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006431 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006432 }
6433 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006434 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006435 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006436
Craig Topperdd637ae2012-02-19 05:41:45 +00006437 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6438 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006439 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006440 NewV.getOperand(0),
6441 getShufflePSHUFHWImmediate(SVOp), DAG);
6442 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006443 }
Eric Christopherfd179292009-08-27 18:07:15 +00006444
Nate Begemanb9a47b82009-02-23 08:49:38 +00006445 // In case BestHi & BestLo were both -1, which means each quadword has a word
6446 // from each of the four input quadwords, calculate the InOrder bitvector now
6447 // before falling through to the insert/extract cleanup.
6448 if (BestLoQuad == -1 && BestHiQuad == -1) {
6449 NewV = V1;
6450 for (int i = 0; i != 8; ++i)
6451 if (MaskVals[i] < 0 || MaskVals[i] == i)
6452 InOrder.set(i);
6453 }
Eric Christopherfd179292009-08-27 18:07:15 +00006454
Nate Begemanb9a47b82009-02-23 08:49:38 +00006455 // The other elements are put in the right place using pextrw and pinsrw.
6456 for (unsigned i = 0; i != 8; ++i) {
6457 if (InOrder[i])
6458 continue;
6459 int EltIdx = MaskVals[i];
6460 if (EltIdx < 0)
6461 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006462 SDValue ExtOp = (EltIdx < 8) ?
6463 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6464 DAG.getIntPtrConstant(EltIdx)) :
6465 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006466 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006467 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006468 DAG.getIntPtrConstant(i));
6469 }
6470 return NewV;
6471}
6472
6473// v16i8 shuffles - Prefer shuffles in the following order:
6474// 1. [ssse3] 1 x pshufb
6475// 2. [ssse3] 2 x pshufb + 1 x por
6476// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006477static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6478 const X86Subtarget* Subtarget,
6479 SelectionDAG &DAG) {
6480 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006481 SDValue V1 = SVOp->getOperand(0);
6482 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006483 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006484 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006485
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006486 // Promote splats to a larger type which usually leads to more efficient code.
6487 // FIXME: Is this true if pshufb is available?
6488 if (SVOp->isSplat())
6489 return PromoteSplat(SVOp, DAG);
6490
Nate Begemanb9a47b82009-02-23 08:49:38 +00006491 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006492 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006493 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006494
Nate Begemanb9a47b82009-02-23 08:49:38 +00006495 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006496 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006497 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006498
Nate Begemanb9a47b82009-02-23 08:49:38 +00006499 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006500 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006501 //
6502 // Otherwise, we have elements from both input vectors, and must zero out
6503 // elements that come from V2 in the first mask, and V1 in the second mask
6504 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006505 for (unsigned i = 0; i != 16; ++i) {
6506 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006507 if (EltIdx < 0 || EltIdx >= 16)
6508 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006509 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006510 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006511 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006512 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006513 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006514
6515 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6516 // the 2nd operand if it's undefined or zero.
6517 if (V2.getOpcode() == ISD::UNDEF ||
6518 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006519 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006520
Nate Begemanb9a47b82009-02-23 08:49:38 +00006521 // Calculate the shuffle mask for the second input, shuffle it, and
6522 // OR it with the first shuffled input.
6523 pshufbMask.clear();
6524 for (unsigned i = 0; i != 16; ++i) {
6525 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006526 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006527 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006528 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006529 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006530 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006531 MVT::v16i8, &pshufbMask[0], 16));
6532 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006533 }
Eric Christopherfd179292009-08-27 18:07:15 +00006534
Nate Begemanb9a47b82009-02-23 08:49:38 +00006535 // No SSSE3 - Calculate in place words and then fix all out of place words
6536 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6537 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006538 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6539 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006540 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006541 for (int i = 0; i != 8; ++i) {
6542 int Elt0 = MaskVals[i*2];
6543 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006544
Nate Begemanb9a47b82009-02-23 08:49:38 +00006545 // This word of the result is all undef, skip it.
6546 if (Elt0 < 0 && Elt1 < 0)
6547 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006548
Nate Begemanb9a47b82009-02-23 08:49:38 +00006549 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006550 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006551 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006552
Nate Begemanb9a47b82009-02-23 08:49:38 +00006553 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6554 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6555 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006556
6557 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6558 // using a single extract together, load it and store it.
6559 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006560 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006561 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006562 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006563 DAG.getIntPtrConstant(i));
6564 continue;
6565 }
6566
Nate Begemanb9a47b82009-02-23 08:49:38 +00006567 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006568 // source byte is not also odd, shift the extracted word left 8 bits
6569 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006570 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006571 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006572 DAG.getIntPtrConstant(Elt1 / 2));
6573 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006574 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006575 DAG.getConstant(8,
6576 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006577 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006578 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6579 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006580 }
6581 // If Elt0 is defined, extract it from the appropriate source. If the
6582 // source byte is not also even, shift the extracted word right 8 bits. If
6583 // Elt1 was also defined, OR the extracted values together before
6584 // inserting them in the result.
6585 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006586 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006587 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6588 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006589 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006590 DAG.getConstant(8,
6591 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006592 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006593 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6594 DAG.getConstant(0x00FF, MVT::i16));
6595 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006596 : InsElt0;
6597 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006598 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006599 DAG.getIntPtrConstant(i));
6600 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006601 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006602}
6603
Elena Demikhovsky41789462012-09-06 12:42:01 +00006604// v32i8 shuffles - Translate to VPSHUFB if possible.
6605static
6606SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006607 const X86Subtarget *Subtarget,
6608 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006609 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006610 SDValue V1 = SVOp->getOperand(0);
6611 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006612 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006613 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006614
6615 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006616 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6617 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006618
Michael Liao471b9172012-10-03 23:43:52 +00006619 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006620 // (1) one of input vector is undefined or zeroinitializer.
6621 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6622 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006623 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006624 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006625 return SDValue();
6626
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006627 if (V1IsAllZero && !V2IsAllZero) {
6628 CommuteVectorShuffleMask(MaskVals, 32);
6629 V1 = V2;
6630 }
6631 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006632 for (unsigned i = 0; i != 32; i++) {
6633 int EltIdx = MaskVals[i];
6634 if (EltIdx < 0 || EltIdx >= 32)
6635 EltIdx = 0x80;
6636 else {
6637 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6638 // Cross lane is not allowed.
6639 return SDValue();
6640 EltIdx &= 0xf;
6641 }
6642 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6643 }
6644 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6645 DAG.getNode(ISD::BUILD_VECTOR, dl,
6646 MVT::v32i8, &pshufbMask[0], 32));
6647}
6648
Evan Cheng7a831ce2007-12-15 03:00:47 +00006649/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006650/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006651/// done when every pair / quad of shuffle mask elements point to elements in
6652/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006653/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006654static
Nate Begeman9008ca62009-04-27 18:41:29 +00006655SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006656 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006657 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006658 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006659 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006660 MVT NewVT;
6661 unsigned Scale;
6662 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006663 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006664 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6665 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6666 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6667 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6668 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6669 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006670 }
6671
Nate Begeman9008ca62009-04-27 18:41:29 +00006672 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006673 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006674 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006675 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006676 int EltIdx = SVOp->getMaskElt(i+j);
6677 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006678 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006679 if (StartIdx < 0)
6680 StartIdx = (EltIdx / Scale);
6681 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006682 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006683 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006684 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006685 }
6686
Craig Topper11ac1f82012-05-04 04:08:44 +00006687 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6688 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006689 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006690}
6691
Evan Chengd880b972008-05-09 21:53:03 +00006692/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006693///
Craig Topper8d725b92013-08-15 05:33:45 +00006694static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006695 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006696 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006697 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006698 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006699 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006700 LD = dyn_cast<LoadSDNode>(SrcOp);
6701 if (!LD) {
6702 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6703 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006704 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006705 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006706 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006707 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006708 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006709 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006710 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006711 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006712 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6713 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6714 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006715 SrcOp.getOperand(0)
6716 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006717 }
6718 }
6719 }
6720
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006721 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006722 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006723 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006724 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006725}
6726
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006727/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6728/// which could not be matched by any known target speficic shuffle
6729static SDValue
6730LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006731
6732 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6733 if (NewOp.getNode())
6734 return NewOp;
6735
Craig Topper5a0910b2013-08-15 02:33:50 +00006736 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006737
Craig Topper8f35c132012-01-20 09:29:03 +00006738 unsigned NumElems = VT.getVectorNumElements();
6739 unsigned NumLaneElems = NumElems / 2;
6740
Andrew Trickac6d9be2013-05-25 02:42:55 +00006741 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006742 MVT EltVT = VT.getVectorElementType();
6743 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006744 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006745
Craig Topper9a2b6e12012-04-06 07:45:23 +00006746 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006747 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006748 // Build a shuffle mask for the output, discovering on the fly which
6749 // input vectors to use as shuffle operands (recorded in InputUsed).
6750 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006751 // out with UseBuildVector set.
6752 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006753 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006754 unsigned LaneStart = l * NumLaneElems;
6755 for (unsigned i = 0; i != NumLaneElems; ++i) {
6756 // The mask element. This indexes into the input.
6757 int Idx = SVOp->getMaskElt(i+LaneStart);
6758 if (Idx < 0) {
6759 // the mask element does not index into any input vector.
6760 Mask.push_back(-1);
6761 continue;
6762 }
Craig Topper8f35c132012-01-20 09:29:03 +00006763
Craig Topper9a2b6e12012-04-06 07:45:23 +00006764 // The input vector this mask element indexes into.
6765 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006766
Craig Topper9a2b6e12012-04-06 07:45:23 +00006767 // Turn the index into an offset from the start of the input vector.
6768 Idx -= Input * NumLaneElems;
6769
6770 // Find or create a shuffle vector operand to hold this input.
6771 unsigned OpNo;
6772 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6773 if (InputUsed[OpNo] == Input)
6774 // This input vector is already an operand.
6775 break;
6776 if (InputUsed[OpNo] < 0) {
6777 // Create a new operand for this input vector.
6778 InputUsed[OpNo] = Input;
6779 break;
6780 }
6781 }
6782
6783 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006784 // More than two input vectors used! Give up on trying to create a
6785 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6786 UseBuildVector = true;
6787 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006788 }
6789
6790 // Add the mask index for the new shuffle vector.
6791 Mask.push_back(Idx + OpNo * NumLaneElems);
6792 }
6793
Craig Topper8ae97ba2012-05-21 06:40:16 +00006794 if (UseBuildVector) {
6795 SmallVector<SDValue, 16> SVOps;
6796 for (unsigned i = 0; i != NumLaneElems; ++i) {
6797 // The mask element. This indexes into the input.
6798 int Idx = SVOp->getMaskElt(i+LaneStart);
6799 if (Idx < 0) {
6800 SVOps.push_back(DAG.getUNDEF(EltVT));
6801 continue;
6802 }
6803
6804 // The input vector this mask element indexes into.
6805 int Input = Idx / NumElems;
6806
6807 // Turn the index into an offset from the start of the input vector.
6808 Idx -= Input * NumElems;
6809
6810 // Extract the vector element by hand.
6811 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6812 SVOp->getOperand(Input),
6813 DAG.getIntPtrConstant(Idx)));
6814 }
6815
6816 // Construct the output using a BUILD_VECTOR.
6817 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6818 SVOps.size());
6819 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006820 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006821 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006822 } else {
6823 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006824 (InputUsed[0] % 2) * NumLaneElems,
6825 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006826 // If only one input was used, use an undefined vector for the other.
6827 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6828 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006829 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006830 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006831 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006832 }
6833
6834 Mask.clear();
6835 }
Craig Topper8f35c132012-01-20 09:29:03 +00006836
6837 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006838 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006839}
6840
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006841/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6842/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006843static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006844LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006845 SDValue V1 = SVOp->getOperand(0);
6846 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006847 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006848 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006849
Craig Topper7a9a28b2012-08-12 02:23:29 +00006850 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006851
Benjamin Kramer9c683542012-01-30 15:16:21 +00006852 std::pair<int, int> Locs[4];
6853 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006854 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006855
Evan Chengace3c172008-07-22 21:13:36 +00006856 unsigned NumHi = 0;
6857 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006858 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006859 int Idx = PermMask[i];
6860 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006861 Locs[i] = std::make_pair(-1, -1);
6862 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006863 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6864 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006865 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006866 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006867 NumLo++;
6868 } else {
6869 Locs[i] = std::make_pair(1, NumHi);
6870 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006871 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006872 NumHi++;
6873 }
6874 }
6875 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006876
Evan Chengace3c172008-07-22 21:13:36 +00006877 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006878 // If no more than two elements come from either vector. This can be
6879 // implemented with two shuffles. First shuffle gather the elements.
6880 // The second shuffle, which takes the first shuffle as both of its
6881 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006882 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006883
Benjamin Kramer9c683542012-01-30 15:16:21 +00006884 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006885
Benjamin Kramer9c683542012-01-30 15:16:21 +00006886 for (unsigned i = 0; i != 4; ++i)
6887 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006888 unsigned Idx = (i < 2) ? 0 : 4;
6889 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006890 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006891 }
Evan Chengace3c172008-07-22 21:13:36 +00006892
Nate Begeman9008ca62009-04-27 18:41:29 +00006893 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006894 }
6895
6896 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006897 // Otherwise, we must have three elements from one vector, call it X, and
6898 // one element from the other, call it Y. First, use a shufps to build an
6899 // intermediate vector with the one element from Y and the element from X
6900 // that will be in the same half in the final destination (the indexes don't
6901 // matter). Then, use a shufps to build the final vector, taking the half
6902 // containing the element from Y from the intermediate, and the other half
6903 // from X.
6904 if (NumHi == 3) {
6905 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006906 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006907 std::swap(V1, V2);
6908 }
6909
6910 // Find the element from V2.
6911 unsigned HiIndex;
6912 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006913 int Val = PermMask[HiIndex];
6914 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006915 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006916 if (Val >= 4)
6917 break;
6918 }
6919
Nate Begeman9008ca62009-04-27 18:41:29 +00006920 Mask1[0] = PermMask[HiIndex];
6921 Mask1[1] = -1;
6922 Mask1[2] = PermMask[HiIndex^1];
6923 Mask1[3] = -1;
6924 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006925
6926 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006927 Mask1[0] = PermMask[0];
6928 Mask1[1] = PermMask[1];
6929 Mask1[2] = HiIndex & 1 ? 6 : 4;
6930 Mask1[3] = HiIndex & 1 ? 4 : 6;
6931 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006932 }
Craig Topper69947b92012-04-23 06:57:04 +00006933
6934 Mask1[0] = HiIndex & 1 ? 2 : 0;
6935 Mask1[1] = HiIndex & 1 ? 0 : 2;
6936 Mask1[2] = PermMask[2];
6937 Mask1[3] = PermMask[3];
6938 if (Mask1[2] >= 0)
6939 Mask1[2] += 4;
6940 if (Mask1[3] >= 0)
6941 Mask1[3] += 4;
6942 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006943 }
6944
6945 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006946 int LoMask[] = { -1, -1, -1, -1 };
6947 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006948
Benjamin Kramer9c683542012-01-30 15:16:21 +00006949 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006950 unsigned MaskIdx = 0;
6951 unsigned LoIdx = 0;
6952 unsigned HiIdx = 2;
6953 for (unsigned i = 0; i != 4; ++i) {
6954 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006955 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006956 MaskIdx = 1;
6957 LoIdx = 0;
6958 HiIdx = 2;
6959 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006960 int Idx = PermMask[i];
6961 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006962 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006963 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006964 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006965 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006966 LoIdx++;
6967 } else {
6968 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006969 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006970 HiIdx++;
6971 }
6972 }
6973
Nate Begeman9008ca62009-04-27 18:41:29 +00006974 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6975 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006976 int MaskOps[] = { -1, -1, -1, -1 };
6977 for (unsigned i = 0; i != 4; ++i)
6978 if (Locs[i].first != -1)
6979 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006980 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006981}
6982
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006983static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006984 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006985 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006986
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006987 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6988 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006989 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6990 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6991 // BUILD_VECTOR (load), undef
6992 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00006993
6994 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006995}
6996
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006997static
Andrew Trickac6d9be2013-05-25 02:42:55 +00006998SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00006999 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00007000
7001 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007002 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7003 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00007004 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7005 V1, DAG));
7006}
7007
7008static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007009SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00007010 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007011 SDValue V1 = Op.getOperand(0);
7012 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007013 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007014
7015 assert(VT != MVT::v2i64 && "unsupported shuffle type");
7016
Craig Topper1accb7e2012-01-10 06:54:16 +00007017 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007018 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7019
Evan Cheng0899f5c2011-08-31 02:05:24 +00007020 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7021 return DAG.getNode(ISD::BITCAST, dl, VT,
7022 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7023 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7024 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007025}
7026
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007027static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007028SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007029 SDValue V1 = Op.getOperand(0);
7030 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007031 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007032
7033 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7034 "unsupported shuffle type");
7035
7036 if (V2.getOpcode() == ISD::UNDEF)
7037 V2 = V1;
7038
7039 // v4i32 or v4f32
7040 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7041}
7042
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007043static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007044SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007045 SDValue V1 = Op.getOperand(0);
7046 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007047 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007048 unsigned NumElems = VT.getVectorNumElements();
7049
7050 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7051 // operand of these instructions is only memory, so check if there's a
7052 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7053 // same masks.
7054 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007055
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007056 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007057 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007058 CanFoldLoad = true;
7059
7060 // When V1 is a load, it can be folded later into a store in isel, example:
7061 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7062 // turns into:
7063 // (MOVLPSmr addr:$src1, VR128:$src2)
7064 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007065 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007066 CanFoldLoad = true;
7067
Dan Gohman65fd6562011-11-03 21:49:52 +00007068 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007069 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007070 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007071 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7072
7073 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007074 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007075 if (SVOp->getMaskElt(1) != -1)
7076 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007077 }
7078
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007079 // movl and movlp will both match v2i64, but v2i64 is never matched by
7080 // movl earlier because we make it strict to avoid messing with the movlp load
7081 // folding logic (see the code above getMOVLP call). Match it here then,
7082 // this is horrible, but will stay like this until we move all shuffle
7083 // matching to x86 specific nodes. Note that for the 1st condition all
7084 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007085 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007086 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7087 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007088 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007089 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007090 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007091 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007092
7093 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7094
7095 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007096 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007097 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007098}
7099
Michael Liaod9d09602012-10-23 17:34:00 +00007100// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007101static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7102 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007103 // PMOVZX is only available from SSE41.
7104 if (!Subtarget->hasSSE41())
7105 return SDValue();
7106
Craig Topper8d725b92013-08-15 05:33:45 +00007107 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007108
7109 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007110 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007111 return SDValue();
7112
7113 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007114 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007115 SDValue V1 = Op.getOperand(0);
7116 SDValue V2 = Op.getOperand(1);
7117 unsigned NumElems = VT.getVectorNumElements();
7118
7119 // Extending is an unary operation and the element type of the source vector
7120 // won't be equal to or larger than i64.
7121 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7122 VT.getVectorElementType() == MVT::i64)
7123 return SDValue();
7124
7125 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7126 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007127 while ((1U << Shift) < NumElems) {
7128 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007129 break;
7130 Shift += 1;
7131 // The maximal ratio is 8, i.e. from i8 to i64.
7132 if (Shift > 3)
7133 return SDValue();
7134 }
7135
7136 // Check the shuffle mask.
7137 unsigned Mask = (1U << Shift) - 1;
7138 for (unsigned i = 0; i != NumElems; ++i) {
7139 int EltIdx = SVOp->getMaskElt(i);
7140 if ((i & Mask) != 0 && EltIdx != -1)
7141 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007142 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007143 return SDValue();
7144 }
7145
7146 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007147 MVT NeVT = MVT::getIntegerVT(NBits);
7148 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007149
Craig Topper158ec072013-08-14 07:34:43 +00007150 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007151 return SDValue();
7152
7153 // Simplify the operand as it's prepared to be fed into shuffle.
7154 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7155 if (V1.getOpcode() == ISD::BITCAST &&
7156 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7157 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007158 V1.getOperand(0).getOperand(0)
7159 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007160 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7161 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007162 ConstantSDNode *CIdx =
7163 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007164 // If it's foldable, i.e. normal load with single use, we will let code
7165 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007166 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007167 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007168 MVT FullVT = V.getSimpleValueType();
7169 MVT V1VT = V1.getSimpleValueType();
7170 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007171 // The "ext_vec_elt" node is wider than the result node.
7172 // In this case we should extract subvector from V.
7173 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007174 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7175 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007176 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007177 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007178 DAG.getIntPtrConstant(0));
7179 }
Craig Topper8d725b92013-08-15 05:33:45 +00007180 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007181 }
Michael Liaod9d09602012-10-23 17:34:00 +00007182 }
7183
7184 return DAG.getNode(ISD::BITCAST, DL, VT,
7185 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7186}
7187
Craig Topper158ec072013-08-14 07:34:43 +00007188static SDValue
7189NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7190 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007191 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007192 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007193 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007194 SDValue V1 = Op.getOperand(0);
7195 SDValue V2 = Op.getOperand(1);
7196
7197 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007198 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007199
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007200 // Handle splat operations
7201 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007202 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007203 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007204 if (Broadcast.getNode())
7205 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007206 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007207
Michael Liaod9d09602012-10-23 17:34:00 +00007208 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007209 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007210 if (NewOp.getNode())
7211 return NewOp;
7212
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007213 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7214 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007215 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7216 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007217 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007218 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007219 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007220 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007221 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007222 // FIXME: Figure out a cleaner way to do this.
7223 // Try to make use of movq to zero out the top part.
7224 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007225 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007226 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007227 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007228 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7229 NewVT, true, false))
7230 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007231 DAG, Subtarget, dl);
7232 }
7233 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007234 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007235 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007236 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007237 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7238 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7239 DAG, Subtarget, dl);
7240 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007241 }
7242 }
7243 return SDValue();
7244}
7245
Dan Gohman475871a2008-07-27 21:46:04 +00007246SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007247X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007248 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007249 SDValue V1 = Op.getOperand(0);
7250 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007251 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007252 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007253 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007254 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007255 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007256 bool V1IsSplat = false;
7257 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007258 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007259 bool HasFp256 = Subtarget->hasFp256();
7260 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007261 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007262 bool OptForSize = MF.getFunction()->getAttributes().
7263 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007264
Craig Topper3426a3e2011-11-14 06:46:21 +00007265 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007266
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007267 if (V1IsUndef && V2IsUndef)
7268 return DAG.getUNDEF(VT);
7269
7270 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007271
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007272 // Vector shuffle lowering takes 3 steps:
7273 //
7274 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7275 // narrowing and commutation of operands should be handled.
7276 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7277 // shuffle nodes.
7278 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7279 // so the shuffle can be broken into other shuffles and the legalizer can
7280 // try the lowering again.
7281 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007282 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007283 // be matched during isel, all of them must be converted to a target specific
7284 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007285
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007286 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7287 // narrowing and commutation of operands should be handled. The actual code
7288 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007289 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007290 if (NewOp.getNode())
7291 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007292
Craig Topper5aaffa82012-02-19 02:53:47 +00007293 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7294
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007295 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7296 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007297 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007298 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007299 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007300 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007301
Craig Topperdd637ae2012-02-19 05:41:45 +00007302 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007303 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007304 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007305
Craig Topperdd637ae2012-02-19 05:41:45 +00007306 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007307 return getMOVHighToLow(Op, dl, DAG);
7308
7309 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007310 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007311 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007312 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007313
Craig Topper5aaffa82012-02-19 02:53:47 +00007314 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007315 // The actual implementation will match the mask in the if above and then
7316 // during isel it can match several different instructions, not only pshufd
7317 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007318 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7319 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007320
Craig Topper5aaffa82012-02-19 02:53:47 +00007321 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007322
Craig Topper1accb7e2012-01-10 06:54:16 +00007323 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007324 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7325
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007326 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7327 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7328 DAG);
7329
Craig Topperb3982da2011-12-31 23:50:21 +00007330 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007331 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007332 }
Eric Christopherfd179292009-08-27 18:07:15 +00007333
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007334 if (isPALIGNRMask(M, VT, Subtarget))
7335 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7336 getShufflePALIGNRImmediate(SVOp),
7337 DAG);
7338
Evan Chengf26ffe92008-05-29 08:22:04 +00007339 // Check if this can be converted into a logical shift.
7340 bool isLeft = false;
7341 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007342 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007343 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007344 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007345 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007346 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007347 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007348 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007349 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007350 }
Eric Christopherfd179292009-08-27 18:07:15 +00007351
Craig Topper5aaffa82012-02-19 02:53:47 +00007352 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007353 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007354 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007355 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007356 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007357 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7358
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007359 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007360 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7361 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007362 }
Eric Christopherfd179292009-08-27 18:07:15 +00007363
Nate Begeman9008ca62009-04-27 18:41:29 +00007364 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007365 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007366 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007367
Craig Topperdd637ae2012-02-19 05:41:45 +00007368 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007369 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007370
Craig Topperdd637ae2012-02-19 05:41:45 +00007371 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007372 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007373
Craig Topperdd637ae2012-02-19 05:41:45 +00007374 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007375 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007376
Craig Topperdd637ae2012-02-19 05:41:45 +00007377 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007378 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007379
Craig Topperdd637ae2012-02-19 05:41:45 +00007380 if (ShouldXformToMOVHLPS(M, VT) ||
7381 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007382 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007383
Evan Chengf26ffe92008-05-29 08:22:04 +00007384 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007385 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007386 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007387 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007388 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007389 }
Eric Christopherfd179292009-08-27 18:07:15 +00007390
Evan Cheng9eca5e82006-10-25 21:49:50 +00007391 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007392 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7393 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007394 V1IsSplat = isSplatVector(V1.getNode());
7395 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007396
Chris Lattner8a594482007-11-25 00:24:49 +00007397 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007398 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7399 CommuteVectorShuffleMask(M, NumElems);
7400 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007401 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007402 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007403 }
7404
Craig Topperbeabc6c2011-12-05 06:56:46 +00007405 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007406 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007407 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007408 return V1;
7409 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7410 // the instruction selector will not match, so get a canonical MOVL with
7411 // swapped operands to undo the commute.
7412 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007413 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007414
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007415 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007416 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007417
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007418 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007419 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007420
Evan Cheng9bbbb982006-10-25 20:48:19 +00007421 if (V2IsSplat) {
7422 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007423 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007424 // new vector_shuffle with the corrected mask.p
7425 SmallVector<int, 8> NewMask(M.begin(), M.end());
7426 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007427 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007428 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007429 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007430 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007431 }
7432
Evan Cheng9eca5e82006-10-25 21:49:50 +00007433 if (Commuted) {
7434 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007435 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007436 CommuteVectorShuffleMask(M, NumElems);
7437 std::swap(V1, V2);
7438 std::swap(V1IsSplat, V2IsSplat);
7439 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007440
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007441 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007442 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007443
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007444 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007445 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007446 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007447
Nate Begeman9008ca62009-04-27 18:41:29 +00007448 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007449 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007450 return CommuteVectorShuffle(SVOp, DAG);
7451
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007452 // The checks below are all present in isShuffleMaskLegal, but they are
7453 // inlined here right now to enable us to directly emit target specific
7454 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007455
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007456 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7457 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007458 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007459 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007460 }
7461
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007462 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007463 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007464 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007465 DAG);
7466
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007467 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007468 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007469 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007470 DAG);
7471
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007472 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007473 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007474 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007475
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007476 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007477 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007478 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007479 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007480
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007481 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007482 // Generate target specific nodes for 128 or 256-bit shuffles only
7483 // supported in the AVX instruction set.
7484 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007485
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007486 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007487 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007488 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7489
Craig Topper70b883b2011-11-28 10:14:51 +00007490 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007491 if (isVPERMILPMask(M, VT)) {
7492 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007493 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007494 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007495 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007496 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007497 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007498
Craig Topper70b883b2011-11-28 10:14:51 +00007499 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007500 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007501 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007502 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007503
Craig Topper1842ba02012-04-23 06:38:28 +00007504 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007505 if (BlendOp.getNode())
7506 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007507
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007508 unsigned Imm8;
7509 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7510 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007511
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007512 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7513 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007514 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7515 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007516 SmallVector<SDValue, 16> permclMask;
7517 for (unsigned i = 0; i != NumElems; ++i) {
7518 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7519 }
7520
7521 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7522 &permclMask[0], NumElems);
7523 if (V2IsUndef)
7524 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7525 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7526 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7527 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7528 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7529 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007530
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007531 //===--------------------------------------------------------------------===//
7532 // Since no target specific shuffle was selected for this generic one,
7533 // lower it into other known shuffles. FIXME: this isn't true yet, but
7534 // this is the plan.
7535 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007536
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007537 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7538 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007539 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007540 if (NewOp.getNode())
7541 return NewOp;
7542 }
7543
7544 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007545 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007546 if (NewOp.getNode())
7547 return NewOp;
7548 }
7549
Elena Demikhovsky41789462012-09-06 12:42:01 +00007550 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007551 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007552 if (NewOp.getNode())
7553 return NewOp;
7554 }
7555
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007556 // Handle all 128-bit wide vectors with 4 elements, and match them with
7557 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007558 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007559 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7560
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007561 // Handle general 256-bit shuffles
7562 if (VT.is256BitVector())
7563 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7564
Dan Gohman475871a2008-07-27 21:46:04 +00007565 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007566}
7567
Craig Topperf84b7502013-01-20 00:50:58 +00007568static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007569 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007570 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007571
Craig Topper5a0910b2013-08-15 02:33:50 +00007572 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007573 return SDValue();
7574
Duncan Sands83ec4b62008-06-06 12:08:01 +00007575 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007576 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007577 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007578 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007579 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007580 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007581 }
7582
7583 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007584 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7585 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7586 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007587 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7588 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007589 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007590 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007591 Op.getOperand(0)),
7592 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007593 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007594 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007595 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007596 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007597 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007598 }
7599
7600 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007601 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7602 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007603 // result has a single use which is a store or a bitcast to i32. And in
7604 // the case of a store, it's not worth it if the index is a constant 0,
7605 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007606 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007607 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007608 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007609 if ((User->getOpcode() != ISD::STORE ||
7610 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7611 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007612 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007613 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007614 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007615 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007616 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007617 Op.getOperand(0)),
7618 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007619 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007620 }
7621
7622 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007623 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007624 if (isa<ConstantSDNode>(Op.getOperand(1)))
7625 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007626 }
Dan Gohman475871a2008-07-27 21:46:04 +00007627 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007628}
7629
Dan Gohman475871a2008-07-27 21:46:04 +00007630SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007631X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7632 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007633 SDLoc dl(Op);
David Greene74a579d2011-02-10 16:57:36 +00007634 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007635 MVT VecVT = Vec.getSimpleValueType();
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007636 SDValue Idx = Op.getOperand(1);
7637 if (!isa<ConstantSDNode>(Idx)) {
7638 if (VecVT.is512BitVector() ||
7639 (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7640 VecVT.getVectorElementType().getSizeInBits() == 32)) {
7641
7642 MVT MaskEltVT =
7643 MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7644 MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7645 MaskEltVT.getSizeInBits());
7646
Michael Liaobfa7b1e2013-10-15 17:51:58 +00007647 Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007648 SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7649 getZeroVector(MaskVT, Subtarget, DAG, dl),
7650 Idx, DAG.getConstant(0, getPointerTy()));
7651 SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7652 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7653 Perm, DAG.getConstant(0, getPointerTy()));
7654 }
7655 return SDValue();
7656 }
David Greene74a579d2011-02-10 16:57:36 +00007657
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007658 // If this is a 256-bit vector result, first extract the 128-bit vector and
7659 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007660 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007661
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007662 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greene74a579d2011-02-10 16:57:36 +00007663 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007664 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007665 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007666
Elena Demikhovsky83952512013-07-31 11:35:14 +00007667 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7668
7669 //if (IdxVal >= NumElems/2)
7670 // IdxVal -= NumElems/2;
7671 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007672 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007673 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007674 }
7675
Craig Topper7a9a28b2012-08-12 02:23:29 +00007676 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007677
Craig Topperd0a31172012-01-10 06:37:29 +00007678 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007679 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007680 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007681 return Res;
7682 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007683
Craig Topper5a0910b2013-08-15 02:33:50 +00007684 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007685 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007686 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007687 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007688 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007689 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007690 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7691 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007692 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007693 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007694 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007695 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007696 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007697 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007698 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007699 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007700 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007701 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007702 }
7703
7704 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007705 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007706 if (Idx == 0)
7707 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007708
Evan Cheng0db9fe62006-04-25 20:13:52 +00007709 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007710 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007711 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007712 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007713 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007714 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007715 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007716 }
7717
7718 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007719 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7720 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7721 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007722 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007723 if (Idx == 0)
7724 return Op;
7725
7726 // UNPCKHPD the element to the lowest double word, then movsd.
7727 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7728 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007729 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007730 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007731 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007732 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007733 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007734 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007735 }
7736
Dan Gohman475871a2008-07-27 21:46:04 +00007737 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007738}
7739
Craig Topperf84b7502013-01-20 00:50:58 +00007740static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007741 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007742 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007743 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007744
Dan Gohman475871a2008-07-27 21:46:04 +00007745 SDValue N0 = Op.getOperand(0);
7746 SDValue N1 = Op.getOperand(1);
7747 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007748
Craig Topper7a9a28b2012-08-12 02:23:29 +00007749 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007750 return SDValue();
7751
Dan Gohman8a55ce42009-09-23 21:02:20 +00007752 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007753 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007754 unsigned Opc;
7755 if (VT == MVT::v8i16)
7756 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007757 else if (VT == MVT::v16i8)
7758 Opc = X86ISD::PINSRB;
7759 else
7760 Opc = X86ISD::PINSRB;
7761
Nate Begeman14d12ca2008-02-11 04:19:36 +00007762 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7763 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007764 if (N1.getValueType() != MVT::i32)
7765 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7766 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007767 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007768 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007769 }
7770
7771 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007772 // Bits [7:6] of the constant are the source select. This will always be
7773 // zero here. The DAG Combiner may combine an extract_elt index into these
7774 // bits. For example (insert (extract, 3), 2) could be matched by putting
7775 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007776 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007777 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007778 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007779 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007780 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007781 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007782 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007783 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007784 }
7785
7786 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007787 // PINSR* works with constant index.
7788 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007789 }
Dan Gohman475871a2008-07-27 21:46:04 +00007790 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007791}
7792
Dan Gohman475871a2008-07-27 21:46:04 +00007793SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007794X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007795 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007796 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007797
Andrew Trickac6d9be2013-05-25 02:42:55 +00007798 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007799 SDValue N0 = Op.getOperand(0);
7800 SDValue N1 = Op.getOperand(1);
7801 SDValue N2 = Op.getOperand(2);
7802
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007803 // If this is a 256-bit vector result, first extract the 128-bit vector,
7804 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007805 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007806 if (!isa<ConstantSDNode>(N2))
7807 return SDValue();
7808
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007809 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007810 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007811 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007812
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007813 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007814 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7815 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7816
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007817 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007818 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007819
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007820 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007821 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007822 }
7823
Craig Topperd0a31172012-01-10 06:37:29 +00007824 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007825 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7826
Dan Gohman8a55ce42009-09-23 21:02:20 +00007827 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007828 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007829
Dan Gohman8a55ce42009-09-23 21:02:20 +00007830 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007831 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7832 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007833 if (N1.getValueType() != MVT::i32)
7834 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7835 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007836 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007837 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007838 }
Dan Gohman475871a2008-07-27 21:46:04 +00007839 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007840}
7841
Craig Topper55b24052012-09-11 06:15:32 +00007842static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007843 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007844 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007845
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007846 // If this is a 256-bit vector result, first insert into a 128-bit
7847 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007848 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007849 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007850 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007851 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007852 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007853
7854 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7855
7856 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007857 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007858 }
7859
Craig Topperd77d2fe2012-04-29 20:22:05 +00007860 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007861 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007862 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007863
Owen Anderson825b72b2009-08-11 20:47:22 +00007864 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007865 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007866 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007867 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007868}
7869
David Greene91585092011-01-26 15:38:49 +00007870// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7871// a simple subregister reference or explicit instructions to grab
7872// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007873static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7874 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007875 SDLoc dl(Op);
7876 SDValue In = Op.getOperand(0);
7877 SDValue Idx = Op.getOperand(1);
7878 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007879 MVT ResVT = Op.getSimpleValueType();
7880 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007881
Elena Demikhovsky83952512013-07-31 11:35:14 +00007882 if (Subtarget->hasFp256()) {
7883 if (ResVT.is128BitVector() &&
7884 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007885 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007886 return Extract128BitVector(In, IdxVal, DAG, dl);
7887 }
7888 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7889 isa<ConstantSDNode>(Idx)) {
7890 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007891 }
David Greene91585092011-01-26 15:38:49 +00007892 }
7893 return SDValue();
7894}
7895
David Greenecfe33c42011-01-26 19:13:22 +00007896// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7897// simple superregister reference or explicit instructions to insert
7898// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007899static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7900 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007901 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007902 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007903 SDValue Vec = Op.getNode()->getOperand(0);
7904 SDValue SubVec = Op.getNode()->getOperand(1);
7905 SDValue Idx = Op.getNode()->getOperand(2);
7906
Craig Topper8d725b92013-08-15 05:33:45 +00007907 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7908 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7909 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007910 isa<ConstantSDNode>(Idx)) {
7911 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7912 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007913 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007914
Craig Topper8d725b92013-08-15 05:33:45 +00007915 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7916 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007917 isa<ConstantSDNode>(Idx)) {
7918 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7919 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7920 }
David Greenecfe33c42011-01-26 19:13:22 +00007921 }
7922 return SDValue();
7923}
7924
Bill Wendling056292f2008-09-16 21:48:12 +00007925// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7926// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7927// one of the above mentioned nodes. It has to be wrapped because otherwise
7928// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7929// be used to form addressing mode. These wrapped nodes will be selected
7930// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007931SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007932X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007933 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007934
Chris Lattner41621a22009-06-26 19:22:52 +00007935 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7936 // global base reg.
7937 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007938 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007939 CodeModel::Model M = getTargetMachine().getCodeModel();
7940
Chris Lattner4f066492009-07-11 20:29:19 +00007941 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007942 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007943 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007944 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007945 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007946 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007947 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007948
Evan Cheng1606e8e2009-03-13 07:51:59 +00007949 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007950 CP->getAlignment(),
7951 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007952 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007953 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007954 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007955 if (OpFlag) {
7956 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007957 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007958 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007959 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007960 }
7961
7962 return Result;
7963}
7964
Dan Gohmand858e902010-04-17 15:26:15 +00007965SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007966 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007967
Chris Lattner18c59872009-06-27 04:16:01 +00007968 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7969 // global base reg.
7970 unsigned char OpFlag = 0;
7971 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007972 CodeModel::Model M = getTargetMachine().getCodeModel();
7973
Chris Lattner4f066492009-07-11 20:29:19 +00007974 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007975 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007976 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007977 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007978 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007979 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007980 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007981
Chris Lattner18c59872009-06-27 04:16:01 +00007982 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7983 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007984 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007985 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007986
Chris Lattner18c59872009-06-27 04:16:01 +00007987 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007988 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007989 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7990 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007991 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007992 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007993
Chris Lattner18c59872009-06-27 04:16:01 +00007994 return Result;
7995}
7996
7997SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007998X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007999 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00008000
Chris Lattner18c59872009-06-27 04:16:01 +00008001 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8002 // global base reg.
8003 unsigned char OpFlag = 0;
8004 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008005 CodeModel::Model M = getTargetMachine().getCodeModel();
8006
Chris Lattner4f066492009-07-11 20:29:19 +00008007 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00008008 (M == CodeModel::Small || M == CodeModel::Kernel)) {
8009 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8010 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00008011 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00008012 } else if (Subtarget->isPICStyleGOT()) {
8013 OpFlag = X86II::MO_GOT;
8014 } else if (Subtarget->isPICStyleStubPIC()) {
8015 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8016 } else if (Subtarget->isPICStyleStubNoDynamic()) {
8017 OpFlag = X86II::MO_DARWIN_NONLAZY;
8018 }
Eric Christopherfd179292009-08-27 18:07:15 +00008019
Chris Lattner18c59872009-06-27 04:16:01 +00008020 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00008021
Andrew Trickac6d9be2013-05-25 02:42:55 +00008022 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00008023 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008024
Chris Lattner18c59872009-06-27 04:16:01 +00008025 // With PIC, the address is actually $g + Offset.
8026 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00008027 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00008028 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8029 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008030 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008031 Result);
8032 }
Eric Christopherfd179292009-08-27 18:07:15 +00008033
Eli Friedman586272d2011-08-11 01:48:05 +00008034 // For symbols that require a load from a stub to get the address, emit the
8035 // load.
8036 if (isGlobalStubReference(OpFlag))
8037 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008038 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00008039
Chris Lattner18c59872009-06-27 04:16:01 +00008040 return Result;
8041}
8042
Dan Gohman475871a2008-07-27 21:46:04 +00008043SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008044X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00008045 // Create the TargetBlockAddressAddress node.
8046 unsigned char OpFlags =
8047 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008048 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008049 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008050 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008051 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008052 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8053 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008054
Dan Gohmanf705adb2009-10-30 01:28:02 +00008055 if (Subtarget->isPICStyleRIPRel() &&
8056 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008057 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8058 else
8059 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008060
Dan Gohman29cbade2009-11-20 23:18:13 +00008061 // With PIC, the address is actually $g + Offset.
8062 if (isGlobalRelativeToPICBase(OpFlags)) {
8063 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8064 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8065 Result);
8066 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008067
8068 return Result;
8069}
8070
8071SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008072X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008073 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008074 // Create the TargetGlobalAddress node, folding in the constant
8075 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008076 unsigned char OpFlags =
8077 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008078 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008079 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008080 if (OpFlags == X86II::MO_NO_FLAG &&
8081 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008082 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008083 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008084 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008085 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008086 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008087 }
Eric Christopherfd179292009-08-27 18:07:15 +00008088
Chris Lattner4f066492009-07-11 20:29:19 +00008089 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008090 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008091 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8092 else
8093 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008094
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008095 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008096 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008097 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8098 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008099 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008100 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008101
Chris Lattner36c25012009-07-10 07:34:39 +00008102 // For globals that require a load from a stub to get the address, emit the
8103 // load.
8104 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008105 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008106 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008107
Dan Gohman6520e202008-10-18 02:06:02 +00008108 // If there was a non-zero offset that we didn't fold, create an explicit
8109 // addition for it.
8110 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008111 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008112 DAG.getConstant(Offset, getPointerTy()));
8113
Evan Cheng0db9fe62006-04-25 20:13:52 +00008114 return Result;
8115}
8116
Evan Chengda43bcf2008-09-24 00:05:32 +00008117SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008118X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008119 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008120 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008121 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008122}
8123
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008124static SDValue
8125GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008126 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008127 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008128 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008129 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008130 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008131 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008132 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008133 GA->getOffset(),
8134 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008135
8136 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8137 : X86ISD::TLSADDR;
8138
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008139 if (InFlag) {
8140 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008141 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008142 } else {
8143 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008144 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008145 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008146
8147 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008148 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008149
Rafael Espindola15f1b662009-04-24 12:59:40 +00008150 SDValue Flag = Chain.getValue(1);
8151 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008152}
8153
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008154// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008155static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008156LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008157 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008158 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008159 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008160 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008161 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008162 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008163 InFlag = Chain.getValue(1);
8164
Chris Lattnerb903bed2009-06-26 21:20:29 +00008165 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008166}
8167
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008168// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008169static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008170LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008171 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008172 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8173 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008174}
8175
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008176static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8177 SelectionDAG &DAG,
8178 const EVT PtrVT,
8179 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008180 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008181
8182 // Get the start address of the TLS block for this module.
8183 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8184 .getInfo<X86MachineFunctionInfo>();
8185 MFI->incNumLocalDynamicTLSAccesses();
8186
8187 SDValue Base;
8188 if (is64Bit) {
8189 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8190 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8191 } else {
8192 SDValue InFlag;
8193 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008194 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008195 InFlag = Chain.getValue(1);
8196 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8197 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8198 }
8199
8200 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8201 // of Base.
8202
8203 // Build x@dtpoff.
8204 unsigned char OperandFlags = X86II::MO_DTPOFF;
8205 unsigned WrapperKind = X86ISD::Wrapper;
8206 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8207 GA->getValueType(0),
8208 GA->getOffset(), OperandFlags);
8209 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8210
8211 // Add x@dtpoff with the base.
8212 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8213}
8214
Hans Wennborg228756c2012-05-11 10:11:01 +00008215// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008216static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008217 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008218 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008219 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008220
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008221 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8222 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8223 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008224
Eric Christopher739eb9d2013-10-14 21:52:23 +00008225 SDValue ThreadPointer =
8226 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8227 MachinePointerInfo(Ptr), false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008228
Chris Lattnerb903bed2009-06-26 21:20:29 +00008229 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008230 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8231 // initialexec.
8232 unsigned WrapperKind = X86ISD::Wrapper;
8233 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008234 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008235 } else if (model == TLSModel::InitialExec) {
8236 if (is64Bit) {
8237 OperandFlags = X86II::MO_GOTTPOFF;
8238 WrapperKind = X86ISD::WrapperRIP;
8239 } else {
8240 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8241 }
Chris Lattner18c59872009-06-27 04:16:01 +00008242 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008243 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008244 }
Eric Christopherfd179292009-08-27 18:07:15 +00008245
Hans Wennborg228756c2012-05-11 10:11:01 +00008246 // emit "addl x@ntpoff,%eax" (local exec)
8247 // or "addl x@indntpoff,%eax" (initial exec)
8248 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Eric Christopher739eb9d2013-10-14 21:52:23 +00008249 SDValue TGA =
8250 DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8251 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008252 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008253
Hans Wennborg228756c2012-05-11 10:11:01 +00008254 if (model == TLSModel::InitialExec) {
8255 if (isPIC && !is64Bit) {
8256 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008257 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008258 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008259 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008260
8261 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008262 MachinePointerInfo::getGOT(), false, false, false, 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008263 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008264
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008265 // The address of the thread local variable is the add of the thread
8266 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008267 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008268}
8269
Dan Gohman475871a2008-07-27 21:46:04 +00008270SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008271X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008272
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008273 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008274 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008275
Eric Christopher30ef0e52010-06-03 04:07:48 +00008276 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008277 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008278
Eric Christopher30ef0e52010-06-03 04:07:48 +00008279 switch (model) {
8280 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008281 if (Subtarget->is64Bit())
8282 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8283 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008284 case TLSModel::LocalDynamic:
8285 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8286 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008287 case TLSModel::InitialExec:
8288 case TLSModel::LocalExec:
8289 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008290 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008291 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008292 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008293 llvm_unreachable("Unknown TLS model.");
8294 }
8295
8296 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008297 // Darwin only has one model of TLS. Lower to that.
8298 unsigned char OpFlag = 0;
8299 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8300 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008301
Eric Christopher30ef0e52010-06-03 04:07:48 +00008302 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8303 // global base reg.
8304 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8305 !Subtarget->is64Bit();
8306 if (PIC32)
8307 OpFlag = X86II::MO_TLVP_PIC_BASE;
8308 else
8309 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008310 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008311 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008312 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008313 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008314 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008315
Eric Christopher30ef0e52010-06-03 04:07:48 +00008316 // With PIC32, the address is actually $g + Offset.
8317 if (PIC32)
8318 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8319 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008320 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008321 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008322
Eric Christopher30ef0e52010-06-03 04:07:48 +00008323 // Lowering the machine isd will make sure everything is in the right
8324 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008325 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008326 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008327 SDValue Args[] = { Chain, Offset };
8328 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008329
Eric Christopher30ef0e52010-06-03 04:07:48 +00008330 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8331 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8332 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008333
Eric Christopher30ef0e52010-06-03 04:07:48 +00008334 // And our return value (tls address) is in the standard call return value
8335 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008336 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008337 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8338 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008339 }
8340
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008341 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008342 // Just use the implicit TLS architecture
8343 // Need to generate someting similar to:
8344 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8345 // ; from TEB
8346 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8347 // mov rcx, qword [rdx+rcx*8]
8348 // mov eax, .tls$:tlsvar
8349 // [rax+rcx] contains the address
8350 // Windows 64bit: gs:0x58
8351 // Windows 32bit: fs:__tls_array
8352
8353 // If GV is an alias then use the aliasee for determining
8354 // thread-localness.
8355 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8356 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008357 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008358 SDValue Chain = DAG.getEntryNode();
8359
8360 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008361 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8362 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008363 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8364 ? Type::getInt8PtrTy(*DAG.getContext(),
8365 256)
8366 : Type::getInt32PtrTy(*DAG.getContext(),
8367 257));
8368
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008369 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8370 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8371 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8372
8373 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008374 MachinePointerInfo(Ptr),
8375 false, false, false, 0);
8376
8377 // Load the _tls_index variable
8378 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8379 if (Subtarget->is64Bit())
8380 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8381 IDX, MachinePointerInfo(), MVT::i32,
8382 false, false, 0);
8383 else
8384 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8385 false, false, false, 0);
8386
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008387 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008388 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008389 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8390
8391 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8392 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8393 false, false, false, 0);
8394
8395 // Get the offset of start of .tls section
8396 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8397 GA->getValueType(0),
8398 GA->getOffset(), X86II::MO_SECREL);
8399 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8400
8401 // The address of the thread local variable is the add of the thread
8402 // pointer with the offset of the variable.
8403 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008404 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008405
David Blaikie4d6ccb52012-01-20 21:51:11 +00008406 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008407}
8408
Chad Rosierb90d2a92012-01-03 23:19:12 +00008409/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8410/// and take a 2 x i32 value to shift plus a shift amount.
8411SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008412 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008413 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008414 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008415 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008416 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008417 SDValue ShOpLo = Op.getOperand(0);
8418 SDValue ShOpHi = Op.getOperand(1);
8419 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00008420 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008421 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008422 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008423
Dan Gohman475871a2008-07-27 21:46:04 +00008424 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008425 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008426 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8427 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008428 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008429 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8430 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008431 }
Evan Chenge3413162006-01-09 18:33:28 +00008432
Owen Anderson825b72b2009-08-11 20:47:22 +00008433 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8434 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008435 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008436 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008437
Dan Gohman475871a2008-07-27 21:46:04 +00008438 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008439 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008440 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8441 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008442
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008443 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008444 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8445 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008446 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008447 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8448 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008449 }
8450
Dan Gohman475871a2008-07-27 21:46:04 +00008451 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008452 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008453}
Evan Chenga3195e82006-01-12 22:54:21 +00008454
Dan Gohmand858e902010-04-17 15:26:15 +00008455SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8456 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008457 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008458
Dale Johannesen0488fb62010-09-30 23:57:10 +00008459 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008460 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008461
Owen Anderson825b72b2009-08-11 20:47:22 +00008462 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008463 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008464
Eli Friedman36df4992009-05-27 00:47:34 +00008465 // These are really Legal; return the operand so the caller accepts it as
8466 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008467 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008468 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008469 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008470 Subtarget->is64Bit()) {
8471 return Op;
8472 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008473
Andrew Trickac6d9be2013-05-25 02:42:55 +00008474 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008475 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008476 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008477 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008478 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008479 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008480 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008481 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008482 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008483 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8484}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008485
Owen Andersone50ed302009-08-10 22:56:29 +00008486SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008487 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008488 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008489 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008490 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008491 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008492 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008493 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008494 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008495 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008496 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008497
Chris Lattner492a43e2010-09-22 01:28:21 +00008498 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008499
Stuart Hastings84be9582011-06-02 15:57:11 +00008500 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8501 MachineMemOperand *MMO;
8502 if (FI) {
8503 int SSFI = FI->getIndex();
8504 MMO =
8505 DAG.getMachineFunction()
8506 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8507 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8508 } else {
8509 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8510 StackSlot = StackSlot.getOperand(1);
8511 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008512 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008513 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8514 X86ISD::FILD, DL,
8515 Tys, Ops, array_lengthof(Ops),
8516 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008517
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008518 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008519 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008520 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008521
8522 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8523 // shouldn't be necessary except that RFP cannot be live across
8524 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008525 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008526 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8527 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008528 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008529 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008530 SDValue Ops[] = {
8531 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8532 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008533 MachineMemOperand *MMO =
8534 DAG.getMachineFunction()
8535 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008536 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008537
Chris Lattner492a43e2010-09-22 01:28:21 +00008538 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8539 Ops, array_lengthof(Ops),
8540 Op.getValueType(), MMO);
8541 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008542 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008543 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008544 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008545
Evan Cheng0db9fe62006-04-25 20:13:52 +00008546 return Result;
8547}
8548
Bill Wendling8b8a6362009-01-17 03:56:04 +00008549// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008550SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8551 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008552 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008553 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008554 movq %rax, %xmm0
8555 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8556 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8557 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008558 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008559 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008560 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008561 addpd %xmm1, %xmm0
8562 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008563 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008564
Andrew Trickac6d9be2013-05-25 02:42:55 +00008565 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008566 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008567
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008568 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008569 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008570 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008571 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008572
Chris Lattner97484792012-01-25 09:56:22 +00008573 SmallVector<Constant*,2> CV1;
8574 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008575 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8576 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008577 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008578 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8579 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008580 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008581 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008582
Bill Wendling397ae212012-01-05 02:13:20 +00008583 // Load the 64-bit value into an XMM register.
8584 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8585 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008586 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008587 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008588 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008589 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8590 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8591 CLod0);
8592
Owen Anderson825b72b2009-08-11 20:47:22 +00008593 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008594 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008595 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008596 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008597 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008598 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008599
Craig Topperd0a31172012-01-10 06:37:29 +00008600 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008601 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8602 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8603 } else {
8604 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8605 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8606 S2F, 0x4E, DAG);
8607 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8608 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8609 Sub);
8610 }
8611
8612 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008613 DAG.getIntPtrConstant(0));
8614}
8615
Bill Wendling8b8a6362009-01-17 03:56:04 +00008616// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008617SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8618 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008619 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008620 // FP constant to bias correct the final result.
8621 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008622 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008623
8624 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008625 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008626 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008627
Eli Friedmanf3704762011-08-29 21:15:46 +00008628 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008629 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008630
Owen Anderson825b72b2009-08-11 20:47:22 +00008631 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008632 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008633 DAG.getIntPtrConstant(0));
8634
8635 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008636 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008637 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008638 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008639 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008640 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008641 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008642 MVT::v2f64, Bias)));
8643 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008644 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008645 DAG.getIntPtrConstant(0));
8646
8647 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008648 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008649
8650 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008651 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008652
Craig Topper69947b92012-04-23 06:57:04 +00008653 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008654 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008655 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008656 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008657 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008658
8659 // Handle final rounding.
8660 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008661}
8662
Michael Liaoa7554632012-10-23 17:36:08 +00008663SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8664 SelectionDAG &DAG) const {
8665 SDValue N0 = Op.getOperand(0);
8666 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008667 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008668
8669 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8670 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8671 "Custom UINT_TO_FP is not supported!");
8672
Craig Topperb99bafe2013-01-21 06:21:54 +00008673 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8674 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008675 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8676 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8677}
8678
Dan Gohmand858e902010-04-17 15:26:15 +00008679SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8680 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008681 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008682 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008683
Michael Liaoa7554632012-10-23 17:36:08 +00008684 if (Op.getValueType().isVector())
8685 return lowerUINT_TO_FP_vec(Op, DAG);
8686
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008687 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008688 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8689 // the optimization here.
8690 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008691 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008692
Owen Andersone50ed302009-08-10 22:56:29 +00008693 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008694 EVT DstVT = Op.getValueType();
8695 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008696 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008697 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008698 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008699 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008700 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008701
8702 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008703 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008704 if (SrcVT == MVT::i32) {
8705 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8706 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8707 getPointerTy(), StackSlot, WordOff);
8708 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008709 StackSlot, MachinePointerInfo(),
8710 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008711 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008712 OffsetSlot, MachinePointerInfo(),
8713 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008714 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8715 return Fild;
8716 }
8717
8718 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8719 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008720 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008721 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008722 // For i64 source, we need to add the appropriate power of 2 if the input
8723 // was negative. This is the same as the optimization in
8724 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8725 // we must be careful to do the computation in x87 extended precision, not
8726 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008727 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8728 MachineMemOperand *MMO =
8729 DAG.getMachineFunction()
8730 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8731 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008732
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008733 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8734 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008735 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8736 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008737
8738 APInt FF(32, 0x5F800000ULL);
8739
8740 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008741 SDValue SignSet = DAG.getSetCC(dl,
8742 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008743 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8744 ISD::SETLT);
8745
8746 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8747 SDValue FudgePtr = DAG.getConstantPool(
8748 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8749 getPointerTy());
8750
8751 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8752 SDValue Zero = DAG.getIntPtrConstant(0);
8753 SDValue Four = DAG.getIntPtrConstant(4);
8754 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8755 Zero, Four);
8756 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8757
8758 // Load the value out, extending it from f32 to f80.
8759 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008760 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008761 FudgePtr, MachinePointerInfo::getConstantPool(),
8762 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008763 // Extend everything to 80 bits to force it to be done on x87.
8764 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8765 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008766}
8767
Craig Topperb99bafe2013-01-21 06:21:54 +00008768std::pair<SDValue,SDValue>
8769X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8770 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008771 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008772
Owen Andersone50ed302009-08-10 22:56:29 +00008773 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008774
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008775 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008776 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8777 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008778 }
8779
Owen Anderson825b72b2009-08-11 20:47:22 +00008780 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8781 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008782 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008783
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008784 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008785 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008786 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008787 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008788 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008789 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008790 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008791 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008792
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008793 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8794 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008795 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008796 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008797 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008798 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008799
Evan Cheng0db9fe62006-04-25 20:13:52 +00008800 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008801 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8802 Opc = X86ISD::WIN_FTOL;
8803 else
8804 switch (DstTy.getSimpleVT().SimpleTy) {
8805 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8806 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8807 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8808 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8809 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008810
Dan Gohman475871a2008-07-27 21:46:04 +00008811 SDValue Chain = DAG.getEntryNode();
8812 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008813 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008814 // FIXME This causes a redundant load/store if the SSE-class value is already
8815 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008816 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008817 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008818 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008819 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008820 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008821 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008822 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008823 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008824 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008825
Chris Lattner492a43e2010-09-22 01:28:21 +00008826 MachineMemOperand *MMO =
8827 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8828 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008829 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8830 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008831 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008832 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008833 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8834 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008835
Chris Lattner07290932010-09-22 01:05:16 +00008836 MachineMemOperand *MMO =
8837 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8838 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008839
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008840 if (Opc != X86ISD::WIN_FTOL) {
8841 // Build the FP_TO_INT*_IN_MEM
8842 SDValue Ops[] = { Chain, Value, StackSlot };
8843 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008844 Ops, array_lengthof(Ops), DstTy,
8845 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008846 return std::make_pair(FIST, StackSlot);
8847 } else {
8848 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8849 DAG.getVTList(MVT::Other, MVT::Glue),
8850 Chain, Value);
8851 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8852 MVT::i32, ftol.getValue(1));
8853 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8854 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008855 SDValue Ops[] = { eax, edx };
8856 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008857 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8858 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008859 return std::make_pair(pair, SDValue());
8860 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008861}
8862
Nadav Rotem0509db22012-12-28 05:45:24 +00008863static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8864 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008865 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008866 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008867 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008868 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008869
8870 // Optimize vectors in AVX mode:
8871 //
8872 // v8i16 -> v8i32
8873 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8874 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8875 // Concat upper and lower parts.
8876 //
8877 // v4i32 -> v4i64
8878 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8879 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8880 // Concat upper and lower parts.
8881 //
8882
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008883 if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8884 ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
Nadav Rotem0509db22012-12-28 05:45:24 +00008885 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8886 return SDValue();
8887
8888 if (Subtarget->hasInt256())
8889 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8890
8891 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8892 SDValue Undef = DAG.getUNDEF(InVT);
8893 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8894 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8895 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8896
Craig Toppera080daf2013-01-20 21:50:27 +00008897 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008898 VT.getVectorNumElements()/2);
8899
8900 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8901 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8902
8903 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8904}
8905
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008906static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8907 SelectionDAG &DAG) {
8908 MVT VT = Op->getValueType(0).getSimpleVT();
8909 SDValue In = Op->getOperand(0);
8910 MVT InVT = In.getValueType().getSimpleVT();
8911 SDLoc DL(Op);
8912 unsigned int NumElts = VT.getVectorNumElements();
8913 if (NumElts != 8 && NumElts != 16)
8914 return SDValue();
8915
8916 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8917 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8918
8919 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8920 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8921 // Now we have only mask extension
8922 assert(InVT.getVectorElementType() == MVT::i1);
8923 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8924 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8925 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8926 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8927 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8928 MachinePointerInfo::getConstantPool(),
8929 false, false, false, Alignment);
8930
8931 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8932 if (VT.is512BitVector())
8933 return Brcst;
8934 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8935}
8936
Craig Topperff79bc62013-08-18 08:53:01 +00008937static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8938 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008939 if (Subtarget->hasFp256()) {
8940 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8941 if (Res.getNode())
8942 return Res;
8943 }
8944
8945 return SDValue();
8946}
Craig Topperff79bc62013-08-18 08:53:01 +00008947
8948static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8949 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008950 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008951 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008952 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008953 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008954
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008955 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8956 return LowerZERO_EXTEND_AVX512(Op, DAG);
8957
Nadav Rotem0509db22012-12-28 05:45:24 +00008958 if (Subtarget->hasFp256()) {
8959 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8960 if (Res.getNode())
8961 return Res;
8962 }
8963
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008964 assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
8965 VT.getVectorNumElements() != SVT.getVectorNumElements());
8966 return SDValue();
Michael Liaoa7554632012-10-23 17:36:08 +00008967}
8968
Craig Topperd713c0f2013-01-20 21:34:37 +00008969SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008970 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008971 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008972 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008973 MVT InVT = In.getSimpleValueType();
8974 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8975 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008976
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008977 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8978 if (VT.getVectorElementType().getSizeInBits() >=8)
8979 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8980
8981 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8982 unsigned NumElts = InVT.getVectorNumElements();
8983 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8984 if (InVT.getSizeInBits() < 512) {
8985 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8986 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8987 InVT = ExtVT;
8988 }
8989 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8990 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8991 SDValue CP = DAG.getConstantPool(C, getPointerTy());
8992 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8993 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8994 MachinePointerInfo::getConstantPool(),
8995 false, false, false, Alignment);
8996 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8997 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8998 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8999 }
9000
9001 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009002 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9003 if (Subtarget->hasInt256()) {
9004 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9005 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9006 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9007 ShufMask);
9008 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9009 DAG.getIntPtrConstant(0));
9010 }
9011
9012 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9013 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9014 DAG.getIntPtrConstant(0));
9015 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9016 DAG.getIntPtrConstant(2));
9017
9018 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9019 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9020
9021 // The PSHUFD mask:
9022 static const int ShufMask1[] = {0, 2, 0, 0};
9023 SDValue Undef = DAG.getUNDEF(VT);
9024 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9025 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9026
9027 // The MOVLHPS mask:
9028 static const int ShufMask2[] = {0, 1, 4, 5};
9029 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9030 }
9031
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009032 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009033 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9034 if (Subtarget->hasInt256()) {
9035 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9036
9037 SmallVector<SDValue,32> pshufbMask;
9038 for (unsigned i = 0; i < 2; ++i) {
9039 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9040 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9041 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9042 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9043 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9044 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9045 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9046 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9047 for (unsigned j = 0; j < 8; ++j)
9048 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9049 }
9050 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9051 &pshufbMask[0], 32);
9052 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9053 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9054
9055 static const int ShufMask[] = {0, 2, -1, -1};
9056 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9057 &ShufMask[0]);
9058 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9059 DAG.getIntPtrConstant(0));
9060 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9061 }
9062
9063 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9064 DAG.getIntPtrConstant(0));
9065
9066 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9067 DAG.getIntPtrConstant(4));
9068
9069 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9070 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9071
9072 // The PSHUFB mask:
9073 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9074 -1, -1, -1, -1, -1, -1, -1, -1};
9075
9076 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9077 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9078 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9079
9080 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9081 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9082
9083 // The MOVLHPS Mask:
9084 static const int ShufMask2[] = {0, 1, 4, 5};
9085 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9086 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9087 }
9088
9089 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009090 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009091 return SDValue();
9092
Nadav Rotem3c22a442012-12-27 07:45:10 +00009093 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009094
9095 unsigned NumElems = VT.getVectorNumElements();
9096 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9097 NumElems * 2);
9098
Michael Liaobedcbd42012-10-16 18:14:11 +00009099 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9100 // Prepare truncation shuffle mask
9101 for (unsigned i = 0; i != NumElems; ++i)
9102 MaskVec[i] = i * 2;
9103 SDValue V = DAG.getVectorShuffle(NVT, DL,
9104 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9105 DAG.getUNDEF(NVT), &MaskVec[0]);
9106 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9107 DAG.getIntPtrConstant(0));
9108}
9109
Dan Gohmand858e902010-04-17 15:26:15 +00009110SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9111 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009112 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009113 if (VT.isVector()) {
9114 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009115 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9116 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009117 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009118 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009119 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009120
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009121 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9122 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009123 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009124 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9125 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009126
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009127 if (StackSlot.getNode())
9128 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009129 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009130 FIST, StackSlot, MachinePointerInfo(),
9131 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009132
9133 // The node is the result.
9134 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009135}
9136
Dan Gohmand858e902010-04-17 15:26:15 +00009137SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9138 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009139 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9140 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009141 SDValue FIST = Vals.first, StackSlot = Vals.second;
9142 assert(FIST.getNode() && "Unexpected failure");
9143
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009144 if (StackSlot.getNode())
9145 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009146 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009147 FIST, StackSlot, MachinePointerInfo(),
9148 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009149
9150 // The node is the result.
9151 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009152}
9153
Craig Topperb84b4232013-01-21 06:13:28 +00009154static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009155 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009156 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009157 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009158 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009159
9160 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9161
9162 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9163 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9164 In, DAG.getUNDEF(SVT)));
9165}
9166
Craig Topper43620672012-09-08 07:31:51 +00009167SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009168 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009169 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009170 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009171 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009172 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9173 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009174 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009175 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009176 }
Craig Topper43620672012-09-08 07:31:51 +00009177 Constant *C;
9178 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009179 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9180 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009181 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009182 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9183 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009184 C = ConstantVector::getSplat(NumElts, C);
9185 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9186 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009187 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009188 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009189 false, false, false, Alignment);
9190 if (VT.isVector()) {
9191 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9192 return DAG.getNode(ISD::BITCAST, dl, VT,
9193 DAG.getNode(ISD::AND, dl, ANDVT,
9194 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9195 Op.getOperand(0)),
9196 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9197 }
Dale Johannesenace16102009-02-03 19:33:06 +00009198 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009199}
9200
Dan Gohmand858e902010-04-17 15:26:15 +00009201SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009202 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009203 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009204 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009205 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009206 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9207 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009208 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009209 NumElts = VT.getVectorNumElements();
9210 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009211 Constant *C;
9212 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009213 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9214 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009215 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009216 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9217 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009218 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009219 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9220 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009221 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009222 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009223 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009224 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009225 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009226 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009227 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009228 DAG.getNode(ISD::BITCAST, dl, XORVT,
9229 Op.getOperand(0)),
9230 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009231 }
Craig Topper69947b92012-04-23 06:57:04 +00009232
9233 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009234}
9235
Dan Gohmand858e902010-04-17 15:26:15 +00009236SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009237 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009238 SDValue Op0 = Op.getOperand(0);
9239 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009240 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009241 MVT VT = Op.getSimpleValueType();
9242 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009243
9244 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009245 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009246 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009247 SrcVT = VT;
9248 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009249 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009250 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009251 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009252 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009253 }
9254
9255 // At this point the operands and the result should have the same
9256 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009257
Evan Cheng68c47cb2007-01-05 07:55:56 +00009258 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009259 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009260 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009261 const fltSemantics &Sem = APFloat::IEEEdouble;
9262 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9263 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009264 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009265 const fltSemantics &Sem = APFloat::IEEEsingle;
9266 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9267 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9268 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9269 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009270 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009271 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009272 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009273 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009274 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009275 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009276 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009277
9278 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009279 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009280 // Op0 is MVT::f32, Op1 is MVT::f64.
9281 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9282 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9283 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009284 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009285 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009286 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009287 }
9288
Evan Cheng73d6cf12007-01-05 21:37:56 +00009289 // Clear first operand sign bit.
9290 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009291 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009292 const fltSemantics &Sem = APFloat::IEEEdouble;
9293 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9294 APInt(64, ~(1ULL << 63)))));
9295 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009296 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009297 const fltSemantics &Sem = APFloat::IEEEsingle;
9298 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9299 APInt(32, ~(1U << 31)))));
9300 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9301 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9302 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009303 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009304 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009305 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009306 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009307 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009308 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009309 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009310
9311 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009312 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009313}
9314
Craig Topper55b24052012-09-11 06:15:32 +00009315static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009316 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009317 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009318 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009319
9320 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9321 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9322 DAG.getConstant(1, VT));
9323 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9324}
9325
Michael Liaof966e4e2012-09-13 20:24:54 +00009326// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9327//
Craig Topper158ec072013-08-14 07:34:43 +00009328static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9329 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009330 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9331
9332 if (!Subtarget->hasSSE41())
9333 return SDValue();
9334
9335 if (!Op->hasOneUse())
9336 return SDValue();
9337
9338 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009339 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009340
9341 SmallVector<SDValue, 8> Opnds;
9342 DenseMap<SDValue, unsigned> VecInMap;
9343 EVT VT = MVT::Other;
9344
9345 // Recognize a special case where a vector is casted into wide integer to
9346 // test all 0s.
9347 Opnds.push_back(N->getOperand(0));
9348 Opnds.push_back(N->getOperand(1));
9349
9350 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009351 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009352 // BFS traverse all OR'd operands.
9353 if (I->getOpcode() == ISD::OR) {
9354 Opnds.push_back(I->getOperand(0));
9355 Opnds.push_back(I->getOperand(1));
9356 // Re-evaluate the number of nodes to be traversed.
9357 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9358 continue;
9359 }
9360
9361 // Quit if a non-EXTRACT_VECTOR_ELT
9362 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9363 return SDValue();
9364
9365 // Quit if without a constant index.
9366 SDValue Idx = I->getOperand(1);
9367 if (!isa<ConstantSDNode>(Idx))
9368 return SDValue();
9369
9370 SDValue ExtractedFromVec = I->getOperand(0);
9371 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9372 if (M == VecInMap.end()) {
9373 VT = ExtractedFromVec.getValueType();
9374 // Quit if not 128/256-bit vector.
9375 if (!VT.is128BitVector() && !VT.is256BitVector())
9376 return SDValue();
9377 // Quit if not the same type.
9378 if (VecInMap.begin() != VecInMap.end() &&
9379 VT != VecInMap.begin()->first.getValueType())
9380 return SDValue();
9381 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9382 }
9383 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9384 }
9385
9386 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009387 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009388
9389 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9390 SmallVector<SDValue, 8> VecIns;
9391
9392 for (DenseMap<SDValue, unsigned>::const_iterator
9393 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9394 // Quit if not all elements are used.
9395 if (I->second != FullMask)
9396 return SDValue();
9397 VecIns.push_back(I->first);
9398 }
9399
9400 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9401
9402 // Cast all vectors into TestVT for PTEST.
9403 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9404 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9405
9406 // If more than one full vectors are evaluated, OR them first before PTEST.
9407 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9408 // Each iteration will OR 2 nodes and append the result until there is only
9409 // 1 node left, i.e. the final OR'd value of all vectors.
9410 SDValue LHS = VecIns[Slot];
9411 SDValue RHS = VecIns[Slot + 1];
9412 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9413 }
9414
9415 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9416 VecIns.back(), VecIns.back());
9417}
9418
Dan Gohman076aee32009-03-04 19:44:21 +00009419/// Emit nodes that will be selected as "test Op0,Op0", or something
9420/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009421SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009422 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009423 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009424
Dan Gohman31125812009-03-07 01:58:32 +00009425 // CF and OF aren't always set the way we want. Determine which
9426 // of these we need.
9427 bool NeedCF = false;
9428 bool NeedOF = false;
9429 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009430 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009431 case X86::COND_A: case X86::COND_AE:
9432 case X86::COND_B: case X86::COND_BE:
9433 NeedCF = true;
9434 break;
9435 case X86::COND_G: case X86::COND_GE:
9436 case X86::COND_L: case X86::COND_LE:
9437 case X86::COND_O: case X86::COND_NO:
9438 NeedOF = true;
9439 break;
Dan Gohman31125812009-03-07 01:58:32 +00009440 }
9441
Dan Gohman076aee32009-03-04 19:44:21 +00009442 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009443 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9444 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009445 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9446 // Emit a CMP with 0, which is the TEST pattern.
9447 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9448 DAG.getConstant(0, Op.getValueType()));
9449
9450 unsigned Opcode = 0;
9451 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009452
9453 // Truncate operations may prevent the merge of the SETCC instruction
Robert Wilhelmf80a63f2013-09-28 11:46:15 +00009454 // and the arithmetic instruction before it. Attempt to truncate the operands
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009455 // of the arithmetic instruction and use a reduced bit-width instruction.
9456 bool NeedTruncation = false;
9457 SDValue ArithOp = Op;
9458 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9459 SDValue Arith = Op->getOperand(0);
9460 // Both the trunc and the arithmetic op need to have one user each.
9461 if (Arith->hasOneUse())
9462 switch (Arith.getOpcode()) {
9463 default: break;
9464 case ISD::ADD:
9465 case ISD::SUB:
9466 case ISD::AND:
9467 case ISD::OR:
9468 case ISD::XOR: {
9469 NeedTruncation = true;
9470 ArithOp = Arith;
9471 }
9472 }
9473 }
9474
9475 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9476 // which may be the result of a CAST. We use the variable 'Op', which is the
9477 // non-casted variable when we check for possible users.
9478 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009479 case ISD::ADD:
9480 // Due to an isel shortcoming, be conservative if this add is likely to be
9481 // selected as part of a load-modify-store instruction. When the root node
9482 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9483 // uses of other nodes in the match, such as the ADD in this case. This
9484 // leads to the ADD being left around and reselected, with the result being
9485 // two adds in the output. Alas, even if none our users are stores, that
9486 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9487 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9488 // climbing the DAG back to the root, and it doesn't seem to be worth the
9489 // effort.
9490 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009491 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9492 if (UI->getOpcode() != ISD::CopyToReg &&
9493 UI->getOpcode() != ISD::SETCC &&
9494 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009495 goto default_case;
9496
9497 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009498 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009499 // An add of one will be selected as an INC.
9500 if (C->getAPIntValue() == 1) {
9501 Opcode = X86ISD::INC;
9502 NumOperands = 1;
9503 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009504 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009505
9506 // An add of negative one (subtract of one) will be selected as a DEC.
9507 if (C->getAPIntValue().isAllOnesValue()) {
9508 Opcode = X86ISD::DEC;
9509 NumOperands = 1;
9510 break;
9511 }
Dan Gohman076aee32009-03-04 19:44:21 +00009512 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009513
9514 // Otherwise use a regular EFLAGS-setting add.
9515 Opcode = X86ISD::ADD;
9516 NumOperands = 2;
9517 break;
9518 case ISD::AND: {
9519 // If the primary and result isn't used, don't bother using X86ISD::AND,
9520 // because a TEST instruction will be better.
9521 bool NonFlagUse = false;
9522 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9523 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9524 SDNode *User = *UI;
9525 unsigned UOpNo = UI.getOperandNo();
9526 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9527 // Look pass truncate.
9528 UOpNo = User->use_begin().getOperandNo();
9529 User = *User->use_begin();
9530 }
9531
9532 if (User->getOpcode() != ISD::BRCOND &&
9533 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009534 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009535 NonFlagUse = true;
9536 break;
9537 }
Dan Gohman076aee32009-03-04 19:44:21 +00009538 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009539
9540 if (!NonFlagUse)
9541 break;
9542 }
9543 // FALL THROUGH
9544 case ISD::SUB:
9545 case ISD::OR:
9546 case ISD::XOR:
9547 // Due to the ISEL shortcoming noted above, be conservative if this op is
9548 // likely to be selected as part of a load-modify-store instruction.
9549 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9550 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9551 if (UI->getOpcode() == ISD::STORE)
9552 goto default_case;
9553
9554 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009555 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009556 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009557 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009558 case ISD::XOR: Opcode = X86ISD::XOR; break;
9559 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009560 case ISD::OR: {
9561 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009562 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009563 if (EFLAGS.getNode())
9564 return EFLAGS;
9565 }
9566 Opcode = X86ISD::OR;
9567 break;
9568 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009569 }
9570
9571 NumOperands = 2;
9572 break;
9573 case X86ISD::ADD:
9574 case X86ISD::SUB:
9575 case X86ISD::INC:
9576 case X86ISD::DEC:
9577 case X86ISD::OR:
9578 case X86ISD::XOR:
9579 case X86ISD::AND:
9580 return SDValue(Op.getNode(), 1);
9581 default:
9582 default_case:
9583 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009584 }
9585
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009586 // If we found that truncation is beneficial, perform the truncation and
9587 // update 'Op'.
9588 if (NeedTruncation) {
9589 EVT VT = Op.getValueType();
9590 SDValue WideVal = Op->getOperand(0);
9591 EVT WideVT = WideVal.getValueType();
9592 unsigned ConvertedOp = 0;
9593 // Use a target machine opcode to prevent further DAGCombine
9594 // optimizations that may separate the arithmetic operations
9595 // from the setcc node.
9596 switch (WideVal.getOpcode()) {
9597 default: break;
9598 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9599 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9600 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9601 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9602 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9603 }
9604
9605 if (ConvertedOp) {
9606 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9607 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9608 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9609 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9610 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9611 }
9612 }
9613 }
9614
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009615 if (Opcode == 0)
9616 // Emit a CMP with 0, which is the TEST pattern.
9617 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9618 DAG.getConstant(0, Op.getValueType()));
9619
9620 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9621 SmallVector<SDValue, 4> Ops;
9622 for (unsigned i = 0; i != NumOperands; ++i)
9623 Ops.push_back(Op.getOperand(i));
9624
9625 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9626 DAG.ReplaceAllUsesWith(Op, New);
9627 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009628}
9629
9630/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9631/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009632SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009633 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009634 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9635 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009636 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009637
Andrew Trickac6d9be2013-05-25 02:42:55 +00009638 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009639 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9640 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9641 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9642 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9643 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9644 Op0, Op1);
9645 return SDValue(Sub.getNode(), 1);
9646 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009647 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009648}
9649
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009650/// Convert a comparison if required by the subtarget.
9651SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9652 SelectionDAG &DAG) const {
9653 // If the subtarget does not support the FUCOMI instruction, floating-point
9654 // comparisons have to be converted.
9655 if (Subtarget->hasCMov() ||
9656 Cmp.getOpcode() != X86ISD::CMP ||
9657 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9658 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9659 return Cmp;
9660
9661 // The instruction selector will select an FUCOM instruction instead of
9662 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9663 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9664 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009665 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009666 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9667 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9668 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9669 DAG.getConstant(8, MVT::i8));
9670 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9671 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9672}
9673
Evan Cheng4e544802012-12-05 00:10:38 +00009674static bool isAllOnes(SDValue V) {
9675 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9676 return C && C->isAllOnesValue();
9677}
9678
Evan Chengd40d03e2010-01-06 19:38:29 +00009679/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9680/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009681SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009682 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009683 SDValue Op0 = And.getOperand(0);
9684 SDValue Op1 = And.getOperand(1);
9685 if (Op0.getOpcode() == ISD::TRUNCATE)
9686 Op0 = Op0.getOperand(0);
9687 if (Op1.getOpcode() == ISD::TRUNCATE)
9688 Op1 = Op1.getOperand(0);
9689
Evan Chengd40d03e2010-01-06 19:38:29 +00009690 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009691 if (Op1.getOpcode() == ISD::SHL)
9692 std::swap(Op0, Op1);
9693 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009694 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9695 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009696 // If we looked past a truncate, check that it's only truncating away
9697 // known zeros.
9698 unsigned BitWidth = Op0.getValueSizeInBits();
9699 unsigned AndBitWidth = And.getValueSizeInBits();
9700 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009701 APInt Zeros, Ones;
9702 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009703 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9704 return SDValue();
9705 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009706 LHS = Op1;
9707 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009708 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009709 } else if (Op1.getOpcode() == ISD::Constant) {
9710 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009711 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009712 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009713
9714 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009715 LHS = AndLHS.getOperand(0);
9716 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009717 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009718
9719 // Use BT if the immediate can't be encoded in a TEST instruction.
9720 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9721 LHS = AndLHS;
9722 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9723 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009724 }
Evan Cheng0488db92007-09-25 01:57:46 +00009725
Evan Chengd40d03e2010-01-06 19:38:29 +00009726 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009727 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009728 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009729 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009730 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009731 // Also promote i16 to i32 for performance / code size reason.
9732 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009733 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009734 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009735
Evan Chengd40d03e2010-01-06 19:38:29 +00009736 // If the operand types disagree, extend the shift amount to match. Since
9737 // BT ignores high bits (like shifts) we can use anyextend.
9738 if (LHS.getValueType() != RHS.getValueType())
9739 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009740
Evan Chengd40d03e2010-01-06 19:38:29 +00009741 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009742 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009743 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9744 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009745 }
9746
Evan Cheng54de3ea2010-01-05 06:52:31 +00009747 return SDValue();
9748}
9749
Benjamin Kramer75311b72013-08-04 12:05:16 +00009750/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9751/// mask CMPs.
9752static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9753 SDValue &Op1) {
9754 unsigned SSECC;
9755 bool Swap = false;
9756
9757 // SSE Condition code mapping:
9758 // 0 - EQ
9759 // 1 - LT
9760 // 2 - LE
9761 // 3 - UNORD
9762 // 4 - NEQ
9763 // 5 - NLT
9764 // 6 - NLE
9765 // 7 - ORD
9766 switch (SetCCOpcode) {
9767 default: llvm_unreachable("Unexpected SETCC condition");
9768 case ISD::SETOEQ:
9769 case ISD::SETEQ: SSECC = 0; break;
9770 case ISD::SETOGT:
9771 case ISD::SETGT: Swap = true; // Fallthrough
9772 case ISD::SETLT:
9773 case ISD::SETOLT: SSECC = 1; break;
9774 case ISD::SETOGE:
9775 case ISD::SETGE: Swap = true; // Fallthrough
9776 case ISD::SETLE:
9777 case ISD::SETOLE: SSECC = 2; break;
9778 case ISD::SETUO: SSECC = 3; break;
9779 case ISD::SETUNE:
9780 case ISD::SETNE: SSECC = 4; break;
9781 case ISD::SETULE: Swap = true; // Fallthrough
9782 case ISD::SETUGE: SSECC = 5; break;
9783 case ISD::SETULT: Swap = true; // Fallthrough
9784 case ISD::SETUGT: SSECC = 6; break;
9785 case ISD::SETO: SSECC = 7; break;
9786 case ISD::SETUEQ:
9787 case ISD::SETONE: SSECC = 8; break;
9788 }
9789 if (Swap)
9790 std::swap(Op0, Op1);
9791
9792 return SSECC;
9793}
9794
Craig Topper89af15e2011-09-18 08:03:58 +00009795// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009796// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009797static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009798 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009799
Craig Topper7a9a28b2012-08-12 02:23:29 +00009800 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009801 "Unsupported value type for operation");
9802
Craig Topper66ddd152012-04-27 22:54:43 +00009803 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009804 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009805 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009806
9807 // Extract the LHS vectors
9808 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009809 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9810 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009811
9812 // Extract the RHS vectors
9813 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009814 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9815 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009816
9817 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009818 MVT EltVT = VT.getVectorElementType();
9819 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009820 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9821 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9822 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9823}
9824
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009825static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009826 SDValue Op0 = Op.getOperand(0);
9827 SDValue Op1 = Op.getOperand(1);
9828 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009829 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009830
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009831 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009832 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009833 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009834
9835 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9836 SDLoc dl(Op);
9837
9838 bool Unsigned = false;
9839 unsigned SSECC;
9840 switch (SetCCOpcode) {
9841 default: llvm_unreachable("Unexpected SETCC condition");
9842 case ISD::SETNE: SSECC = 4; break;
9843 case ISD::SETEQ: SSECC = 0; break;
9844 case ISD::SETUGT: Unsigned = true;
9845 case ISD::SETGT: SSECC = 6; break; // NLE
9846 case ISD::SETULT: Unsigned = true;
9847 case ISD::SETLT: SSECC = 1; break;
9848 case ISD::SETUGE: Unsigned = true;
9849 case ISD::SETGE: SSECC = 5; break; // NLT
9850 case ISD::SETULE: Unsigned = true;
9851 case ISD::SETLE: SSECC = 2; break;
9852 }
9853 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9854 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9855 DAG.getConstant(SSECC, MVT::i8));
9856
9857}
9858
Craig Topper26827f32013-01-20 09:02:22 +00009859static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9860 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009861 SDValue Op0 = Op.getOperand(0);
9862 SDValue Op1 = Op.getOperand(1);
9863 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009864 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009865 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009866 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009867 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009868
9869 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009870#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009871 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009872 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9873#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009874
Benjamin Kramer75311b72013-08-04 12:05:16 +00009875 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009876 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009877 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009878 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009879 Opc = X86ISD::CMPM;
9880 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009881 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009882 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009883 unsigned CC0, CC1;
9884 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009885 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009886 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9887 } else {
9888 assert(SetCCOpcode == ISD::SETONE);
9889 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009890 }
Craig Topper523908d2012-08-13 02:34:03 +00009891
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009892 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009893 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009894 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009895 DAG.getConstant(CC1, MVT::i8));
9896 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009897 }
9898 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009899 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009900 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009901 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009902
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009903 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009904 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009905 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009906
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009907 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9908 EVT OpVT = Op1.getValueType();
9909 if (Subtarget->hasAVX512()) {
9910 if (Op1.getValueType().is512BitVector() ||
9911 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9912 return LowerIntVSETCC_AVX512(Op, DAG);
9913
9914 // In AVX-512 architecture setcc returns mask with i1 elements,
9915 // But there is no compare instruction for i8 and i16 elements.
9916 // We are not talking about 512-bit operands in this case, these
9917 // types are illegal.
9918 if (MaskResult &&
9919 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9920 OpVT.getVectorElementType().getSizeInBits() >= 8))
9921 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9922 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9923 }
9924
Nate Begeman30a0de92008-07-17 16:51:19 +00009925 // We are handling one of the integer comparisons here. Since SSE only has
9926 // GT and EQ comparisons for integer, swapping operands and multiple
9927 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009928 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009929 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9930
Nate Begeman30a0de92008-07-17 16:51:19 +00009931 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009932 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009933 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009934 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009935 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009936 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009937 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009938 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9939 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009940 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009941 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9942 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009943 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009944 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9945 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009946 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009947
9948 // Special case: Use min/max operations for SETULE/SETUGE
9949 MVT VET = VT.getVectorElementType();
9950 bool hasMinMax =
9951 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9952 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9953
9954 if (hasMinMax) {
9955 switch (SetCCOpcode) {
9956 default: break;
9957 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9958 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9959 }
9960
9961 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9962 }
9963
Nate Begeman30a0de92008-07-17 16:51:19 +00009964 if (Swap)
9965 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009966
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009967 // Check that the operation in question is available (most are plain SSE2,
9968 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009969 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009970 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9971 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9972
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009973 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009974 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9975 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9976
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009977 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009978 // bits of the inputs before performing those operations. The lower
9979 // compare is always unsigned.
9980 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009981 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009982 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9983 } else {
9984 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9985 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9986 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9987 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009988 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +00009989 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9990 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009991
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009992 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9993 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9994 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9995
9996 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +00009997 static const int MaskHi[] = { 1, 1, 3, 3 };
9998 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009999 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10000 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10001 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10002
10003 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10004 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10005
10006 if (Invert)
10007 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10008
10009 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10010 }
10011
Benjamin Kramer382ed782012-12-25 12:54:19 +000010012 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10013 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +000010014 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010015 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10016
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010017 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010018 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10019 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10020
10021 // Do the compare.
10022 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10023
10024 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +000010025 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +000010026 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10027 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +000010028
10029 if (Invert)
10030 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10031
10032 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10033 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010034 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010035
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010036 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10037 // bits of the inputs before performing those operations.
10038 if (FlipSigns) {
10039 EVT EltVT = VT.getVectorElementType();
10040 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10041 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10042 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10043 }
10044
Dale Johannesenace16102009-02-03 19:33:06 +000010045 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010046
10047 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010048 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010049 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010050
10051 if (MinMax)
10052 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010053
Nate Begeman30a0de92008-07-17 16:51:19 +000010054 return Result;
10055}
Evan Cheng0488db92007-09-25 01:57:46 +000010056
Craig Topper26827f32013-01-20 09:02:22 +000010057SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10058
Craig Topper5a0910b2013-08-15 02:33:50 +000010059 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010060
10061 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10062
10063 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10064 SDValue Op0 = Op.getOperand(0);
10065 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010066 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010067 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10068
10069 // Optimize to BT if possible.
10070 // Lower (X & (1 << N)) == 0 to BT(X, N).
10071 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10072 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10073 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10074 Op1.getOpcode() == ISD::Constant &&
10075 cast<ConstantSDNode>(Op1)->isNullValue() &&
10076 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10077 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10078 if (NewSetCC.getNode())
10079 return NewSetCC;
10080 }
10081
10082 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10083 // these.
10084 if (Op1.getOpcode() == ISD::Constant &&
10085 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10086 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10087 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10088
10089 // If the input is a setcc, then reuse the input setcc or use a new one with
10090 // the inverted condition.
10091 if (Op0.getOpcode() == X86ISD::SETCC) {
10092 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10093 bool Invert = (CC == ISD::SETNE) ^
10094 cast<ConstantSDNode>(Op1)->isNullValue();
10095 if (!Invert) return Op0;
10096
10097 CCode = X86::GetOppositeBranchCondition(CCode);
10098 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10099 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10100 }
10101 }
10102
Craig Topper5a0910b2013-08-15 02:33:50 +000010103 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010104 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10105 if (X86CC == X86::COND_INVALID)
10106 return SDValue();
10107
10108 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10109 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10110 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10111 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10112}
10113
Evan Cheng370e5342008-12-03 08:38:43 +000010114// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010115static bool isX86LogicalCmp(SDValue Op) {
10116 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010117 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10118 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010119 return true;
10120 if (Op.getResNo() == 1 &&
10121 (Opc == X86ISD::ADD ||
10122 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010123 Opc == X86ISD::ADC ||
10124 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010125 Opc == X86ISD::SMUL ||
10126 Opc == X86ISD::UMUL ||
10127 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010128 Opc == X86ISD::DEC ||
10129 Opc == X86ISD::OR ||
10130 Opc == X86ISD::XOR ||
10131 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010132 return true;
10133
Chris Lattner9637d5b2010-12-05 07:49:54 +000010134 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10135 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010136
Dan Gohman076aee32009-03-04 19:44:21 +000010137 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010138}
10139
Chris Lattnera2b56002010-12-05 01:23:24 +000010140static bool isZero(SDValue V) {
10141 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10142 return C && C->isNullValue();
10143}
10144
Evan Chengb64dd5f2012-08-07 22:21:00 +000010145static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10146 if (V.getOpcode() != ISD::TRUNCATE)
10147 return false;
10148
10149 SDValue VOp0 = V.getOperand(0);
10150 unsigned InBits = VOp0.getValueSizeInBits();
10151 unsigned Bits = V.getValueSizeInBits();
10152 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10153}
10154
Dan Gohmand858e902010-04-17 15:26:15 +000010155SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010156 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010157 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010158 SDValue Op1 = Op.getOperand(1);
10159 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010160 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010161 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010162 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010163
Benjamin Kramer75311b72013-08-04 12:05:16 +000010164 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10165 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10166 // sequence later on.
10167 if (Cond.getOpcode() == ISD::SETCC &&
10168 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10169 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10170 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10171 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10172 int SSECC = translateX86FSETCC(
10173 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10174
10175 if (SSECC != 8) {
10176 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10177 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10178 DAG.getConstant(SSECC, MVT::i8));
10179 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10180 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10181 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10182 }
10183 }
10184
Dan Gohman1a492952009-10-20 16:22:37 +000010185 if (Cond.getOpcode() == ISD::SETCC) {
10186 SDValue NewCond = LowerSETCC(Cond, DAG);
10187 if (NewCond.getNode())
10188 Cond = NewCond;
10189 }
Evan Cheng734503b2006-09-11 02:19:56 +000010190
Chris Lattnera2b56002010-12-05 01:23:24 +000010191 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010192 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010193 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010194 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010195 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010196 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10197 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010198 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010199
Chris Lattnera2b56002010-12-05 01:23:24 +000010200 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010201
10202 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010203 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10204 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010205
10206 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010207 // Apply further optimizations for special cases
10208 // (select (x != 0), -1, 0) -> neg & sbb
10209 // (select (x == 0), 0, -1) -> neg & sbb
10210 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010211 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010212 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10213 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010214 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10215 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010216 CmpOp0);
10217 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10218 DAG.getConstant(X86::COND_B, MVT::i8),
10219 SDValue(Neg.getNode(), 1));
10220 return Res;
10221 }
10222
Chris Lattnera2b56002010-12-05 01:23:24 +000010223 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10224 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010225 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010226
Chris Lattner96908b12010-12-05 02:00:51 +000010227 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010228 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10229 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010230
Chris Lattner96908b12010-12-05 02:00:51 +000010231 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10232 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010233
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010234 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010235 if (N2C == 0 || !N2C->isNullValue())
10236 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10237 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010238 }
10239 }
10240
Chris Lattnera2b56002010-12-05 01:23:24 +000010241 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010242 if (Cond.getOpcode() == ISD::AND &&
10243 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10244 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010245 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010246 Cond = Cond.getOperand(0);
10247 }
10248
Evan Cheng3f41d662007-10-08 22:16:29 +000010249 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10250 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010251 unsigned CondOpcode = Cond.getOpcode();
10252 if (CondOpcode == X86ISD::SETCC ||
10253 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010254 CC = Cond.getOperand(0);
10255
Dan Gohman475871a2008-07-27 21:46:04 +000010256 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010257 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010258 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010259
Evan Cheng3f41d662007-10-08 22:16:29 +000010260 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010261 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010262 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010263 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010264
Chris Lattnerd1980a52009-03-12 06:52:53 +000010265 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10266 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010267 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010268 addTest = false;
10269 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010270 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10271 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10272 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10273 Cond.getOperand(0).getValueType() != MVT::i8)) {
10274 SDValue LHS = Cond.getOperand(0);
10275 SDValue RHS = Cond.getOperand(1);
10276 unsigned X86Opcode;
10277 unsigned X86Cond;
10278 SDVTList VTs;
10279 switch (CondOpcode) {
10280 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10281 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10282 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10283 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10284 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10285 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10286 default: llvm_unreachable("unexpected overflowing operator");
10287 }
10288 if (CondOpcode == ISD::UMULO)
10289 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10290 MVT::i32);
10291 else
10292 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10293
10294 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10295
10296 if (CondOpcode == ISD::UMULO)
10297 Cond = X86Op.getValue(2);
10298 else
10299 Cond = X86Op.getValue(1);
10300
10301 CC = DAG.getConstant(X86Cond, MVT::i8);
10302 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010303 }
10304
10305 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010306 // Look pass the truncate if the high bits are known zero.
10307 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10308 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010309
10310 // We know the result of AND is compared against zero. Try to match
10311 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010312 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010313 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010314 if (NewSetCC.getNode()) {
10315 CC = NewSetCC.getOperand(0);
10316 Cond = NewSetCC.getOperand(1);
10317 addTest = false;
10318 }
10319 }
10320 }
10321
10322 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010323 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010324 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010325 }
10326
Benjamin Kramere915ff32010-12-22 23:09:28 +000010327 // a < b ? -1 : 0 -> RES = ~setcc_carry
10328 // a < b ? 0 : -1 -> RES = setcc_carry
10329 // a >= b ? -1 : 0 -> RES = setcc_carry
10330 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010331 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010332 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010333 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10334
10335 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10336 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10337 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10338 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10339 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10340 return DAG.getNOT(DL, Res, Res.getValueType());
10341 return Res;
10342 }
10343 }
10344
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010345 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10346 // widen the cmov and push the truncate through. This avoids introducing a new
10347 // branch during isel and doesn't add any extensions.
10348 if (Op.getValueType() == MVT::i8 &&
10349 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10350 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10351 if (T1.getValueType() == T2.getValueType() &&
10352 // Blacklist CopyFromReg to avoid partial register stalls.
10353 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10354 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010355 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010356 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10357 }
10358 }
10359
Evan Cheng0488db92007-09-25 01:57:46 +000010360 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10361 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010362 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010363 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010364 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010365}
10366
Craig Topperff79bc62013-08-18 08:53:01 +000010367static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10368 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010369 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010370 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010371 SDLoc dl(Op);
10372
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010373 unsigned int NumElts = VT.getVectorNumElements();
10374 if (NumElts != 8 && NumElts != 16)
10375 return SDValue();
10376
10377 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010378 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10379
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010380 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10381 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10382
10383 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10384 Constant *C = ConstantInt::get(*DAG.getContext(),
10385 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10386
10387 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10388 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10389 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10390 MachinePointerInfo::getConstantPool(),
10391 false, false, false, Alignment);
10392 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10393 if (VT.is512BitVector())
10394 return Brcst;
10395 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010396}
10397
Craig Topperff79bc62013-08-18 08:53:01 +000010398static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10399 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010400 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010401 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010402 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010403 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010404
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010405 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10406 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10407
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010408 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
Benjamin Kramerbb41c752013-10-23 21:06:07 +000010409 (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10410 (VT != MVT::v16i16 || InVT != MVT::v16i8))
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010411 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010412
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010413 if (Subtarget->hasInt256())
10414 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010415
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010416 // Optimize vectors in AVX mode
10417 // Sign extend v8i16 to v8i32 and
10418 // v4i32 to v4i64
10419 //
10420 // Divide input vector into two parts
10421 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10422 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10423 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010424
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010425 unsigned NumElems = InVT.getVectorNumElements();
10426 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010427
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010428 SmallVector<int,8> ShufMask1(NumElems, -1);
10429 for (unsigned i = 0; i != NumElems/2; ++i)
10430 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010431
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010432 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010433
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010434 SmallVector<int,8> ShufMask2(NumElems, -1);
10435 for (unsigned i = 0; i != NumElems/2; ++i)
10436 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010437
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010438 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010439
Craig Toppera080daf2013-01-20 21:50:27 +000010440 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010441 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010442
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010443 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10444 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010445
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010446 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010447}
10448
Evan Cheng370e5342008-12-03 08:38:43 +000010449// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10450// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10451// from the AND / OR.
10452static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10453 Opc = Op.getOpcode();
10454 if (Opc != ISD::OR && Opc != ISD::AND)
10455 return false;
10456 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10457 Op.getOperand(0).hasOneUse() &&
10458 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10459 Op.getOperand(1).hasOneUse());
10460}
10461
Evan Cheng961d6d42009-02-02 08:19:07 +000010462// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10463// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010464static bool isXor1OfSetCC(SDValue Op) {
10465 if (Op.getOpcode() != ISD::XOR)
10466 return false;
10467 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10468 if (N1C && N1C->getAPIntValue() == 1) {
10469 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10470 Op.getOperand(0).hasOneUse();
10471 }
10472 return false;
10473}
10474
Dan Gohmand858e902010-04-17 15:26:15 +000010475SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010476 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010477 SDValue Chain = Op.getOperand(0);
10478 SDValue Cond = Op.getOperand(1);
10479 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010480 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010481 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010482 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010483
Dan Gohman1a492952009-10-20 16:22:37 +000010484 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010485 // Check for setcc([su]{add,sub,mul}o == 0).
10486 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10487 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10488 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10489 Cond.getOperand(0).getResNo() == 1 &&
10490 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10491 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10492 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10493 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10494 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10495 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10496 Inverted = true;
10497 Cond = Cond.getOperand(0);
10498 } else {
10499 SDValue NewCond = LowerSETCC(Cond, DAG);
10500 if (NewCond.getNode())
10501 Cond = NewCond;
10502 }
Dan Gohman1a492952009-10-20 16:22:37 +000010503 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010504#if 0
10505 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010506 else if (Cond.getOpcode() == X86ISD::ADD ||
10507 Cond.getOpcode() == X86ISD::SUB ||
10508 Cond.getOpcode() == X86ISD::SMUL ||
10509 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010510 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010511#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010512
Evan Chengad9c0a32009-12-15 00:53:42 +000010513 // Look pass (and (setcc_carry (cmp ...)), 1).
10514 if (Cond.getOpcode() == ISD::AND &&
10515 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10516 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010517 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010518 Cond = Cond.getOperand(0);
10519 }
10520
Evan Cheng3f41d662007-10-08 22:16:29 +000010521 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10522 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010523 unsigned CondOpcode = Cond.getOpcode();
10524 if (CondOpcode == X86ISD::SETCC ||
10525 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010526 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010527
Dan Gohman475871a2008-07-27 21:46:04 +000010528 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010529 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010530 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010531 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010532 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010533 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010534 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010535 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010536 default: break;
10537 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010538 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010539 // These can only come from an arithmetic instruction with overflow,
10540 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010541 Cond = Cond.getNode()->getOperand(1);
10542 addTest = false;
10543 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010544 }
Evan Cheng0488db92007-09-25 01:57:46 +000010545 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010546 }
10547 CondOpcode = Cond.getOpcode();
10548 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10549 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10550 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10551 Cond.getOperand(0).getValueType() != MVT::i8)) {
10552 SDValue LHS = Cond.getOperand(0);
10553 SDValue RHS = Cond.getOperand(1);
10554 unsigned X86Opcode;
10555 unsigned X86Cond;
10556 SDVTList VTs;
10557 switch (CondOpcode) {
10558 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10559 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10560 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10561 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10562 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10563 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10564 default: llvm_unreachable("unexpected overflowing operator");
10565 }
10566 if (Inverted)
10567 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10568 if (CondOpcode == ISD::UMULO)
10569 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10570 MVT::i32);
10571 else
10572 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10573
10574 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10575
10576 if (CondOpcode == ISD::UMULO)
10577 Cond = X86Op.getValue(2);
10578 else
10579 Cond = X86Op.getValue(1);
10580
10581 CC = DAG.getConstant(X86Cond, MVT::i8);
10582 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010583 } else {
10584 unsigned CondOpc;
10585 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10586 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010587 if (CondOpc == ISD::OR) {
10588 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10589 // two branches instead of an explicit OR instruction with a
10590 // separate test.
10591 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010592 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010593 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010594 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010595 Chain, Dest, CC, Cmp);
10596 CC = Cond.getOperand(1).getOperand(0);
10597 Cond = Cmp;
10598 addTest = false;
10599 }
10600 } else { // ISD::AND
10601 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10602 // two branches instead of an explicit AND instruction with a
10603 // separate test. However, we only do this if this block doesn't
10604 // have a fall-through edge, because this requires an explicit
10605 // jmp when the condition is false.
10606 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010607 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010608 Op.getNode()->hasOneUse()) {
10609 X86::CondCode CCode =
10610 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10611 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010612 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010613 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010614 // Look for an unconditional branch following this conditional branch.
10615 // We need this because we need to reverse the successors in order
10616 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010617 if (User->getOpcode() == ISD::BR) {
10618 SDValue FalseBB = User->getOperand(1);
10619 SDNode *NewBR =
10620 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010621 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010622 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010623 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010624
Dale Johannesene4d209d2009-02-03 20:21:25 +000010625 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010626 Chain, Dest, CC, Cmp);
10627 X86::CondCode CCode =
10628 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10629 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010630 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010631 Cond = Cmp;
10632 addTest = false;
10633 }
10634 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010635 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010636 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10637 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10638 // It should be transformed during dag combiner except when the condition
10639 // is set by a arithmetics with overflow node.
10640 X86::CondCode CCode =
10641 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10642 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010643 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010644 Cond = Cond.getOperand(0).getOperand(1);
10645 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010646 } else if (Cond.getOpcode() == ISD::SETCC &&
10647 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10648 // For FCMP_OEQ, we can emit
10649 // two branches instead of an explicit AND instruction with a
10650 // separate test. However, we only do this if this block doesn't
10651 // have a fall-through edge, because this requires an explicit
10652 // jmp when the condition is false.
10653 if (Op.getNode()->hasOneUse()) {
10654 SDNode *User = *Op.getNode()->use_begin();
10655 // Look for an unconditional branch following this conditional branch.
10656 // We need this because we need to reverse the successors in order
10657 // to implement FCMP_OEQ.
10658 if (User->getOpcode() == ISD::BR) {
10659 SDValue FalseBB = User->getOperand(1);
10660 SDNode *NewBR =
10661 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10662 assert(NewBR == User);
10663 (void)NewBR;
10664 Dest = FalseBB;
10665
10666 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10667 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010668 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010669 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10670 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10671 Chain, Dest, CC, Cmp);
10672 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10673 Cond = Cmp;
10674 addTest = false;
10675 }
10676 }
10677 } else if (Cond.getOpcode() == ISD::SETCC &&
10678 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10679 // For FCMP_UNE, we can emit
10680 // two branches instead of an explicit AND instruction with a
10681 // separate test. However, we only do this if this block doesn't
10682 // have a fall-through edge, because this requires an explicit
10683 // jmp when the condition is false.
10684 if (Op.getNode()->hasOneUse()) {
10685 SDNode *User = *Op.getNode()->use_begin();
10686 // Look for an unconditional branch following this conditional branch.
10687 // We need this because we need to reverse the successors in order
10688 // to implement FCMP_UNE.
10689 if (User->getOpcode() == ISD::BR) {
10690 SDValue FalseBB = User->getOperand(1);
10691 SDNode *NewBR =
10692 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10693 assert(NewBR == User);
10694 (void)NewBR;
10695
10696 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10697 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010698 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010699 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10700 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10701 Chain, Dest, CC, Cmp);
10702 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10703 Cond = Cmp;
10704 addTest = false;
10705 Dest = FalseBB;
10706 }
10707 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010708 }
Evan Cheng0488db92007-09-25 01:57:46 +000010709 }
10710
10711 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010712 // Look pass the truncate if the high bits are known zero.
10713 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10714 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010715
10716 // We know the result of AND is compared against zero. Try to match
10717 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010718 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010719 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10720 if (NewSetCC.getNode()) {
10721 CC = NewSetCC.getOperand(0);
10722 Cond = NewSetCC.getOperand(1);
10723 addTest = false;
10724 }
10725 }
10726 }
10727
10728 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010729 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010730 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010731 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010732 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010733 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010734 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010735}
10736
Anton Korobeynikove060b532007-04-17 19:34:00 +000010737// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10738// Calls to _alloca is needed to probe the stack when allocating more than 4k
10739// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10740// that the guard pages used by the OS virtual memory manager are allocated in
10741// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010742SDValue
10743X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010744 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010745 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010746 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010747 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010748 "are being used");
10749 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010750 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010751
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010752 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010753 SDValue Chain = Op.getOperand(0);
10754 SDValue Size = Op.getOperand(1);
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010755 unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10756 EVT VT = Op.getNode()->getValueType(0);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010757
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010758 bool Is64Bit = Subtarget->is64Bit();
10759 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010760
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010761 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010762 MachineFunction &MF = DAG.getMachineFunction();
10763 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010764
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010765 if (Is64Bit) {
10766 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010767 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010768 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010769
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010770 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010771 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010772 if (I->hasNestAttr())
10773 report_fatal_error("Cannot use segmented stacks with functions that "
10774 "have nested arguments.");
10775 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010776
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010777 const TargetRegisterClass *AddrRegClass =
10778 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10779 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10780 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10781 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10782 DAG.getRegister(Vreg, SPTy));
10783 SDValue Ops1[2] = { Value, Chain };
10784 return DAG.getMergeValues(Ops1, 2, dl);
10785 } else {
10786 SDValue Flag;
10787 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010788
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010789 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10790 Flag = Chain.getValue(1);
10791 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010792
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010793 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010794
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010795 const X86RegisterInfo *RegInfo =
10796 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010797 unsigned SPReg = RegInfo->getStackRegister();
10798 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10799 Chain = SP.getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010800
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010801 if (Align) {
10802 SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10803 DAG.getConstant(-(uint64_t)Align, VT));
10804 Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10805 }
10806
10807 SDValue Ops1[2] = { SP, Chain };
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010808 return DAG.getMergeValues(Ops1, 2, dl);
10809 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010810}
10811
Dan Gohmand858e902010-04-17 15:26:15 +000010812SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010813 MachineFunction &MF = DAG.getMachineFunction();
10814 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10815
Dan Gohman69de1932008-02-06 22:27:42 +000010816 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010817 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010818
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010819 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010820 // vastart just stores the address of the VarArgsFrameIndex slot into the
10821 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010822 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10823 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010824 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10825 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010826 }
10827
10828 // __va_list_tag:
10829 // gp_offset (0 - 6 * 8)
10830 // fp_offset (48 - 48 + 8 * 16)
10831 // overflow_arg_area (point to parameters coming in memory).
10832 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010833 SmallVector<SDValue, 8> MemOps;
10834 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010835 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010836 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010837 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10838 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010839 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010840 MemOps.push_back(Store);
10841
10842 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010843 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010844 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010845 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010846 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10847 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010848 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010849 MemOps.push_back(Store);
10850
10851 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010852 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010853 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010854 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10855 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010856 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10857 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010858 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010859 MemOps.push_back(Store);
10860
10861 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010862 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010863 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010864 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10865 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010866 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10867 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010868 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010869 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010870 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010871}
10872
Dan Gohmand858e902010-04-17 15:26:15 +000010873SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010874 assert(Subtarget->is64Bit() &&
10875 "LowerVAARG only handles 64-bit va_arg!");
10876 assert((Subtarget->isTargetLinux() ||
10877 Subtarget->isTargetDarwin()) &&
10878 "Unhandled target in LowerVAARG");
10879 assert(Op.getNode()->getNumOperands() == 4);
10880 SDValue Chain = Op.getOperand(0);
10881 SDValue SrcPtr = Op.getOperand(1);
10882 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10883 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010884 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010885
Dan Gohman320afb82010-10-12 18:00:49 +000010886 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010887 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010888 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010889 uint8_t ArgMode;
10890
10891 // Decide which area this value should be read from.
10892 // TODO: Implement the AMD64 ABI in its entirety. This simple
10893 // selection mechanism works only for the basic types.
10894 if (ArgVT == MVT::f80) {
10895 llvm_unreachable("va_arg for f80 not yet implemented");
10896 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10897 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10898 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10899 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10900 } else {
10901 llvm_unreachable("Unhandled argument type in LowerVAARG");
10902 }
10903
10904 if (ArgMode == 2) {
10905 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010906 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010907 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010908 .getFunction()->getAttributes()
10909 .hasAttribute(AttributeSet::FunctionIndex,
10910 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010911 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010912 }
10913
10914 // Insert VAARG_64 node into the DAG
10915 // VAARG_64 returns two values: Variable Argument Address, Chain
10916 SmallVector<SDValue, 11> InstOps;
10917 InstOps.push_back(Chain);
10918 InstOps.push_back(SrcPtr);
10919 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10920 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10921 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10922 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10923 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10924 VTs, &InstOps[0], InstOps.size(),
10925 MVT::i64,
10926 MachinePointerInfo(SV),
10927 /*Align=*/0,
10928 /*Volatile=*/false,
10929 /*ReadMem=*/true,
10930 /*WriteMem=*/true);
10931 Chain = VAARG.getValue(1);
10932
10933 // Load the next argument and return it
10934 return DAG.getLoad(ArgVT, dl,
10935 Chain,
10936 VAARG,
10937 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010938 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010939}
10940
Craig Topper55b24052012-09-11 06:15:32 +000010941static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10942 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010943 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010944 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010945 SDValue Chain = Op.getOperand(0);
10946 SDValue DstPtr = Op.getOperand(1);
10947 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010948 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10949 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010950 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010951
Chris Lattnere72f2022010-09-21 05:40:29 +000010952 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010953 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010954 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010955 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010956}
10957
Lang Hames1d825372013-10-21 17:51:24 +000010958// getTargetVShiftByConstNode - Handle vector element shifts where the shift
10959// amount is a constant. Takes immediate version of shift as input.
10960static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, EVT VT,
10961 SDValue SrcOp, uint64_t ShiftAmt,
10962 SelectionDAG &DAG) {
10963
10964 // Check for ShiftAmt >= element width
10965 if (ShiftAmt >= VT.getVectorElementType().getSizeInBits()) {
10966 if (Opc == X86ISD::VSRAI)
10967 ShiftAmt = VT.getVectorElementType().getSizeInBits() - 1;
10968 else
10969 return DAG.getConstant(0, VT);
10970 }
10971
10972 assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
10973 && "Unknown target vector shift-by-constant node");
10974
10975 return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
10976}
10977
Craig Topperff3139f2013-02-19 07:43:59 +000010978// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000010979// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000010980static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000010981 SDValue SrcOp, SDValue ShAmt,
10982 SelectionDAG &DAG) {
10983 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10984
Lang Hames1d825372013-10-21 17:51:24 +000010985 // Catch shift-by-constant.
10986 if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
10987 return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
10988 CShAmt->getZExtValue(), DAG);
Craig Topper80e46362012-01-23 06:16:53 +000010989
10990 // Change opcode to non-immediate version
10991 switch (Opc) {
10992 default: llvm_unreachable("Unknown target vector shift node");
10993 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10994 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10995 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10996 }
10997
10998 // Need to build a vector containing shift amount
10999 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11000 SDValue ShOps[4];
11001 ShOps[0] = ShAmt;
11002 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000011003 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000011004 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000011005
11006 // The return type has to be a 128-bit type with the same element
11007 // type as the input type.
11008 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11009 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11010
11011 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000011012 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11013}
11014
Craig Topper55b24052012-09-11 06:15:32 +000011015static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011016 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011017 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000011018 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000011019 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000011020 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000011021 case Intrinsic::x86_sse_comieq_ss:
11022 case Intrinsic::x86_sse_comilt_ss:
11023 case Intrinsic::x86_sse_comile_ss:
11024 case Intrinsic::x86_sse_comigt_ss:
11025 case Intrinsic::x86_sse_comige_ss:
11026 case Intrinsic::x86_sse_comineq_ss:
11027 case Intrinsic::x86_sse_ucomieq_ss:
11028 case Intrinsic::x86_sse_ucomilt_ss:
11029 case Intrinsic::x86_sse_ucomile_ss:
11030 case Intrinsic::x86_sse_ucomigt_ss:
11031 case Intrinsic::x86_sse_ucomige_ss:
11032 case Intrinsic::x86_sse_ucomineq_ss:
11033 case Intrinsic::x86_sse2_comieq_sd:
11034 case Intrinsic::x86_sse2_comilt_sd:
11035 case Intrinsic::x86_sse2_comile_sd:
11036 case Intrinsic::x86_sse2_comigt_sd:
11037 case Intrinsic::x86_sse2_comige_sd:
11038 case Intrinsic::x86_sse2_comineq_sd:
11039 case Intrinsic::x86_sse2_ucomieq_sd:
11040 case Intrinsic::x86_sse2_ucomilt_sd:
11041 case Intrinsic::x86_sse2_ucomile_sd:
11042 case Intrinsic::x86_sse2_ucomigt_sd:
11043 case Intrinsic::x86_sse2_ucomige_sd:
11044 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000011045 unsigned Opc;
11046 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000011047 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000011048 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011049 case Intrinsic::x86_sse_comieq_ss:
11050 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011051 Opc = X86ISD::COMI;
11052 CC = ISD::SETEQ;
11053 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011054 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011055 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011056 Opc = X86ISD::COMI;
11057 CC = ISD::SETLT;
11058 break;
11059 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011060 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011061 Opc = X86ISD::COMI;
11062 CC = ISD::SETLE;
11063 break;
11064 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011065 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011066 Opc = X86ISD::COMI;
11067 CC = ISD::SETGT;
11068 break;
11069 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011070 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011071 Opc = X86ISD::COMI;
11072 CC = ISD::SETGE;
11073 break;
11074 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011075 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011076 Opc = X86ISD::COMI;
11077 CC = ISD::SETNE;
11078 break;
11079 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011080 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011081 Opc = X86ISD::UCOMI;
11082 CC = ISD::SETEQ;
11083 break;
11084 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011085 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011086 Opc = X86ISD::UCOMI;
11087 CC = ISD::SETLT;
11088 break;
11089 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011090 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011091 Opc = X86ISD::UCOMI;
11092 CC = ISD::SETLE;
11093 break;
11094 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011095 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011096 Opc = X86ISD::UCOMI;
11097 CC = ISD::SETGT;
11098 break;
11099 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011100 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011101 Opc = X86ISD::UCOMI;
11102 CC = ISD::SETGE;
11103 break;
11104 case Intrinsic::x86_sse_ucomineq_ss:
11105 case Intrinsic::x86_sse2_ucomineq_sd:
11106 Opc = X86ISD::UCOMI;
11107 CC = ISD::SETNE;
11108 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011109 }
Evan Cheng734503b2006-09-11 02:19:56 +000011110
Dan Gohman475871a2008-07-27 21:46:04 +000011111 SDValue LHS = Op.getOperand(1);
11112 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000011113 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000011114 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011115 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11116 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11117 DAG.getConstant(X86CC, MVT::i8), Cond);
11118 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000011119 }
Craig Topper6d688152012-08-14 07:43:25 +000011120
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011121 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000011122 case Intrinsic::x86_sse2_pmulu_dq:
11123 case Intrinsic::x86_avx2_pmulu_dq:
11124 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11125 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011126
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000011127 // SSE2/AVX2 sub with unsigned saturation intrinsics
11128 case Intrinsic::x86_sse2_psubus_b:
11129 case Intrinsic::x86_sse2_psubus_w:
11130 case Intrinsic::x86_avx2_psubus_b:
11131 case Intrinsic::x86_avx2_psubus_w:
11132 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11133 Op.getOperand(1), Op.getOperand(2));
11134
Craig Topper6d688152012-08-14 07:43:25 +000011135 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011136 case Intrinsic::x86_sse3_hadd_ps:
11137 case Intrinsic::x86_sse3_hadd_pd:
11138 case Intrinsic::x86_avx_hadd_ps_256:
11139 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011140 case Intrinsic::x86_sse3_hsub_ps:
11141 case Intrinsic::x86_sse3_hsub_pd:
11142 case Intrinsic::x86_avx_hsub_ps_256:
11143 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000011144 case Intrinsic::x86_ssse3_phadd_w_128:
11145 case Intrinsic::x86_ssse3_phadd_d_128:
11146 case Intrinsic::x86_avx2_phadd_w:
11147 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000011148 case Intrinsic::x86_ssse3_phsub_w_128:
11149 case Intrinsic::x86_ssse3_phsub_d_128:
11150 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000011151 case Intrinsic::x86_avx2_phsub_d: {
11152 unsigned Opcode;
11153 switch (IntNo) {
11154 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11155 case Intrinsic::x86_sse3_hadd_ps:
11156 case Intrinsic::x86_sse3_hadd_pd:
11157 case Intrinsic::x86_avx_hadd_ps_256:
11158 case Intrinsic::x86_avx_hadd_pd_256:
11159 Opcode = X86ISD::FHADD;
11160 break;
11161 case Intrinsic::x86_sse3_hsub_ps:
11162 case Intrinsic::x86_sse3_hsub_pd:
11163 case Intrinsic::x86_avx_hsub_ps_256:
11164 case Intrinsic::x86_avx_hsub_pd_256:
11165 Opcode = X86ISD::FHSUB;
11166 break;
11167 case Intrinsic::x86_ssse3_phadd_w_128:
11168 case Intrinsic::x86_ssse3_phadd_d_128:
11169 case Intrinsic::x86_avx2_phadd_w:
11170 case Intrinsic::x86_avx2_phadd_d:
11171 Opcode = X86ISD::HADD;
11172 break;
11173 case Intrinsic::x86_ssse3_phsub_w_128:
11174 case Intrinsic::x86_ssse3_phsub_d_128:
11175 case Intrinsic::x86_avx2_phsub_w:
11176 case Intrinsic::x86_avx2_phsub_d:
11177 Opcode = X86ISD::HSUB;
11178 break;
11179 }
11180 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000011181 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011182 }
11183
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011184 // SSE2/SSE41/AVX2 integer max/min intrinsics.
11185 case Intrinsic::x86_sse2_pmaxu_b:
11186 case Intrinsic::x86_sse41_pmaxuw:
11187 case Intrinsic::x86_sse41_pmaxud:
11188 case Intrinsic::x86_avx2_pmaxu_b:
11189 case Intrinsic::x86_avx2_pmaxu_w:
11190 case Intrinsic::x86_avx2_pmaxu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011191 case Intrinsic::x86_avx512_pmaxu_d:
11192 case Intrinsic::x86_avx512_pmaxu_q:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011193 case Intrinsic::x86_sse2_pminu_b:
11194 case Intrinsic::x86_sse41_pminuw:
11195 case Intrinsic::x86_sse41_pminud:
11196 case Intrinsic::x86_avx2_pminu_b:
11197 case Intrinsic::x86_avx2_pminu_w:
11198 case Intrinsic::x86_avx2_pminu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011199 case Intrinsic::x86_avx512_pminu_d:
11200 case Intrinsic::x86_avx512_pminu_q:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011201 case Intrinsic::x86_sse41_pmaxsb:
11202 case Intrinsic::x86_sse2_pmaxs_w:
11203 case Intrinsic::x86_sse41_pmaxsd:
11204 case Intrinsic::x86_avx2_pmaxs_b:
11205 case Intrinsic::x86_avx2_pmaxs_w:
11206 case Intrinsic::x86_avx2_pmaxs_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011207 case Intrinsic::x86_avx512_pmaxs_d:
11208 case Intrinsic::x86_avx512_pmaxs_q:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011209 case Intrinsic::x86_sse41_pminsb:
11210 case Intrinsic::x86_sse2_pmins_w:
11211 case Intrinsic::x86_sse41_pminsd:
11212 case Intrinsic::x86_avx2_pmins_b:
11213 case Intrinsic::x86_avx2_pmins_w:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011214 case Intrinsic::x86_avx2_pmins_d:
11215 case Intrinsic::x86_avx512_pmins_d:
11216 case Intrinsic::x86_avx512_pmins_q: {
Craig Topper6f57f392012-12-29 17:19:06 +000011217 unsigned Opcode;
11218 switch (IntNo) {
11219 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11220 case Intrinsic::x86_sse2_pmaxu_b:
11221 case Intrinsic::x86_sse41_pmaxuw:
11222 case Intrinsic::x86_sse41_pmaxud:
11223 case Intrinsic::x86_avx2_pmaxu_b:
11224 case Intrinsic::x86_avx2_pmaxu_w:
11225 case Intrinsic::x86_avx2_pmaxu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011226 case Intrinsic::x86_avx512_pmaxu_d:
11227 case Intrinsic::x86_avx512_pmaxu_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011228 Opcode = X86ISD::UMAX;
11229 break;
11230 case Intrinsic::x86_sse2_pminu_b:
11231 case Intrinsic::x86_sse41_pminuw:
11232 case Intrinsic::x86_sse41_pminud:
11233 case Intrinsic::x86_avx2_pminu_b:
11234 case Intrinsic::x86_avx2_pminu_w:
11235 case Intrinsic::x86_avx2_pminu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011236 case Intrinsic::x86_avx512_pminu_d:
11237 case Intrinsic::x86_avx512_pminu_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011238 Opcode = X86ISD::UMIN;
11239 break;
11240 case Intrinsic::x86_sse41_pmaxsb:
11241 case Intrinsic::x86_sse2_pmaxs_w:
11242 case Intrinsic::x86_sse41_pmaxsd:
11243 case Intrinsic::x86_avx2_pmaxs_b:
11244 case Intrinsic::x86_avx2_pmaxs_w:
11245 case Intrinsic::x86_avx2_pmaxs_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011246 case Intrinsic::x86_avx512_pmaxs_d:
11247 case Intrinsic::x86_avx512_pmaxs_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011248 Opcode = X86ISD::SMAX;
11249 break;
11250 case Intrinsic::x86_sse41_pminsb:
11251 case Intrinsic::x86_sse2_pmins_w:
11252 case Intrinsic::x86_sse41_pminsd:
11253 case Intrinsic::x86_avx2_pmins_b:
11254 case Intrinsic::x86_avx2_pmins_w:
11255 case Intrinsic::x86_avx2_pmins_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011256 case Intrinsic::x86_avx512_pmins_d:
11257 case Intrinsic::x86_avx512_pmins_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011258 Opcode = X86ISD::SMIN;
11259 break;
11260 }
11261 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011262 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000011263 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011264
Craig Topper6d183e42012-12-29 16:44:25 +000011265 // SSE/SSE2/AVX floating point max/min intrinsics.
11266 case Intrinsic::x86_sse_max_ps:
11267 case Intrinsic::x86_sse2_max_pd:
11268 case Intrinsic::x86_avx_max_ps_256:
11269 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011270 case Intrinsic::x86_avx512_max_ps_512:
11271 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011272 case Intrinsic::x86_sse_min_ps:
11273 case Intrinsic::x86_sse2_min_pd:
11274 case Intrinsic::x86_avx_min_ps_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011275 case Intrinsic::x86_avx_min_pd_256:
11276 case Intrinsic::x86_avx512_min_ps_512:
11277 case Intrinsic::x86_avx512_min_pd_512: {
Craig Topper6d183e42012-12-29 16:44:25 +000011278 unsigned Opcode;
11279 switch (IntNo) {
11280 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11281 case Intrinsic::x86_sse_max_ps:
11282 case Intrinsic::x86_sse2_max_pd:
11283 case Intrinsic::x86_avx_max_ps_256:
11284 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011285 case Intrinsic::x86_avx512_max_ps_512:
11286 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011287 Opcode = X86ISD::FMAX;
11288 break;
11289 case Intrinsic::x86_sse_min_ps:
11290 case Intrinsic::x86_sse2_min_pd:
11291 case Intrinsic::x86_avx_min_ps_256:
11292 case Intrinsic::x86_avx_min_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011293 case Intrinsic::x86_avx512_min_ps_512:
11294 case Intrinsic::x86_avx512_min_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011295 Opcode = X86ISD::FMIN;
11296 break;
11297 }
11298 return DAG.getNode(Opcode, dl, Op.getValueType(),
11299 Op.getOperand(1), Op.getOperand(2));
11300 }
11301
Craig Topper6d688152012-08-14 07:43:25 +000011302 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011303 case Intrinsic::x86_avx2_psllv_d:
11304 case Intrinsic::x86_avx2_psllv_q:
11305 case Intrinsic::x86_avx2_psllv_d_256:
11306 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011307 case Intrinsic::x86_avx2_psrlv_d:
11308 case Intrinsic::x86_avx2_psrlv_q:
11309 case Intrinsic::x86_avx2_psrlv_d_256:
11310 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011311 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011312 case Intrinsic::x86_avx2_psrav_d_256: {
11313 unsigned Opcode;
11314 switch (IntNo) {
11315 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11316 case Intrinsic::x86_avx2_psllv_d:
11317 case Intrinsic::x86_avx2_psllv_q:
11318 case Intrinsic::x86_avx2_psllv_d_256:
11319 case Intrinsic::x86_avx2_psllv_q_256:
11320 Opcode = ISD::SHL;
11321 break;
11322 case Intrinsic::x86_avx2_psrlv_d:
11323 case Intrinsic::x86_avx2_psrlv_q:
11324 case Intrinsic::x86_avx2_psrlv_d_256:
11325 case Intrinsic::x86_avx2_psrlv_q_256:
11326 Opcode = ISD::SRL;
11327 break;
11328 case Intrinsic::x86_avx2_psrav_d:
11329 case Intrinsic::x86_avx2_psrav_d_256:
11330 Opcode = ISD::SRA;
11331 break;
11332 }
11333 return DAG.getNode(Opcode, dl, Op.getValueType(),
11334 Op.getOperand(1), Op.getOperand(2));
11335 }
11336
Craig Topper969ba282012-01-25 06:43:11 +000011337 case Intrinsic::x86_ssse3_pshuf_b_128:
11338 case Intrinsic::x86_avx2_pshuf_b:
11339 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11340 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011341
Craig Topper969ba282012-01-25 06:43:11 +000011342 case Intrinsic::x86_ssse3_psign_b_128:
11343 case Intrinsic::x86_ssse3_psign_w_128:
11344 case Intrinsic::x86_ssse3_psign_d_128:
11345 case Intrinsic::x86_avx2_psign_b:
11346 case Intrinsic::x86_avx2_psign_w:
11347 case Intrinsic::x86_avx2_psign_d:
11348 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11349 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011350
Craig Toppere566cd02012-01-26 07:18:03 +000011351 case Intrinsic::x86_sse41_insertps:
11352 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11353 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011354
Craig Toppere566cd02012-01-26 07:18:03 +000011355 case Intrinsic::x86_avx_vperm2f128_ps_256:
11356 case Intrinsic::x86_avx_vperm2f128_pd_256:
11357 case Intrinsic::x86_avx_vperm2f128_si_256:
11358 case Intrinsic::x86_avx2_vperm2i128:
11359 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11360 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011361
Craig Topperffa6c402012-04-16 07:13:00 +000011362 case Intrinsic::x86_avx2_permd:
11363 case Intrinsic::x86_avx2_permps:
11364 // Operands intentionally swapped. Mask is last operand to intrinsic,
Robert Wilhelmf80a63f2013-09-28 11:46:15 +000011365 // but second operand for node/instruction.
Craig Topperffa6c402012-04-16 07:13:00 +000011366 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11367 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011368
Craig Topper22d8f0d2012-12-29 18:18:20 +000011369 case Intrinsic::x86_sse_sqrt_ps:
11370 case Intrinsic::x86_sse2_sqrt_pd:
11371 case Intrinsic::x86_avx_sqrt_ps_256:
11372 case Intrinsic::x86_avx_sqrt_pd_256:
11373 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11374
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011375 // ptest and testp intrinsics. The intrinsic these come from are designed to
11376 // return an integer value, not just an instruction so lower it to the ptest
11377 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011378 case Intrinsic::x86_sse41_ptestz:
11379 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011380 case Intrinsic::x86_sse41_ptestnzc:
11381 case Intrinsic::x86_avx_ptestz_256:
11382 case Intrinsic::x86_avx_ptestc_256:
11383 case Intrinsic::x86_avx_ptestnzc_256:
11384 case Intrinsic::x86_avx_vtestz_ps:
11385 case Intrinsic::x86_avx_vtestc_ps:
11386 case Intrinsic::x86_avx_vtestnzc_ps:
11387 case Intrinsic::x86_avx_vtestz_pd:
11388 case Intrinsic::x86_avx_vtestc_pd:
11389 case Intrinsic::x86_avx_vtestnzc_pd:
11390 case Intrinsic::x86_avx_vtestz_ps_256:
11391 case Intrinsic::x86_avx_vtestc_ps_256:
11392 case Intrinsic::x86_avx_vtestnzc_ps_256:
11393 case Intrinsic::x86_avx_vtestz_pd_256:
11394 case Intrinsic::x86_avx_vtestc_pd_256:
11395 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11396 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011397 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011398 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011399 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011400 case Intrinsic::x86_avx_vtestz_ps:
11401 case Intrinsic::x86_avx_vtestz_pd:
11402 case Intrinsic::x86_avx_vtestz_ps_256:
11403 case Intrinsic::x86_avx_vtestz_pd_256:
11404 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011405 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011406 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011407 // ZF = 1
11408 X86CC = X86::COND_E;
11409 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011410 case Intrinsic::x86_avx_vtestc_ps:
11411 case Intrinsic::x86_avx_vtestc_pd:
11412 case Intrinsic::x86_avx_vtestc_ps_256:
11413 case Intrinsic::x86_avx_vtestc_pd_256:
11414 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011415 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011416 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011417 // CF = 1
11418 X86CC = X86::COND_B;
11419 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011420 case Intrinsic::x86_avx_vtestnzc_ps:
11421 case Intrinsic::x86_avx_vtestnzc_pd:
11422 case Intrinsic::x86_avx_vtestnzc_ps_256:
11423 case Intrinsic::x86_avx_vtestnzc_pd_256:
11424 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011425 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011426 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011427 // ZF and CF = 0
11428 X86CC = X86::COND_A;
11429 break;
11430 }
Eric Christopherfd179292009-08-27 18:07:15 +000011431
Eric Christopher71c67532009-07-29 00:28:05 +000011432 SDValue LHS = Op.getOperand(1);
11433 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011434 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11435 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011436 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11437 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11438 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011439 }
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000011440 case Intrinsic::x86_avx512_kortestz:
11441 case Intrinsic::x86_avx512_kortestc: {
11442 unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11443 SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11444 SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11445 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11446 SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11447 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11448 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11449 }
Evan Cheng5759f972008-05-04 09:15:50 +000011450
Craig Topper80e46362012-01-23 06:16:53 +000011451 // SSE/AVX shift intrinsics
11452 case Intrinsic::x86_sse2_psll_w:
11453 case Intrinsic::x86_sse2_psll_d:
11454 case Intrinsic::x86_sse2_psll_q:
11455 case Intrinsic::x86_avx2_psll_w:
11456 case Intrinsic::x86_avx2_psll_d:
11457 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011458 case Intrinsic::x86_sse2_psrl_w:
11459 case Intrinsic::x86_sse2_psrl_d:
11460 case Intrinsic::x86_sse2_psrl_q:
11461 case Intrinsic::x86_avx2_psrl_w:
11462 case Intrinsic::x86_avx2_psrl_d:
11463 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011464 case Intrinsic::x86_sse2_psra_w:
11465 case Intrinsic::x86_sse2_psra_d:
11466 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011467 case Intrinsic::x86_avx2_psra_d: {
11468 unsigned Opcode;
11469 switch (IntNo) {
11470 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11471 case Intrinsic::x86_sse2_psll_w:
11472 case Intrinsic::x86_sse2_psll_d:
11473 case Intrinsic::x86_sse2_psll_q:
11474 case Intrinsic::x86_avx2_psll_w:
11475 case Intrinsic::x86_avx2_psll_d:
11476 case Intrinsic::x86_avx2_psll_q:
11477 Opcode = X86ISD::VSHL;
11478 break;
11479 case Intrinsic::x86_sse2_psrl_w:
11480 case Intrinsic::x86_sse2_psrl_d:
11481 case Intrinsic::x86_sse2_psrl_q:
11482 case Intrinsic::x86_avx2_psrl_w:
11483 case Intrinsic::x86_avx2_psrl_d:
11484 case Intrinsic::x86_avx2_psrl_q:
11485 Opcode = X86ISD::VSRL;
11486 break;
11487 case Intrinsic::x86_sse2_psra_w:
11488 case Intrinsic::x86_sse2_psra_d:
11489 case Intrinsic::x86_avx2_psra_w:
11490 case Intrinsic::x86_avx2_psra_d:
11491 Opcode = X86ISD::VSRA;
11492 break;
11493 }
11494 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011495 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011496 }
11497
11498 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011499 case Intrinsic::x86_sse2_pslli_w:
11500 case Intrinsic::x86_sse2_pslli_d:
11501 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011502 case Intrinsic::x86_avx2_pslli_w:
11503 case Intrinsic::x86_avx2_pslli_d:
11504 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011505 case Intrinsic::x86_sse2_psrli_w:
11506 case Intrinsic::x86_sse2_psrli_d:
11507 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011508 case Intrinsic::x86_avx2_psrli_w:
11509 case Intrinsic::x86_avx2_psrli_d:
11510 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011511 case Intrinsic::x86_sse2_psrai_w:
11512 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011513 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011514 case Intrinsic::x86_avx2_psrai_d: {
11515 unsigned Opcode;
11516 switch (IntNo) {
11517 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11518 case Intrinsic::x86_sse2_pslli_w:
11519 case Intrinsic::x86_sse2_pslli_d:
11520 case Intrinsic::x86_sse2_pslli_q:
11521 case Intrinsic::x86_avx2_pslli_w:
11522 case Intrinsic::x86_avx2_pslli_d:
11523 case Intrinsic::x86_avx2_pslli_q:
11524 Opcode = X86ISD::VSHLI;
11525 break;
11526 case Intrinsic::x86_sse2_psrli_w:
11527 case Intrinsic::x86_sse2_psrli_d:
11528 case Intrinsic::x86_sse2_psrli_q:
11529 case Intrinsic::x86_avx2_psrli_w:
11530 case Intrinsic::x86_avx2_psrli_d:
11531 case Intrinsic::x86_avx2_psrli_q:
11532 Opcode = X86ISD::VSRLI;
11533 break;
11534 case Intrinsic::x86_sse2_psrai_w:
11535 case Intrinsic::x86_sse2_psrai_d:
11536 case Intrinsic::x86_avx2_psrai_w:
11537 case Intrinsic::x86_avx2_psrai_d:
11538 Opcode = X86ISD::VSRAI;
11539 break;
11540 }
11541 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011542 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011543 }
11544
Craig Topper4feb6472012-08-06 06:22:36 +000011545 case Intrinsic::x86_sse42_pcmpistria128:
11546 case Intrinsic::x86_sse42_pcmpestria128:
11547 case Intrinsic::x86_sse42_pcmpistric128:
11548 case Intrinsic::x86_sse42_pcmpestric128:
11549 case Intrinsic::x86_sse42_pcmpistrio128:
11550 case Intrinsic::x86_sse42_pcmpestrio128:
11551 case Intrinsic::x86_sse42_pcmpistris128:
11552 case Intrinsic::x86_sse42_pcmpestris128:
11553 case Intrinsic::x86_sse42_pcmpistriz128:
11554 case Intrinsic::x86_sse42_pcmpestriz128: {
11555 unsigned Opcode;
11556 unsigned X86CC;
11557 switch (IntNo) {
11558 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11559 case Intrinsic::x86_sse42_pcmpistria128:
11560 Opcode = X86ISD::PCMPISTRI;
11561 X86CC = X86::COND_A;
11562 break;
11563 case Intrinsic::x86_sse42_pcmpestria128:
11564 Opcode = X86ISD::PCMPESTRI;
11565 X86CC = X86::COND_A;
11566 break;
11567 case Intrinsic::x86_sse42_pcmpistric128:
11568 Opcode = X86ISD::PCMPISTRI;
11569 X86CC = X86::COND_B;
11570 break;
11571 case Intrinsic::x86_sse42_pcmpestric128:
11572 Opcode = X86ISD::PCMPESTRI;
11573 X86CC = X86::COND_B;
11574 break;
11575 case Intrinsic::x86_sse42_pcmpistrio128:
11576 Opcode = X86ISD::PCMPISTRI;
11577 X86CC = X86::COND_O;
11578 break;
11579 case Intrinsic::x86_sse42_pcmpestrio128:
11580 Opcode = X86ISD::PCMPESTRI;
11581 X86CC = X86::COND_O;
11582 break;
11583 case Intrinsic::x86_sse42_pcmpistris128:
11584 Opcode = X86ISD::PCMPISTRI;
11585 X86CC = X86::COND_S;
11586 break;
11587 case Intrinsic::x86_sse42_pcmpestris128:
11588 Opcode = X86ISD::PCMPESTRI;
11589 X86CC = X86::COND_S;
11590 break;
11591 case Intrinsic::x86_sse42_pcmpistriz128:
11592 Opcode = X86ISD::PCMPISTRI;
11593 X86CC = X86::COND_E;
11594 break;
11595 case Intrinsic::x86_sse42_pcmpestriz128:
11596 Opcode = X86ISD::PCMPESTRI;
11597 X86CC = X86::COND_E;
11598 break;
11599 }
Craig Topper20b46b02013-08-06 04:12:40 +000011600 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011601 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11602 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11603 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11604 DAG.getConstant(X86CC, MVT::i8),
11605 SDValue(PCMP.getNode(), 1));
11606 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11607 }
Craig Topper6d688152012-08-14 07:43:25 +000011608
Craig Topper4feb6472012-08-06 06:22:36 +000011609 case Intrinsic::x86_sse42_pcmpistri128:
11610 case Intrinsic::x86_sse42_pcmpestri128: {
11611 unsigned Opcode;
11612 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11613 Opcode = X86ISD::PCMPISTRI;
11614 else
11615 Opcode = X86ISD::PCMPESTRI;
11616
Craig Topper20b46b02013-08-06 04:12:40 +000011617 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011618 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11619 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11620 }
Craig Topper0e292372012-08-24 04:03:22 +000011621 case Intrinsic::x86_fma_vfmadd_ps:
11622 case Intrinsic::x86_fma_vfmadd_pd:
11623 case Intrinsic::x86_fma_vfmsub_ps:
11624 case Intrinsic::x86_fma_vfmsub_pd:
11625 case Intrinsic::x86_fma_vfnmadd_ps:
11626 case Intrinsic::x86_fma_vfnmadd_pd:
11627 case Intrinsic::x86_fma_vfnmsub_ps:
11628 case Intrinsic::x86_fma_vfnmsub_pd:
11629 case Intrinsic::x86_fma_vfmaddsub_ps:
11630 case Intrinsic::x86_fma_vfmaddsub_pd:
11631 case Intrinsic::x86_fma_vfmsubadd_ps:
11632 case Intrinsic::x86_fma_vfmsubadd_pd:
11633 case Intrinsic::x86_fma_vfmadd_ps_256:
11634 case Intrinsic::x86_fma_vfmadd_pd_256:
11635 case Intrinsic::x86_fma_vfmsub_ps_256:
11636 case Intrinsic::x86_fma_vfmsub_pd_256:
11637 case Intrinsic::x86_fma_vfnmadd_ps_256:
11638 case Intrinsic::x86_fma_vfnmadd_pd_256:
11639 case Intrinsic::x86_fma_vfnmsub_ps_256:
11640 case Intrinsic::x86_fma_vfnmsub_pd_256:
11641 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11642 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11643 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11644 case Intrinsic::x86_fma_vfmsubadd_pd_256: {
Craig Topper0e292372012-08-24 04:03:22 +000011645 unsigned Opc;
11646 switch (IntNo) {
11647 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11648 case Intrinsic::x86_fma_vfmadd_ps:
11649 case Intrinsic::x86_fma_vfmadd_pd:
11650 case Intrinsic::x86_fma_vfmadd_ps_256:
11651 case Intrinsic::x86_fma_vfmadd_pd_256:
11652 Opc = X86ISD::FMADD;
11653 break;
11654 case Intrinsic::x86_fma_vfmsub_ps:
11655 case Intrinsic::x86_fma_vfmsub_pd:
11656 case Intrinsic::x86_fma_vfmsub_ps_256:
11657 case Intrinsic::x86_fma_vfmsub_pd_256:
11658 Opc = X86ISD::FMSUB;
11659 break;
11660 case Intrinsic::x86_fma_vfnmadd_ps:
11661 case Intrinsic::x86_fma_vfnmadd_pd:
11662 case Intrinsic::x86_fma_vfnmadd_ps_256:
11663 case Intrinsic::x86_fma_vfnmadd_pd_256:
11664 Opc = X86ISD::FNMADD;
11665 break;
11666 case Intrinsic::x86_fma_vfnmsub_ps:
11667 case Intrinsic::x86_fma_vfnmsub_pd:
11668 case Intrinsic::x86_fma_vfnmsub_ps_256:
11669 case Intrinsic::x86_fma_vfnmsub_pd_256:
11670 Opc = X86ISD::FNMSUB;
11671 break;
11672 case Intrinsic::x86_fma_vfmaddsub_ps:
11673 case Intrinsic::x86_fma_vfmaddsub_pd:
11674 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11675 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11676 Opc = X86ISD::FMADDSUB;
11677 break;
11678 case Intrinsic::x86_fma_vfmsubadd_ps:
11679 case Intrinsic::x86_fma_vfmsubadd_pd:
11680 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11681 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11682 Opc = X86ISD::FMSUBADD;
11683 break;
11684 }
11685
11686 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11687 Op.getOperand(2), Op.getOperand(3));
11688 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011689 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011690}
Evan Cheng72261582005-12-20 06:22:03 +000011691
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011692static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11693 SDValue Base, SDValue Index,
11694 SDValue ScaleOp, SDValue Chain,
11695 const X86Subtarget * Subtarget) {
11696 SDLoc dl(Op);
11697 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11698 assert(C && "Invalid scale type");
11699 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11700 SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11701 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11702 Index.getValueType().getVectorNumElements());
11703 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11704 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11705 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11706 SDValue Segment = DAG.getRegister(0, MVT::i32);
11707 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11708 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11709 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11710 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11711}
11712
11713static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11714 SDValue Src, SDValue Mask, SDValue Base,
11715 SDValue Index, SDValue ScaleOp, SDValue Chain,
11716 const X86Subtarget * Subtarget) {
11717 SDLoc dl(Op);
11718 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11719 assert(C && "Invalid scale type");
11720 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11721 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11722 Index.getValueType().getVectorNumElements());
11723 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11724 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11725 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11726 SDValue Segment = DAG.getRegister(0, MVT::i32);
11727 if (Src.getOpcode() == ISD::UNDEF)
11728 Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11729 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11730 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11731 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11732 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11733}
11734
11735static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11736 SDValue Src, SDValue Base, SDValue Index,
11737 SDValue ScaleOp, SDValue Chain) {
11738 SDLoc dl(Op);
11739 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11740 assert(C && "Invalid scale type");
11741 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11742 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11743 SDValue Segment = DAG.getRegister(0, MVT::i32);
11744 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11745 Index.getValueType().getVectorNumElements());
11746 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11747 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11748 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11749 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11750 return SDValue(Res, 1);
11751}
11752
11753static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11754 SDValue Src, SDValue Mask, SDValue Base,
11755 SDValue Index, SDValue ScaleOp, SDValue Chain) {
11756 SDLoc dl(Op);
11757 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11758 assert(C && "Invalid scale type");
11759 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11760 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11761 SDValue Segment = DAG.getRegister(0, MVT::i32);
11762 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11763 Index.getValueType().getVectorNumElements());
11764 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11765 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11766 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11767 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11768 return SDValue(Res, 1);
11769}
11770
11771static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11772 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011773 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011774 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11775 switch (IntNo) {
11776 default: return SDValue(); // Don't custom lower most intrinsics.
11777
Michael Liaoc26392a2013-03-28 23:41:26 +000011778 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011779 case Intrinsic::x86_rdrand_16:
11780 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011781 case Intrinsic::x86_rdrand_64:
11782 case Intrinsic::x86_rdseed_16:
11783 case Intrinsic::x86_rdseed_32:
11784 case Intrinsic::x86_rdseed_64: {
11785 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11786 IntNo == Intrinsic::x86_rdseed_32 ||
11787 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11788 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011789 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011790 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011791 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011792
Michael Liaoc26392a2013-03-28 23:41:26 +000011793 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11794 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011795 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11796 DAG.getConstant(1, Op->getValueType(1)),
11797 DAG.getConstant(X86::COND_B, MVT::i32),
11798 SDValue(Result.getNode(), 1) };
11799 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11800 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011801 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011802
11803 // Return { result, isValid, chain }.
11804 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011805 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011806 }
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011807 //int_gather(index, base, scale);
11808 case Intrinsic::x86_avx512_gather_qpd_512:
11809 case Intrinsic::x86_avx512_gather_qps_512:
11810 case Intrinsic::x86_avx512_gather_dpd_512:
11811 case Intrinsic::x86_avx512_gather_qpi_512:
11812 case Intrinsic::x86_avx512_gather_qpq_512:
11813 case Intrinsic::x86_avx512_gather_dpq_512:
11814 case Intrinsic::x86_avx512_gather_dps_512:
11815 case Intrinsic::x86_avx512_gather_dpi_512: {
11816 unsigned Opc;
11817 switch (IntNo) {
11818 default: llvm_unreachable("Unexpected intrinsic!");
11819 case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11820 case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11821 case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11822 case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11823 case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11824 case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11825 case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11826 case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11827 }
11828 SDValue Chain = Op.getOperand(0);
11829 SDValue Index = Op.getOperand(2);
11830 SDValue Base = Op.getOperand(3);
11831 SDValue Scale = Op.getOperand(4);
11832 return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11833 }
11834 //int_gather_mask(v1, mask, index, base, scale);
11835 case Intrinsic::x86_avx512_gather_qps_mask_512:
11836 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11837 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11838 case Intrinsic::x86_avx512_gather_dps_mask_512:
11839 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11840 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11841 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11842 case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11843 unsigned Opc;
11844 switch (IntNo) {
11845 default: llvm_unreachable("Unexpected intrinsic!");
11846 case Intrinsic::x86_avx512_gather_qps_mask_512:
11847 Opc = X86::VGATHERQPSZrm; break;
11848 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11849 Opc = X86::VGATHERQPDZrm; break;
11850 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11851 Opc = X86::VGATHERDPDZrm; break;
11852 case Intrinsic::x86_avx512_gather_dps_mask_512:
11853 Opc = X86::VGATHERDPSZrm; break;
11854 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11855 Opc = X86::VPGATHERQDZrm; break;
11856 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11857 Opc = X86::VPGATHERQQZrm; break;
11858 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11859 Opc = X86::VPGATHERDDZrm; break;
11860 case Intrinsic::x86_avx512_gather_dpq_mask_512:
11861 Opc = X86::VPGATHERDQZrm; break;
11862 }
11863 SDValue Chain = Op.getOperand(0);
11864 SDValue Src = Op.getOperand(2);
11865 SDValue Mask = Op.getOperand(3);
11866 SDValue Index = Op.getOperand(4);
11867 SDValue Base = Op.getOperand(5);
11868 SDValue Scale = Op.getOperand(6);
11869 return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11870 Subtarget);
11871 }
11872 //int_scatter(base, index, v1, scale);
11873 case Intrinsic::x86_avx512_scatter_qpd_512:
11874 case Intrinsic::x86_avx512_scatter_qps_512:
11875 case Intrinsic::x86_avx512_scatter_dpd_512:
11876 case Intrinsic::x86_avx512_scatter_qpi_512:
11877 case Intrinsic::x86_avx512_scatter_qpq_512:
11878 case Intrinsic::x86_avx512_scatter_dpq_512:
11879 case Intrinsic::x86_avx512_scatter_dps_512:
11880 case Intrinsic::x86_avx512_scatter_dpi_512: {
11881 unsigned Opc;
11882 switch (IntNo) {
11883 default: llvm_unreachable("Unexpected intrinsic!");
11884 case Intrinsic::x86_avx512_scatter_qpd_512:
11885 Opc = X86::VSCATTERQPDZmr; break;
11886 case Intrinsic::x86_avx512_scatter_qps_512:
11887 Opc = X86::VSCATTERQPSZmr; break;
11888 case Intrinsic::x86_avx512_scatter_dpd_512:
11889 Opc = X86::VSCATTERDPDZmr; break;
11890 case Intrinsic::x86_avx512_scatter_dps_512:
11891 Opc = X86::VSCATTERDPSZmr; break;
11892 case Intrinsic::x86_avx512_scatter_qpi_512:
11893 Opc = X86::VPSCATTERQDZmr; break;
11894 case Intrinsic::x86_avx512_scatter_qpq_512:
11895 Opc = X86::VPSCATTERQQZmr; break;
11896 case Intrinsic::x86_avx512_scatter_dpq_512:
11897 Opc = X86::VPSCATTERDQZmr; break;
11898 case Intrinsic::x86_avx512_scatter_dpi_512:
11899 Opc = X86::VPSCATTERDDZmr; break;
11900 }
11901 SDValue Chain = Op.getOperand(0);
11902 SDValue Base = Op.getOperand(2);
11903 SDValue Index = Op.getOperand(3);
11904 SDValue Src = Op.getOperand(4);
11905 SDValue Scale = Op.getOperand(5);
11906 return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11907 }
11908 //int_scatter_mask(base, mask, index, v1, scale);
11909 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11910 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11911 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11912 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11913 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11914 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11915 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11916 case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11917 unsigned Opc;
11918 switch (IntNo) {
11919 default: llvm_unreachable("Unexpected intrinsic!");
11920 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11921 Opc = X86::VSCATTERQPDZmr; break;
11922 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11923 Opc = X86::VSCATTERQPSZmr; break;
11924 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11925 Opc = X86::VSCATTERDPDZmr; break;
11926 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11927 Opc = X86::VSCATTERDPSZmr; break;
11928 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11929 Opc = X86::VPSCATTERQDZmr; break;
11930 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11931 Opc = X86::VPSCATTERQQZmr; break;
11932 case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11933 Opc = X86::VPSCATTERDQZmr; break;
11934 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11935 Opc = X86::VPSCATTERDDZmr; break;
11936 }
11937 SDValue Chain = Op.getOperand(0);
11938 SDValue Base = Op.getOperand(2);
11939 SDValue Mask = Op.getOperand(3);
11940 SDValue Index = Op.getOperand(4);
11941 SDValue Src = Op.getOperand(5);
11942 SDValue Scale = Op.getOperand(6);
11943 return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11944 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011945 // XTEST intrinsics.
11946 case Intrinsic::x86_xtest: {
11947 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11948 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11949 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11950 DAG.getConstant(X86::COND_NE, MVT::i8),
11951 InTrans);
11952 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11953 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11954 Ret, SDValue(InTrans.getNode(), 1));
11955 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011956 }
11957}
11958
Dan Gohmand858e902010-04-17 15:26:15 +000011959SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11960 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000011961 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11962 MFI->setReturnAddressIsTaken(true);
11963
Bill Wendling64e87322009-01-16 19:25:27 +000011964 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011965 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011966 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000011967
11968 if (Depth > 0) {
11969 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011970 const X86RegisterInfo *RegInfo =
11971 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11972 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011973 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11974 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000011975 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011976 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000011977 }
11978
11979 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000011980 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000011981 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000011982 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000011983}
11984
Dan Gohmand858e902010-04-17 15:26:15 +000011985SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000011986 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11987 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000011988
Owen Andersone50ed302009-08-10 22:56:29 +000011989 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000011990 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000011991 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000011992 const X86RegisterInfo *RegInfo =
11993 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000011994 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11995 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000011996 (FrameReg == X86::EBP && VT == MVT::i32)) &&
11997 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000011998 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000011999 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000012000 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12001 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000012002 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000012003 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000012004}
12005
Dan Gohman475871a2008-07-27 21:46:04 +000012006SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000012007 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012008 const X86RegisterInfo *RegInfo =
12009 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000012010 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012011}
12012
Dan Gohmand858e902010-04-17 15:26:15 +000012013SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012014 SDValue Chain = Op.getOperand(0);
12015 SDValue Offset = Op.getOperand(1);
12016 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012017 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012018
Michael Liaodb7da202013-05-02 09:18:38 +000012019 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012020 const X86RegisterInfo *RegInfo =
12021 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000012022 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12023 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12024 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12025 "Invalid Frame Register!");
12026 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12027 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012028
Michael Liaodb7da202013-05-02 09:18:38 +000012029 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000012030 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000012031 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000012032 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12033 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000012034 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012035
Michael Liaodb7da202013-05-02 09:18:38 +000012036 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12037 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012038}
12039
Michael Liao6c0e04c2012-10-15 22:39:43 +000012040SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12041 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012042 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012043 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12044 DAG.getVTList(MVT::i32, MVT::Other),
12045 Op.getOperand(0), Op.getOperand(1));
12046}
12047
12048SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12049 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012050 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012051 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12052 Op.getOperand(0), Op.getOperand(1));
12053}
12054
Craig Topper55b24052012-09-11 06:15:32 +000012055static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000012056 return Op.getOperand(0);
12057}
12058
12059SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12060 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012061 SDValue Root = Op.getOperand(0);
12062 SDValue Trmp = Op.getOperand(1); // trampoline
12063 SDValue FPtr = Op.getOperand(2); // nested function
12064 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000012065 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012066
Dan Gohman69de1932008-02-06 22:27:42 +000012067 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000012068 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012069
12070 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000012071 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000012072
12073 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000012074 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
12075 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000012076
Michael Liao7abf67a2012-10-04 19:50:43 +000012077 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12078 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000012079
12080 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12081
12082 // Load the pointer to the nested function into R11.
12083 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000012084 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000012085 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012086 Addr, MachinePointerInfo(TrmpAddr),
12087 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012088
Owen Anderson825b72b2009-08-11 20:47:22 +000012089 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12090 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012091 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12092 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000012093 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012094
12095 // Load the 'nest' parameter value into R10.
12096 // R10 is specified in X86CallingConv.td
12097 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000012098 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12099 DAG.getConstant(10, MVT::i64));
12100 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012101 Addr, MachinePointerInfo(TrmpAddr, 10),
12102 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012103
Owen Anderson825b72b2009-08-11 20:47:22 +000012104 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12105 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012106 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12107 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000012108 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012109
12110 // Jump to the nested function.
12111 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000012112 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12113 DAG.getConstant(20, MVT::i64));
12114 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012115 Addr, MachinePointerInfo(TrmpAddr, 20),
12116 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012117
12118 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000012119 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12120 DAG.getConstant(22, MVT::i64));
12121 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012122 MachinePointerInfo(TrmpAddr, 22),
12123 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012124
Duncan Sands4a544a72011-09-06 13:37:06 +000012125 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012126 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000012127 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000012128 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000012129 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000012130 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012131
12132 switch (CC) {
12133 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012134 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012135 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012136 case CallingConv::X86_StdCall: {
12137 // Pass 'nest' parameter in ECX.
12138 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012139 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012140
12141 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012142 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000012143 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012144
Chris Lattner58d74912008-03-12 17:45:29 +000012145 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000012146 unsigned InRegCount = 0;
12147 unsigned Idx = 1;
12148
12149 for (FunctionType::param_iterator I = FTy->param_begin(),
12150 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000012151 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000012152 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000012153 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012154
12155 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000012156 report_fatal_error("Nest register in use - reduce number of inreg"
12157 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012158 }
12159 }
12160 break;
12161 }
12162 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000012163 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000012164 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012165 // Pass 'nest' parameter in EAX.
12166 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012167 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012168 break;
12169 }
12170
Dan Gohman475871a2008-07-27 21:46:04 +000012171 SDValue OutChains[4];
12172 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012173
Owen Anderson825b72b2009-08-11 20:47:22 +000012174 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12175 DAG.getConstant(10, MVT::i32));
12176 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012177
Chris Lattnera62fe662010-02-05 19:20:30 +000012178 // This is storing the opcode for MOV32ri.
12179 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000012180 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000012181 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000012182 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012183 Trmp, MachinePointerInfo(TrmpAddr),
12184 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012185
Owen Anderson825b72b2009-08-11 20:47:22 +000012186 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12187 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012188 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12189 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000012190 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012191
Chris Lattnera62fe662010-02-05 19:20:30 +000012192 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000012193 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12194 DAG.getConstant(5, MVT::i32));
12195 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012196 MachinePointerInfo(TrmpAddr, 5),
12197 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012198
Owen Anderson825b72b2009-08-11 20:47:22 +000012199 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12200 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012201 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12202 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000012203 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012204
Duncan Sands4a544a72011-09-06 13:37:06 +000012205 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012206 }
12207}
12208
Dan Gohmand858e902010-04-17 15:26:15 +000012209SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12210 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012211 /*
12212 The rounding mode is in bits 11:10 of FPSR, and has the following
12213 settings:
12214 00 Round to nearest
12215 01 Round to -inf
12216 10 Round to +inf
12217 11 Round to 0
12218
12219 FLT_ROUNDS, on the other hand, expects the following:
12220 -1 Undefined
12221 0 Round to 0
12222 1 Round to nearest
12223 2 Round to +inf
12224 3 Round to -inf
12225
12226 To perform the conversion, we do:
12227 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12228 */
12229
12230 MachineFunction &MF = DAG.getMachineFunction();
12231 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000012232 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012233 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000012234 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012235 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012236
12237 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000012238 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000012239 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012240
Chris Lattner2156b792010-09-22 01:11:26 +000012241 MachineMemOperand *MMO =
12242 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12243 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012244
Chris Lattner2156b792010-09-22 01:11:26 +000012245 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12246 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12247 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000012248 Ops, array_lengthof(Ops), MVT::i16,
12249 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012250
12251 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000012252 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000012253 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012254
12255 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000012256 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000012257 DAG.getNode(ISD::SRL, DL, MVT::i16,
12258 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012259 CWD, DAG.getConstant(0x800, MVT::i16)),
12260 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000012261 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000012262 DAG.getNode(ISD::SRL, DL, MVT::i16,
12263 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012264 CWD, DAG.getConstant(0x400, MVT::i16)),
12265 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012266
Dan Gohman475871a2008-07-27 21:46:04 +000012267 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000012268 DAG.getNode(ISD::AND, DL, MVT::i16,
12269 DAG.getNode(ISD::ADD, DL, MVT::i16,
12270 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000012271 DAG.getConstant(1, MVT::i16)),
12272 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012273
Duncan Sands83ec4b62008-06-06 12:08:01 +000012274 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000012275 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012276}
12277
Craig Topper55b24052012-09-11 06:15:32 +000012278static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012279 EVT VT = Op.getValueType();
12280 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012281 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012282 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012283
12284 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012285 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000012286 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000012287 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000012288 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012289 }
Evan Cheng18efe262007-12-14 02:13:44 +000012290
Evan Cheng152804e2007-12-14 08:30:15 +000012291 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012292 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012293 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012294
12295 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012296 SDValue Ops[] = {
12297 Op,
12298 DAG.getConstant(NumBits+NumBits-1, OpVT),
12299 DAG.getConstant(X86::COND_E, MVT::i8),
12300 Op.getValue(1)
12301 };
12302 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000012303
12304 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000012305 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000012306
Owen Anderson825b72b2009-08-11 20:47:22 +000012307 if (VT == MVT::i8)
12308 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012309 return Op;
12310}
12311
Craig Topper55b24052012-09-11 06:15:32 +000012312static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000012313 EVT VT = Op.getValueType();
12314 EVT OpVT = VT;
12315 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012316 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012317
12318 Op = Op.getOperand(0);
12319 if (VT == MVT::i8) {
12320 // Zero extend to i32 since there is not an i8 bsr.
12321 OpVT = MVT::i32;
12322 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12323 }
12324
12325 // Issue a bsr (scan bits in reverse).
12326 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12327 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12328
12329 // And xor with NumBits-1.
12330 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12331
12332 if (VT == MVT::i8)
12333 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12334 return Op;
12335}
12336
Craig Topper55b24052012-09-11 06:15:32 +000012337static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012338 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000012339 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012340 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012341 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000012342
12343 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000012344 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012345 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012346
12347 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012348 SDValue Ops[] = {
12349 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000012350 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012351 DAG.getConstant(X86::COND_E, MVT::i8),
12352 Op.getValue(1)
12353 };
Chandler Carruth77821022011-12-24 12:12:34 +000012354 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000012355}
12356
Craig Topper13894fa2011-08-24 06:14:18 +000012357// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12358// ones, and then concatenate the result back.
12359static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012360 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000012361
Craig Topper7a9a28b2012-08-12 02:23:29 +000012362 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012363 "Unsupported value type for operation");
12364
Craig Topper66ddd152012-04-27 22:54:43 +000012365 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012366 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012367
12368 // Extract the LHS vectors
12369 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012370 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12371 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012372
12373 // Extract the RHS vectors
12374 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000012375 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12376 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012377
12378 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12379 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12380
12381 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12382 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12383 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12384}
12385
Craig Topper55b24052012-09-11 06:15:32 +000012386static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012387 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012388 Op.getValueType().isInteger() &&
12389 "Only handle AVX 256-bit vector integer operation");
12390 return Lower256IntArith(Op, DAG);
12391}
12392
Craig Topper55b24052012-09-11 06:15:32 +000012393static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012394 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012395 Op.getValueType().isInteger() &&
12396 "Only handle AVX 256-bit vector integer operation");
12397 return Lower256IntArith(Op, DAG);
12398}
12399
Craig Topper55b24052012-09-11 06:15:32 +000012400static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12401 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012402 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012403 EVT VT = Op.getValueType();
12404
12405 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012406 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000012407 return Lower256IntArith(Op, DAG);
12408
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012409 SDValue A = Op.getOperand(0);
12410 SDValue B = Op.getOperand(1);
12411
12412 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12413 if (VT == MVT::v4i32) {
12414 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12415 "Should not custom lower when pmuldq is available!");
12416
12417 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000012418 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012419 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12420 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12421
12422 // Multiply the even parts.
12423 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12424 // Now multiply odd parts.
12425 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12426
12427 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12428 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12429
12430 // Merge the two vectors back together with a shuffle. This expands into 2
12431 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000012432 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012433 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12434 }
12435
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012436 assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12437 "Only know how to lower V2I64/V4I64/V8I64 multiply");
Craig Topper5b209e82012-02-05 03:14:49 +000012438
Craig Topper5b209e82012-02-05 03:14:49 +000012439 // Ahi = psrlqi(a, 32);
12440 // Bhi = psrlqi(b, 32);
12441 //
12442 // AloBlo = pmuludq(a, b);
12443 // AloBhi = pmuludq(a, Bhi);
12444 // AhiBlo = pmuludq(Ahi, b);
12445
12446 // AloBhi = psllqi(AloBhi, 32);
12447 // AhiBlo = psllqi(AhiBlo, 32);
12448 // return AloBlo + AloBhi + AhiBlo;
12449
Lang Hames1d825372013-10-21 17:51:24 +000012450 SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12451 SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
Craig Topperaaa643c2011-11-09 07:28:55 +000012452
Craig Topper5b209e82012-02-05 03:14:49 +000012453 // Bit cast to 32-bit vectors for MULUDQ
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012454 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12455 (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
Craig Topper5b209e82012-02-05 03:14:49 +000012456 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12457 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12458 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12459 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012460
Craig Topper5b209e82012-02-05 03:14:49 +000012461 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12462 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12463 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012464
Lang Hames1d825372013-10-21 17:51:24 +000012465 AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12466 AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012467
Dale Johannesene4d209d2009-02-03 20:21:25 +000012468 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012469 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012470}
12471
Craig Topper35e194f2013-08-14 07:53:41 +000012472static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012473 EVT VT = Op.getValueType();
12474 EVT EltTy = VT.getVectorElementType();
12475 unsigned NumElts = VT.getVectorNumElements();
12476 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012477 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012478
12479 // Lower sdiv X, pow2-const.
12480 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12481 if (!C)
12482 return SDValue();
12483
12484 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012485 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012486 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012487 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12488 HasAnyUndefs) ||
12489 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012490 return SDValue();
12491
12492 if ((SplatValue != 0) &&
12493 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
Lang Hames1d825372013-10-21 17:51:24 +000012494 unsigned Lg2 = SplatValue.countTrailingZeros();
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012495 // Splat the sign bit.
Michael Liaodc8c0442013-10-15 17:51:02 +000012496 SmallVector<SDValue, 16> Sz(NumElts,
12497 DAG.getConstant(EltTy.getSizeInBits() - 1,
12498 EltTy));
12499 SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12500 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12501 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012502 // Add (N0 < 0) ? abs2 - 1 : 0;
Michael Liaodc8c0442013-10-15 17:51:02 +000012503 SmallVector<SDValue, 16> Amt(NumElts,
Lang Hames1d825372013-10-21 17:51:24 +000012504 DAG.getConstant(EltTy.getSizeInBits() - Lg2,
Michael Liaodc8c0442013-10-15 17:51:02 +000012505 EltTy));
12506 SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12507 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12508 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012509 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
Lang Hames1d825372013-10-21 17:51:24 +000012510 SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
Michael Liaodc8c0442013-10-15 17:51:02 +000012511 SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12512 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12513 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012514
12515 // If we're dividing by a positive value, we're done. Otherwise, we must
12516 // negate the result.
12517 if (SplatValue.isNonNegative())
12518 return SRA;
12519
12520 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12521 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12522 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12523 }
12524 return SDValue();
12525}
12526
Michael Liao4b7ab122013-03-20 02:20:36 +000012527static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12528 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012529 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012530 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012531 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012532 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012533
Nadav Rotem43012222011-05-11 08:12:09 +000012534 // Optimize shl/srl/sra with constant shift amount.
12535 if (isSplatVector(Amt.getNode())) {
12536 SDValue SclrAmt = Amt->getOperand(0);
12537 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12538 uint64_t ShiftAmt = C->getZExtValue();
12539
Craig Toppered2e13d2012-01-22 19:15:14 +000012540 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012541 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012542 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12543 (Subtarget->hasAVX512() &&
12544 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012545 if (Op.getOpcode() == ISD::SHL)
Lang Hames1d825372013-10-21 17:51:24 +000012546 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12547 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012548 if (Op.getOpcode() == ISD::SRL)
Lang Hames1d825372013-10-21 17:51:24 +000012549 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12550 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012551 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
Lang Hames1d825372013-10-21 17:51:24 +000012552 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12553 DAG);
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012554 }
12555
Craig Toppered2e13d2012-01-22 19:15:14 +000012556 if (VT == MVT::v16i8) {
12557 if (Op.getOpcode() == ISD::SHL) {
12558 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012559 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12560 MVT::v8i16, R, ShiftAmt,
12561 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012562 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12563 // Zero out the rightmost bits.
12564 SmallVector<SDValue, 16> V(16,
12565 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12566 MVT::i8));
12567 return DAG.getNode(ISD::AND, dl, VT, SHL,
12568 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012569 }
Craig Toppered2e13d2012-01-22 19:15:14 +000012570 if (Op.getOpcode() == ISD::SRL) {
12571 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012572 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12573 MVT::v8i16, R, ShiftAmt,
12574 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012575 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12576 // Zero out the leftmost bits.
12577 SmallVector<SDValue, 16> V(16,
12578 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12579 MVT::i8));
12580 return DAG.getNode(ISD::AND, dl, VT, SRL,
12581 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12582 }
12583 if (Op.getOpcode() == ISD::SRA) {
12584 if (ShiftAmt == 7) {
12585 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012586 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012587 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Toppered2e13d2012-01-22 19:15:14 +000012588 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012589
Craig Toppered2e13d2012-01-22 19:15:14 +000012590 // R s>> a === ((R u>> a) ^ m) - m
12591 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12592 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12593 MVT::i8));
12594 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12595 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12596 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12597 return Res;
12598 }
Craig Topper731dfd02012-04-23 03:42:40 +000012599 llvm_unreachable("Unknown shift opcode.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012600 }
Craig Topper46154eb2011-11-11 07:39:23 +000012601
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012602 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012603 if (Op.getOpcode() == ISD::SHL) {
12604 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012605 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12606 MVT::v16i16, R, ShiftAmt,
12607 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012608 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012609 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012610 SmallVector<SDValue, 32> V(32,
12611 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12612 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012613 return DAG.getNode(ISD::AND, dl, VT, SHL,
12614 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012615 }
Craig Topper0d86d462011-11-20 00:12:05 +000012616 if (Op.getOpcode() == ISD::SRL) {
12617 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012618 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12619 MVT::v16i16, R, ShiftAmt,
12620 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012621 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012622 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012623 SmallVector<SDValue, 32> V(32,
12624 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12625 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012626 return DAG.getNode(ISD::AND, dl, VT, SRL,
12627 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12628 }
12629 if (Op.getOpcode() == ISD::SRA) {
12630 if (ShiftAmt == 7) {
12631 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012632 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012633 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012634 }
12635
12636 // R s>> a === ((R u>> a) ^ m) - m
12637 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12638 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12639 MVT::i8));
12640 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12641 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12642 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12643 return Res;
12644 }
Craig Topper731dfd02012-04-23 03:42:40 +000012645 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012646 }
Nadav Rotem43012222011-05-11 08:12:09 +000012647 }
12648 }
12649
Michael Liao42317cc2013-03-20 02:33:21 +000012650 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12651 if (!Subtarget->is64Bit() &&
12652 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12653 Amt.getOpcode() == ISD::BITCAST &&
12654 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12655 Amt = Amt.getOperand(0);
12656 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12657 VT.getVectorNumElements();
12658 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12659 uint64_t ShiftAmt = 0;
12660 for (unsigned i = 0; i != Ratio; ++i) {
12661 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12662 if (C == 0)
12663 return SDValue();
12664 // 6 == Log2(64)
12665 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12666 }
12667 // Check remaining shift amounts.
12668 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12669 uint64_t ShAmt = 0;
12670 for (unsigned j = 0; j != Ratio; ++j) {
12671 ConstantSDNode *C =
12672 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12673 if (C == 0)
12674 return SDValue();
12675 // 6 == Log2(64)
12676 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12677 }
12678 if (ShAmt != ShiftAmt)
12679 return SDValue();
12680 }
12681 switch (Op.getOpcode()) {
12682 default:
12683 llvm_unreachable("Unknown shift opcode!");
12684 case ISD::SHL:
Lang Hames1d825372013-10-21 17:51:24 +000012685 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12686 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012687 case ISD::SRL:
Lang Hames1d825372013-10-21 17:51:24 +000012688 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12689 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012690 case ISD::SRA:
Lang Hames1d825372013-10-21 17:51:24 +000012691 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12692 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012693 }
12694 }
12695
12696 return SDValue();
12697}
12698
12699static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12700 const X86Subtarget* Subtarget) {
12701 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012702 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012703 SDValue R = Op.getOperand(0);
12704 SDValue Amt = Op.getOperand(1);
12705
12706 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12707 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12708 (Subtarget->hasInt256() &&
12709 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012710 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12711 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012712 SDValue BaseShAmt;
12713 EVT EltVT = VT.getVectorElementType();
12714
12715 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12716 unsigned NumElts = VT.getVectorNumElements();
12717 unsigned i, j;
12718 for (i = 0; i != NumElts; ++i) {
12719 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12720 continue;
12721 break;
12722 }
12723 for (j = i; j != NumElts; ++j) {
12724 SDValue Arg = Amt.getOperand(j);
12725 if (Arg.getOpcode() == ISD::UNDEF) continue;
12726 if (Arg != Amt.getOperand(i))
12727 break;
12728 }
12729 if (i != NumElts && j == NumElts)
12730 BaseShAmt = Amt.getOperand(i);
12731 } else {
12732 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12733 Amt = Amt.getOperand(0);
12734 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12735 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12736 SDValue InVec = Amt.getOperand(0);
12737 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12738 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12739 unsigned i = 0;
12740 for (; i != NumElts; ++i) {
12741 SDValue Arg = InVec.getOperand(i);
12742 if (Arg.getOpcode() == ISD::UNDEF) continue;
12743 BaseShAmt = Arg;
12744 break;
12745 }
12746 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12747 if (ConstantSDNode *C =
12748 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12749 unsigned SplatIdx =
12750 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12751 if (C->getZExtValue() == SplatIdx)
12752 BaseShAmt = InVec.getOperand(1);
12753 }
12754 }
12755 if (BaseShAmt.getNode() == 0)
12756 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12757 DAG.getIntPtrConstant(0));
12758 }
12759 }
12760
12761 if (BaseShAmt.getNode()) {
12762 if (EltVT.bitsGT(MVT::i32))
12763 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12764 else if (EltVT.bitsLT(MVT::i32))
12765 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12766
12767 switch (Op.getOpcode()) {
12768 default:
12769 llvm_unreachable("Unknown shift opcode!");
12770 case ISD::SHL:
12771 switch (VT.getSimpleVT().SimpleTy) {
12772 default: return SDValue();
12773 case MVT::v2i64:
12774 case MVT::v4i32:
12775 case MVT::v8i16:
12776 case MVT::v4i64:
12777 case MVT::v8i32:
12778 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012779 case MVT::v16i32:
12780 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012781 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12782 }
12783 case ISD::SRA:
12784 switch (VT.getSimpleVT().SimpleTy) {
12785 default: return SDValue();
12786 case MVT::v4i32:
12787 case MVT::v8i16:
12788 case MVT::v8i32:
12789 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012790 case MVT::v16i32:
12791 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012792 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12793 }
12794 case ISD::SRL:
12795 switch (VT.getSimpleVT().SimpleTy) {
12796 default: return SDValue();
12797 case MVT::v2i64:
12798 case MVT::v4i32:
12799 case MVT::v8i16:
12800 case MVT::v4i64:
12801 case MVT::v8i32:
12802 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012803 case MVT::v16i32:
12804 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012805 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12806 }
12807 }
12808 }
12809 }
12810
12811 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12812 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012813 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12814 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012815 Amt.getOpcode() == ISD::BITCAST &&
12816 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12817 Amt = Amt.getOperand(0);
12818 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12819 VT.getVectorNumElements();
12820 std::vector<SDValue> Vals(Ratio);
12821 for (unsigned i = 0; i != Ratio; ++i)
12822 Vals[i] = Amt.getOperand(i);
12823 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12824 for (unsigned j = 0; j != Ratio; ++j)
12825 if (Vals[j] != Amt.getOperand(i + j))
12826 return SDValue();
12827 }
12828 switch (Op.getOpcode()) {
12829 default:
12830 llvm_unreachable("Unknown shift opcode!");
12831 case ISD::SHL:
12832 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12833 case ISD::SRL:
12834 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12835 case ISD::SRA:
12836 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12837 }
12838 }
12839
Michael Liao4b7ab122013-03-20 02:20:36 +000012840 return SDValue();
12841}
12842
Craig Topper35e194f2013-08-14 07:53:41 +000012843static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12844 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012845
12846 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012847 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012848 SDValue R = Op.getOperand(0);
12849 SDValue Amt = Op.getOperand(1);
12850 SDValue V;
12851
12852 if (!Subtarget->hasSSE2())
12853 return SDValue();
12854
12855 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12856 if (V.getNode())
12857 return V;
12858
Michael Liao42317cc2013-03-20 02:33:21 +000012859 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12860 if (V.getNode())
12861 return V;
12862
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012863 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12864 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012865 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12866 if (Subtarget->hasInt256()) {
12867 if (Op.getOpcode() == ISD::SRL &&
12868 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12869 VT == MVT::v4i64 || VT == MVT::v8i32))
12870 return Op;
12871 if (Op.getOpcode() == ISD::SHL &&
12872 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12873 VT == MVT::v4i64 || VT == MVT::v8i32))
12874 return Op;
12875 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12876 return Op;
12877 }
12878
Nadav Rotem43012222011-05-11 08:12:09 +000012879 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012880 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012881 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012882
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012883 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012884 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012885 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12886 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12887 }
Nadav Rotem43012222011-05-11 08:12:09 +000012888 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012889 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012890
Nate Begeman51409212010-07-28 00:21:48 +000012891 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012892 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012893 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012894
Lang Hames8b99c1e2011-12-17 01:08:46 +000012895 // Turn 'a' into a mask suitable for VSELECT
12896 SDValue VSelM = DAG.getConstant(0x80, VT);
12897 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012898 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012899
Lang Hames8b99c1e2011-12-17 01:08:46 +000012900 SDValue CM1 = DAG.getConstant(0x0f, VT);
12901 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012902
Lang Hames8b99c1e2011-12-17 01:08:46 +000012903 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12904 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Lang Hames1d825372013-10-21 17:51:24 +000012905 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012906 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012907 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12908
Nate Begeman51409212010-07-28 00:21:48 +000012909 // a += a
12910 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012911 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012912 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012913
Lang Hames8b99c1e2011-12-17 01:08:46 +000012914 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12915 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Lang Hames1d825372013-10-21 17:51:24 +000012916 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012917 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012918 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12919
Nate Begeman51409212010-07-28 00:21:48 +000012920 // a += a
12921 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012922 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012923 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012924
Lang Hames8b99c1e2011-12-17 01:08:46 +000012925 // return VSELECT(r, r+r, a);
12926 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012927 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012928 return R;
12929 }
Craig Topper46154eb2011-11-11 07:39:23 +000012930
12931 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012932 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012933 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012934 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12935 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12936
12937 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012938 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12939 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012940
12941 // Recreate the shift amount vectors
12942 SDValue Amt1, Amt2;
12943 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12944 // Constant shift amount
12945 SmallVector<SDValue, 4> Amt1Csts;
12946 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012947 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012948 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012949 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012950 Amt2Csts.push_back(Amt->getOperand(i));
12951
12952 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12953 &Amt1Csts[0], NumElems/2);
12954 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12955 &Amt2Csts[0], NumElems/2);
12956 } else {
12957 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000012958 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12959 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012960 }
12961
12962 // Issue new vector shifts for the smaller types
12963 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12964 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12965
12966 // Concatenate the result back
12967 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12968 }
12969
Nate Begeman51409212010-07-28 00:21:48 +000012970 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012971}
Mon P Wangaf9b9522008-12-18 21:42:19 +000012972
Craig Topper55b24052012-09-11 06:15:32 +000012973static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000012974 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12975 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000012976 // looks for this combo and may remove the "setcc" instruction if the "setcc"
12977 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000012978 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000012979 SDValue LHS = N->getOperand(0);
12980 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000012981 unsigned BaseOp = 0;
12982 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000012983 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000012984 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012985 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000012986 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000012987 // A subtract of one will be selected as a INC. Note that INC doesn't
12988 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000012989 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12990 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000012991 BaseOp = X86ISD::INC;
12992 Cond = X86::COND_O;
12993 break;
12994 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012995 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000012996 Cond = X86::COND_O;
12997 break;
12998 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000012999 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000013000 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000013001 break;
13002 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000013003 // A subtract of one will be selected as a DEC. Note that DEC doesn't
13004 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000013005 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13006 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000013007 BaseOp = X86ISD::DEC;
13008 Cond = X86::COND_O;
13009 break;
13010 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013011 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000013012 Cond = X86::COND_O;
13013 break;
13014 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013015 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000013016 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000013017 break;
13018 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000013019 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000013020 Cond = X86::COND_O;
13021 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013022 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13023 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13024 MVT::i32);
13025 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013026
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013027 SDValue SetCC =
13028 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13029 DAG.getConstant(X86::COND_O, MVT::i32),
13030 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013031
Dan Gohman6e5fda22011-07-22 18:45:15 +000013032 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013033 }
Bill Wendling74c37652008-12-09 22:08:41 +000013034 }
Bill Wendling3fafd932008-11-26 22:37:40 +000013035
Bill Wendling61edeb52008-12-02 01:06:39 +000013036 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000013037 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013038 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000013039
Bill Wendling61edeb52008-12-02 01:06:39 +000013040 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013041 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13042 DAG.getConstant(Cond, MVT::i32),
13043 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000013044
Dan Gohman6e5fda22011-07-22 18:45:15 +000013045 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000013046}
13047
Chad Rosier30450e82011-12-22 22:35:21 +000013048SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13049 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013050 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000013051 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13052 EVT VT = Op.getValueType();
13053
Craig Toppered2e13d2012-01-22 19:15:14 +000013054 if (!Subtarget->hasSSE2() || !VT.isVector())
13055 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013056
Craig Toppered2e13d2012-01-22 19:15:14 +000013057 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13058 ExtraVT.getScalarType().getSizeInBits();
Craig Toppered2e13d2012-01-22 19:15:14 +000013059
13060 switch (VT.getSimpleVT().SimpleTy) {
13061 default: return SDValue();
13062 case MVT::v8i32:
13063 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013064 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013065 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013066 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000013067 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000013068 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000013069
Craig Toppered2e13d2012-01-22 19:15:14 +000013070 // Extract the LHS vectors
13071 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000013072 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13073 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000013074
Craig Toppered2e13d2012-01-22 19:15:14 +000013075 MVT EltVT = VT.getVectorElementType().getSimpleVT();
13076 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000013077
Craig Toppered2e13d2012-01-22 19:15:14 +000013078 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000013079 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000013080 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13081 ExtraNumElems/2);
13082 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000013083
Craig Toppered2e13d2012-01-22 19:15:14 +000013084 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13085 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000013086
Dmitri Gribenko2de05722012-09-10 21:26:47 +000013087 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000013088 }
13089 // fall through
13090 case MVT::v4i32:
13091 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000013092 // (sext (vzext x)) -> (vsext x)
13093 SDValue Op0 = Op.getOperand(0);
13094 SDValue Op00 = Op0.getOperand(0);
13095 SDValue Tmp1;
13096 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13097 if (Op0.getOpcode() == ISD::BITCAST &&
13098 Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
Craig Topper158ec072013-08-14 07:34:43 +000013099 Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
Nadav Rotemb05130e2013-03-19 18:38:27 +000013100 if (Tmp1.getNode()) {
13101 SDValue Tmp1Op0 = Tmp1.getOperand(0);
13102 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13103 "This optimization is invalid without a VZEXT.");
13104 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13105 }
13106
13107 // If the above didn't work, then just use Shift-Left + Shift-Right.
Lang Hames1d825372013-10-21 17:51:24 +000013108 Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13109 DAG);
13110 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13111 DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013112 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013113 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013114}
13115
Craig Topper55b24052012-09-11 06:15:32 +000013116static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13117 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013118 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013119 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13120 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13121 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13122 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13123
13124 // The only fence that needs an instruction is a sequentially-consistent
13125 // cross-thread fence.
13126 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13127 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13128 // no-sse2). There isn't any reason to disable it if the target processor
13129 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013130 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013131 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13132
13133 SDValue Chain = Op.getOperand(0);
13134 SDValue Zero = DAG.getConstant(0, MVT::i32);
13135 SDValue Ops[] = {
13136 DAG.getRegister(X86::ESP, MVT::i32), // Base
13137 DAG.getTargetConstant(1, MVT::i8), // Scale
13138 DAG.getRegister(0, MVT::i32), // Index
13139 DAG.getTargetConstant(0, MVT::i32), // Disp
13140 DAG.getRegister(0, MVT::i32), // Segment.
13141 Zero,
13142 Chain
13143 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013144 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013145 return SDValue(Res, 0);
13146 }
13147
13148 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13149 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13150}
13151
Craig Topper55b24052012-09-11 06:15:32 +000013152static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13153 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013154 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013155 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013156 unsigned Reg = 0;
13157 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013158 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013159 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013160 case MVT::i8: Reg = X86::AL; size = 1; break;
13161 case MVT::i16: Reg = X86::AX; size = 2; break;
13162 case MVT::i32: Reg = X86::EAX; size = 4; break;
13163 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013164 assert(Subtarget->is64Bit() && "Node not type legal!");
13165 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013166 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013167 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013168 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013169 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013170 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013171 Op.getOperand(1),
13172 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013173 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013174 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013175 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013176 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13177 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013178 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013179 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013180 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013181 return cpOut;
13182}
13183
Craig Topper55b24052012-09-11 06:15:32 +000013184static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13185 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013186 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013187 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013188 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013189 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013190 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013191 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13192 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013193 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013194 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13195 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013196 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013197 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013198 rdx.getValue(1)
13199 };
Michael Liao0ee17002013-04-19 04:03:37 +000013200 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013201}
13202
Craig Topper35e194f2013-08-14 07:53:41 +000013203static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13204 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013205 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13206 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013207 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013208 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013209 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013210 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013211 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013212 // i64 <=> MMX conversions are Legal.
13213 if (SrcVT==MVT::i64 && DstVT.isVector())
13214 return Op;
13215 if (DstVT==MVT::i64 && SrcVT.isVector())
13216 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013217 // MMX <=> MMX conversions are Legal.
13218 if (SrcVT.isVector() && DstVT.isVector())
13219 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013220 // All other conversions need to be expanded.
13221 return SDValue();
13222}
Chris Lattner5b856542010-12-20 00:59:46 +000013223
Craig Topper55b24052012-09-11 06:15:32 +000013224static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013225 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013226 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013227 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013228 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013229 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013230 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013231 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013232 Node->getOperand(0),
13233 Node->getOperand(1), negOp,
13234 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013235 cast<AtomicSDNode>(Node)->getAlignment(),
13236 cast<AtomicSDNode>(Node)->getOrdering(),
13237 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013238}
13239
Eli Friedman327236c2011-08-24 20:50:09 +000013240static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13241 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013242 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013243 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013244
13245 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013246 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13247 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13248 // (The only way to get a 16-byte store is cmpxchg16b)
13249 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13250 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13251 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013252 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13253 cast<AtomicSDNode>(Node)->getMemoryVT(),
13254 Node->getOperand(0),
13255 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013256 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013257 cast<AtomicSDNode>(Node)->getOrdering(),
13258 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013259 return Swap.getValue(1);
13260 }
13261 // Other atomic stores have a simple pattern.
13262 return Op;
13263}
13264
Chris Lattner5b856542010-12-20 00:59:46 +000013265static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13266 EVT VT = Op.getNode()->getValueType(0);
13267
13268 // Let legalize expand this if it isn't a legal type yet.
13269 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13270 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013271
Chris Lattner5b856542010-12-20 00:59:46 +000013272 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013273
Chris Lattner5b856542010-12-20 00:59:46 +000013274 unsigned Opc;
13275 bool ExtraOp = false;
13276 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013277 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013278 case ISD::ADDC: Opc = X86ISD::ADD; break;
13279 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13280 case ISD::SUBC: Opc = X86ISD::SUB; break;
13281 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13282 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013283
Chris Lattner5b856542010-12-20 00:59:46 +000013284 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013285 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013286 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000013287 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013288 Op.getOperand(1), Op.getOperand(2));
13289}
13290
Craig Topper35e194f2013-08-14 07:53:41 +000013291static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13292 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013293 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013294
Evan Cheng8688a582013-01-29 02:32:37 +000013295 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013296 // which returns the values as { float, float } (in XMM0) or
13297 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013298 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013299 SDValue Arg = Op.getOperand(0);
13300 EVT ArgVT = Arg.getValueType();
13301 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013302
Craig Topper35e194f2013-08-14 07:53:41 +000013303 TargetLowering::ArgListTy Args;
13304 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013305
Evan Cheng8688a582013-01-29 02:32:37 +000013306 Entry.Node = Arg;
13307 Entry.Ty = ArgTy;
13308 Entry.isSExt = false;
13309 Entry.isZExt = false;
13310 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013311
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013312 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013313 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13314 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13315 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013316 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013317 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13318 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013319
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013320 Type *RetTy = isF64
13321 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13322 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013323 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013324 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13325 false, false, false, false, 0,
13326 CallingConv::C, /*isTaillCall=*/false,
13327 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13328 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013329 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013330
13331 if (isF64)
13332 // Returned in xmm0 and xmm1.
13333 return CallResult.first;
13334
13335 // Returned in bits 0:31 and 32:64 xmm0.
13336 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13337 CallResult.first, DAG.getIntPtrConstant(0));
13338 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13339 CallResult.first, DAG.getIntPtrConstant(1));
13340 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13341 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013342}
13343
Evan Cheng0db9fe62006-04-25 20:13:52 +000013344/// LowerOperation - Provide custom lowering hooks for some operations.
13345///
Dan Gohmand858e902010-04-17 15:26:15 +000013346SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013347 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013348 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013349 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013350 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13351 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013352 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013353 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013354 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013355 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013356 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13357 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13358 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013359 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13360 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013361 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13362 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13363 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013364 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013365 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013366 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013367 case ISD::SHL_PARTS:
13368 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013369 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013370 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013371 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013372 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013373 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13374 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13375 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013376 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013377 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013378 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013379 case ISD::FABS: return LowerFABS(Op, DAG);
13380 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013381 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013382 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013383 case ISD::SETCC: return LowerSETCC(Op, DAG);
13384 case ISD::SELECT: return LowerSELECT(Op, DAG);
13385 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013386 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013387 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013388 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013389 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013390 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013391 case ISD::INTRINSIC_VOID:
13392 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013393 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13394 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013395 case ISD::FRAME_TO_ARGS_OFFSET:
13396 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013397 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013398 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013399 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13400 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013401 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13402 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013403 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013404 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013405 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013406 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013407 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013408 case ISD::SRA:
13409 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013410 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013411 case ISD::SADDO:
13412 case ISD::UADDO:
13413 case ISD::SSUBO:
13414 case ISD::USUBO:
13415 case ISD::SMULO:
13416 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013417 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013418 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013419 case ISD::ADDC:
13420 case ISD::ADDE:
13421 case ISD::SUBC:
13422 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013423 case ISD::ADD: return LowerADD(Op, DAG);
13424 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013425 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013426 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013427 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013428}
13429
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013430static void ReplaceATOMIC_LOAD(SDNode *Node,
13431 SmallVectorImpl<SDValue> &Results,
13432 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013433 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013434 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13435
13436 // Convert wide load -> cmpxchg8b/cmpxchg16b
13437 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13438 // (The only way to get a 16-byte load is cmpxchg16b)
13439 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013440 SDValue Zero = DAG.getConstant(0, VT);
13441 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013442 Node->getOperand(0),
13443 Node->getOperand(1), Zero, Zero,
13444 cast<AtomicSDNode>(Node)->getMemOperand(),
13445 cast<AtomicSDNode>(Node)->getOrdering(),
13446 cast<AtomicSDNode>(Node)->getSynchScope());
13447 Results.push_back(Swap.getValue(0));
13448 Results.push_back(Swap.getValue(1));
13449}
13450
Craig Topperc0878702012-08-17 06:55:11 +000013451static void
Duncan Sands1607f052008-12-01 11:39:25 +000013452ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013453 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013454 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013455 assert (Node->getValueType(0) == MVT::i64 &&
13456 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013457
13458 SDValue Chain = Node->getOperand(0);
13459 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013460 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013461 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013462 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013463 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013464 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013465 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013466 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013467 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013468 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013469 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013470 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013471 Results.push_back(Result.getValue(2));
13472}
13473
Duncan Sands126d9072008-07-04 11:47:58 +000013474/// ReplaceNodeResults - Replace a node with an illegal result type
13475/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013476void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13477 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013478 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013479 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013480 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013481 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013482 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013483 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013484 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013485 case ISD::ADDC:
13486 case ISD::ADDE:
13487 case ISD::SUBC:
13488 case ISD::SUBE:
13489 // We don't want to expand or promote these.
13490 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013491 case ISD::FP_TO_SINT:
13492 case ISD::FP_TO_UINT: {
13493 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13494
13495 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13496 return;
13497
Eli Friedman948e95a2009-05-23 09:59:16 +000013498 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013499 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013500 SDValue FIST = Vals.first, StackSlot = Vals.second;
13501 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013502 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013503 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013504 if (StackSlot.getNode() != 0)
13505 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13506 MachinePointerInfo(),
13507 false, false, false, 0));
13508 else
13509 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013510 }
13511 return;
13512 }
Michael Liao991b6a22012-10-24 04:09:32 +000013513 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013514 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13515 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013516 N->getValueType(0) != MVT::v2f32)
13517 return;
13518 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13519 N->getOperand(0));
13520 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13521 MVT::f64);
13522 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13523 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13524 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13525 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13526 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13527 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13528 return;
13529 }
Michael Liao44c2d612012-10-10 16:53:28 +000013530 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013531 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13532 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013533 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13534 Results.push_back(V);
13535 return;
13536 }
Duncan Sands1607f052008-12-01 11:39:25 +000013537 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013538 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013539 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013540 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013541 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013542 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013543 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013544 eax.getValue(2));
13545 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13546 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013547 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13548 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013549 Results.push_back(edx.getValue(1));
13550 return;
13551 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013552 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013553 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013554 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013555 bool Regs64bit = T == MVT::i128;
13556 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013557 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013558 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13559 DAG.getConstant(0, HalfT));
13560 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13561 DAG.getConstant(1, HalfT));
13562 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13563 Regs64bit ? X86::RAX : X86::EAX,
13564 cpInL, SDValue());
13565 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13566 Regs64bit ? X86::RDX : X86::EDX,
13567 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013568 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013569 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13570 DAG.getConstant(0, HalfT));
13571 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13572 DAG.getConstant(1, HalfT));
13573 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13574 Regs64bit ? X86::RBX : X86::EBX,
13575 swapInL, cpInH.getValue(1));
13576 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013577 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013578 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013579 SDValue Ops[] = { swapInH.getValue(0),
13580 N->getOperand(1),
13581 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013582 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013583 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013584 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13585 X86ISD::LCMPXCHG8_DAG;
13586 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013587 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013588 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13589 Regs64bit ? X86::RAX : X86::EAX,
13590 HalfT, Result.getValue(1));
13591 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13592 Regs64bit ? X86::RDX : X86::EDX,
13593 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013594 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013595 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013596 Results.push_back(cpOutH.getValue(1));
13597 return;
13598 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013599 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013600 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013601 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013602 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013603 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013604 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013605 case ISD::ATOMIC_LOAD_MAX:
13606 case ISD::ATOMIC_LOAD_MIN:
13607 case ISD::ATOMIC_LOAD_UMAX:
13608 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013609 case ISD::ATOMIC_SWAP: {
13610 unsigned Opc;
13611 switch (N->getOpcode()) {
13612 default: llvm_unreachable("Unexpected opcode");
13613 case ISD::ATOMIC_LOAD_ADD:
13614 Opc = X86ISD::ATOMADD64_DAG;
13615 break;
13616 case ISD::ATOMIC_LOAD_AND:
13617 Opc = X86ISD::ATOMAND64_DAG;
13618 break;
13619 case ISD::ATOMIC_LOAD_NAND:
13620 Opc = X86ISD::ATOMNAND64_DAG;
13621 break;
13622 case ISD::ATOMIC_LOAD_OR:
13623 Opc = X86ISD::ATOMOR64_DAG;
13624 break;
13625 case ISD::ATOMIC_LOAD_SUB:
13626 Opc = X86ISD::ATOMSUB64_DAG;
13627 break;
13628 case ISD::ATOMIC_LOAD_XOR:
13629 Opc = X86ISD::ATOMXOR64_DAG;
13630 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013631 case ISD::ATOMIC_LOAD_MAX:
13632 Opc = X86ISD::ATOMMAX64_DAG;
13633 break;
13634 case ISD::ATOMIC_LOAD_MIN:
13635 Opc = X86ISD::ATOMMIN64_DAG;
13636 break;
13637 case ISD::ATOMIC_LOAD_UMAX:
13638 Opc = X86ISD::ATOMUMAX64_DAG;
13639 break;
13640 case ISD::ATOMIC_LOAD_UMIN:
13641 Opc = X86ISD::ATOMUMIN64_DAG;
13642 break;
Craig Topperc0878702012-08-17 06:55:11 +000013643 case ISD::ATOMIC_SWAP:
13644 Opc = X86ISD::ATOMSWAP64_DAG;
13645 break;
13646 }
13647 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013648 return;
Craig Topperc0878702012-08-17 06:55:11 +000013649 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013650 case ISD::ATOMIC_LOAD:
13651 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013652 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013653}
13654
Evan Cheng72261582005-12-20 06:22:03 +000013655const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13656 switch (Opcode) {
13657 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013658 case X86ISD::BSF: return "X86ISD::BSF";
13659 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013660 case X86ISD::SHLD: return "X86ISD::SHLD";
13661 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013662 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013663 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013664 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013665 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013666 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013667 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013668 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013669 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13670 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13671 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013672 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013673 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013674 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013675 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013676 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013677 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013678 case X86ISD::COMI: return "X86ISD::COMI";
13679 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013680 case X86ISD::CMPM: return "X86ISD::CMPM";
13681 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013682 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013683 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013684 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13685 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013686 case X86ISD::CMOV: return "X86ISD::CMOV";
13687 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013688 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013689 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13690 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013691 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013692 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013693 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013694 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013695 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013696 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13697 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013698 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013699 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013700 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013701 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013702 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013703 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013704 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013705 case X86ISD::HADD: return "X86ISD::HADD";
13706 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013707 case X86ISD::FHADD: return "X86ISD::FHADD";
13708 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013709 case X86ISD::UMAX: return "X86ISD::UMAX";
13710 case X86ISD::UMIN: return "X86ISD::UMIN";
13711 case X86ISD::SMAX: return "X86ISD::SMAX";
13712 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013713 case X86ISD::FMAX: return "X86ISD::FMAX";
13714 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013715 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13716 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013717 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13718 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013719 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013720 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013721 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013722 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13723 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013724 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013725 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013726 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013727 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013728 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13729 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013730 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13731 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13732 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13733 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13734 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13735 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013736 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013737 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013738 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013739 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13740 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013741 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13742 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +000013743 case X86ISD::VINSERT: return "X86ISD::VINSERT";
Michael Liao7091b242012-08-14 21:24:47 +000013744 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013745 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013746 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13747 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013748 case X86ISD::VSHL: return "X86ISD::VSHL";
13749 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013750 case X86ISD::VSRA: return "X86ISD::VSRA";
13751 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13752 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13753 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013754 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013755 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13756 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013757 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13758 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013759 case X86ISD::ADD: return "X86ISD::ADD";
13760 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013761 case X86ISD::ADC: return "X86ISD::ADC";
13762 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013763 case X86ISD::SMUL: return "X86ISD::SMUL";
13764 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013765 case X86ISD::INC: return "X86ISD::INC";
13766 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013767 case X86ISD::OR: return "X86ISD::OR";
13768 case X86ISD::XOR: return "X86ISD::XOR";
13769 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013770 case X86ISD::BLSI: return "X86ISD::BLSI";
13771 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13772 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013773 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013774 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013775 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013776 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013777 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013778 case X86ISD::TESTM: return "X86ISD::TESTM";
13779 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13780 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013781 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013782 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13783 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013784 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013785 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013786 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013787 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013788 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013789 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13790 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013791 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13792 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13793 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013794 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13795 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013796 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13797 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013798 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013799 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013800 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013801 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013802 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013803 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013804 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013805 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013806 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013807 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013808 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013809 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013810 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013811 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013812 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013813 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013814 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013815 case X86ISD::FMADD: return "X86ISD::FMADD";
13816 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13817 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13818 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13819 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13820 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013821 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13822 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013823 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013824 }
13825}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013826
Chris Lattnerc9addb72007-03-30 23:15:24 +000013827// isLegalAddressingMode - Return true if the addressing mode represented
13828// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013829bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013830 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013831 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013832 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013833 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013834
Chris Lattnerc9addb72007-03-30 23:15:24 +000013835 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013836 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013837 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013838
Chris Lattnerc9addb72007-03-30 23:15:24 +000013839 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013840 unsigned GVFlags =
13841 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013842
Chris Lattnerdfed4132009-07-10 07:38:24 +000013843 // If a reference to this global requires an extra load, we can't fold it.
13844 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013845 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013846
Chris Lattnerdfed4132009-07-10 07:38:24 +000013847 // If BaseGV requires a register for the PIC base, we cannot also have a
13848 // BaseReg specified.
13849 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013850 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013851
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013852 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013853 if ((M != CodeModel::Small || R != Reloc::Static) &&
13854 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013855 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013856 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013857
Chris Lattnerc9addb72007-03-30 23:15:24 +000013858 switch (AM.Scale) {
13859 case 0:
13860 case 1:
13861 case 2:
13862 case 4:
13863 case 8:
13864 // These scales always work.
13865 break;
13866 case 3:
13867 case 5:
13868 case 9:
13869 // These scales are formed with basereg+scalereg. Only accept if there is
13870 // no basereg yet.
13871 if (AM.HasBaseReg)
13872 return false;
13873 break;
13874 default: // Other stuff never works.
13875 return false;
13876 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013877
Chris Lattnerc9addb72007-03-30 23:15:24 +000013878 return true;
13879}
13880
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013881bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013882 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013883 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013884 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13885 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013886 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013887}
13888
Tim Northoverd1134482013-08-06 09:12:35 +000013889bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13890 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13891 return false;
13892
13893 if (!isTypeLegal(EVT::getEVT(Ty1)))
13894 return false;
13895
13896 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13897
13898 // Assuming the caller doesn't have a zeroext or signext return parameter,
13899 // truncation all the way down to i1 is valid.
13900 return true;
13901}
13902
Evan Cheng70e10d32012-07-17 06:53:39 +000013903bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013904 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013905}
13906
13907bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013908 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013909 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013910}
13911
Owen Andersone50ed302009-08-10 22:56:29 +000013912bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013913 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013914 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013915 unsigned NumBits1 = VT1.getSizeInBits();
13916 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013917 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013918}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013919
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013920bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013921 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013922 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013923}
13924
Owen Andersone50ed302009-08-10 22:56:29 +000013925bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013926 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013927 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013928}
13929
Evan Cheng2766a472012-12-06 19:13:27 +000013930bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13931 EVT VT1 = Val.getValueType();
13932 if (isZExtFree(VT1, VT2))
13933 return true;
13934
13935 if (Val.getOpcode() != ISD::LOAD)
13936 return false;
13937
13938 if (!VT1.isSimple() || !VT1.isInteger() ||
13939 !VT2.isSimple() || !VT2.isInteger())
13940 return false;
13941
13942 switch (VT1.getSimpleVT().SimpleTy) {
13943 default: break;
13944 case MVT::i8:
13945 case MVT::i16:
13946 case MVT::i32:
13947 // X86 has 8, 16, and 32-bit zero-extending loads.
13948 return true;
13949 }
13950
13951 return false;
13952}
13953
Stephen Line54885a2013-07-09 18:16:56 +000013954bool
13955X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13956 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13957 return false;
13958
13959 VT = VT.getScalarType();
13960
13961 if (!VT.isSimple())
13962 return false;
13963
13964 switch (VT.getSimpleVT().SimpleTy) {
13965 case MVT::f32:
13966 case MVT::f64:
13967 return true;
13968 default:
13969 break;
13970 }
13971
13972 return false;
13973}
13974
Owen Andersone50ed302009-08-10 22:56:29 +000013975bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000013976 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000013977 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000013978}
13979
Evan Cheng60c07e12006-07-05 22:17:51 +000013980/// isShuffleMaskLegal - Targets can use this to indicate that they only
13981/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13982/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13983/// are assumed to be legal.
13984bool
Eric Christopherfd179292009-08-27 18:07:15 +000013985X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000013986 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000013987 if (!VT.isSimple())
13988 return false;
13989
13990 MVT SVT = VT.getSimpleVT();
13991
Eric Christophercff6f852010-04-15 01:40:20 +000013992 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000013993 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000013994 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000013995
Nate Begemana09008b2009-10-19 02:17:23 +000013996 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000013997 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000013998 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000013999 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000014000 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000014001 isPSHUFDMask(M, SVT) ||
14002 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14003 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14004 isPALIGNRMask(M, SVT, Subtarget) ||
14005 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14006 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14007 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14008 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000014009}
14010
Dan Gohman7d8143f2008-04-09 20:09:42 +000014011bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000014012X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000014013 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000014014 if (!VT.isSimple())
14015 return false;
14016
14017 MVT SVT = VT.getSimpleVT();
14018 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000014019 // FIXME: This collection of masks seems suspect.
14020 if (NumElts == 2)
14021 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000014022 if (NumElts == 4 && SVT.is128BitVector()) {
14023 return (isMOVLMask(Mask, SVT) ||
14024 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000014025 isSHUFPMask(Mask, SVT) ||
14026 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000014027 }
14028 return false;
14029}
14030
14031//===----------------------------------------------------------------------===//
14032// X86 Scheduler Hooks
14033//===----------------------------------------------------------------------===//
14034
Michael Liaobe02a902012-11-08 07:28:54 +000014035/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000014036static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14037 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000014038 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000014039
14040 const BasicBlock *BB = MBB->getBasicBlock();
14041 MachineFunction::iterator I = MBB;
14042 ++I;
14043
14044 // For the v = xbegin(), we generate
14045 //
14046 // thisMBB:
14047 // xbegin sinkMBB
14048 //
14049 // mainMBB:
14050 // eax = -1
14051 //
14052 // sinkMBB:
14053 // v = eax
14054
14055 MachineBasicBlock *thisMBB = MBB;
14056 MachineFunction *MF = MBB->getParent();
14057 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14058 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14059 MF->insert(I, mainMBB);
14060 MF->insert(I, sinkMBB);
14061
14062 // Transfer the remainder of BB and its successor edges to sinkMBB.
14063 sinkMBB->splice(sinkMBB->begin(), MBB,
14064 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14065 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14066
14067 // thisMBB:
14068 // xbegin sinkMBB
14069 // # fallthrough to mainMBB
14070 // # abortion to sinkMBB
14071 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14072 thisMBB->addSuccessor(mainMBB);
14073 thisMBB->addSuccessor(sinkMBB);
14074
14075 // mainMBB:
14076 // EAX = -1
14077 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14078 mainMBB->addSuccessor(sinkMBB);
14079
14080 // sinkMBB:
14081 // EAX is live into the sinkMBB
14082 sinkMBB->addLiveIn(X86::EAX);
14083 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14084 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14085 .addReg(X86::EAX);
14086
14087 MI->eraseFromParent();
14088 return sinkMBB;
14089}
14090
Michael Liaob118a072012-09-20 03:06:15 +000014091// Get CMPXCHG opcode for the specified data type.
14092static unsigned getCmpXChgOpcode(EVT VT) {
14093 switch (VT.getSimpleVT().SimpleTy) {
14094 case MVT::i8: return X86::LCMPXCHG8;
14095 case MVT::i16: return X86::LCMPXCHG16;
14096 case MVT::i32: return X86::LCMPXCHG32;
14097 case MVT::i64: return X86::LCMPXCHG64;
14098 default:
14099 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014100 }
Michael Liaob118a072012-09-20 03:06:15 +000014101 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014102}
14103
Michael Liaob118a072012-09-20 03:06:15 +000014104// Get LOAD opcode for the specified data type.
14105static unsigned getLoadOpcode(EVT VT) {
14106 switch (VT.getSimpleVT().SimpleTy) {
14107 case MVT::i8: return X86::MOV8rm;
14108 case MVT::i16: return X86::MOV16rm;
14109 case MVT::i32: return X86::MOV32rm;
14110 case MVT::i64: return X86::MOV64rm;
14111 default:
14112 break;
14113 }
14114 llvm_unreachable("Invalid operand size!");
14115}
14116
14117// Get opcode of the non-atomic one from the specified atomic instruction.
14118static unsigned getNonAtomicOpcode(unsigned Opc) {
14119 switch (Opc) {
14120 case X86::ATOMAND8: return X86::AND8rr;
14121 case X86::ATOMAND16: return X86::AND16rr;
14122 case X86::ATOMAND32: return X86::AND32rr;
14123 case X86::ATOMAND64: return X86::AND64rr;
14124 case X86::ATOMOR8: return X86::OR8rr;
14125 case X86::ATOMOR16: return X86::OR16rr;
14126 case X86::ATOMOR32: return X86::OR32rr;
14127 case X86::ATOMOR64: return X86::OR64rr;
14128 case X86::ATOMXOR8: return X86::XOR8rr;
14129 case X86::ATOMXOR16: return X86::XOR16rr;
14130 case X86::ATOMXOR32: return X86::XOR32rr;
14131 case X86::ATOMXOR64: return X86::XOR64rr;
14132 }
14133 llvm_unreachable("Unhandled atomic-load-op opcode!");
14134}
14135
14136// Get opcode of the non-atomic one from the specified atomic instruction with
14137// extra opcode.
14138static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14139 unsigned &ExtraOpc) {
14140 switch (Opc) {
14141 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14142 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14143 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14144 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014145 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014146 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14147 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14148 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014149 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014150 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14151 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14152 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014153 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014154 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14155 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14156 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014157 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014158 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14159 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14160 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14161 }
14162 llvm_unreachable("Unhandled atomic-load-op opcode!");
14163}
14164
14165// Get opcode of the non-atomic one from the specified atomic instruction for
14166// 64-bit data type on 32-bit target.
14167static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14168 switch (Opc) {
14169 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14170 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14171 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14172 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14173 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14174 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014175 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14176 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14177 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14178 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014179 }
14180 llvm_unreachable("Unhandled atomic-load-op opcode!");
14181}
14182
14183// Get opcode of the non-atomic one from the specified atomic instruction for
14184// 64-bit data type on 32-bit target with extra opcode.
14185static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14186 unsigned &HiOpc,
14187 unsigned &ExtraOpc) {
14188 switch (Opc) {
14189 case X86::ATOMNAND6432:
14190 ExtraOpc = X86::NOT32r;
14191 HiOpc = X86::AND32rr;
14192 return X86::AND32rr;
14193 }
14194 llvm_unreachable("Unhandled atomic-load-op opcode!");
14195}
14196
14197// Get pseudo CMOV opcode from the specified data type.
14198static unsigned getPseudoCMOVOpc(EVT VT) {
14199 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014200 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014201 case MVT::i16: return X86::CMOV_GR16;
14202 case MVT::i32: return X86::CMOV_GR32;
14203 default:
14204 break;
14205 }
14206 llvm_unreachable("Unknown CMOV opcode!");
14207}
14208
14209// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14210// They will be translated into a spin-loop or compare-exchange loop from
14211//
14212// ...
14213// dst = atomic-fetch-op MI.addr, MI.val
14214// ...
14215//
14216// to
14217//
14218// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014219// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014220// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014221// t4 = phi(t1, t3 / loop)
14222// t2 = OP MI.val, t4
14223// EAX = t4
14224// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14225// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014226// JNE loop
14227// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014228// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014229// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014230MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014231X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14232 MachineBasicBlock *MBB) const {
14233 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14234 DebugLoc DL = MI->getDebugLoc();
14235
14236 MachineFunction *MF = MBB->getParent();
14237 MachineRegisterInfo &MRI = MF->getRegInfo();
14238
14239 const BasicBlock *BB = MBB->getBasicBlock();
14240 MachineFunction::iterator I = MBB;
14241 ++I;
14242
Michael Liao13d08bf2013-01-22 21:47:38 +000014243 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014244 "Unexpected number of operands");
14245
14246 assert(MI->hasOneMemOperand() &&
14247 "Expected atomic-load-op to have one memoperand");
14248
14249 // Memory Reference
14250 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14251 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14252
14253 unsigned DstReg, SrcReg;
14254 unsigned MemOpndSlot;
14255
14256 unsigned CurOp = 0;
14257
14258 DstReg = MI->getOperand(CurOp++).getReg();
14259 MemOpndSlot = CurOp;
14260 CurOp += X86::AddrNumOperands;
14261 SrcReg = MI->getOperand(CurOp++).getReg();
14262
14263 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014264 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014265 unsigned t1 = MRI.createVirtualRegister(RC);
14266 unsigned t2 = MRI.createVirtualRegister(RC);
14267 unsigned t3 = MRI.createVirtualRegister(RC);
14268 unsigned t4 = MRI.createVirtualRegister(RC);
14269 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014270
14271 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14272 unsigned LOADOpc = getLoadOpcode(VT);
14273
14274 // For the atomic load-arith operator, we generate
14275 //
14276 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014277 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014278 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014279 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014280 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014281 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014282 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014283 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014284 // JNE mainMBB
14285 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014286 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014287
14288 MachineBasicBlock *thisMBB = MBB;
14289 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14290 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14291 MF->insert(I, mainMBB);
14292 MF->insert(I, sinkMBB);
14293
14294 MachineInstrBuilder MIB;
14295
14296 // Transfer the remainder of BB and its successor edges to sinkMBB.
14297 sinkMBB->splice(sinkMBB->begin(), MBB,
14298 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14299 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14300
14301 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014302 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14303 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14304 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14305 if (NewMO.isReg())
14306 NewMO.setIsKill(false);
14307 MIB.addOperand(NewMO);
14308 }
14309 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14310 unsigned flags = (*MMOI)->getFlags();
14311 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14312 MachineMemOperand *MMO =
14313 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14314 (*MMOI)->getSize(),
14315 (*MMOI)->getBaseAlignment(),
14316 (*MMOI)->getTBAAInfo(),
14317 (*MMOI)->getRanges());
14318 MIB.addMemOperand(MMO);
14319 }
Michael Liaob118a072012-09-20 03:06:15 +000014320
14321 thisMBB->addSuccessor(mainMBB);
14322
14323 // mainMBB:
14324 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014325
Michael Liaoc537f792013-03-06 00:17:04 +000014326 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014327 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14328 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014329
Michael Liaob118a072012-09-20 03:06:15 +000014330 unsigned Opc = MI->getOpcode();
14331 switch (Opc) {
14332 default:
14333 llvm_unreachable("Unhandled atomic-load-op opcode!");
14334 case X86::ATOMAND8:
14335 case X86::ATOMAND16:
14336 case X86::ATOMAND32:
14337 case X86::ATOMAND64:
14338 case X86::ATOMOR8:
14339 case X86::ATOMOR16:
14340 case X86::ATOMOR32:
14341 case X86::ATOMOR64:
14342 case X86::ATOMXOR8:
14343 case X86::ATOMXOR16:
14344 case X86::ATOMXOR32:
14345 case X86::ATOMXOR64: {
14346 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014347 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14348 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014349 break;
14350 }
14351 case X86::ATOMNAND8:
14352 case X86::ATOMNAND16:
14353 case X86::ATOMNAND32:
14354 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014355 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014356 unsigned NOTOpc;
14357 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014358 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14359 .addReg(t4);
14360 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014361 break;
14362 }
Michael Liao08382492012-09-21 03:00:17 +000014363 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014364 case X86::ATOMMAX16:
14365 case X86::ATOMMAX32:
14366 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014367 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014368 case X86::ATOMMIN16:
14369 case X86::ATOMMIN32:
14370 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014371 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014372 case X86::ATOMUMAX16:
14373 case X86::ATOMUMAX32:
14374 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014375 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014376 case X86::ATOMUMIN16:
14377 case X86::ATOMUMIN32:
14378 case X86::ATOMUMIN64: {
14379 unsigned CMPOpc;
14380 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14381
14382 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14383 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014384 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014385
14386 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014387 if (VT != MVT::i8) {
14388 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014389 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014390 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014391 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014392 } else {
14393 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014394 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14395 const TargetRegisterClass *RC32 =
14396 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014397 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14398 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014399 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014400
14401 unsigned Undef = MRI.createVirtualRegister(RC32);
14402 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14403
14404 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14405 .addReg(Undef)
14406 .addReg(SrcReg)
14407 .addImm(X86::sub_8bit);
14408 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14409 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014410 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014411 .addImm(X86::sub_8bit);
14412
Michael Liaoc537f792013-03-06 00:17:04 +000014413 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014414 .addReg(SrcReg32)
14415 .addReg(AccReg32);
14416
Michael Liaoc537f792013-03-06 00:17:04 +000014417 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14418 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014419 }
Michael Liaob118a072012-09-20 03:06:15 +000014420 } else {
14421 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014422 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014423 "Invalid atomic-load-op transformation!");
14424 unsigned SelOpc = getPseudoCMOVOpc(VT);
14425 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14426 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014427 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14428 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014429 .addImm(CC);
14430 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014431 // Replace the original PHI node as mainMBB is changed after CMOV
14432 // lowering.
14433 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14434 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14435 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014436 }
14437 break;
14438 }
14439 }
14440
Michael Liaoc537f792013-03-06 00:17:04 +000014441 // Copy PhyReg back from virtual register.
14442 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14443 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014444
14445 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014446 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14447 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14448 if (NewMO.isReg())
14449 NewMO.setIsKill(false);
14450 MIB.addOperand(NewMO);
14451 }
14452 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014453 MIB.setMemRefs(MMOBegin, MMOEnd);
14454
Michael Liaoc537f792013-03-06 00:17:04 +000014455 // Copy PhyReg back to virtual register.
14456 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14457 .addReg(PhyReg);
14458
Michael Liaob118a072012-09-20 03:06:15 +000014459 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14460
14461 mainMBB->addSuccessor(origMainMBB);
14462 mainMBB->addSuccessor(sinkMBB);
14463
14464 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014465 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14466 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014467 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014468
14469 MI->eraseFromParent();
14470 return sinkMBB;
14471}
14472
14473// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14474// instructions. They will be translated into a spin-loop or compare-exchange
14475// loop from
14476//
14477// ...
14478// dst = atomic-fetch-op MI.addr, MI.val
14479// ...
14480//
14481// to
14482//
14483// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014484// t1L = LOAD [MI.addr + 0]
14485// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014486// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014487// t4L = phi(t1L, t3L / loop)
14488// t4H = phi(t1H, t3H / loop)
14489// t2L = OP MI.val.lo, t4L
14490// t2H = OP MI.val.hi, t4H
14491// EAX = t4L
14492// EDX = t4H
14493// EBX = t2L
14494// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014495// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014496// t3L = EAX
14497// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014498// JNE loop
14499// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014500// dstL = t3L
14501// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014502// ...
14503MachineBasicBlock *
14504X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14505 MachineBasicBlock *MBB) const {
14506 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14507 DebugLoc DL = MI->getDebugLoc();
14508
14509 MachineFunction *MF = MBB->getParent();
14510 MachineRegisterInfo &MRI = MF->getRegInfo();
14511
14512 const BasicBlock *BB = MBB->getBasicBlock();
14513 MachineFunction::iterator I = MBB;
14514 ++I;
14515
Michael Liao13d08bf2013-01-22 21:47:38 +000014516 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014517 "Unexpected number of operands");
14518
14519 assert(MI->hasOneMemOperand() &&
14520 "Expected atomic-load-op32 to have one memoperand");
14521
14522 // Memory Reference
14523 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14524 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14525
14526 unsigned DstLoReg, DstHiReg;
14527 unsigned SrcLoReg, SrcHiReg;
14528 unsigned MemOpndSlot;
14529
14530 unsigned CurOp = 0;
14531
14532 DstLoReg = MI->getOperand(CurOp++).getReg();
14533 DstHiReg = MI->getOperand(CurOp++).getReg();
14534 MemOpndSlot = CurOp;
14535 CurOp += X86::AddrNumOperands;
14536 SrcLoReg = MI->getOperand(CurOp++).getReg();
14537 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014538
Craig Topperc9099502012-04-20 06:31:50 +000014539 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014540 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014541
Michael Liaoc537f792013-03-06 00:17:04 +000014542 unsigned t1L = MRI.createVirtualRegister(RC);
14543 unsigned t1H = MRI.createVirtualRegister(RC);
14544 unsigned t2L = MRI.createVirtualRegister(RC);
14545 unsigned t2H = MRI.createVirtualRegister(RC);
14546 unsigned t3L = MRI.createVirtualRegister(RC);
14547 unsigned t3H = MRI.createVirtualRegister(RC);
14548 unsigned t4L = MRI.createVirtualRegister(RC);
14549 unsigned t4H = MRI.createVirtualRegister(RC);
14550
Michael Liaob118a072012-09-20 03:06:15 +000014551 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14552 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014553
Michael Liaob118a072012-09-20 03:06:15 +000014554 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014555 //
Michael Liaob118a072012-09-20 03:06:15 +000014556 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014557 // t1L = LOAD [MI.addr + 0]
14558 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014559 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014560 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14561 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14562 // t2L = OP MI.val.lo, t4L
14563 // t2H = OP MI.val.hi, t4H
14564 // EBX = t2L
14565 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014566 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014567 // t3L = EAX
14568 // t3H = EDX
14569 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014570 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014571 // dstL = t3L
14572 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014573
Mon P Wang63307c32008-05-05 19:05:59 +000014574 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014575 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14576 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14577 MF->insert(I, mainMBB);
14578 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014579
Michael Liaob118a072012-09-20 03:06:15 +000014580 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014581
Michael Liaob118a072012-09-20 03:06:15 +000014582 // Transfer the remainder of BB and its successor edges to sinkMBB.
14583 sinkMBB->splice(sinkMBB->begin(), MBB,
14584 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14585 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014586
Michael Liaob118a072012-09-20 03:06:15 +000014587 // thisMBB:
14588 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014589 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014590 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014591 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14592 if (NewMO.isReg())
14593 NewMO.setIsKill(false);
14594 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014595 }
Michael Liaoc537f792013-03-06 00:17:04 +000014596 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14597 unsigned flags = (*MMOI)->getFlags();
14598 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14599 MachineMemOperand *MMO =
14600 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14601 (*MMOI)->getSize(),
14602 (*MMOI)->getBaseAlignment(),
14603 (*MMOI)->getTBAAInfo(),
14604 (*MMOI)->getRanges());
14605 MIB.addMemOperand(MMO);
14606 };
14607 MachineInstr *LowMI = MIB;
14608
14609 // Hi
14610 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14611 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14612 if (i == X86::AddrDisp) {
14613 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14614 } else {
14615 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14616 if (NewMO.isReg())
14617 NewMO.setIsKill(false);
14618 MIB.addOperand(NewMO);
14619 }
14620 }
14621 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014622
Michael Liaob118a072012-09-20 03:06:15 +000014623 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014624
Michael Liaob118a072012-09-20 03:06:15 +000014625 // mainMBB:
14626 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014627
Michael Liaoc537f792013-03-06 00:17:04 +000014628 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014629 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14630 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14631 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14632 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014633
Michael Liaob118a072012-09-20 03:06:15 +000014634 unsigned Opc = MI->getOpcode();
14635 switch (Opc) {
14636 default:
14637 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14638 case X86::ATOMAND6432:
14639 case X86::ATOMOR6432:
14640 case X86::ATOMXOR6432:
14641 case X86::ATOMADD6432:
14642 case X86::ATOMSUB6432: {
14643 unsigned HiOpc;
14644 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014645 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14646 .addReg(SrcLoReg);
14647 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14648 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014649 break;
14650 }
14651 case X86::ATOMNAND6432: {
14652 unsigned HiOpc, NOTOpc;
14653 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014654 unsigned TmpL = MRI.createVirtualRegister(RC);
14655 unsigned TmpH = MRI.createVirtualRegister(RC);
14656 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14657 .addReg(t4L);
14658 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14659 .addReg(t4H);
14660 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14661 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014662 break;
14663 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014664 case X86::ATOMMAX6432:
14665 case X86::ATOMMIN6432:
14666 case X86::ATOMUMAX6432:
14667 case X86::ATOMUMIN6432: {
14668 unsigned HiOpc;
14669 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14670 unsigned cL = MRI.createVirtualRegister(RC8);
14671 unsigned cH = MRI.createVirtualRegister(RC8);
14672 unsigned cL32 = MRI.createVirtualRegister(RC);
14673 unsigned cH32 = MRI.createVirtualRegister(RC);
14674 unsigned cc = MRI.createVirtualRegister(RC);
14675 // cl := cmp src_lo, lo
14676 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014677 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014678 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14679 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14680 // ch := cmp src_hi, hi
14681 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014682 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014683 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14684 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14685 // cc := if (src_hi == hi) ? cl : ch;
14686 if (Subtarget->hasCMov()) {
14687 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14688 .addReg(cH32).addReg(cL32);
14689 } else {
14690 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14691 .addReg(cH32).addReg(cL32)
14692 .addImm(X86::COND_E);
14693 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14694 }
14695 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14696 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014697 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14698 .addReg(SrcLoReg).addReg(t4L);
14699 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14700 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014701 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014702 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14703 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014704 .addImm(X86::COND_NE);
14705 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014706 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14707 // 2nd CMOV lowering.
14708 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014709 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14710 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014711 .addImm(X86::COND_NE);
14712 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014713 // Replace the original PHI node as mainMBB is changed after CMOV
14714 // lowering.
14715 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14716 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14717 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14718 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14719 PhiL->eraseFromParent();
14720 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014721 }
14722 break;
14723 }
Michael Liaob118a072012-09-20 03:06:15 +000014724 case X86::ATOMSWAP6432: {
14725 unsigned HiOpc;
14726 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014727 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14728 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014729 break;
14730 }
14731 }
Mon P Wang63307c32008-05-05 19:05:59 +000014732
Michael Liaob118a072012-09-20 03:06:15 +000014733 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014734 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14735 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014736 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014737 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14738 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014739
Michael Liaob118a072012-09-20 03:06:15 +000014740 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014741 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14742 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14743 if (NewMO.isReg())
14744 NewMO.setIsKill(false);
14745 MIB.addOperand(NewMO);
14746 }
Michael Liaob118a072012-09-20 03:06:15 +000014747 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014748
Michael Liaoc537f792013-03-06 00:17:04 +000014749 // Copy EDX:EAX back to t3H:t3L
14750 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14751 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14752
Michael Liaob118a072012-09-20 03:06:15 +000014753 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014754
Michael Liaob118a072012-09-20 03:06:15 +000014755 mainMBB->addSuccessor(origMainMBB);
14756 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014757
Michael Liaob118a072012-09-20 03:06:15 +000014758 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014759 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14760 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014761 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014762 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14763 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014764 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014765
Michael Liaob118a072012-09-20 03:06:15 +000014766 MI->eraseFromParent();
14767 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014768}
14769
Eric Christopherf83a5de2009-08-27 18:08:16 +000014770// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014771// or XMM0_V32I8 in AVX all of this code can be replaced with that
14772// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014773static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14774 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014775 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014776 switch (MI->getOpcode()) {
14777 default: llvm_unreachable("illegal opcode!");
14778 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14779 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14780 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14781 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14782 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14783 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14784 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14785 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014786 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014787
Craig Topper8aae8dd2012-11-10 08:57:41 +000014788 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014789 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014790
Craig Topper52ea2452012-11-10 09:25:36 +000014791 unsigned NumArgs = MI->getNumOperands();
14792 for (unsigned i = 1; i < NumArgs; ++i) {
14793 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014794 if (!(Op.isReg() && Op.isImplicit()))
14795 MIB.addOperand(Op);
14796 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014797 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014798 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14799
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014800 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014801 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014802 .addReg(X86::XMM0);
14803
Dan Gohman14152b42010-07-06 20:24:04 +000014804 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014805 return BB;
14806}
14807
Craig Topper9c7ae012012-11-10 01:23:36 +000014808// FIXME: Custom handling because TableGen doesn't support multiple implicit
14809// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014810static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14811 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014812 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014813 switch (MI->getOpcode()) {
14814 default: llvm_unreachable("illegal opcode!");
14815 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14816 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14817 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14818 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14819 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14820 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14821 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14822 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014823 }
14824
Craig Topper8aae8dd2012-11-10 08:57:41 +000014825 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014826 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014827
Craig Topper52ea2452012-11-10 09:25:36 +000014828 unsigned NumArgs = MI->getNumOperands(); // remove the results
14829 for (unsigned i = 1; i < NumArgs; ++i) {
14830 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014831 if (!(Op.isReg() && Op.isImplicit()))
14832 MIB.addOperand(Op);
14833 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014834 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014835 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14836
14837 BuildMI(*BB, MI, dl,
14838 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14839 .addReg(X86::ECX);
14840
14841 MI->eraseFromParent();
14842 return BB;
14843}
14844
Craig Topper2da36912012-11-11 22:45:02 +000014845static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14846 const TargetInstrInfo *TII,
14847 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014848 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014849
Eric Christopher228232b2010-11-30 07:20:12 +000014850 // Address into RAX/EAX, other two args into ECX, EDX.
14851 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14852 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14853 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14854 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014855 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014856
Eric Christopher228232b2010-11-30 07:20:12 +000014857 unsigned ValOps = X86::AddrNumOperands;
14858 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14859 .addReg(MI->getOperand(ValOps).getReg());
14860 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14861 .addReg(MI->getOperand(ValOps+1).getReg());
14862
14863 // The instruction doesn't actually take any operands though.
14864 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014865
Eric Christopher228232b2010-11-30 07:20:12 +000014866 MI->eraseFromParent(); // The pseudo is gone now.
14867 return BB;
14868}
14869
14870MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014871X86TargetLowering::EmitVAARG64WithCustomInserter(
14872 MachineInstr *MI,
14873 MachineBasicBlock *MBB) const {
14874 // Emit va_arg instruction on X86-64.
14875
14876 // Operands to this pseudo-instruction:
14877 // 0 ) Output : destination address (reg)
14878 // 1-5) Input : va_list address (addr, i64mem)
14879 // 6 ) ArgSize : Size (in bytes) of vararg type
14880 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14881 // 8 ) Align : Alignment of type
14882 // 9 ) EFLAGS (implicit-def)
14883
14884 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14885 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14886
14887 unsigned DestReg = MI->getOperand(0).getReg();
14888 MachineOperand &Base = MI->getOperand(1);
14889 MachineOperand &Scale = MI->getOperand(2);
14890 MachineOperand &Index = MI->getOperand(3);
14891 MachineOperand &Disp = MI->getOperand(4);
14892 MachineOperand &Segment = MI->getOperand(5);
14893 unsigned ArgSize = MI->getOperand(6).getImm();
14894 unsigned ArgMode = MI->getOperand(7).getImm();
14895 unsigned Align = MI->getOperand(8).getImm();
14896
14897 // Memory Reference
14898 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14899 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14900 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14901
14902 // Machine Information
14903 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14904 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14905 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14906 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14907 DebugLoc DL = MI->getDebugLoc();
14908
14909 // struct va_list {
14910 // i32 gp_offset
14911 // i32 fp_offset
14912 // i64 overflow_area (address)
14913 // i64 reg_save_area (address)
14914 // }
14915 // sizeof(va_list) = 24
14916 // alignment(va_list) = 8
14917
14918 unsigned TotalNumIntRegs = 6;
14919 unsigned TotalNumXMMRegs = 8;
14920 bool UseGPOffset = (ArgMode == 1);
14921 bool UseFPOffset = (ArgMode == 2);
14922 unsigned MaxOffset = TotalNumIntRegs * 8 +
14923 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14924
14925 /* Align ArgSize to a multiple of 8 */
14926 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14927 bool NeedsAlign = (Align > 8);
14928
14929 MachineBasicBlock *thisMBB = MBB;
14930 MachineBasicBlock *overflowMBB;
14931 MachineBasicBlock *offsetMBB;
14932 MachineBasicBlock *endMBB;
14933
14934 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14935 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14936 unsigned OffsetReg = 0;
14937
14938 if (!UseGPOffset && !UseFPOffset) {
14939 // If we only pull from the overflow region, we don't create a branch.
14940 // We don't need to alter control flow.
14941 OffsetDestReg = 0; // unused
14942 OverflowDestReg = DestReg;
14943
14944 offsetMBB = NULL;
14945 overflowMBB = thisMBB;
14946 endMBB = thisMBB;
14947 } else {
14948 // First emit code to check if gp_offset (or fp_offset) is below the bound.
14949 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14950 // If not, pull from overflow_area. (branch to overflowMBB)
14951 //
14952 // thisMBB
14953 // | .
14954 // | .
14955 // offsetMBB overflowMBB
14956 // | .
14957 // | .
14958 // endMBB
14959
14960 // Registers for the PHI in endMBB
14961 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14962 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14963
14964 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14965 MachineFunction *MF = MBB->getParent();
14966 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14967 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14968 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14969
14970 MachineFunction::iterator MBBIter = MBB;
14971 ++MBBIter;
14972
14973 // Insert the new basic blocks
14974 MF->insert(MBBIter, offsetMBB);
14975 MF->insert(MBBIter, overflowMBB);
14976 MF->insert(MBBIter, endMBB);
14977
14978 // Transfer the remainder of MBB and its successor edges to endMBB.
14979 endMBB->splice(endMBB->begin(), thisMBB,
14980 llvm::next(MachineBasicBlock::iterator(MI)),
14981 thisMBB->end());
14982 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14983
14984 // Make offsetMBB and overflowMBB successors of thisMBB
14985 thisMBB->addSuccessor(offsetMBB);
14986 thisMBB->addSuccessor(overflowMBB);
14987
14988 // endMBB is a successor of both offsetMBB and overflowMBB
14989 offsetMBB->addSuccessor(endMBB);
14990 overflowMBB->addSuccessor(endMBB);
14991
14992 // Load the offset value into a register
14993 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14994 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14995 .addOperand(Base)
14996 .addOperand(Scale)
14997 .addOperand(Index)
14998 .addDisp(Disp, UseFPOffset ? 4 : 0)
14999 .addOperand(Segment)
15000 .setMemRefs(MMOBegin, MMOEnd);
15001
15002 // Check if there is enough room left to pull this argument.
15003 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15004 .addReg(OffsetReg)
15005 .addImm(MaxOffset + 8 - ArgSizeA8);
15006
15007 // Branch to "overflowMBB" if offset >= max
15008 // Fall through to "offsetMBB" otherwise
15009 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15010 .addMBB(overflowMBB);
15011 }
15012
15013 // In offsetMBB, emit code to use the reg_save_area.
15014 if (offsetMBB) {
15015 assert(OffsetReg != 0);
15016
15017 // Read the reg_save_area address.
15018 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15019 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15020 .addOperand(Base)
15021 .addOperand(Scale)
15022 .addOperand(Index)
15023 .addDisp(Disp, 16)
15024 .addOperand(Segment)
15025 .setMemRefs(MMOBegin, MMOEnd);
15026
15027 // Zero-extend the offset
15028 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15029 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15030 .addImm(0)
15031 .addReg(OffsetReg)
15032 .addImm(X86::sub_32bit);
15033
15034 // Add the offset to the reg_save_area to get the final address.
15035 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15036 .addReg(OffsetReg64)
15037 .addReg(RegSaveReg);
15038
15039 // Compute the offset for the next argument
15040 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15041 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15042 .addReg(OffsetReg)
15043 .addImm(UseFPOffset ? 16 : 8);
15044
15045 // Store it back into the va_list.
15046 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15047 .addOperand(Base)
15048 .addOperand(Scale)
15049 .addOperand(Index)
15050 .addDisp(Disp, UseFPOffset ? 4 : 0)
15051 .addOperand(Segment)
15052 .addReg(NextOffsetReg)
15053 .setMemRefs(MMOBegin, MMOEnd);
15054
15055 // Jump to endMBB
15056 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15057 .addMBB(endMBB);
15058 }
15059
15060 //
15061 // Emit code to use overflow area
15062 //
15063
15064 // Load the overflow_area address into a register.
15065 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15066 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15067 .addOperand(Base)
15068 .addOperand(Scale)
15069 .addOperand(Index)
15070 .addDisp(Disp, 8)
15071 .addOperand(Segment)
15072 .setMemRefs(MMOBegin, MMOEnd);
15073
15074 // If we need to align it, do so. Otherwise, just copy the address
15075 // to OverflowDestReg.
15076 if (NeedsAlign) {
15077 // Align the overflow address
15078 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15079 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15080
15081 // aligned_addr = (addr + (align-1)) & ~(align-1)
15082 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15083 .addReg(OverflowAddrReg)
15084 .addImm(Align-1);
15085
15086 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15087 .addReg(TmpReg)
15088 .addImm(~(uint64_t)(Align-1));
15089 } else {
15090 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15091 .addReg(OverflowAddrReg);
15092 }
15093
15094 // Compute the next overflow address after this argument.
15095 // (the overflow address should be kept 8-byte aligned)
15096 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15097 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15098 .addReg(OverflowDestReg)
15099 .addImm(ArgSizeA8);
15100
15101 // Store the new overflow address.
15102 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15103 .addOperand(Base)
15104 .addOperand(Scale)
15105 .addOperand(Index)
15106 .addDisp(Disp, 8)
15107 .addOperand(Segment)
15108 .addReg(NextAddrReg)
15109 .setMemRefs(MMOBegin, MMOEnd);
15110
15111 // If we branched, emit the PHI to the front of endMBB.
15112 if (offsetMBB) {
15113 BuildMI(*endMBB, endMBB->begin(), DL,
15114 TII->get(X86::PHI), DestReg)
15115 .addReg(OffsetDestReg).addMBB(offsetMBB)
15116 .addReg(OverflowDestReg).addMBB(overflowMBB);
15117 }
15118
15119 // Erase the pseudo instruction
15120 MI->eraseFromParent();
15121
15122 return endMBB;
15123}
15124
15125MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015126X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15127 MachineInstr *MI,
15128 MachineBasicBlock *MBB) const {
15129 // Emit code to save XMM registers to the stack. The ABI says that the
15130 // number of registers to save is given in %al, so it's theoretically
15131 // possible to do an indirect jump trick to avoid saving all of them,
15132 // however this code takes a simpler approach and just executes all
15133 // of the stores if %al is non-zero. It's less code, and it's probably
15134 // easier on the hardware branch predictor, and stores aren't all that
15135 // expensive anyway.
15136
15137 // Create the new basic blocks. One block contains all the XMM stores,
15138 // and one block is the final destination regardless of whether any
15139 // stores were performed.
15140 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15141 MachineFunction *F = MBB->getParent();
15142 MachineFunction::iterator MBBIter = MBB;
15143 ++MBBIter;
15144 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15145 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15146 F->insert(MBBIter, XMMSaveMBB);
15147 F->insert(MBBIter, EndMBB);
15148
Dan Gohman14152b42010-07-06 20:24:04 +000015149 // Transfer the remainder of MBB and its successor edges to EndMBB.
15150 EndMBB->splice(EndMBB->begin(), MBB,
15151 llvm::next(MachineBasicBlock::iterator(MI)),
15152 MBB->end());
15153 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15154
Dan Gohmand6708ea2009-08-15 01:38:56 +000015155 // The original block will now fall through to the XMM save block.
15156 MBB->addSuccessor(XMMSaveMBB);
15157 // The XMMSaveMBB will fall through to the end block.
15158 XMMSaveMBB->addSuccessor(EndMBB);
15159
15160 // Now add the instructions.
15161 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15162 DebugLoc DL = MI->getDebugLoc();
15163
15164 unsigned CountReg = MI->getOperand(0).getReg();
15165 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15166 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15167
15168 if (!Subtarget->isTargetWin64()) {
15169 // If %al is 0, branch around the XMM save block.
15170 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015171 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015172 MBB->addSuccessor(EndMBB);
15173 }
15174
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015175 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015176 // In the XMM save block, save all the XMM argument registers.
15177 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15178 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015179 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015180 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015181 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015182 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015183 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015184 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015185 .addFrameIndex(RegSaveFrameIndex)
15186 .addImm(/*Scale=*/1)
15187 .addReg(/*IndexReg=*/0)
15188 .addImm(/*Disp=*/Offset)
15189 .addReg(/*Segment=*/0)
15190 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015191 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015192 }
15193
Dan Gohman14152b42010-07-06 20:24:04 +000015194 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015195
15196 return EndMBB;
15197}
Mon P Wang63307c32008-05-05 19:05:59 +000015198
Lang Hames6e3f7e42012-02-03 01:13:49 +000015199// The EFLAGS operand of SelectItr might be missing a kill marker
15200// because there were multiple uses of EFLAGS, and ISel didn't know
15201// which to mark. Figure out whether SelectItr should have had a
15202// kill marker, and set it if it should. Returns the correct kill
15203// marker value.
15204static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15205 MachineBasicBlock* BB,
15206 const TargetRegisterInfo* TRI) {
15207 // Scan forward through BB for a use/def of EFLAGS.
15208 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15209 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015210 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015211 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015212 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015213 if (mi.definesRegister(X86::EFLAGS))
15214 break; // Should have kill-flag - update below.
15215 }
15216
15217 // If we hit the end of the block, check whether EFLAGS is live into a
15218 // successor.
15219 if (miI == BB->end()) {
15220 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15221 sEnd = BB->succ_end();
15222 sItr != sEnd; ++sItr) {
15223 MachineBasicBlock* succ = *sItr;
15224 if (succ->isLiveIn(X86::EFLAGS))
15225 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015226 }
15227 }
15228
Lang Hames6e3f7e42012-02-03 01:13:49 +000015229 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15230 // out. SelectMI should have a kill flag on EFLAGS.
15231 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015232 return true;
15233}
15234
Evan Cheng60c07e12006-07-05 22:17:51 +000015235MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015236X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015237 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015238 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15239 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015240
Chris Lattner52600972009-09-02 05:57:00 +000015241 // To "insert" a SELECT_CC instruction, we actually have to insert the
15242 // diamond control-flow pattern. The incoming instruction knows the
15243 // destination vreg to set, the condition code register to branch on, the
15244 // true/false values to select between, and a branch opcode to use.
15245 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15246 MachineFunction::iterator It = BB;
15247 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015248
Chris Lattner52600972009-09-02 05:57:00 +000015249 // thisMBB:
15250 // ...
15251 // TrueVal = ...
15252 // cmpTY ccX, r1, r2
15253 // bCC copy1MBB
15254 // fallthrough --> copy0MBB
15255 MachineBasicBlock *thisMBB = BB;
15256 MachineFunction *F = BB->getParent();
15257 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15258 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015259 F->insert(It, copy0MBB);
15260 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015261
Bill Wendling730c07e2010-06-25 20:48:10 +000015262 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15263 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015264 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15265 if (!MI->killsRegister(X86::EFLAGS) &&
15266 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15267 copy0MBB->addLiveIn(X86::EFLAGS);
15268 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015269 }
15270
Dan Gohman14152b42010-07-06 20:24:04 +000015271 // Transfer the remainder of BB and its successor edges to sinkMBB.
15272 sinkMBB->splice(sinkMBB->begin(), BB,
15273 llvm::next(MachineBasicBlock::iterator(MI)),
15274 BB->end());
15275 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15276
15277 // Add the true and fallthrough blocks as its successors.
15278 BB->addSuccessor(copy0MBB);
15279 BB->addSuccessor(sinkMBB);
15280
15281 // Create the conditional branch instruction.
15282 unsigned Opc =
15283 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15284 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15285
Chris Lattner52600972009-09-02 05:57:00 +000015286 // copy0MBB:
15287 // %FalseValue = ...
15288 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015289 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015290
Chris Lattner52600972009-09-02 05:57:00 +000015291 // sinkMBB:
15292 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15293 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015294 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15295 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015296 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15297 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15298
Dan Gohman14152b42010-07-06 20:24:04 +000015299 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015300 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015301}
15302
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015303MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015304X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15305 bool Is64Bit) const {
15306 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15307 DebugLoc DL = MI->getDebugLoc();
15308 MachineFunction *MF = BB->getParent();
15309 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15310
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015311 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015312
15313 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15314 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15315
15316 // BB:
15317 // ... [Till the alloca]
15318 // If stacklet is not large enough, jump to mallocMBB
15319 //
15320 // bumpMBB:
15321 // Allocate by subtracting from RSP
15322 // Jump to continueMBB
15323 //
15324 // mallocMBB:
15325 // Allocate by call to runtime
15326 //
15327 // continueMBB:
15328 // ...
15329 // [rest of original BB]
15330 //
15331
15332 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15333 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15334 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15335
15336 MachineRegisterInfo &MRI = MF->getRegInfo();
15337 const TargetRegisterClass *AddrRegClass =
15338 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15339
15340 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15341 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15342 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015343 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015344 sizeVReg = MI->getOperand(1).getReg(),
15345 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15346
15347 MachineFunction::iterator MBBIter = BB;
15348 ++MBBIter;
15349
15350 MF->insert(MBBIter, bumpMBB);
15351 MF->insert(MBBIter, mallocMBB);
15352 MF->insert(MBBIter, continueMBB);
15353
15354 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15355 (MachineBasicBlock::iterator(MI)), BB->end());
15356 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15357
15358 // Add code to the main basic block to check if the stack limit has been hit,
15359 // and if so, jump to mallocMBB otherwise to bumpMBB.
15360 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015361 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015362 .addReg(tmpSPVReg).addReg(sizeVReg);
15363 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015364 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015365 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015366 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15367
15368 // bumpMBB simply decreases the stack pointer, since we know the current
15369 // stacklet has enough space.
15370 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015371 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015372 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015373 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015374 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15375
15376 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015377 const uint32_t *RegMask =
15378 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015379 if (Is64Bit) {
15380 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15381 .addReg(sizeVReg);
15382 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015383 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015384 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015385 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015386 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015387 } else {
15388 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15389 .addImm(12);
15390 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15391 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015392 .addExternalSymbol("__morestack_allocate_stack_space")
15393 .addRegMask(RegMask)
15394 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015395 }
15396
15397 if (!Is64Bit)
15398 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15399 .addImm(16);
15400
15401 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15402 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15403 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15404
15405 // Set up the CFG correctly.
15406 BB->addSuccessor(bumpMBB);
15407 BB->addSuccessor(mallocMBB);
15408 mallocMBB->addSuccessor(continueMBB);
15409 bumpMBB->addSuccessor(continueMBB);
15410
15411 // Take care of the PHI nodes.
15412 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15413 MI->getOperand(0).getReg())
15414 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15415 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15416
15417 // Delete the original pseudo instruction.
15418 MI->eraseFromParent();
15419
15420 // And we're done.
15421 return continueMBB;
15422}
15423
15424MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015425X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015426 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015427 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15428 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015429
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015430 assert(!Subtarget->isTargetEnvMacho());
15431
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015432 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15433 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015434
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015435 if (Subtarget->isTargetWin64()) {
15436 if (Subtarget->isTargetCygMing()) {
15437 // ___chkstk(Mingw64):
15438 // Clobbers R10, R11, RAX and EFLAGS.
15439 // Updates RSP.
15440 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15441 .addExternalSymbol("___chkstk")
15442 .addReg(X86::RAX, RegState::Implicit)
15443 .addReg(X86::RSP, RegState::Implicit)
15444 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15445 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15446 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15447 } else {
15448 // __chkstk(MSVCRT): does not update stack pointer.
15449 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015450 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15451 .addExternalSymbol("__chkstk")
15452 .addReg(X86::RAX, RegState::Implicit)
15453 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015454 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015455 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15456 .addReg(X86::RSP)
15457 .addReg(X86::RAX);
15458 }
15459 } else {
15460 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015461 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15462
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015463 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15464 .addExternalSymbol(StackProbeSymbol)
15465 .addReg(X86::EAX, RegState::Implicit)
15466 .addReg(X86::ESP, RegState::Implicit)
15467 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15468 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15469 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15470 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015471
Dan Gohman14152b42010-07-06 20:24:04 +000015472 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015473 return BB;
15474}
Chris Lattner52600972009-09-02 05:57:00 +000015475
15476MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015477X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15478 MachineBasicBlock *BB) const {
15479 // This is pretty easy. We're taking the value that we received from
15480 // our load from the relocation, sticking it in either RDI (x86-64)
15481 // or EAX and doing an indirect call. The return value will then
15482 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015483 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015484 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015485 DebugLoc DL = MI->getDebugLoc();
15486 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015487
15488 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015489 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015490
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015491 // Get a register mask for the lowered call.
15492 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15493 // proper register mask.
15494 const uint32_t *RegMask =
15495 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015496 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015497 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15498 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015499 .addReg(X86::RIP)
15500 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015501 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015502 MI->getOperand(3).getTargetFlags())
15503 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015504 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015505 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015506 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015507 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015508 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15509 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015510 .addReg(0)
15511 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015512 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000015513 MI->getOperand(3).getTargetFlags())
15514 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015515 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015516 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015517 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015518 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015519 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15520 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015521 .addReg(TII->getGlobalBaseReg(F))
15522 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015523 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015524 MI->getOperand(3).getTargetFlags())
15525 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015526 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015527 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015528 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015529 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015530
Dan Gohman14152b42010-07-06 20:24:04 +000015531 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015532 return BB;
15533}
15534
15535MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015536X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15537 MachineBasicBlock *MBB) const {
15538 DebugLoc DL = MI->getDebugLoc();
15539 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15540
15541 MachineFunction *MF = MBB->getParent();
15542 MachineRegisterInfo &MRI = MF->getRegInfo();
15543
15544 const BasicBlock *BB = MBB->getBasicBlock();
15545 MachineFunction::iterator I = MBB;
15546 ++I;
15547
15548 // Memory Reference
15549 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15550 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15551
15552 unsigned DstReg;
15553 unsigned MemOpndSlot = 0;
15554
15555 unsigned CurOp = 0;
15556
15557 DstReg = MI->getOperand(CurOp++).getReg();
15558 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15559 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15560 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15561 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15562
15563 MemOpndSlot = CurOp;
15564
15565 MVT PVT = getPointerTy();
15566 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15567 "Invalid Pointer Size!");
15568
15569 // For v = setjmp(buf), we generate
15570 //
15571 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015572 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015573 // SjLjSetup restoreMBB
15574 //
15575 // mainMBB:
15576 // v_main = 0
15577 //
15578 // sinkMBB:
15579 // v = phi(main, restore)
15580 //
15581 // restoreMBB:
15582 // v_restore = 1
15583
15584 MachineBasicBlock *thisMBB = MBB;
15585 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15586 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15587 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15588 MF->insert(I, mainMBB);
15589 MF->insert(I, sinkMBB);
15590 MF->push_back(restoreMBB);
15591
15592 MachineInstrBuilder MIB;
15593
15594 // Transfer the remainder of BB and its successor edges to sinkMBB.
15595 sinkMBB->splice(sinkMBB->begin(), MBB,
15596 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15597 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15598
15599 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015600 unsigned PtrStoreOpc = 0;
15601 unsigned LabelReg = 0;
15602 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15603 Reloc::Model RM = getTargetMachine().getRelocationModel();
15604 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15605 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015606
Michael Liao281ae5a2012-10-17 02:22:27 +000015607 // Prepare IP either in reg or imm.
15608 if (!UseImmLabel) {
15609 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15610 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15611 LabelReg = MRI.createVirtualRegister(PtrRC);
15612 if (Subtarget->is64Bit()) {
15613 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15614 .addReg(X86::RIP)
15615 .addImm(0)
15616 .addReg(0)
15617 .addMBB(restoreMBB)
15618 .addReg(0);
15619 } else {
15620 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15621 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15622 .addReg(XII->getGlobalBaseReg(MF))
15623 .addImm(0)
15624 .addReg(0)
15625 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15626 .addReg(0);
15627 }
15628 } else
15629 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015630 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015631 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015632 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15633 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015634 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015635 else
15636 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15637 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015638 if (!UseImmLabel)
15639 MIB.addReg(LabelReg);
15640 else
15641 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015642 MIB.setMemRefs(MMOBegin, MMOEnd);
15643 // Setup
15644 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15645 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015646
15647 const X86RegisterInfo *RegInfo =
15648 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015649 MIB.addRegMask(RegInfo->getNoPreservedMask());
15650 thisMBB->addSuccessor(mainMBB);
15651 thisMBB->addSuccessor(restoreMBB);
15652
15653 // mainMBB:
15654 // EAX = 0
15655 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15656 mainMBB->addSuccessor(sinkMBB);
15657
15658 // sinkMBB:
15659 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15660 TII->get(X86::PHI), DstReg)
15661 .addReg(mainDstReg).addMBB(mainMBB)
15662 .addReg(restoreDstReg).addMBB(restoreMBB);
15663
15664 // restoreMBB:
15665 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15666 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15667 restoreMBB->addSuccessor(sinkMBB);
15668
15669 MI->eraseFromParent();
15670 return sinkMBB;
15671}
15672
15673MachineBasicBlock *
15674X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15675 MachineBasicBlock *MBB) const {
15676 DebugLoc DL = MI->getDebugLoc();
15677 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15678
15679 MachineFunction *MF = MBB->getParent();
15680 MachineRegisterInfo &MRI = MF->getRegInfo();
15681
15682 // Memory Reference
15683 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15684 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15685
15686 MVT PVT = getPointerTy();
15687 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15688 "Invalid Pointer Size!");
15689
15690 const TargetRegisterClass *RC =
15691 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15692 unsigned Tmp = MRI.createVirtualRegister(RC);
15693 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015694 const X86RegisterInfo *RegInfo =
15695 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015696 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15697 unsigned SP = RegInfo->getStackRegister();
15698
15699 MachineInstrBuilder MIB;
15700
Michael Liao281ae5a2012-10-17 02:22:27 +000015701 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15702 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015703
15704 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15705 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15706
15707 // Reload FP
15708 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15709 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15710 MIB.addOperand(MI->getOperand(i));
15711 MIB.setMemRefs(MMOBegin, MMOEnd);
15712 // Reload IP
15713 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15714 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15715 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015716 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015717 else
15718 MIB.addOperand(MI->getOperand(i));
15719 }
15720 MIB.setMemRefs(MMOBegin, MMOEnd);
15721 // Reload SP
15722 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15723 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15724 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015725 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015726 else
15727 MIB.addOperand(MI->getOperand(i));
15728 }
15729 MIB.setMemRefs(MMOBegin, MMOEnd);
15730 // Jump
15731 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15732
15733 MI->eraseFromParent();
15734 return MBB;
15735}
15736
15737MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015738X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015739 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015740 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015741 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015742 case X86::TAILJMPd64:
15743 case X86::TAILJMPr64:
15744 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015745 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015746 case X86::TCRETURNdi64:
15747 case X86::TCRETURNri64:
15748 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015749 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015750 case X86::WIN_ALLOCA:
15751 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015752 case X86::SEG_ALLOCA_32:
15753 return EmitLoweredSegAlloca(MI, BB, false);
15754 case X86::SEG_ALLOCA_64:
15755 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015756 case X86::TLSCall_32:
15757 case X86::TLSCall_64:
15758 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015759 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015760 case X86::CMOV_FR32:
15761 case X86::CMOV_FR64:
15762 case X86::CMOV_V4F32:
15763 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015764 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015765 case X86::CMOV_V8F32:
15766 case X86::CMOV_V4F64:
15767 case X86::CMOV_V4I64:
Elena Demikhovskyf3280b52013-10-31 13:15:32 +000015768 case X86::CMOV_V16F32:
15769 case X86::CMOV_V8F64:
15770 case X86::CMOV_V8I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015771 case X86::CMOV_GR16:
15772 case X86::CMOV_GR32:
15773 case X86::CMOV_RFP32:
15774 case X86::CMOV_RFP64:
15775 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015776 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015777
Dale Johannesen849f2142007-07-03 00:53:03 +000015778 case X86::FP32_TO_INT16_IN_MEM:
15779 case X86::FP32_TO_INT32_IN_MEM:
15780 case X86::FP32_TO_INT64_IN_MEM:
15781 case X86::FP64_TO_INT16_IN_MEM:
15782 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015783 case X86::FP64_TO_INT64_IN_MEM:
15784 case X86::FP80_TO_INT16_IN_MEM:
15785 case X86::FP80_TO_INT32_IN_MEM:
15786 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015787 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15788 DebugLoc DL = MI->getDebugLoc();
15789
Evan Cheng60c07e12006-07-05 22:17:51 +000015790 // Change the floating point control register to use "round towards zero"
15791 // mode when truncating to an integer value.
15792 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015793 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015794 addFrameReference(BuildMI(*BB, MI, DL,
15795 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015796
15797 // Load the old value of the high byte of the control word...
15798 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015799 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015800 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015801 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015802
15803 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015804 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015805 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015806
15807 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015808 addFrameReference(BuildMI(*BB, MI, DL,
15809 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015810
15811 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015812 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015813 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015814
15815 // Get the X86 opcode to use.
15816 unsigned Opc;
15817 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015818 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015819 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15820 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15821 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15822 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15823 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15824 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015825 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15826 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15827 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015828 }
15829
15830 X86AddressMode AM;
15831 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015832 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015833 AM.BaseType = X86AddressMode::RegBase;
15834 AM.Base.Reg = Op.getReg();
15835 } else {
15836 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015837 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015838 }
15839 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015840 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015841 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015842 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015843 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015844 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015845 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015846 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015847 AM.GV = Op.getGlobal();
15848 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015849 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015850 }
Dan Gohman14152b42010-07-06 20:24:04 +000015851 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015852 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015853
15854 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015855 addFrameReference(BuildMI(*BB, MI, DL,
15856 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015857
Dan Gohman14152b42010-07-06 20:24:04 +000015858 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015859 return BB;
15860 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015861 // String/text processing lowering.
15862 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015863 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015864 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015865 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015866 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015867 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015868 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015869 case X86::VPCMPESTRM128MEM:
15870 assert(Subtarget->hasSSE42() &&
15871 "Target must have SSE4.2 or AVX features enabled");
15872 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015873
15874 // String/text processing lowering.
15875 case X86::PCMPISTRIREG:
15876 case X86::VPCMPISTRIREG:
15877 case X86::PCMPISTRIMEM:
15878 case X86::VPCMPISTRIMEM:
15879 case X86::PCMPESTRIREG:
15880 case X86::VPCMPESTRIREG:
15881 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015882 case X86::VPCMPESTRIMEM:
15883 assert(Subtarget->hasSSE42() &&
15884 "Target must have SSE4.2 or AVX features enabled");
15885 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015886
Craig Topper8aae8dd2012-11-10 08:57:41 +000015887 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015888 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015889 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015890
Michael Liaobe02a902012-11-08 07:28:54 +000015891 // xbegin
15892 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015893 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015894
Craig Topper8aae8dd2012-11-10 08:57:41 +000015895 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015896 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015897 case X86::ATOMAND16:
15898 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015899 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015900 // Fall through
15901 case X86::ATOMOR8:
15902 case X86::ATOMOR16:
15903 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015904 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015905 // Fall through
15906 case X86::ATOMXOR16:
15907 case X86::ATOMXOR8:
15908 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015909 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015910 // Fall through
15911 case X86::ATOMNAND8:
15912 case X86::ATOMNAND16:
15913 case X86::ATOMNAND32:
15914 case X86::ATOMNAND64:
15915 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015916 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015917 case X86::ATOMMAX16:
15918 case X86::ATOMMAX32:
15919 case X86::ATOMMAX64:
15920 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015921 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015922 case X86::ATOMMIN16:
15923 case X86::ATOMMIN32:
15924 case X86::ATOMMIN64:
15925 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015926 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015927 case X86::ATOMUMAX16:
15928 case X86::ATOMUMAX32:
15929 case X86::ATOMUMAX64:
15930 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015931 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015932 case X86::ATOMUMIN16:
15933 case X86::ATOMUMIN32:
15934 case X86::ATOMUMIN64:
15935 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015936
15937 // This group does 64-bit operations on a 32-bit host.
15938 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015939 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015940 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015941 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015942 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015943 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015944 case X86::ATOMMAX6432:
15945 case X86::ATOMMIN6432:
15946 case X86::ATOMUMAX6432:
15947 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000015948 case X86::ATOMSWAP6432:
15949 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000015950
Dan Gohmand6708ea2009-08-15 01:38:56 +000015951 case X86::VASTART_SAVE_XMM_REGS:
15952 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000015953
15954 case X86::VAARG_64:
15955 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015956
15957 case X86::EH_SjLj_SetJmp32:
15958 case X86::EH_SjLj_SetJmp64:
15959 return emitEHSjLjSetJmp(MI, BB);
15960
15961 case X86::EH_SjLj_LongJmp32:
15962 case X86::EH_SjLj_LongJmp64:
15963 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015964 }
15965}
15966
15967//===----------------------------------------------------------------------===//
15968// X86 Optimization Hooks
15969//===----------------------------------------------------------------------===//
15970
Dan Gohman475871a2008-07-27 21:46:04 +000015971void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000015972 APInt &KnownZero,
15973 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000015974 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000015975 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015976 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015977 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000015978 assert((Opc >= ISD::BUILTIN_OP_END ||
15979 Opc == ISD::INTRINSIC_WO_CHAIN ||
15980 Opc == ISD::INTRINSIC_W_CHAIN ||
15981 Opc == ISD::INTRINSIC_VOID) &&
15982 "Should use MaskedValueIsZero if you don't know whether Op"
15983 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015984
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000015985 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000015986 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000015987 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015988 case X86ISD::ADD:
15989 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000015990 case X86ISD::ADC:
15991 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015992 case X86ISD::SMUL:
15993 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000015994 case X86ISD::INC:
15995 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000015996 case X86ISD::OR:
15997 case X86ISD::XOR:
15998 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000015999 // These nodes' second result is a boolean.
16000 if (Op.getResNo() == 0)
16001 break;
16002 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016003 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016004 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000016005 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000016006 case ISD::INTRINSIC_WO_CHAIN: {
16007 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16008 unsigned NumLoBits = 0;
16009 switch (IntId) {
16010 default: break;
16011 case Intrinsic::x86_sse_movmsk_ps:
16012 case Intrinsic::x86_avx_movmsk_ps_256:
16013 case Intrinsic::x86_sse2_movmsk_pd:
16014 case Intrinsic::x86_avx_movmsk_pd_256:
16015 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000016016 case Intrinsic::x86_sse2_pmovmskb_128:
16017 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000016018 // High bits of movmskp{s|d}, pmovmskb are known zero.
16019 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000016020 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000016021 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
16022 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
16023 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
16024 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
16025 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
16026 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000016027 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000016028 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016029 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000016030 break;
16031 }
16032 }
16033 break;
16034 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016035 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016036}
Chris Lattner259e97c2006-01-31 19:43:35 +000016037
Owen Andersonbc146b02010-09-21 20:42:50 +000016038unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16039 unsigned Depth) const {
16040 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16041 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16042 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000016043
Owen Andersonbc146b02010-09-21 20:42:50 +000016044 // Fallback case.
16045 return 1;
16046}
16047
Evan Cheng206ee9d2006-07-07 08:33:52 +000016048/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000016049/// node is a GlobalAddress + offset.
16050bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000016051 const GlobalValue* &GA,
16052 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000016053 if (N->getOpcode() == X86ISD::Wrapper) {
16054 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000016055 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000016056 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000016057 return true;
16058 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000016059 }
Evan Chengad4196b2008-05-12 19:56:52 +000016060 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000016061}
16062
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016063/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16064/// same as extracting the high 128-bit part of 256-bit vector and then
16065/// inserting the result into the low part of a new 256-bit vector
16066static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16067 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016068 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016069
16070 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000016071 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016072 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16073 SVOp->getMaskElt(j) >= 0)
16074 return false;
16075
16076 return true;
16077}
16078
16079/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16080/// same as extracting the low 128-bit part of 256-bit vector and then
16081/// inserting the result into the high part of a new 256-bit vector
16082static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16083 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016084 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016085
16086 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016087 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016088 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16089 SVOp->getMaskElt(j) >= 0)
16090 return false;
16091
16092 return true;
16093}
16094
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016095/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16096static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016097 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016098 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016099 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016100 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16101 SDValue V1 = SVOp->getOperand(0);
16102 SDValue V2 = SVOp->getOperand(1);
16103 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016104 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016105
16106 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16107 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16108 //
16109 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016110 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016111 // V UNDEF BUILD_VECTOR UNDEF
16112 // \ / \ /
16113 // CONCAT_VECTOR CONCAT_VECTOR
16114 // \ /
16115 // \ /
16116 // RESULT: V + zero extended
16117 //
16118 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16119 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16120 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16121 return SDValue();
16122
16123 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16124 return SDValue();
16125
16126 // To match the shuffle mask, the first half of the mask should
16127 // be exactly the first vector, and all the rest a splat with the
16128 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016129 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016130 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16131 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16132 return SDValue();
16133
Chad Rosier3d1161e2012-01-03 21:05:52 +000016134 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16135 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016136 if (Ld->hasNUsesOfValue(1, 0)) {
16137 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16138 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16139 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016140 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16141 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016142 Ld->getMemoryVT(),
16143 Ld->getPointerInfo(),
16144 Ld->getAlignment(),
16145 false/*isVolatile*/, true/*ReadMem*/,
16146 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016147
16148 // Make sure the newly-created LOAD is in the same position as Ld in
16149 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16150 // and update uses of Ld's output chain to use the TokenFactor.
16151 if (Ld->hasAnyUseOfValue(1)) {
16152 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16153 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16154 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16155 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16156 SDValue(ResNode.getNode(), 1));
16157 }
16158
Chad Rosier42726832012-05-07 18:47:44 +000016159 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16160 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016161 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016162
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016163 // Emit a zeroed vector and insert the desired subvector on its
16164 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016165 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016166 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016167 return DCI.CombineTo(N, InsV);
16168 }
16169
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016170 //===--------------------------------------------------------------------===//
16171 // Combine some shuffles into subvector extracts and inserts:
16172 //
16173
16174 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16175 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016176 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16177 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016178 return DCI.CombineTo(N, InsV);
16179 }
16180
16181 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16182 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016183 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16184 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016185 return DCI.CombineTo(N, InsV);
16186 }
16187
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016188 return SDValue();
16189}
16190
16191/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016192static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016193 TargetLowering::DAGCombinerInfo &DCI,
16194 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016195 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016196 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016197
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016198 // Don't create instructions with illegal types after legalize types has run.
16199 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16200 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16201 return SDValue();
16202
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016203 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016204 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016205 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016206 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016207
16208 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016209 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016210 return SDValue();
16211
16212 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16213 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16214 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016215 SmallVector<SDValue, 16> Elts;
16216 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016217 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016218
Nate Begemanfdea31a2010-03-24 20:49:50 +000016219 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000016220}
Evan Chengd880b972008-05-09 21:53:03 +000016221
Nadav Roteme12bf182013-01-04 17:35:21 +000016222/// PerformTruncateCombine - Converts truncate operation to
16223/// a sequence of vector shuffle operations.
16224/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016225static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16226 TargetLowering::DAGCombinerInfo &DCI,
16227 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016228 return SDValue();
16229}
16230
Craig Topper89f4e662012-03-20 07:17:59 +000016231/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16232/// specific shuffle of a load can be folded into a single element load.
16233/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16234/// shuffles have been customed lowered so we need to handle those here.
16235static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16236 TargetLowering::DAGCombinerInfo &DCI) {
16237 if (DCI.isBeforeLegalizeOps())
16238 return SDValue();
16239
16240 SDValue InVec = N->getOperand(0);
16241 SDValue EltNo = N->getOperand(1);
16242
16243 if (!isa<ConstantSDNode>(EltNo))
16244 return SDValue();
16245
16246 EVT VT = InVec.getValueType();
16247
16248 bool HasShuffleIntoBitcast = false;
16249 if (InVec.getOpcode() == ISD::BITCAST) {
16250 // Don't duplicate a load with other uses.
16251 if (!InVec.hasOneUse())
16252 return SDValue();
16253 EVT BCVT = InVec.getOperand(0).getValueType();
16254 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16255 return SDValue();
16256 InVec = InVec.getOperand(0);
16257 HasShuffleIntoBitcast = true;
16258 }
16259
16260 if (!isTargetShuffle(InVec.getOpcode()))
16261 return SDValue();
16262
16263 // Don't duplicate a load with other uses.
16264 if (!InVec.hasOneUse())
16265 return SDValue();
16266
16267 SmallVector<int, 16> ShuffleMask;
16268 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016269 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16270 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016271 return SDValue();
16272
16273 // Select the input vector, guarding against out of range extract vector.
16274 unsigned NumElems = VT.getVectorNumElements();
16275 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16276 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16277 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16278 : InVec.getOperand(1);
16279
16280 // If inputs to shuffle are the same for both ops, then allow 2 uses
16281 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16282
16283 if (LdNode.getOpcode() == ISD::BITCAST) {
16284 // Don't duplicate a load with other uses.
16285 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16286 return SDValue();
16287
16288 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16289 LdNode = LdNode.getOperand(0);
16290 }
16291
16292 if (!ISD::isNormalLoad(LdNode.getNode()))
16293 return SDValue();
16294
16295 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16296
16297 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16298 return SDValue();
16299
16300 if (HasShuffleIntoBitcast) {
16301 // If there's a bitcast before the shuffle, check if the load type and
16302 // alignment is valid.
16303 unsigned Align = LN0->getAlignment();
16304 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016305 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016306 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16307
16308 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16309 return SDValue();
16310 }
16311
16312 // All checks match so transform back to vector_shuffle so that DAG combiner
16313 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016314 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016315
16316 // Create shuffle node taking into account the case that its a unary shuffle
16317 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16318 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16319 InVec.getOperand(0), Shuffle,
16320 &ShuffleMask[0]);
16321 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16322 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16323 EltNo);
16324}
16325
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016326/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16327/// generation and convert it from being a bunch of shuffles and extracts
16328/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016329static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016330 TargetLowering::DAGCombinerInfo &DCI) {
16331 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16332 if (NewOp.getNode())
16333 return NewOp;
16334
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016335 SDValue InputVector = N->getOperand(0);
Manman Ren4c74a952012-10-30 22:15:38 +000016336 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16337 // from mmx to v2i32 has a single usage.
16338 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16339 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16340 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016341 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016342 N->getValueType(0),
16343 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016344
16345 // Only operate on vectors of 4 elements, where the alternative shuffling
16346 // gets to be more expensive.
16347 if (InputVector.getValueType() != MVT::v4i32)
16348 return SDValue();
16349
16350 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16351 // single use which is a sign-extend or zero-extend, and all elements are
16352 // used.
16353 SmallVector<SDNode *, 4> Uses;
16354 unsigned ExtractedElements = 0;
16355 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16356 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16357 if (UI.getUse().getResNo() != InputVector.getResNo())
16358 return SDValue();
16359
16360 SDNode *Extract = *UI;
16361 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16362 return SDValue();
16363
16364 if (Extract->getValueType(0) != MVT::i32)
16365 return SDValue();
16366 if (!Extract->hasOneUse())
16367 return SDValue();
16368 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16369 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16370 return SDValue();
16371 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16372 return SDValue();
16373
16374 // Record which element was extracted.
16375 ExtractedElements |=
16376 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16377
16378 Uses.push_back(Extract);
16379 }
16380
16381 // If not all the elements were used, this may not be worthwhile.
16382 if (ExtractedElements != 15)
16383 return SDValue();
16384
16385 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016386 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016387
16388 // Store the value to a temporary stack slot.
16389 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016390 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16391 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016392
16393 // Replace each use (extract) with a load of the appropriate element.
16394 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16395 UE = Uses.end(); UI != UE; ++UI) {
16396 SDNode *Extract = *UI;
16397
Nadav Rotem86694292011-05-17 08:31:57 +000016398 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016399 SDValue Idx = Extract->getOperand(1);
16400 unsigned EltSize =
16401 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16402 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016403 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016404 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16405
Nadav Rotem86694292011-05-17 08:31:57 +000016406 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016407 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016408
16409 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016410 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016411 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016412 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016413
16414 // Replace the exact with the load.
16415 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16416 }
16417
16418 // The replacement was made in place; don't return anything.
16419 return SDValue();
16420}
16421
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016422/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016423static std::pair<unsigned, bool>
16424matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16425 SelectionDAG &DAG, const X86Subtarget *Subtarget) {
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016426 if (!VT.isVector())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016427 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016428
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016429 bool NeedSplit = false;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016430 switch (VT.getSimpleVT().SimpleTy) {
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016431 default: return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016432 case MVT::v32i8:
16433 case MVT::v16i16:
16434 case MVT::v8i32:
16435 if (!Subtarget->hasAVX2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016436 NeedSplit = true;
16437 if (!Subtarget->hasAVX())
16438 return std::make_pair(0, false);
16439 break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016440 case MVT::v16i8:
16441 case MVT::v8i16:
16442 case MVT::v4i32:
16443 if (!Subtarget->hasSSE2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016444 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016445 }
16446
16447 // SSE2 has only a small subset of the operations.
16448 bool hasUnsigned = Subtarget->hasSSE41() ||
16449 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16450 bool hasSigned = Subtarget->hasSSE41() ||
16451 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16452
16453 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16454
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016455 unsigned Opc = 0;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016456 // Check for x CC y ? x : y.
16457 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16458 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16459 switch (CC) {
16460 default: break;
16461 case ISD::SETULT:
16462 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016463 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016464 case ISD::SETUGT:
16465 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016466 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016467 case ISD::SETLT:
16468 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016469 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016470 case ISD::SETGT:
16471 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016472 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016473 }
16474 // Check for x CC y ? y : x -- a min/max with reversed arms.
16475 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16476 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16477 switch (CC) {
16478 default: break;
16479 case ISD::SETULT:
16480 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016481 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016482 case ISD::SETUGT:
16483 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016484 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016485 case ISD::SETLT:
16486 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016487 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016488 case ISD::SETGT:
16489 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016490 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016491 }
16492 }
16493
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016494 return std::make_pair(Opc, NeedSplit);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016495}
16496
Duncan Sands6bcd2192011-09-17 16:49:39 +000016497/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16498/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016499static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016500 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016501 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016502 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016503 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016504 // Get the LHS/RHS of the select.
16505 SDValue LHS = N->getOperand(1);
16506 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016507 EVT VT = LHS.getValueType();
Juergen Ributzkad7174712013-09-05 23:02:56 +000016508 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Eric Christopherfd179292009-08-27 18:07:15 +000016509
Dan Gohman670e5392009-09-21 18:03:22 +000016510 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016511 // instructions match the semantics of the common C idiom x<y?x:y but not
16512 // x<=y?x:y, because of how they handle negative zero (which can be
16513 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016514 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
Juergen Ributzkad7174712013-09-05 23:02:56 +000016515 VT != MVT::f80 && TLI.isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016516 (Subtarget->hasSSE2() ||
16517 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016518 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016519
Chris Lattner47b4ce82009-03-11 05:48:52 +000016520 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016521 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016522 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16523 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016524 switch (CC) {
16525 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016526 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016527 // Converting this to a min would handle NaNs incorrectly, and swapping
16528 // the operands would cause it to handle comparisons between positive
16529 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016530 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016531 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016532 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16533 break;
16534 std::swap(LHS, RHS);
16535 }
Dan Gohman670e5392009-09-21 18:03:22 +000016536 Opcode = X86ISD::FMIN;
16537 break;
16538 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016539 // Converting this to a min would handle comparisons between positive
16540 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016541 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016542 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16543 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016544 Opcode = X86ISD::FMIN;
16545 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016546 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016547 // Converting this to a min would handle both negative zeros and NaNs
16548 // incorrectly, but we can swap the operands to fix both.
16549 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016550 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016551 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016552 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016553 Opcode = X86ISD::FMIN;
16554 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016555
Dan Gohman670e5392009-09-21 18:03:22 +000016556 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016557 // Converting this to a max would handle comparisons between positive
16558 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016559 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016560 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016561 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016562 Opcode = X86ISD::FMAX;
16563 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016564 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016565 // Converting this to a max would handle NaNs incorrectly, and swapping
16566 // the operands would cause it to handle comparisons between positive
16567 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016568 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016569 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016570 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16571 break;
16572 std::swap(LHS, RHS);
16573 }
Dan Gohman670e5392009-09-21 18:03:22 +000016574 Opcode = X86ISD::FMAX;
16575 break;
16576 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016577 // Converting this to a max would handle both negative zeros and NaNs
16578 // incorrectly, but we can swap the operands to fix both.
16579 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016580 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016581 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016582 case ISD::SETGE:
16583 Opcode = X86ISD::FMAX;
16584 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016585 }
Dan Gohman670e5392009-09-21 18:03:22 +000016586 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016587 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16588 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016589 switch (CC) {
16590 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016591 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016592 // Converting this to a min would handle comparisons between positive
16593 // and negative zero incorrectly, and swapping the operands would
16594 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016595 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016596 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016597 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016598 break;
16599 std::swap(LHS, RHS);
16600 }
Dan Gohman670e5392009-09-21 18:03:22 +000016601 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016602 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016603 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016604 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016605 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016606 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16607 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016608 Opcode = X86ISD::FMIN;
16609 break;
16610 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016611 // Converting this to a min would handle both negative zeros and NaNs
16612 // incorrectly, but we can swap the operands to fix both.
16613 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016614 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016615 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016616 case ISD::SETGE:
16617 Opcode = X86ISD::FMIN;
16618 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016619
Dan Gohman670e5392009-09-21 18:03:22 +000016620 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016621 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016622 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016623 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016624 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016625 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016626 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016627 // Converting this to a max would handle comparisons between positive
16628 // and negative zero incorrectly, and swapping the operands would
16629 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016630 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016631 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016632 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016633 break;
16634 std::swap(LHS, RHS);
16635 }
Dan Gohman670e5392009-09-21 18:03:22 +000016636 Opcode = X86ISD::FMAX;
16637 break;
16638 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016639 // Converting this to a max would handle both negative zeros and NaNs
16640 // incorrectly, but we can swap the operands to fix both.
16641 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016642 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016643 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016644 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016645 Opcode = X86ISD::FMAX;
16646 break;
16647 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016648 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016649
Chris Lattner47b4ce82009-03-11 05:48:52 +000016650 if (Opcode)
16651 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016652 }
Eric Christopherfd179292009-08-27 18:07:15 +000016653
Elena Demikhovskyf3280b52013-10-31 13:15:32 +000016654 EVT CondVT = Cond.getValueType();
16655 if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16656 CondVT.getVectorElementType() == MVT::i1) {
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016657 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16658 // lowering on AVX-512. In this case we convert it to
16659 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16660 // The same situation for all 128 and 256-bit vectors of i8 and i16
16661 EVT OpVT = LHS.getValueType();
16662 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16663 (OpVT.getVectorElementType() == MVT::i8 ||
16664 OpVT.getVectorElementType() == MVT::i16)) {
16665 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16666 DCI.AddToWorklist(Cond.getNode());
16667 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16668 }
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016669 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016670 // If this is a select between two integer constants, try to do some
16671 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016672 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16673 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016674 // Don't do this for crazy integer types.
16675 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16676 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016677 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016678 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016679
Chris Lattnercee56e72009-03-13 05:53:31 +000016680 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016681 // Efficiently invertible.
16682 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16683 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16684 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16685 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016686 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016687 }
Eric Christopherfd179292009-08-27 18:07:15 +000016688
Chris Lattnerd1980a52009-03-12 06:52:53 +000016689 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016690 if (FalseC->getAPIntValue() == 0 &&
16691 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016692 if (NeedsCondInvert) // Invert the condition if needed.
16693 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16694 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016695
Chris Lattnerd1980a52009-03-12 06:52:53 +000016696 // Zero extend the condition if needed.
16697 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016698
Chris Lattnercee56e72009-03-13 05:53:31 +000016699 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016700 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016701 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016702 }
Eric Christopherfd179292009-08-27 18:07:15 +000016703
Chris Lattner97a29a52009-03-13 05:22:11 +000016704 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016705 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016706 if (NeedsCondInvert) // Invert the condition if needed.
16707 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16708 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016709
Chris Lattner97a29a52009-03-13 05:22:11 +000016710 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016711 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16712 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016713 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016714 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016715 }
Eric Christopherfd179292009-08-27 18:07:15 +000016716
Chris Lattnercee56e72009-03-13 05:53:31 +000016717 // Optimize cases that will turn into an LEA instruction. This requires
16718 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016719 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016720 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016721 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016722
Chris Lattnercee56e72009-03-13 05:53:31 +000016723 bool isFastMultiplier = false;
16724 if (Diff < 10) {
16725 switch ((unsigned char)Diff) {
16726 default: break;
16727 case 1: // result = add base, cond
16728 case 2: // result = lea base( , cond*2)
16729 case 3: // result = lea base(cond, cond*2)
16730 case 4: // result = lea base( , cond*4)
16731 case 5: // result = lea base(cond, cond*4)
16732 case 8: // result = lea base( , cond*8)
16733 case 9: // result = lea base(cond, cond*8)
16734 isFastMultiplier = true;
16735 break;
16736 }
16737 }
Eric Christopherfd179292009-08-27 18:07:15 +000016738
Chris Lattnercee56e72009-03-13 05:53:31 +000016739 if (isFastMultiplier) {
16740 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16741 if (NeedsCondInvert) // Invert the condition if needed.
16742 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16743 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016744
Chris Lattnercee56e72009-03-13 05:53:31 +000016745 // Zero extend the condition if needed.
16746 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16747 Cond);
16748 // Scale the condition by the difference.
16749 if (Diff != 1)
16750 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16751 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016752
Chris Lattnercee56e72009-03-13 05:53:31 +000016753 // Add the base if non-zero.
16754 if (FalseC->getAPIntValue() != 0)
16755 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16756 SDValue(FalseC, 0));
16757 return Cond;
16758 }
Eric Christopherfd179292009-08-27 18:07:15 +000016759 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016760 }
16761 }
Eric Christopherfd179292009-08-27 18:07:15 +000016762
Evan Cheng56f582d2012-01-04 01:41:39 +000016763 // Canonicalize max and min:
16764 // (x > y) ? x : y -> (x >= y) ? x : y
16765 // (x < y) ? x : y -> (x <= y) ? x : y
16766 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16767 // the need for an extra compare
16768 // against zero. e.g.
16769 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16770 // subl %esi, %edi
16771 // testl %edi, %edi
16772 // movl $0, %eax
16773 // cmovgl %edi, %eax
16774 // =>
16775 // xorl %eax, %eax
16776 // subl %esi, $edi
16777 // cmovsl %eax, %edi
16778 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16779 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16780 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16781 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16782 switch (CC) {
16783 default: break;
16784 case ISD::SETLT:
16785 case ISD::SETGT: {
16786 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016787 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016788 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16789 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16790 }
16791 }
16792 }
16793
Juergen Ributzkad7174712013-09-05 23:02:56 +000016794 // Early exit check
16795 if (!TLI.isTypeLegal(VT))
16796 return SDValue();
16797
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016798 // Match VSELECTs into subs with unsigned saturation.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016799 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016800 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16801 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16802 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16803 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16804
16805 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16806 // left side invert the predicate to simplify logic below.
16807 SDValue Other;
16808 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16809 Other = RHS;
16810 CC = ISD::getSetCCInverse(CC, true);
16811 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16812 Other = LHS;
16813 }
16814
16815 if (Other.getNode() && Other->getNumOperands() == 2 &&
16816 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16817 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16818 SDValue CondRHS = Cond->getOperand(1);
16819
16820 // Look for a general sub with unsigned saturation first.
16821 // x >= y ? x-y : 0 --> subus x, y
16822 // x > y ? x-y : 0 --> subus x, y
16823 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16824 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16825 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16826
16827 // If the RHS is a constant we have to reverse the const canonicalization.
16828 // x > C-1 ? x+-C : 0 --> subus x, C
16829 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16830 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16831 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016832 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016833 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016834 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016835 }
16836
16837 // Another special case: If C was a sign bit, the sub has been
16838 // canonicalized into a xor.
16839 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16840 // it's safe to decanonicalize the xor?
16841 // x s< 0 ? x^C : 0 --> subus x, C
16842 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16843 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16844 isSplatVector(OpRHS.getNode())) {
16845 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16846 if (A.isSignBit())
16847 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16848 }
16849 }
16850 }
16851
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016852 // Try to match a min/max vector operation.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016853 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
Juergen Ributzka7cdc3702013-09-21 05:15:01 +000016854 std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16855 unsigned Opc = ret.first;
16856 bool NeedSplit = ret.second;
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016857
16858 if (Opc && NeedSplit) {
16859 unsigned NumElems = VT.getVectorNumElements();
16860 // Extract the LHS vectors
16861 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16862 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16863
16864 // Extract the RHS vectors
16865 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16866 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16867
16868 // Create min/max for each subvector
16869 LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16870 RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16871
16872 // Merge the result
16873 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16874 } else if (Opc)
16875 return DAG.getNode(Opc, DL, VT, LHS, RHS);
16876 }
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016877
Michael Liaobf538412013-04-11 05:15:54 +000016878 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016879 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16880 // Check if SETCC has already been promoted
16881 TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
Michael Liaobf538412013-04-11 05:15:54 +000016882
16883 assert(Cond.getValueType().isVector() &&
16884 "vector select expects a vector selector!");
16885
16886 EVT IntVT = Cond.getValueType();
16887 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16888 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16889
16890 if (!TValIsAllOnes && !FValIsAllZeros) {
16891 // Try invert the condition if true value is not all 1s and false value
16892 // is not all 0s.
16893 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16894 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16895
16896 if (TValIsAllZeros || FValIsAllOnes) {
16897 SDValue CC = Cond.getOperand(2);
16898 ISD::CondCode NewCC =
16899 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16900 Cond.getOperand(0).getValueType().isInteger());
16901 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16902 std::swap(LHS, RHS);
16903 TValIsAllOnes = FValIsAllOnes;
16904 FValIsAllZeros = TValIsAllZeros;
16905 }
16906 }
16907
16908 if (TValIsAllOnes || FValIsAllZeros) {
16909 SDValue Ret;
16910
16911 if (TValIsAllOnes && FValIsAllZeros)
16912 Ret = Cond;
16913 else if (TValIsAllOnes)
16914 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16915 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16916 else if (FValIsAllZeros)
16917 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16918 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16919
16920 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16921 }
16922 }
16923
Nadav Rotemcc616562012-01-15 19:27:55 +000016924 // If we know that this node is legal then we know that it is going to be
16925 // matched by one of the SSE/AVX BLEND instructions. These instructions only
16926 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16927 // to simplify previous instructions.
Nadav Rotemcc616562012-01-15 19:27:55 +000016928 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000016929 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000016930 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000016931
16932 // Don't optimize vector selects that map to mask-registers.
16933 if (BitWidth == 1)
16934 return SDValue();
16935
Nadav Rotemcc616562012-01-15 19:27:55 +000016936 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16937 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16938
16939 APInt KnownZero, KnownOne;
16940 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16941 DCI.isBeforeLegalizeOps());
16942 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16943 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16944 DCI.CommitTargetLoweringOpt(TLO);
16945 }
16946
Dan Gohman475871a2008-07-27 21:46:04 +000016947 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000016948}
16949
Michael Liao2a33cec2012-08-10 19:58:13 +000016950// Check whether a boolean test is testing a boolean value generated by
16951// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16952// code.
16953//
16954// Simplify the following patterns:
16955// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16956// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16957// to (Op EFLAGS Cond)
16958//
16959// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16960// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16961// to (Op EFLAGS !Cond)
16962//
16963// where Op could be BRCOND or CMOV.
16964//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000016965static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016966 // Quit if not CMP and SUB with its value result used.
16967 if (Cmp.getOpcode() != X86ISD::CMP &&
16968 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16969 return SDValue();
16970
16971 // Quit if not used as a boolean value.
16972 if (CC != X86::COND_E && CC != X86::COND_NE)
16973 return SDValue();
16974
16975 // Check CMP operands. One of them should be 0 or 1 and the other should be
16976 // an SetCC or extended from it.
16977 SDValue Op1 = Cmp.getOperand(0);
16978 SDValue Op2 = Cmp.getOperand(1);
16979
16980 SDValue SetCC;
16981 const ConstantSDNode* C = 0;
16982 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000016983 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000016984
16985 if ((C = dyn_cast<ConstantSDNode>(Op1)))
16986 SetCC = Op2;
16987 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16988 SetCC = Op1;
16989 else // Quit if all operands are not constants.
16990 return SDValue();
16991
Michael Liao959ddbb2013-04-11 04:43:09 +000016992 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000016993 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000016994 checkAgainstTrue = true;
16995 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000016996 // Quit if the constant is neither 0 or 1.
16997 return SDValue();
16998
Michael Liao959ddbb2013-04-11 04:43:09 +000016999 bool truncatedToBoolWithAnd = false;
17000 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17001 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17002 SetCC.getOpcode() == ISD::TRUNCATE ||
17003 SetCC.getOpcode() == ISD::AND) {
17004 if (SetCC.getOpcode() == ISD::AND) {
17005 int OpIdx = -1;
17006 ConstantSDNode *CS;
17007 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17008 CS->getZExtValue() == 1)
17009 OpIdx = 1;
17010 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17011 CS->getZExtValue() == 1)
17012 OpIdx = 0;
17013 if (OpIdx == -1)
17014 break;
17015 SetCC = SetCC.getOperand(OpIdx);
17016 truncatedToBoolWithAnd = true;
17017 } else
17018 SetCC = SetCC.getOperand(0);
17019 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017020
Michael Liao7fdc66b2012-09-10 16:36:16 +000017021 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000017022 case X86ISD::SETCC_CARRY:
17023 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17024 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17025 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17026 // truncated to i1 using 'and'.
17027 if (checkAgainstTrue && !truncatedToBoolWithAnd)
17028 break;
17029 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17030 "Invalid use of SETCC_CARRY!");
17031 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000017032 case X86ISD::SETCC:
17033 // Set the condition code or opposite one if necessary.
17034 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17035 if (needOppositeCond)
17036 CC = X86::GetOppositeBranchCondition(CC);
17037 return SetCC.getOperand(1);
17038 case X86ISD::CMOV: {
17039 // Check whether false/true value has canonical one, i.e. 0 or 1.
17040 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17041 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17042 // Quit if true value is not a constant.
17043 if (!TVal)
17044 return SDValue();
17045 // Quit if false value is not a constant.
17046 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000017047 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000017048 // Skip 'zext' or 'trunc' node.
17049 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17050 Op.getOpcode() == ISD::TRUNCATE)
17051 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000017052 // A special case for rdrand/rdseed, where 0 is set if false cond is
17053 // found.
17054 if ((Op.getOpcode() != X86ISD::RDRAND &&
17055 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000017056 return SDValue();
17057 }
17058 // Quit if false value is not the constant 0 or 1.
17059 bool FValIsFalse = true;
17060 if (FVal && FVal->getZExtValue() != 0) {
17061 if (FVal->getZExtValue() != 1)
17062 return SDValue();
17063 // If FVal is 1, opposite cond is needed.
17064 needOppositeCond = !needOppositeCond;
17065 FValIsFalse = false;
17066 }
17067 // Quit if TVal is not the constant opposite of FVal.
17068 if (FValIsFalse && TVal->getZExtValue() != 1)
17069 return SDValue();
17070 if (!FValIsFalse && TVal->getZExtValue() != 0)
17071 return SDValue();
17072 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17073 if (needOppositeCond)
17074 CC = X86::GetOppositeBranchCondition(CC);
17075 return SetCC.getOperand(3);
17076 }
17077 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017078
Michael Liao7fdc66b2012-09-10 16:36:16 +000017079 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000017080}
17081
Chris Lattnerd1980a52009-03-12 06:52:53 +000017082/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17083static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017084 TargetLowering::DAGCombinerInfo &DCI,
17085 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017086 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000017087
Chris Lattnerd1980a52009-03-12 06:52:53 +000017088 // If the flag operand isn't dead, don't touch this CMOV.
17089 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17090 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000017091
Evan Chengb5a55d92011-05-24 01:48:22 +000017092 SDValue FalseOp = N->getOperand(0);
17093 SDValue TrueOp = N->getOperand(1);
17094 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17095 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000017096
Evan Chengb5a55d92011-05-24 01:48:22 +000017097 if (CC == X86::COND_E || CC == X86::COND_NE) {
17098 switch (Cond.getOpcode()) {
17099 default: break;
17100 case X86ISD::BSR:
17101 case X86ISD::BSF:
17102 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17103 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17104 return (CC == X86::COND_E) ? FalseOp : TrueOp;
17105 }
17106 }
17107
Michael Liao2a33cec2012-08-10 19:58:13 +000017108 SDValue Flags;
17109
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017110 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017111 if (Flags.getNode() &&
17112 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017113 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017114 SDValue Ops[] = { FalseOp, TrueOp,
17115 DAG.getConstant(CC, MVT::i8), Flags };
17116 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17117 Ops, array_lengthof(Ops));
17118 }
17119
Chris Lattnerd1980a52009-03-12 06:52:53 +000017120 // If this is a select between two integer constants, try to do some
17121 // optimizations. Note that the operands are ordered the opposite of SELECT
17122 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017123 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17124 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017125 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17126 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017127 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17128 CC = X86::GetOppositeBranchCondition(CC);
17129 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017130 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017131 }
Eric Christopherfd179292009-08-27 18:07:15 +000017132
Chris Lattnerd1980a52009-03-12 06:52:53 +000017133 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017134 // This is efficient for any integer data type (including i8/i16) and
17135 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017136 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017137 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17138 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017139
Chris Lattnerd1980a52009-03-12 06:52:53 +000017140 // Zero extend the condition if needed.
17141 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017142
Chris Lattnerd1980a52009-03-12 06:52:53 +000017143 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17144 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017145 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017146 if (N->getNumValues() == 2) // Dead flag value?
17147 return DCI.CombineTo(N, Cond, SDValue());
17148 return Cond;
17149 }
Eric Christopherfd179292009-08-27 18:07:15 +000017150
Chris Lattnercee56e72009-03-13 05:53:31 +000017151 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17152 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017153 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017154 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17155 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017156
Chris Lattner97a29a52009-03-13 05:22:11 +000017157 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017158 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17159 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017160 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17161 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017162
Chris Lattner97a29a52009-03-13 05:22:11 +000017163 if (N->getNumValues() == 2) // Dead flag value?
17164 return DCI.CombineTo(N, Cond, SDValue());
17165 return Cond;
17166 }
Eric Christopherfd179292009-08-27 18:07:15 +000017167
Chris Lattnercee56e72009-03-13 05:53:31 +000017168 // Optimize cases that will turn into an LEA instruction. This requires
17169 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017170 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017171 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017172 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017173
Chris Lattnercee56e72009-03-13 05:53:31 +000017174 bool isFastMultiplier = false;
17175 if (Diff < 10) {
17176 switch ((unsigned char)Diff) {
17177 default: break;
17178 case 1: // result = add base, cond
17179 case 2: // result = lea base( , cond*2)
17180 case 3: // result = lea base(cond, cond*2)
17181 case 4: // result = lea base( , cond*4)
17182 case 5: // result = lea base(cond, cond*4)
17183 case 8: // result = lea base( , cond*8)
17184 case 9: // result = lea base(cond, cond*8)
17185 isFastMultiplier = true;
17186 break;
17187 }
17188 }
Eric Christopherfd179292009-08-27 18:07:15 +000017189
Chris Lattnercee56e72009-03-13 05:53:31 +000017190 if (isFastMultiplier) {
17191 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017192 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17193 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017194 // Zero extend the condition if needed.
17195 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17196 Cond);
17197 // Scale the condition by the difference.
17198 if (Diff != 1)
17199 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17200 DAG.getConstant(Diff, Cond.getValueType()));
17201
17202 // Add the base if non-zero.
17203 if (FalseC->getAPIntValue() != 0)
17204 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17205 SDValue(FalseC, 0));
17206 if (N->getNumValues() == 2) // Dead flag value?
17207 return DCI.CombineTo(N, Cond, SDValue());
17208 return Cond;
17209 }
Eric Christopherfd179292009-08-27 18:07:15 +000017210 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017211 }
17212 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017213
17214 // Handle these cases:
17215 // (select (x != c), e, c) -> select (x != c), e, x),
17216 // (select (x == c), c, e) -> select (x == c), x, e)
17217 // where the c is an integer constant, and the "select" is the combination
17218 // of CMOV and CMP.
17219 //
17220 // The rationale for this change is that the conditional-move from a constant
17221 // needs two instructions, however, conditional-move from a register needs
17222 // only one instruction.
17223 //
17224 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17225 // some instruction-combining opportunities. This opt needs to be
17226 // postponed as late as possible.
17227 //
17228 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17229 // the DCI.xxxx conditions are provided to postpone the optimization as
17230 // late as possible.
17231
17232 ConstantSDNode *CmpAgainst = 0;
17233 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17234 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017235 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017236
17237 if (CC == X86::COND_NE &&
17238 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17239 CC = X86::GetOppositeBranchCondition(CC);
17240 std::swap(TrueOp, FalseOp);
17241 }
17242
17243 if (CC == X86::COND_E &&
17244 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17245 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17246 DAG.getConstant(CC, MVT::i8), Cond };
17247 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17248 array_lengthof(Ops));
17249 }
17250 }
17251 }
17252
Chris Lattnerd1980a52009-03-12 06:52:53 +000017253 return SDValue();
17254}
17255
Evan Cheng0b0cd912009-03-28 05:57:29 +000017256/// PerformMulCombine - Optimize a single multiply with constant into two
17257/// in order to implement it with two cheaper instructions, e.g.
17258/// LEA + SHL, LEA + LEA.
17259static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17260 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017261 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17262 return SDValue();
17263
Owen Andersone50ed302009-08-10 22:56:29 +000017264 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017265 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017266 return SDValue();
17267
17268 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17269 if (!C)
17270 return SDValue();
17271 uint64_t MulAmt = C->getZExtValue();
17272 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17273 return SDValue();
17274
17275 uint64_t MulAmt1 = 0;
17276 uint64_t MulAmt2 = 0;
17277 if ((MulAmt % 9) == 0) {
17278 MulAmt1 = 9;
17279 MulAmt2 = MulAmt / 9;
17280 } else if ((MulAmt % 5) == 0) {
17281 MulAmt1 = 5;
17282 MulAmt2 = MulAmt / 5;
17283 } else if ((MulAmt % 3) == 0) {
17284 MulAmt1 = 3;
17285 MulAmt2 = MulAmt / 3;
17286 }
17287 if (MulAmt2 &&
17288 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017289 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017290
17291 if (isPowerOf2_64(MulAmt2) &&
17292 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17293 // If second multiplifer is pow2, issue it first. We want the multiply by
17294 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17295 // is an add.
17296 std::swap(MulAmt1, MulAmt2);
17297
17298 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017299 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017300 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017301 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017302 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017303 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017304 DAG.getConstant(MulAmt1, VT));
17305
Eric Christopherfd179292009-08-27 18:07:15 +000017306 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017307 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017308 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017309 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017310 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017311 DAG.getConstant(MulAmt2, VT));
17312
17313 // Do not add new nodes to DAG combiner worklist.
17314 DCI.CombineTo(N, NewMul, false);
17315 }
17316 return SDValue();
17317}
17318
Evan Chengad9c0a32009-12-15 00:53:42 +000017319static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17320 SDValue N0 = N->getOperand(0);
17321 SDValue N1 = N->getOperand(1);
17322 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17323 EVT VT = N0.getValueType();
17324
17325 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17326 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017327 if (VT.isInteger() && !VT.isVector() &&
17328 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017329 N0.getOperand(1).getOpcode() == ISD::Constant) {
17330 SDValue N00 = N0.getOperand(0);
17331 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17332 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17333 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17334 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17335 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17336 APInt ShAmt = N1C->getAPIntValue();
17337 Mask = Mask.shl(ShAmt);
17338 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017339 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017340 N00, DAG.getConstant(Mask, VT));
17341 }
17342 }
17343
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017344 // Hardware support for vector shifts is sparse which makes us scalarize the
17345 // vector operations in many cases. Also, on sandybridge ADD is faster than
17346 // shl.
17347 // (shl V, 1) -> add V,V
17348 if (isSplatVector(N1.getNode())) {
17349 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17350 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17351 // We shift all of the values by one. In many cases we do not have
17352 // hardware support for this operation. This is better expressed as an ADD
17353 // of two values.
17354 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017355 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017356 }
17357 }
17358
Evan Chengad9c0a32009-12-15 00:53:42 +000017359 return SDValue();
17360}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017361
Stephen Linfff96732013-07-12 15:31:36 +000017362/// \brief Returns a vector of 0s if the node in input is a vector logical
17363/// shift by a constant amount which is known to be bigger than or equal
17364/// to the vector element size in bits.
17365static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17366 const X86Subtarget *Subtarget) {
17367 EVT VT = N->getValueType(0);
17368
17369 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17370 (!Subtarget->hasInt256() ||
17371 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17372 return SDValue();
17373
17374 SDValue Amt = N->getOperand(1);
17375 SDLoc DL(N);
17376 if (isSplatVector(Amt.getNode())) {
17377 SDValue SclrAmt = Amt->getOperand(0);
17378 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17379 APInt ShiftAmt = C->getAPIntValue();
17380 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17381
17382 // SSE2/AVX2 logical shifts always return a vector of 0s
17383 // if the shift amount is bigger than or equal to
17384 // the element size. The constant shift amount will be
17385 // encoded as a 8-bit immediate.
17386 if (ShiftAmt.trunc(8).uge(MaxAmount))
17387 return getZeroVector(VT, Subtarget, DAG, DL);
17388 }
17389 }
17390
17391 return SDValue();
17392}
17393
Nadav Rotem0fb65232013-05-04 23:24:56 +000017394/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017395static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017396 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017397 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017398 if (N->getOpcode() == ISD::SHL) {
17399 SDValue V = PerformSHLCombine(N, DAG);
17400 if (V.getNode()) return V;
17401 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017402
Stephen Linfff96732013-07-12 15:31:36 +000017403 if (N->getOpcode() != ISD::SRA) {
17404 // Try to fold this logical shift into a zero vector.
17405 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17406 if (V.getNode()) return V;
17407 }
17408
Michael Liao42317cc2013-03-20 02:33:21 +000017409 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017410}
17411
Stuart Hastings865f0932011-06-03 23:53:54 +000017412// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17413// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17414// and friends. Likewise for OR -> CMPNEQSS.
17415static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17416 TargetLowering::DAGCombinerInfo &DCI,
17417 const X86Subtarget *Subtarget) {
17418 unsigned opcode;
17419
17420 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17421 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017422 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017423 SDValue N0 = N->getOperand(0);
17424 SDValue N1 = N->getOperand(1);
17425 SDValue CMP0 = N0->getOperand(1);
17426 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017427 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017428
17429 // The SETCCs should both refer to the same CMP.
17430 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17431 return SDValue();
17432
17433 SDValue CMP00 = CMP0->getOperand(0);
17434 SDValue CMP01 = CMP0->getOperand(1);
17435 EVT VT = CMP00.getValueType();
17436
17437 if (VT == MVT::f32 || VT == MVT::f64) {
17438 bool ExpectingFlags = false;
17439 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017440 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017441 !ExpectingFlags && UI != UE; ++UI)
17442 switch (UI->getOpcode()) {
17443 default:
17444 case ISD::BR_CC:
17445 case ISD::BRCOND:
17446 case ISD::SELECT:
17447 ExpectingFlags = true;
17448 break;
17449 case ISD::CopyToReg:
17450 case ISD::SIGN_EXTEND:
17451 case ISD::ZERO_EXTEND:
17452 case ISD::ANY_EXTEND:
17453 break;
17454 }
17455
17456 if (!ExpectingFlags) {
17457 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17458 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17459
17460 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17461 X86::CondCode tmp = cc0;
17462 cc0 = cc1;
17463 cc1 = tmp;
17464 }
17465
17466 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17467 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17468 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17469 X86ISD::NodeType NTOperator = is64BitFP ?
17470 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17471 // FIXME: need symbolic constants for these magic numbers.
17472 // See X86ATTInstPrinter.cpp:printSSECC().
17473 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17474 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17475 DAG.getConstant(x86cc, MVT::i8));
17476 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17477 OnesOrZeroesF);
17478 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17479 DAG.getConstant(1, MVT::i32));
17480 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17481 return OneBitOfTruth;
17482 }
17483 }
17484 }
17485 }
17486 return SDValue();
17487}
17488
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017489/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17490/// so it can be folded inside ANDNP.
17491static bool CanFoldXORWithAllOnes(const SDNode *N) {
17492 EVT VT = N->getValueType(0);
17493
17494 // Match direct AllOnes for 128 and 256-bit vectors
17495 if (ISD::isBuildVectorAllOnes(N))
17496 return true;
17497
17498 // Look through a bit convert.
17499 if (N->getOpcode() == ISD::BITCAST)
17500 N = N->getOperand(0).getNode();
17501
17502 // Sometimes the operand may come from a insert_subvector building a 256-bit
17503 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017504 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017505 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17506 SDValue V1 = N->getOperand(0);
17507 SDValue V2 = N->getOperand(1);
17508
17509 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17510 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17511 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17512 ISD::isBuildVectorAllOnes(V2.getNode()))
17513 return true;
17514 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017515
17516 return false;
17517}
17518
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017519// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17520// register. In most cases we actually compare or select YMM-sized registers
17521// and mixing the two types creates horrible code. This method optimizes
17522// some of the transition sequences.
17523static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17524 TargetLowering::DAGCombinerInfo &DCI,
17525 const X86Subtarget *Subtarget) {
17526 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017527 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017528 return SDValue();
17529
17530 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17531 N->getOpcode() == ISD::ZERO_EXTEND ||
17532 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17533
17534 SDValue Narrow = N->getOperand(0);
17535 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017536 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017537 return SDValue();
17538
17539 if (Narrow->getOpcode() != ISD::XOR &&
17540 Narrow->getOpcode() != ISD::AND &&
17541 Narrow->getOpcode() != ISD::OR)
17542 return SDValue();
17543
17544 SDValue N0 = Narrow->getOperand(0);
17545 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017546 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017547
17548 // The Left side has to be a trunc.
17549 if (N0.getOpcode() != ISD::TRUNCATE)
17550 return SDValue();
17551
17552 // The type of the truncated inputs.
17553 EVT WideVT = N0->getOperand(0)->getValueType(0);
17554 if (WideVT != VT)
17555 return SDValue();
17556
17557 // The right side has to be a 'trunc' or a constant vector.
17558 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17559 bool RHSConst = (isSplatVector(N1.getNode()) &&
17560 isa<ConstantSDNode>(N1->getOperand(0)));
17561 if (!RHSTrunc && !RHSConst)
17562 return SDValue();
17563
17564 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17565
17566 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17567 return SDValue();
17568
17569 // Set N0 and N1 to hold the inputs to the new wide operation.
17570 N0 = N0->getOperand(0);
17571 if (RHSConst) {
17572 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17573 N1->getOperand(0));
17574 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17575 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17576 } else if (RHSTrunc) {
17577 N1 = N1->getOperand(0);
17578 }
17579
17580 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017581 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017582 unsigned Opcode = N->getOpcode();
17583 switch (Opcode) {
17584 case ISD::ANY_EXTEND:
17585 return Op;
17586 case ISD::ZERO_EXTEND: {
17587 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17588 APInt Mask = APInt::getAllOnesValue(InBits);
17589 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17590 return DAG.getNode(ISD::AND, DL, VT,
17591 Op, DAG.getConstant(Mask, VT));
17592 }
17593 case ISD::SIGN_EXTEND:
17594 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17595 Op, DAG.getValueType(NarrowVT));
17596 default:
17597 llvm_unreachable("Unexpected opcode");
17598 }
17599}
17600
Nate Begemanb65c1752010-12-17 22:55:37 +000017601static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17602 TargetLowering::DAGCombinerInfo &DCI,
17603 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017604 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017605 if (DCI.isBeforeLegalizeOps())
17606 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017607
Stuart Hastings865f0932011-06-03 23:53:54 +000017608 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17609 if (R.getNode())
17610 return R;
17611
Craig Topperb6ac30a2013-08-30 06:52:21 +000017612 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017613 // BLSI is X & (-X)
17614 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017615 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017616 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017617 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017618 SDValue N0 = N->getOperand(0);
17619 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017620 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017621
Craig Topperb6ac30a2013-08-30 06:52:21 +000017622 if (Subtarget->hasBMI()) {
17623 // Check LHS for neg
17624 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17625 isZero(N0.getOperand(0)))
17626 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017627
Craig Topperb6ac30a2013-08-30 06:52:21 +000017628 // Check RHS for neg
17629 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17630 isZero(N1.getOperand(0)))
17631 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017632
Craig Topperb6ac30a2013-08-30 06:52:21 +000017633 // Check LHS for X-1
17634 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17635 isAllOnes(N0.getOperand(1)))
17636 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017637
Craig Topperb6ac30a2013-08-30 06:52:21 +000017638 // Check RHS for X-1
17639 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17640 isAllOnes(N1.getOperand(1)))
17641 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17642 }
17643
17644 if (Subtarget->hasBMI2()) {
17645 // Check for (and (add (shl 1, Y), -1), X)
17646 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17647 SDValue N00 = N0.getOperand(0);
17648 if (N00.getOpcode() == ISD::SHL) {
17649 SDValue N001 = N00.getOperand(1);
17650 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17651 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17652 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017653 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017654 }
17655 }
17656
17657 // Check for (and X, (add (shl 1, Y), -1))
17658 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17659 SDValue N10 = N1.getOperand(0);
17660 if (N10.getOpcode() == ISD::SHL) {
17661 SDValue N101 = N10.getOperand(1);
17662 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17663 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17664 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017665 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017666 }
17667 }
17668 }
Craig Topperb4c94572011-10-21 06:55:01 +000017669
Craig Topperfafe4bb2013-10-03 04:16:45 +000017670 // Check for BEXTR.
17671 if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17672 (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17673 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17674 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17675 if (MaskNode && ShiftNode) {
17676 uint64_t Mask = MaskNode->getZExtValue();
17677 uint64_t Shift = ShiftNode->getZExtValue();
17678 if (isMask_64(Mask)) {
17679 uint64_t MaskSize = CountPopulation_64(Mask);
17680 if (Shift + MaskSize <= VT.getSizeInBits())
17681 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17682 DAG.getConstant(Shift | (MaskSize << 8), VT));
17683 }
17684 }
17685 } // BEXTR
17686
Craig Topper54a11172011-10-14 07:06:56 +000017687 return SDValue();
17688 }
17689
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017690 // Want to form ANDNP nodes:
17691 // 1) In the hopes of then easily combining them with OR and AND nodes
17692 // to form PBLEND/PSIGN.
17693 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017694 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017695 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017696
Nate Begemanb65c1752010-12-17 22:55:37 +000017697 SDValue N0 = N->getOperand(0);
17698 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017699 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017700
Nate Begemanb65c1752010-12-17 22:55:37 +000017701 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017702 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017703 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17704 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017705 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017706
17707 // Check RHS for vnot
17708 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017709 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17710 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017711 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017712
Nate Begemanb65c1752010-12-17 22:55:37 +000017713 return SDValue();
17714}
17715
Evan Cheng760d1942010-01-04 21:22:48 +000017716static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017717 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017718 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017719 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017720 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017721 return SDValue();
17722
Stuart Hastings865f0932011-06-03 23:53:54 +000017723 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17724 if (R.getNode())
17725 return R;
17726
Evan Cheng760d1942010-01-04 21:22:48 +000017727 SDValue N0 = N->getOperand(0);
17728 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017729
Nate Begemanb65c1752010-12-17 22:55:37 +000017730 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017731 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017732 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017733 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017734 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017735
Craig Topper1666cb62011-11-19 07:07:26 +000017736 // Canonicalize pandn to RHS
17737 if (N0.getOpcode() == X86ISD::ANDNP)
17738 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017739 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017740 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17741 SDValue Mask = N1.getOperand(0);
17742 SDValue X = N1.getOperand(1);
17743 SDValue Y;
17744 if (N0.getOperand(0) == Mask)
17745 Y = N0.getOperand(1);
17746 if (N0.getOperand(1) == Mask)
17747 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017748
Craig Topper1666cb62011-11-19 07:07:26 +000017749 // Check to see if the mask appeared in both the AND and ANDNP and
17750 if (!Y.getNode())
17751 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017752
Craig Topper1666cb62011-11-19 07:07:26 +000017753 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017754 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017755 if (Mask.getOpcode() == ISD::BITCAST)
17756 Mask = Mask.getOperand(0);
17757 if (X.getOpcode() == ISD::BITCAST)
17758 X = X.getOperand(0);
17759 if (Y.getOpcode() == ISD::BITCAST)
17760 Y = Y.getOperand(0);
17761
Craig Topper1666cb62011-11-19 07:07:26 +000017762 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017763
Craig Toppered2e13d2012-01-22 19:15:14 +000017764 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017765 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17766 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017767 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017768 unsigned SraAmt = ~0;
17769 if (Mask.getOpcode() == ISD::SRA) {
17770 SDValue Amt = Mask.getOperand(1);
17771 if (isSplatVector(Amt.getNode())) {
17772 SDValue SclrAmt = Amt->getOperand(0);
17773 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17774 SraAmt = C->getZExtValue();
17775 }
17776 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17777 SDValue SraC = Mask.getOperand(1);
17778 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17779 }
Craig Topper1666cb62011-11-19 07:07:26 +000017780 if ((SraAmt + 1) != EltBits)
17781 return SDValue();
17782
Andrew Trickac6d9be2013-05-25 02:42:55 +000017783 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017784
17785 // Now we know we at least have a plendvb with the mask val. See if
17786 // we can form a psignb/w/d.
17787 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017788 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17789 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017790 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17791 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17792 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017793 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017794 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017795 }
17796 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017797 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017798 return SDValue();
17799
17800 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17801
17802 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17803 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17804 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017805 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017806 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017807 }
17808 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017809
Craig Topper1666cb62011-11-19 07:07:26 +000017810 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17811 return SDValue();
17812
Nate Begemanb65c1752010-12-17 22:55:37 +000017813 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017814 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17815 std::swap(N0, N1);
17816 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17817 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017818 if (!N0.hasOneUse() || !N1.hasOneUse())
17819 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017820
17821 SDValue ShAmt0 = N0.getOperand(1);
17822 if (ShAmt0.getValueType() != MVT::i8)
17823 return SDValue();
17824 SDValue ShAmt1 = N1.getOperand(1);
17825 if (ShAmt1.getValueType() != MVT::i8)
17826 return SDValue();
17827 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17828 ShAmt0 = ShAmt0.getOperand(0);
17829 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17830 ShAmt1 = ShAmt1.getOperand(0);
17831
Andrew Trickac6d9be2013-05-25 02:42:55 +000017832 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017833 unsigned Opc = X86ISD::SHLD;
17834 SDValue Op0 = N0.getOperand(0);
17835 SDValue Op1 = N1.getOperand(0);
17836 if (ShAmt0.getOpcode() == ISD::SUB) {
17837 Opc = X86ISD::SHRD;
17838 std::swap(Op0, Op1);
17839 std::swap(ShAmt0, ShAmt1);
17840 }
17841
Evan Cheng8b1190a2010-04-28 01:18:01 +000017842 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017843 if (ShAmt1.getOpcode() == ISD::SUB) {
17844 SDValue Sum = ShAmt1.getOperand(0);
17845 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017846 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17847 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17848 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17849 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017850 return DAG.getNode(Opc, DL, VT,
17851 Op0, Op1,
17852 DAG.getNode(ISD::TRUNCATE, DL,
17853 MVT::i8, ShAmt0));
17854 }
17855 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17856 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17857 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017858 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017859 return DAG.getNode(Opc, DL, VT,
17860 N0.getOperand(0), N1.getOperand(0),
17861 DAG.getNode(ISD::TRUNCATE, DL,
17862 MVT::i8, ShAmt0));
17863 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017864
Evan Cheng760d1942010-01-04 21:22:48 +000017865 return SDValue();
17866}
17867
Manman Ren92363622012-06-07 22:39:10 +000017868// Generate NEG and CMOV for integer abs.
17869static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17870 EVT VT = N->getValueType(0);
17871
17872 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17873 // 8-bit integer abs to NEG and CMOV.
17874 if (VT.isInteger() && VT.getSizeInBits() == 8)
17875 return SDValue();
17876
17877 SDValue N0 = N->getOperand(0);
17878 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017879 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017880
17881 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17882 // and change it to SUB and CMOV.
17883 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17884 N0.getOpcode() == ISD::ADD &&
17885 N0.getOperand(1) == N1 &&
17886 N1.getOpcode() == ISD::SRA &&
17887 N1.getOperand(0) == N0.getOperand(0))
17888 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17889 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17890 // Generate SUB & CMOV.
17891 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17892 DAG.getConstant(0, VT), N0.getOperand(0));
17893
17894 SDValue Ops[] = { N0.getOperand(0), Neg,
17895 DAG.getConstant(X86::COND_GE, MVT::i8),
17896 SDValue(Neg.getNode(), 1) };
17897 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17898 Ops, array_lengthof(Ops));
17899 }
17900 return SDValue();
17901}
17902
Craig Topper3738ccd2011-12-27 06:27:23 +000017903// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000017904static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17905 TargetLowering::DAGCombinerInfo &DCI,
17906 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017907 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000017908 if (DCI.isBeforeLegalizeOps())
17909 return SDValue();
17910
Manman Ren45d53b82012-06-08 18:58:26 +000017911 if (Subtarget->hasCMov()) {
17912 SDValue RV = performIntegerAbsCombine(N, DAG);
17913 if (RV.getNode())
17914 return RV;
17915 }
Manman Ren92363622012-06-07 22:39:10 +000017916
17917 // Try forming BMI if it is available.
17918 if (!Subtarget->hasBMI())
17919 return SDValue();
17920
Craig Topperb4c94572011-10-21 06:55:01 +000017921 if (VT != MVT::i32 && VT != MVT::i64)
17922 return SDValue();
17923
Craig Topper3738ccd2011-12-27 06:27:23 +000017924 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17925
Craig Topperb4c94572011-10-21 06:55:01 +000017926 // Create BLSMSK instructions by finding X ^ (X-1)
17927 SDValue N0 = N->getOperand(0);
17928 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017929 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000017930
17931 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17932 isAllOnes(N0.getOperand(1)))
17933 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17934
17935 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17936 isAllOnes(N1.getOperand(1)))
17937 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17938
17939 return SDValue();
17940}
17941
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017942/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17943static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000017944 TargetLowering::DAGCombinerInfo &DCI,
17945 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017946 LoadSDNode *Ld = cast<LoadSDNode>(N);
17947 EVT RegVT = Ld->getValueType(0);
17948 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000017949 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017950 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017951 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017952
Michael Liaod4584c92013-03-25 23:50:10 +000017953 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017954 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000017955 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000017956 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000017957 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000017958 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000017959 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000017960 if (NumElems < 2)
17961 return SDValue();
17962
Nadav Rotem48177ac2013-01-18 23:10:30 +000017963 SDValue Ptr = Ld->getBasePtr();
17964 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17965
17966 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17967 NumElems/2);
17968 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17969 Ld->getPointerInfo(), Ld->isVolatile(),
17970 Ld->isNonTemporal(), Ld->isInvariant(),
17971 Alignment);
17972 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17973 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17974 Ld->getPointerInfo(), Ld->isVolatile(),
17975 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000017976 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000017977 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17978 Load1.getValue(1),
17979 Load2.getValue(1));
17980
17981 SDValue NewVec = DAG.getUNDEF(RegVT);
17982 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17983 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17984 return DCI.CombineTo(N, NewVec, TF, true);
17985 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017986
Nadav Rotemca6f2962011-09-18 19:00:23 +000017987 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000017988 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17989 // expansion is still better than scalar code.
17990 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17991 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017992 // TODO: It is possible to support ZExt by zeroing the undef values
17993 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000017994 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17995 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000017996 assert(MemVT != RegVT && "Cannot extend to the same type");
17997 assert(MemVT.isVector() && "Must load a vector from memory");
17998
17999 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018000 unsigned MemSz = MemVT.getSizeInBits();
18001 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018002
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018003 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18004 return SDValue();
18005
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018006 // All sizes must be a power of two.
18007 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18008 return SDValue();
18009
18010 // Attempt to load the original value using scalar loads.
18011 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018012 MVT SclrLoadTy = MVT::i8;
18013 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18014 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18015 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018016 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018017 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018018 }
18019 }
18020
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018021 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18022 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18023 (64 <= MemSz))
18024 SclrLoadTy = MVT::f64;
18025
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018026 // Calculate the number of scalar loads that we need to perform
18027 // in order to load our vector from memory.
18028 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018029 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18030 return SDValue();
18031
18032 unsigned loadRegZize = RegSz;
18033 if (Ext == ISD::SEXTLOAD && RegSz == 256)
18034 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018035
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018036 // Represent our vector as a sequence of elements which are the
18037 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018038 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018039 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018040
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018041 // Represent the data using the same element type that is stored in
18042 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000018043 EVT WideVecVT =
18044 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018045 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018046
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018047 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18048 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018049
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018050 // We can't shuffle using an illegal type.
18051 if (!TLI.isTypeLegal(WideVecVT))
18052 return SDValue();
18053
18054 SmallVector<SDValue, 8> Chains;
18055 SDValue Ptr = Ld->getBasePtr();
18056 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18057 TLI.getPointerTy());
18058 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18059
18060 for (unsigned i = 0; i < NumLoads; ++i) {
18061 // Perform a single load.
18062 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18063 Ptr, Ld->getPointerInfo(),
18064 Ld->isVolatile(), Ld->isNonTemporal(),
18065 Ld->isInvariant(), Ld->getAlignment());
18066 Chains.push_back(ScalarLoad.getValue(1));
18067 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18068 // another round of DAGCombining.
18069 if (i == 0)
18070 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18071 else
18072 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18073 ScalarLoad, DAG.getIntPtrConstant(i));
18074
18075 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18076 }
18077
18078 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18079 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018080
18081 // Bitcast the loaded value to a vector of the original element type, in
18082 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018083 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018084 unsigned SizeRatio = RegSz/MemSz;
18085
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018086 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000018087 // If we have SSE4.1 we can directly emit a VSEXT node.
18088 if (Subtarget->hasSSE41()) {
18089 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18090 return DCI.CombineTo(N, Sext, TF, true);
18091 }
18092
18093 // Otherwise we'll shuffle the small elements in the high bits of the
18094 // larger type and perform an arithmetic shift. If the shift is not legal
18095 // it's better to scalarize.
18096 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18097 return SDValue();
18098
18099 // Redistribute the loaded elements into the different locations.
18100 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18101 for (unsigned i = 0; i != NumElems; ++i)
18102 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18103
18104 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18105 DAG.getUNDEF(WideVecVT),
18106 &ShuffleVec[0]);
18107
18108 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18109
18110 // Build the arithmetic shift.
18111 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18112 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018113 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18114 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018115
18116 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018117 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018118
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018119 // Redistribute the loaded elements into the different locations.
18120 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018121 for (unsigned i = 0; i != NumElems; ++i)
18122 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018123
18124 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018125 DAG.getUNDEF(WideVecVT),
18126 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018127
18128 // Bitcast to the requested type.
18129 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18130 // Replace the original load with the new sequence
18131 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018132 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018133 }
18134
18135 return SDValue();
18136}
18137
Chris Lattner149a4e52008-02-22 02:09:43 +000018138/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018139static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018140 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018141 StoreSDNode *St = cast<StoreSDNode>(N);
18142 EVT VT = St->getValue().getValueType();
18143 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018144 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018145 SDValue StoredVal = St->getOperand(1);
18146 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18147
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018148 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018149 // On Sandy Bridge, 256-bit memory operations are executed by two
18150 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18151 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018152 unsigned Alignment = St->getAlignment();
18153 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018154 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018155 StVT == VT && !IsAligned) {
18156 unsigned NumElems = VT.getVectorNumElements();
18157 if (NumElems < 2)
18158 return SDValue();
18159
18160 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18161 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018162
18163 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18164 SDValue Ptr0 = St->getBasePtr();
18165 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18166
18167 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18168 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018169 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018170 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18171 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018172 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018173 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018174 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18175 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018176
18177 // Optimize trunc store (of multiple scalars) to shuffle and store.
18178 // First, pack all of the elements in one place. Next, store to memory
18179 // in fewer chunks.
18180 if (St->isTruncatingStore() && VT.isVector()) {
18181 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18182 unsigned NumElems = VT.getVectorNumElements();
18183 assert(StVT != VT && "Cannot truncate to the same type");
18184 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18185 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18186
18187 // From, To sizes and ElemCount must be pow of two
18188 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018189 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018190 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018191 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018192
Nadav Rotem614061b2011-08-10 19:30:14 +000018193 unsigned SizeRatio = FromSz / ToSz;
18194
18195 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18196
18197 // Create a type on which we perform the shuffle
18198 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18199 StVT.getScalarType(), NumElems*SizeRatio);
18200
18201 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18202
18203 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18204 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018205 for (unsigned i = 0; i != NumElems; ++i)
18206 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018207
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018208 // Can't shuffle using an illegal type.
18209 if (!TLI.isTypeLegal(WideVecVT))
18210 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018211
18212 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018213 DAG.getUNDEF(WideVecVT),
18214 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018215 // At this point all of the data is stored at the bottom of the
18216 // register. We now need to save it to mem.
18217
18218 // Find the largest store unit
18219 MVT StoreType = MVT::i8;
18220 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18221 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18222 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018223 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018224 StoreType = Tp;
18225 }
18226
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018227 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18228 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18229 (64 <= NumElems * ToSz))
18230 StoreType = MVT::f64;
18231
Nadav Rotem614061b2011-08-10 19:30:14 +000018232 // Bitcast the original vector into a vector of store-size units
18233 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018234 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018235 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18236 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18237 SmallVector<SDValue, 8> Chains;
18238 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18239 TLI.getPointerTy());
18240 SDValue Ptr = St->getBasePtr();
18241
18242 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018243 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018244 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18245 StoreType, ShuffWide,
18246 DAG.getIntPtrConstant(i));
18247 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18248 St->getPointerInfo(), St->isVolatile(),
18249 St->isNonTemporal(), St->getAlignment());
18250 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18251 Chains.push_back(Ch);
18252 }
18253
18254 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18255 Chains.size());
18256 }
18257
Chris Lattner149a4e52008-02-22 02:09:43 +000018258 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18259 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018260 // A preferable solution to the general problem is to figure out the right
18261 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018262
18263 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018264 if (VT.getSizeInBits() != 64)
18265 return SDValue();
18266
Devang Patel578efa92009-06-05 21:57:13 +000018267 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018268 bool NoImplicitFloatOps = F->getAttributes().
18269 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018270 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018271 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018272 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018273 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018274 isa<LoadSDNode>(St->getValue()) &&
18275 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18276 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018277 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018278 LoadSDNode *Ld = 0;
18279 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018280 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018281 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018282 // Must be a store of a load. We currently handle two cases: the load
18283 // is a direct child, and it's under an intervening TokenFactor. It is
18284 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018285 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018286 Ld = cast<LoadSDNode>(St->getChain());
18287 else if (St->getValue().hasOneUse() &&
18288 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018289 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018290 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018291 TokenFactorIndex = i;
18292 Ld = cast<LoadSDNode>(St->getValue());
18293 } else
18294 Ops.push_back(ChainVal->getOperand(i));
18295 }
18296 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018297
Evan Cheng536e6672009-03-12 05:59:15 +000018298 if (!Ld || !ISD::isNormalLoad(Ld))
18299 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018300
Evan Cheng536e6672009-03-12 05:59:15 +000018301 // If this is not the MMX case, i.e. we are just turning i64 load/store
18302 // into f64 load/store, avoid the transformation if there are multiple
18303 // uses of the loaded value.
18304 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18305 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018306
Andrew Trickac6d9be2013-05-25 02:42:55 +000018307 SDLoc LdDL(Ld);
18308 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018309 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18310 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18311 // pair instead.
18312 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018313 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018314 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18315 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018316 Ld->isNonTemporal(), Ld->isInvariant(),
18317 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018318 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018319 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018320 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018321 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018322 Ops.size());
18323 }
Evan Cheng536e6672009-03-12 05:59:15 +000018324 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018325 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018326 St->isVolatile(), St->isNonTemporal(),
18327 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018328 }
Evan Cheng536e6672009-03-12 05:59:15 +000018329
18330 // Otherwise, lower to two pairs of 32-bit loads / stores.
18331 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018332 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18333 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018334
Owen Anderson825b72b2009-08-11 20:47:22 +000018335 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018336 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018337 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018338 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018339 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018340 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018341 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018342 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018343 MinAlign(Ld->getAlignment(), 4));
18344
18345 SDValue NewChain = LoLd.getValue(1);
18346 if (TokenFactorIndex != -1) {
18347 Ops.push_back(LoLd);
18348 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018349 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018350 Ops.size());
18351 }
18352
18353 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018354 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18355 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018356
18357 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018358 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018359 St->isVolatile(), St->isNonTemporal(),
18360 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018361 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018362 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018363 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018364 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018365 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018366 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018367 }
Dan Gohman475871a2008-07-27 21:46:04 +000018368 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018369}
18370
Duncan Sands17470be2011-09-22 20:15:48 +000018371/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18372/// and return the operands for the horizontal operation in LHS and RHS. A
18373/// horizontal operation performs the binary operation on successive elements
18374/// of its first operand, then on successive elements of its second operand,
18375/// returning the resulting values in a vector. For example, if
18376/// A = < float a0, float a1, float a2, float a3 >
18377/// and
18378/// B = < float b0, float b1, float b2, float b3 >
18379/// then the result of doing a horizontal operation on A and B is
18380/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18381/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18382/// A horizontal-op B, for some already available A and B, and if so then LHS is
18383/// set to A, RHS to B, and the routine returns 'true'.
18384/// Note that the binary operation should have the property that if one of the
18385/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018386static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018387 // Look for the following pattern: if
18388 // A = < float a0, float a1, float a2, float a3 >
18389 // B = < float b0, float b1, float b2, float b3 >
18390 // and
18391 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18392 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18393 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18394 // which is A horizontal-op B.
18395
18396 // At least one of the operands should be a vector shuffle.
18397 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18398 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18399 return false;
18400
Craig Topper5a0910b2013-08-15 02:33:50 +000018401 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018402
18403 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18404 "Unsupported vector type for horizontal add/sub");
18405
18406 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18407 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018408 unsigned NumElts = VT.getVectorNumElements();
18409 unsigned NumLanes = VT.getSizeInBits()/128;
18410 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018411 assert((NumLaneElts % 2 == 0) &&
18412 "Vector type should have an even number of elements in each lane");
18413 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018414
18415 // View LHS in the form
18416 // LHS = VECTOR_SHUFFLE A, B, LMask
18417 // If LHS is not a shuffle then pretend it is the shuffle
18418 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18419 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18420 // type VT.
18421 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018422 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018423 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18424 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18425 A = LHS.getOperand(0);
18426 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18427 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018428 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18429 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018430 } else {
18431 if (LHS.getOpcode() != ISD::UNDEF)
18432 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018433 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018434 LMask[i] = i;
18435 }
18436
18437 // Likewise, view RHS in the form
18438 // RHS = VECTOR_SHUFFLE C, D, RMask
18439 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018440 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018441 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18442 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18443 C = RHS.getOperand(0);
18444 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18445 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018446 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18447 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018448 } else {
18449 if (RHS.getOpcode() != ISD::UNDEF)
18450 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018451 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018452 RMask[i] = i;
18453 }
18454
18455 // Check that the shuffles are both shuffling the same vectors.
18456 if (!(A == C && B == D) && !(A == D && B == C))
18457 return false;
18458
18459 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18460 if (!A.getNode() && !B.getNode())
18461 return false;
18462
18463 // If A and B occur in reverse order in RHS, then "swap" them (which means
18464 // rewriting the mask).
18465 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018466 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018467
18468 // At this point LHS and RHS are equivalent to
18469 // LHS = VECTOR_SHUFFLE A, B, LMask
18470 // RHS = VECTOR_SHUFFLE A, B, RMask
18471 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018472 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18473 for (unsigned i = 0; i != NumLaneElts; ++i) {
18474 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018475
Craig Topper57bc5a02013-08-06 06:54:25 +000018476 // Ignore any UNDEF components.
18477 if (LIdx < 0 || RIdx < 0 ||
18478 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18479 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18480 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018481
Craig Topper57bc5a02013-08-06 06:54:25 +000018482 // Check that successive elements are being operated on. If not, this is
18483 // not a horizontal operation.
18484 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18485 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18486 if (!(LIdx == Index && RIdx == Index + 1) &&
18487 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18488 return false;
18489 }
Duncan Sands17470be2011-09-22 20:15:48 +000018490 }
18491
18492 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18493 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18494 return true;
18495}
18496
18497/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18498static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18499 const X86Subtarget *Subtarget) {
18500 EVT VT = N->getValueType(0);
18501 SDValue LHS = N->getOperand(0);
18502 SDValue RHS = N->getOperand(1);
18503
18504 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018505 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018506 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018507 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018508 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018509 return SDValue();
18510}
18511
18512/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18513static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18514 const X86Subtarget *Subtarget) {
18515 EVT VT = N->getValueType(0);
18516 SDValue LHS = N->getOperand(0);
18517 SDValue RHS = N->getOperand(1);
18518
18519 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018520 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018521 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018522 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018523 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018524 return SDValue();
18525}
18526
Chris Lattner6cf73262008-01-25 06:14:17 +000018527/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18528/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018529static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018530 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18531 // F[X]OR(0.0, x) -> x
18532 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018533 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18534 if (C->getValueAPF().isPosZero())
18535 return N->getOperand(1);
18536 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18537 if (C->getValueAPF().isPosZero())
18538 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018539 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018540}
18541
Nadav Rotemd60cb112012-08-19 13:06:16 +000018542/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18543/// X86ISD::FMAX nodes.
18544static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18545 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18546
18547 // Only perform optimizations if UnsafeMath is used.
18548 if (!DAG.getTarget().Options.UnsafeFPMath)
18549 return SDValue();
18550
18551 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018552 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018553 unsigned NewOp = 0;
18554 switch (N->getOpcode()) {
18555 default: llvm_unreachable("unknown opcode");
18556 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18557 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18558 }
18559
Andrew Trickac6d9be2013-05-25 02:42:55 +000018560 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018561 N->getOperand(0), N->getOperand(1));
18562}
18563
Chris Lattneraf723b92008-01-25 05:46:26 +000018564/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018565static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018566 // FAND(0.0, x) -> 0.0
18567 // FAND(x, 0.0) -> 0.0
18568 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18569 if (C->getValueAPF().isPosZero())
18570 return N->getOperand(0);
18571 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18572 if (C->getValueAPF().isPosZero())
18573 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018574 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018575}
18576
Benjamin Kramer75311b72013-08-04 12:05:16 +000018577/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18578static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18579 // FANDN(x, 0.0) -> 0.0
18580 // FANDN(0.0, x) -> x
18581 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18582 if (C->getValueAPF().isPosZero())
18583 return N->getOperand(1);
18584 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18585 if (C->getValueAPF().isPosZero())
18586 return N->getOperand(1);
18587 return SDValue();
18588}
18589
Dan Gohmane5af2d32009-01-29 01:59:02 +000018590static SDValue PerformBTCombine(SDNode *N,
18591 SelectionDAG &DAG,
18592 TargetLowering::DAGCombinerInfo &DCI) {
18593 // BT ignores high bits in the bit index operand.
18594 SDValue Op1 = N->getOperand(1);
18595 if (Op1.hasOneUse()) {
18596 unsigned BitWidth = Op1.getValueSizeInBits();
18597 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18598 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018599 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18600 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018601 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018602 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18603 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18604 DCI.CommitTargetLoweringOpt(TLO);
18605 }
18606 return SDValue();
18607}
Chris Lattner83e6c992006-10-04 06:57:07 +000018608
Eli Friedman7a5e5552009-06-07 06:52:44 +000018609static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18610 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018611 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018612 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018613 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018614 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018615 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018616 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018617 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018618 }
18619 return SDValue();
18620}
18621
Matt Arsenault225ed702013-05-18 00:21:46 +000018622static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018623 const X86Subtarget *Subtarget) {
18624 EVT VT = N->getValueType(0);
18625 if (!VT.isVector())
18626 return SDValue();
18627
18628 SDValue N0 = N->getOperand(0);
18629 SDValue N1 = N->getOperand(1);
18630 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018631 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018632
18633 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18634 // both SSE and AVX2 since there is no sign-extended shift right
18635 // operation on a vector with 64-bit elements.
18636 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18637 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18638 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18639 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18640 SDValue N00 = N0.getOperand(0);
18641
Matt Arsenault225ed702013-05-18 00:21:46 +000018642 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018643 // it may be replaced with X86ISD::VSEXT node.
18644 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18645 if (!ISD::isNormalLoad(N00.getNode()))
18646 return SDValue();
18647
18648 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018649 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018650 N00, N1);
18651 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18652 }
18653 }
18654 return SDValue();
18655}
18656
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018657static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18658 TargetLowering::DAGCombinerInfo &DCI,
18659 const X86Subtarget *Subtarget) {
18660 if (!DCI.isBeforeLegalizeOps())
18661 return SDValue();
18662
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018663 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018664 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018665
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018666 EVT VT = N->getValueType(0);
18667 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018668 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18669 if (R.getNode())
18670 return R;
18671 }
18672
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018673 return SDValue();
18674}
18675
Michael Liaof6c24ee2012-08-10 14:39:24 +000018676static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018677 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018678 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018679 EVT VT = N->getValueType(0);
18680
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018681 // Let legalize expand this if it isn't a legal type yet.
18682 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18683 return SDValue();
18684
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018685 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018686 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18687 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018688 return SDValue();
18689
18690 SDValue A = N->getOperand(0);
18691 SDValue B = N->getOperand(1);
18692 SDValue C = N->getOperand(2);
18693
18694 bool NegA = (A.getOpcode() == ISD::FNEG);
18695 bool NegB = (B.getOpcode() == ISD::FNEG);
18696 bool NegC = (C.getOpcode() == ISD::FNEG);
18697
Michael Liaof6c24ee2012-08-10 14:39:24 +000018698 // Negative multiplication when NegA xor NegB
18699 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018700 if (NegA)
18701 A = A.getOperand(0);
18702 if (NegB)
18703 B = B.getOperand(0);
18704 if (NegC)
18705 C = C.getOperand(0);
18706
18707 unsigned Opcode;
18708 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018709 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018710 else
Craig Topperbf404372012-08-31 15:40:30 +000018711 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18712
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018713 return DAG.getNode(Opcode, dl, VT, A, B, C);
18714}
18715
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018716static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018717 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018718 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018719 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18720 // (and (i32 x86isd::setcc_carry), 1)
18721 // This eliminates the zext. This transformation is necessary because
18722 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018723 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018724 SDValue N0 = N->getOperand(0);
18725 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018726
Evan Cheng2e489c42009-12-16 00:53:11 +000018727 if (N0.getOpcode() == ISD::AND &&
18728 N0.hasOneUse() &&
18729 N0.getOperand(0).hasOneUse()) {
18730 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018731 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18732 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18733 if (!C || C->getZExtValue() != 1)
18734 return SDValue();
18735 return DAG.getNode(ISD::AND, dl, VT,
18736 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18737 N00.getOperand(0), N00.getOperand(1)),
18738 DAG.getConstant(1, VT));
18739 }
18740 }
18741
Craig Topper5a529e42013-01-18 06:44:29 +000018742 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018743 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18744 if (R.getNode())
18745 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018746 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018747
Evan Cheng2e489c42009-12-16 00:53:11 +000018748 return SDValue();
18749}
18750
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018751// Optimize x == -y --> x+y == 0
18752// x != -y --> x+y != 0
18753static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18754 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18755 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018756 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018757
18758 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18759 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18760 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018761 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018762 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018763 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018764 addV, DAG.getConstant(0, addV.getValueType()), CC);
18765 }
18766 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18767 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18768 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018769 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018770 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018771 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018772 addV, DAG.getConstant(0, addV.getValueType()), CC);
18773 }
18774 return SDValue();
18775}
18776
Eric Christophere187e252013-01-31 00:50:48 +000018777// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18778// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018779// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018780static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018781 return DAG.getNode(ISD::AND, DL, MVT::i8,
18782 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18783 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18784 DAG.getConstant(1, MVT::i8));
18785}
18786
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018787// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018788static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18789 TargetLowering::DAGCombinerInfo &DCI,
18790 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018791 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018792 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18793 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018794
Shuxin Yanga5526a92012-10-31 23:11:48 +000018795 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018796 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018797 // materializing "setb reg".
18798 //
18799 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18800 // cannot take an immediate as its first operand.
18801 //
Eric Christophere187e252013-01-31 00:50:48 +000018802 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018803 EFLAGS.getValueType().isInteger() &&
18804 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018805 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018806 EFLAGS.getNode()->getVTList(),
18807 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18808 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18809 return MaterializeSETB(DL, NewEFLAGS, DAG);
18810 }
18811 }
18812
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018813 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18814 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18815 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018816 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018817 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018818
Michael Liao2a33cec2012-08-10 19:58:13 +000018819 SDValue Flags;
18820
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018821 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18822 if (Flags.getNode()) {
18823 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18824 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18825 }
18826
Michael Liao2a33cec2012-08-10 19:58:13 +000018827 return SDValue();
18828}
18829
18830// Optimize branch condition evaluation.
18831//
18832static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18833 TargetLowering::DAGCombinerInfo &DCI,
18834 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018835 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018836 SDValue Chain = N->getOperand(0);
18837 SDValue Dest = N->getOperand(1);
18838 SDValue EFLAGS = N->getOperand(3);
18839 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18840
18841 SDValue Flags;
18842
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018843 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18844 if (Flags.getNode()) {
18845 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18846 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18847 Flags);
18848 }
18849
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018850 return SDValue();
18851}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018852
Benjamin Kramer1396c402011-06-18 11:09:41 +000018853static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18854 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018855 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018856 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018857
18858 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018859 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018860 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018861 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018862 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18863 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18864 }
18865
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018866 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18867 // a 32-bit target where SSE doesn't support i64->FP operations.
18868 if (Op0.getOpcode() == ISD::LOAD) {
18869 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18870 EVT VT = Ld->getValueType(0);
18871 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18872 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18873 !XTLI->getSubtarget()->is64Bit() &&
Benjamin Kramer51a82802013-10-07 19:11:35 +000018874 VT == MVT::i64) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018875 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18876 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018877 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18878 return FILDChain;
18879 }
18880 }
18881 return SDValue();
18882}
18883
Chris Lattner23a01992010-12-20 01:37:09 +000018884// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18885static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18886 X86TargetLowering::DAGCombinerInfo &DCI) {
18887 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18888 // the result is either zero or one (depending on the input carry bit).
18889 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18890 if (X86::isZeroNode(N->getOperand(0)) &&
18891 X86::isZeroNode(N->getOperand(1)) &&
18892 // We don't have a good way to replace an EFLAGS use, so only do this when
18893 // dead right now.
18894 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018895 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000018896 EVT VT = N->getValueType(0);
18897 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18898 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18899 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18900 DAG.getConstant(X86::COND_B,MVT::i8),
18901 N->getOperand(2)),
18902 DAG.getConstant(1, VT));
18903 return DCI.CombineTo(N, Res1, CarryOut);
18904 }
18905
18906 return SDValue();
18907}
18908
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018909// fold (add Y, (sete X, 0)) -> adc 0, Y
18910// (add Y, (setne X, 0)) -> sbb -1, Y
18911// (sub (sete X, 0), Y) -> sbb 0, Y
18912// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018913static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018914 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018915
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018916 // Look through ZExts.
18917 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18918 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18919 return SDValue();
18920
18921 SDValue SetCC = Ext.getOperand(0);
18922 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18923 return SDValue();
18924
18925 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18926 if (CC != X86::COND_E && CC != X86::COND_NE)
18927 return SDValue();
18928
18929 SDValue Cmp = SetCC.getOperand(1);
18930 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000018931 !X86::isZeroNode(Cmp.getOperand(1)) ||
18932 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000018933 return SDValue();
18934
18935 SDValue CmpOp0 = Cmp.getOperand(0);
18936 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18937 DAG.getConstant(1, CmpOp0.getValueType()));
18938
18939 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18940 if (CC == X86::COND_NE)
18941 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18942 DL, OtherVal.getValueType(), OtherVal,
18943 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18944 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18945 DL, OtherVal.getValueType(), OtherVal,
18946 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18947}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018948
Craig Topper54f952a2011-11-19 09:02:40 +000018949/// PerformADDCombine - Do target-specific dag combines on integer adds.
18950static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18951 const X86Subtarget *Subtarget) {
18952 EVT VT = N->getValueType(0);
18953 SDValue Op0 = N->getOperand(0);
18954 SDValue Op1 = N->getOperand(1);
18955
18956 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018957 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018958 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000018959 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018960 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018961
18962 return OptimizeConditionalInDecrement(N, DAG);
18963}
18964
18965static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18966 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018967 SDValue Op0 = N->getOperand(0);
18968 SDValue Op1 = N->getOperand(1);
18969
18970 // X86 can't encode an immediate LHS of a sub. See if we can push the
18971 // negation into a preceding instruction.
18972 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018973 // If the RHS of the sub is a XOR with one use and a constant, invert the
18974 // immediate. Then add one to the LHS of the sub so we can turn
18975 // X-Y -> X+~Y+1, saving one register.
18976 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18977 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000018978 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018979 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018980 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018981 Op1.getOperand(0),
18982 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018983 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000018984 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018985 }
18986 }
18987
Craig Topper54f952a2011-11-19 09:02:40 +000018988 // Try to synthesize horizontal adds from adds of shuffles.
18989 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000018990 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018991 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000018992 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018993 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000018994
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000018995 return OptimizeConditionalInDecrement(N, DAG);
18996}
18997
Michael Liaod9d09602012-10-23 17:34:00 +000018998/// performVZEXTCombine - Performs build vector combines
18999static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19000 TargetLowering::DAGCombinerInfo &DCI,
19001 const X86Subtarget *Subtarget) {
19002 // (vzext (bitcast (vzext (x)) -> (vzext x)
19003 SDValue In = N->getOperand(0);
19004 while (In.getOpcode() == ISD::BITCAST)
19005 In = In.getOperand(0);
19006
19007 if (In.getOpcode() != X86ISD::VZEXT)
19008 return SDValue();
19009
Andrew Trickac6d9be2013-05-25 02:42:55 +000019010 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000019011 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000019012}
19013
Dan Gohman475871a2008-07-27 21:46:04 +000019014SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000019015 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000019016 SelectionDAG &DAG = DCI.DAG;
19017 switch (N->getOpcode()) {
19018 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000019019 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000019020 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000019021 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000019022 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019023 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000019024 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
19025 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000019026 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000019027 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000019028 case ISD::SHL:
19029 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000019030 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000019031 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000019032 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000019033 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000019034 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000019035 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000019036 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000019037 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
19038 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000019039 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000019040 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000019041 case X86ISD::FMIN:
19042 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000019043 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000019044 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000019045 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000019046 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000019047 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000019048 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000019049 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000019050 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000019051 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000019052 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019053 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000019054 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000019055 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000019056 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000019057 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000019058 case X86ISD::UNPCKH:
19059 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019060 case X86ISD::MOVHLPS:
19061 case X86ISD::MOVLHPS:
19062 case X86ISD::PSHUFD:
19063 case X86ISD::PSHUFHW:
19064 case X86ISD::PSHUFLW:
19065 case X86ISD::MOVSS:
19066 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000019067 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000019068 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000019069 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000019070 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000019071 }
19072
Dan Gohman475871a2008-07-27 21:46:04 +000019073 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000019074}
19075
Evan Chenge5b51ac2010-04-17 06:13:15 +000019076/// isTypeDesirableForOp - Return true if the target has native support for
19077/// the specified value type and it is 'desirable' to use the type for the
19078/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19079/// instruction encodings are longer and some i16 instructions are slow.
19080bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19081 if (!isTypeLegal(VT))
19082 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019083 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000019084 return true;
19085
19086 switch (Opc) {
19087 default:
19088 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000019089 case ISD::LOAD:
19090 case ISD::SIGN_EXTEND:
19091 case ISD::ZERO_EXTEND:
19092 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019093 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019094 case ISD::SRL:
19095 case ISD::SUB:
19096 case ISD::ADD:
19097 case ISD::MUL:
19098 case ISD::AND:
19099 case ISD::OR:
19100 case ISD::XOR:
19101 return false;
19102 }
19103}
19104
19105/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000019106/// beneficial for dag combiner to promote the specified node. If true, it
19107/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000019108bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019109 EVT VT = Op.getValueType();
19110 if (VT != MVT::i16)
19111 return false;
19112
Evan Cheng4c26e932010-04-19 19:29:22 +000019113 bool Promote = false;
19114 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019115 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019116 default: break;
19117 case ISD::LOAD: {
19118 LoadSDNode *LD = cast<LoadSDNode>(Op);
19119 // If the non-extending load has a single use and it's not live out, then it
19120 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019121 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19122 Op.hasOneUse()*/) {
19123 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19124 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19125 // The only case where we'd want to promote LOAD (rather then it being
19126 // promoted as an operand is when it's only use is liveout.
19127 if (UI->getOpcode() != ISD::CopyToReg)
19128 return false;
19129 }
19130 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019131 Promote = true;
19132 break;
19133 }
19134 case ISD::SIGN_EXTEND:
19135 case ISD::ZERO_EXTEND:
19136 case ISD::ANY_EXTEND:
19137 Promote = true;
19138 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019139 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019140 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019141 SDValue N0 = Op.getOperand(0);
19142 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019143 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019144 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019145 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019146 break;
19147 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019148 case ISD::ADD:
19149 case ISD::MUL:
19150 case ISD::AND:
19151 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019152 case ISD::XOR:
19153 Commute = true;
19154 // fallthrough
19155 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019156 SDValue N0 = Op.getOperand(0);
19157 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019158 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019159 return false;
19160 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019161 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019162 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019163 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019164 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019165 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019166 }
19167 }
19168
19169 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019170 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019171}
19172
Evan Cheng60c07e12006-07-05 22:17:51 +000019173//===----------------------------------------------------------------------===//
19174// X86 Inline Assembly Support
19175//===----------------------------------------------------------------------===//
19176
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019177namespace {
19178 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019179 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019180 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019181
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019182 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019183 StringRef piece(*args[i]);
19184 if (!s.startswith(piece)) // Check if the piece matches.
19185 return false;
19186
19187 s = s.substr(piece.size());
19188 StringRef::size_type pos = s.find_first_not_of(" \t");
19189 if (pos == 0) // We matched a prefix.
19190 return false;
19191
19192 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019193 }
19194
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019195 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019196 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019197 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019198}
19199
Eric Christopher3faf43f2013-11-04 21:41:21 +000019200static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19201
19202 if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19203 if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19204 std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19205 std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19206
19207 if (AsmPieces.size() == 3)
19208 return true;
19209 else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19210 return true;
19211 }
19212 }
19213 return false;
19214}
19215
Chris Lattnerb8105652009-07-20 17:51:36 +000019216bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19217 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019218
19219 std::string AsmStr = IA->getAsmString();
19220
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019221 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19222 if (!Ty || Ty->getBitWidth() % 16 != 0)
19223 return false;
19224
Chris Lattnerb8105652009-07-20 17:51:36 +000019225 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019226 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019227 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019228
19229 switch (AsmPieces.size()) {
19230 default: return false;
19231 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019232 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019233 // we will turn this bswap into something that will be lowered to logical
19234 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19235 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019236 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019237 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19238 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19239 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19240 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19241 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19242 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019243 // No need to check constraints, nothing other than the equivalent of
19244 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019245 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019246 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019247
Chris Lattnerb8105652009-07-20 17:51:36 +000019248 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019249 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019250 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019251 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19252 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019253 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019254 const std::string &ConstraintsStr = IA->getConstraintString();
19255 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019256 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Eric Christopher3faf43f2013-11-04 21:41:21 +000019257 if (clobbersFlagRegisters(AsmPieces))
19258 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019259 }
19260 break;
19261 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019262 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019263 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019264 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19265 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19266 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019267 AsmPieces.clear();
19268 const std::string &ConstraintsStr = IA->getConstraintString();
19269 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019270 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Eric Christopher3faf43f2013-11-04 21:41:21 +000019271 if (clobbersFlagRegisters(AsmPieces))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019272 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019273 }
Evan Cheng55d42002011-01-08 01:24:27 +000019274
19275 if (CI->getType()->isIntegerTy(64)) {
19276 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19277 if (Constraints.size() >= 2 &&
19278 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19279 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19280 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019281 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19282 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19283 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019284 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019285 }
19286 }
19287 break;
19288 }
19289 return false;
19290}
19291
Chris Lattnerf4dff842006-07-11 02:54:03 +000019292/// getConstraintType - Given a constraint letter, return the type of
19293/// constraint it is for this target.
19294X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019295X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19296 if (Constraint.size() == 1) {
19297 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019298 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019299 case 'q':
19300 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019301 case 'f':
19302 case 't':
19303 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019304 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019305 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019306 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019307 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019308 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019309 case 'a':
19310 case 'b':
19311 case 'c':
19312 case 'd':
19313 case 'S':
19314 case 'D':
19315 case 'A':
19316 return C_Register;
19317 case 'I':
19318 case 'J':
19319 case 'K':
19320 case 'L':
19321 case 'M':
19322 case 'N':
19323 case 'G':
19324 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019325 case 'e':
19326 case 'Z':
19327 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019328 default:
19329 break;
19330 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019331 }
Chris Lattner4234f572007-03-25 02:14:49 +000019332 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019333}
19334
John Thompson44ab89e2010-10-29 17:29:13 +000019335/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019336/// This object must already have been set up with the operand type
19337/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019338TargetLowering::ConstraintWeight
19339 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019340 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019341 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019342 Value *CallOperandVal = info.CallOperandVal;
19343 // If we don't have a value, we can't do a match,
19344 // but allow it at the lowest weight.
19345 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019346 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019347 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019348 // Look at the constraint type.
19349 switch (*constraint) {
19350 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019351 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19352 case 'R':
19353 case 'q':
19354 case 'Q':
19355 case 'a':
19356 case 'b':
19357 case 'c':
19358 case 'd':
19359 case 'S':
19360 case 'D':
19361 case 'A':
19362 if (CallOperandVal->getType()->isIntegerTy())
19363 weight = CW_SpecificReg;
19364 break;
19365 case 'f':
19366 case 't':
19367 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019368 if (type->isFloatingPointTy())
19369 weight = CW_SpecificReg;
19370 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019371 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019372 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19373 weight = CW_SpecificReg;
19374 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019375 case 'x':
19376 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019377 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019378 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019379 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019380 break;
19381 case 'I':
19382 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19383 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019384 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019385 }
19386 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019387 case 'J':
19388 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19389 if (C->getZExtValue() <= 63)
19390 weight = CW_Constant;
19391 }
19392 break;
19393 case 'K':
19394 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19395 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19396 weight = CW_Constant;
19397 }
19398 break;
19399 case 'L':
19400 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19401 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19402 weight = CW_Constant;
19403 }
19404 break;
19405 case 'M':
19406 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19407 if (C->getZExtValue() <= 3)
19408 weight = CW_Constant;
19409 }
19410 break;
19411 case 'N':
19412 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19413 if (C->getZExtValue() <= 0xff)
19414 weight = CW_Constant;
19415 }
19416 break;
19417 case 'G':
19418 case 'C':
19419 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19420 weight = CW_Constant;
19421 }
19422 break;
19423 case 'e':
19424 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19425 if ((C->getSExtValue() >= -0x80000000LL) &&
19426 (C->getSExtValue() <= 0x7fffffffLL))
19427 weight = CW_Constant;
19428 }
19429 break;
19430 case 'Z':
19431 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19432 if (C->getZExtValue() <= 0xffffffff)
19433 weight = CW_Constant;
19434 }
19435 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019436 }
19437 return weight;
19438}
19439
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019440/// LowerXConstraint - try to replace an X constraint, which matches anything,
19441/// with another that has more specific requirements based on the type of the
19442/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019443const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019444LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019445 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19446 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019447 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019448 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019449 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019450 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019451 return "x";
19452 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019453
Chris Lattner5e764232008-04-26 23:02:14 +000019454 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019455}
19456
Chris Lattner48884cd2007-08-25 00:47:38 +000019457/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19458/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019459void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019460 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019461 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019462 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019463 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019464
Eric Christopher100c8332011-06-02 23:16:42 +000019465 // Only support length 1 constraints for now.
19466 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019467
Eric Christopher100c8332011-06-02 23:16:42 +000019468 char ConstraintLetter = Constraint[0];
19469 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019470 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019471 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019472 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019473 if (C->getZExtValue() <= 31) {
19474 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019475 break;
19476 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019477 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019478 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019479 case 'J':
19480 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019481 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019482 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19483 break;
19484 }
19485 }
19486 return;
19487 case 'K':
19488 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019489 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019490 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19491 break;
19492 }
19493 }
19494 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019495 case 'N':
19496 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019497 if (C->getZExtValue() <= 255) {
19498 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019499 break;
19500 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019501 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019502 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019503 case 'e': {
19504 // 32-bit signed value
19505 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019506 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19507 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019508 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019509 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019510 break;
19511 }
19512 // FIXME gcc accepts some relocatable values here too, but only in certain
19513 // memory models; it's complicated.
19514 }
19515 return;
19516 }
19517 case 'Z': {
19518 // 32-bit unsigned value
19519 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019520 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19521 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019522 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19523 break;
19524 }
19525 }
19526 // FIXME gcc accepts some relocatable values here too, but only in certain
19527 // memory models; it's complicated.
19528 return;
19529 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019530 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019531 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019532 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019533 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019534 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019535 break;
19536 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019537
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019538 // In any sort of PIC mode addresses need to be computed at runtime by
19539 // adding in a register or some sort of table lookup. These can't
19540 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019541 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019542 return;
19543
Chris Lattnerdc43a882007-05-03 16:52:29 +000019544 // If we are in non-pic codegen mode, we allow the address of a global (with
19545 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019546 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019547 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019548
Chris Lattner49921962009-05-08 18:23:14 +000019549 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19550 while (1) {
19551 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19552 Offset += GA->getOffset();
19553 break;
19554 } else if (Op.getOpcode() == ISD::ADD) {
19555 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19556 Offset += C->getZExtValue();
19557 Op = Op.getOperand(0);
19558 continue;
19559 }
19560 } else if (Op.getOpcode() == ISD::SUB) {
19561 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19562 Offset += -C->getZExtValue();
19563 Op = Op.getOperand(0);
19564 continue;
19565 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019566 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019567
Chris Lattner49921962009-05-08 18:23:14 +000019568 // Otherwise, this isn't something we can handle, reject it.
19569 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019570 }
Eric Christopherfd179292009-08-27 18:07:15 +000019571
Dan Gohman46510a72010-04-15 01:51:59 +000019572 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019573 // If we require an extra load to get this address, as in PIC mode, we
19574 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019575 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19576 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019577 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019578
Andrew Trickac6d9be2013-05-25 02:42:55 +000019579 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019580 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019581 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019582 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019583 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019584
Gabor Greifba36cb52008-08-28 21:40:38 +000019585 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019586 Ops.push_back(Result);
19587 return;
19588 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019589 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019590}
19591
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019592std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019593X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019594 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019595 // First, see if this is a constraint that directly corresponds to an LLVM
19596 // register class.
19597 if (Constraint.size() == 1) {
19598 // GCC Constraint Letters
19599 switch (Constraint[0]) {
19600 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019601 // TODO: Slight differences here in allocation order and leaving
19602 // RIP in the class. Do they matter any more here than they do
19603 // in the normal allocation?
19604 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19605 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019606 if (VT == MVT::i32 || VT == MVT::f32)
19607 return std::make_pair(0U, &X86::GR32RegClass);
19608 if (VT == MVT::i16)
19609 return std::make_pair(0U, &X86::GR16RegClass);
19610 if (VT == MVT::i8 || VT == MVT::i1)
19611 return std::make_pair(0U, &X86::GR8RegClass);
19612 if (VT == MVT::i64 || VT == MVT::f64)
19613 return std::make_pair(0U, &X86::GR64RegClass);
19614 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019615 }
19616 // 32-bit fallthrough
19617 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019618 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019619 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19620 if (VT == MVT::i16)
19621 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19622 if (VT == MVT::i8 || VT == MVT::i1)
19623 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19624 if (VT == MVT::i64)
19625 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019626 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019627 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019628 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019629 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019630 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019631 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019632 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019633 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019634 return std::make_pair(0U, &X86::GR32RegClass);
19635 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019636 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019637 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019638 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019639 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019640 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019641 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019642 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19643 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019644 case 'f': // FP Stack registers.
19645 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19646 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019647 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019648 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019649 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019650 return std::make_pair(0U, &X86::RFP64RegClass);
19651 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019652 case 'y': // MMX_REGS if MMX allowed.
19653 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019654 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019655 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019656 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019657 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019658 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019659 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019660
Chad Rosier5b3fca52013-06-22 18:37:38 +000019661 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019662 default: break;
19663 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019664 case MVT::f32:
19665 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019666 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019667 case MVT::f64:
19668 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019669 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019670 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019671 case MVT::v16i8:
19672 case MVT::v8i16:
19673 case MVT::v4i32:
19674 case MVT::v2i64:
19675 case MVT::v4f32:
19676 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019677 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019678 // AVX types.
19679 case MVT::v32i8:
19680 case MVT::v16i16:
19681 case MVT::v8i32:
19682 case MVT::v4i64:
19683 case MVT::v8f32:
19684 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019685 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019686 case MVT::v8f64:
19687 case MVT::v16f32:
19688 case MVT::v16i32:
19689 case MVT::v8i64:
19690 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019691 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019692 break;
19693 }
19694 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019695
Chris Lattnerf76d1802006-07-31 23:26:50 +000019696 // Use the default implementation in TargetLowering to convert the register
19697 // constraint into a member of a register class.
19698 std::pair<unsigned, const TargetRegisterClass*> Res;
19699 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019700
19701 // Not found as a standard register?
19702 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019703 // Map st(0) -> st(7) -> ST0
19704 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19705 tolower(Constraint[1]) == 's' &&
19706 tolower(Constraint[2]) == 't' &&
19707 Constraint[3] == '(' &&
19708 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19709 Constraint[5] == ')' &&
19710 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019711
Chris Lattner56d77c72009-09-13 22:41:48 +000019712 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019713 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019714 return Res;
19715 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019716
Chris Lattner56d77c72009-09-13 22:41:48 +000019717 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019718 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019719 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019720 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019721 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019722 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019723
19724 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019725 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019726 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019727 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019728 return Res;
19729 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019730
Dale Johannesen330169f2008-11-13 21:52:36 +000019731 // 'A' means EAX + EDX.
19732 if (Constraint == "A") {
19733 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019734 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019735 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019736 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019737 return Res;
19738 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019739
Chris Lattnerf76d1802006-07-31 23:26:50 +000019740 // Otherwise, check to see if this is a register class of the wrong value
19741 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19742 // turn into {ax},{dx}.
19743 if (Res.second->hasType(VT))
19744 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019745
Chris Lattnerf76d1802006-07-31 23:26:50 +000019746 // All of the single-register GCC register classes map their values onto
19747 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19748 // really want an 8-bit or 32-bit register, map to the appropriate register
19749 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019750 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019751 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019752 unsigned DestReg = 0;
19753 switch (Res.first) {
19754 default: break;
19755 case X86::AX: DestReg = X86::AL; break;
19756 case X86::DX: DestReg = X86::DL; break;
19757 case X86::CX: DestReg = X86::CL; break;
19758 case X86::BX: DestReg = X86::BL; break;
19759 }
19760 if (DestReg) {
19761 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019762 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019763 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019764 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019765 unsigned DestReg = 0;
19766 switch (Res.first) {
19767 default: break;
19768 case X86::AX: DestReg = X86::EAX; break;
19769 case X86::DX: DestReg = X86::EDX; break;
19770 case X86::CX: DestReg = X86::ECX; break;
19771 case X86::BX: DestReg = X86::EBX; break;
19772 case X86::SI: DestReg = X86::ESI; break;
19773 case X86::DI: DestReg = X86::EDI; break;
19774 case X86::BP: DestReg = X86::EBP; break;
19775 case X86::SP: DestReg = X86::ESP; break;
19776 }
19777 if (DestReg) {
19778 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019779 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019780 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019781 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019782 unsigned DestReg = 0;
19783 switch (Res.first) {
19784 default: break;
19785 case X86::AX: DestReg = X86::RAX; break;
19786 case X86::DX: DestReg = X86::RDX; break;
19787 case X86::CX: DestReg = X86::RCX; break;
19788 case X86::BX: DestReg = X86::RBX; break;
19789 case X86::SI: DestReg = X86::RSI; break;
19790 case X86::DI: DestReg = X86::RDI; break;
19791 case X86::BP: DestReg = X86::RBP; break;
19792 case X86::SP: DestReg = X86::RSP; break;
19793 }
19794 if (DestReg) {
19795 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019796 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019797 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019798 }
Craig Topperc9099502012-04-20 06:31:50 +000019799 } else if (Res.second == &X86::FR32RegClass ||
19800 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019801 Res.second == &X86::VR128RegClass ||
19802 Res.second == &X86::VR256RegClass ||
19803 Res.second == &X86::FR32XRegClass ||
19804 Res.second == &X86::FR64XRegClass ||
19805 Res.second == &X86::VR128XRegClass ||
19806 Res.second == &X86::VR256XRegClass ||
19807 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019808 // Handle references to XMM physical registers that got mapped into the
19809 // wrong class. This can happen with constraints like {xmm0} where the
19810 // target independent register mapper will just pick the first match it can
19811 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019812
19813 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019814 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019815 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019816 Res.second = &X86::FR64RegClass;
19817 else if (X86::VR128RegClass.hasType(VT))
19818 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019819 else if (X86::VR256RegClass.hasType(VT))
19820 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019821 else if (X86::VR512RegClass.hasType(VT))
19822 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019823 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019824
Chris Lattnerf76d1802006-07-31 23:26:50 +000019825 return Res;
19826}